From a41c0be21d9e249017421b5231c0c52690e3b207 Mon Sep 17 00:00:00 2001 From: smol <107521333+a-tiny-kirin@users.noreply.github.com> Date: Sun, 8 Sep 2024 08:55:06 +0000 Subject: [PATCH] (automated) deploy from commit 00050c572b7f3003201b8215439b8ed38e195b3d --- search-index.js | 4 +- search.desc/wiwi/wiwi-desc-0-.js | 2 +- search.desc/wiwi/wiwi-desc-1-.js | 2 +- search.desc/wiwi/wiwi-desc-10-.js | 2 +- search.desc/wiwi/wiwi-desc-2-.js | 2 +- search.desc/wiwi/wiwi-desc-3-.js | 2 +- search.desc/wiwi/wiwi-desc-4-.js | 2 +- search.desc/wiwi/wiwi-desc-5-.js | 2 +- search.desc/wiwi/wiwi-desc-6-.js | 2 +- search.desc/wiwi/wiwi-desc-7-.js | 2 +- search.desc/wiwi/wiwi-desc-8-.js | 2 +- search.desc/wiwi/wiwi-desc-9-.js | 2 +- src-files.js | 4 +- src/wiwi/encoding/hex/decode.rs.html | 201 + src/wiwi/encoding/hex/encode.rs.html | 115 + src/wiwi/encoding/hex/mod.rs.html | 385 ++ src/wiwi/encoding/mod.rs.html | 5 + src/wiwi/encoding/z85/mod.rs.html | 1345 ++++++ src/wiwi/h/mod.rs.html | 69 + src/wiwi/lib.rs.html | 36 + src/wiwi/num/add_carrying.rs.html | 61 + src/wiwi/num/add_checked.rs.html | 51 + src/wiwi/num/add_overflowing.rs.html | 59 + src/wiwi/num/add_regular.rs.html | 63 + src/wiwi/num/and_regular.rs.html | 47 + src/wiwi/num/array_conversions.rs.html | 173 + src/wiwi/num/base.rs.html | 349 ++ src/wiwi/num/count_bits.rs.html | 107 + src/wiwi/num/div_checked.rs.html | 49 + src/wiwi/num/div_float.rs.html | 51 + src/wiwi/num/div_int.rs.html | 87 + src/wiwi/num/div_overflowing.rs.html | 61 + src/wiwi/num/div_regular.rs.html | 63 + src/wiwi/num/from_lossless.rs.html | 327 ++ src/wiwi/num/from_lossy.rs.html | 231 + src/wiwi/num/into_lossless.rs.html | 313 ++ src/wiwi/num/into_lossy.rs.html | 187 + src/wiwi/num/mod.rs.html | 141 + src/wiwi/num/mul_checked.rs.html | 49 + src/wiwi/num/mul_overflowing.rs.html | 61 + src/wiwi/num/mul_regular.rs.html | 63 + src/wiwi/num/mul_unchecked.rs.html | 69 + src/wiwi/num/mul_widening.rs.html | 189 + src/wiwi/num/narrowing.rs.html | 103 + src/wiwi/num/neg_checked.rs.html | 53 + src/wiwi/num/neg_regular.rs.html | 47 + src/wiwi/num/not_regular.rs.html | 47 + src/wiwi/num/or_regular.rs.html | 47 + src/wiwi/num/rem_checked.rs.html | 49 + src/wiwi/num/rem_regular.rs.html | 49 + src/wiwi/num/shl_checked.rs.html | 65 + src/wiwi/num/shl_regular.rs.html | 47 + src/wiwi/num/shr_checked.rs.html | 61 + src/wiwi/num/shr_regular.rs.html | 47 + src/wiwi/num/signedness.rs.html | 81 + src/wiwi/num/sub_borrowing.rs.html | 61 + src/wiwi/num/sub_checked.rs.html | 49 + src/wiwi/num/sub_overflowing.rs.html | 61 + src/wiwi/num/sub_regular.rs.html | 63 + src/wiwi/num/widening.rs.html | 101 + src/wiwi/num/xor_regular.rs.html | 47 + src/wiwi/prelude.rs.html | 36 +- src/wiwi/util/mod.rs.html | 29 + src/wiwi/util_unsafe/encoding_utils.rs.html | 675 +++ src/wiwi/util_unsafe/mod.rs.html | 5 + trait.impl/core/cmp/trait.PartialEq.js | 4 +- trait.impl/core/error/trait.Error.js | 4 +- trait.impl/core/fmt/trait.Debug.js | 4 +- trait.impl/core/fmt/trait.Display.js | 4 +- trait.impl/core/marker/trait.Freeze.js | 4 +- trait.impl/core/marker/trait.Send.js | 4 +- .../core/marker/trait.StructuralPartialEq.js | 4 +- trait.impl/core/marker/trait.Sync.js | 4 +- trait.impl/core/marker/trait.Unpin.js | 4 +- .../panic/unwind_safe/trait.RefUnwindSafe.js | 4 +- .../panic/unwind_safe/trait.UnwindSafe.js | 4 +- .../num/add_carrying/trait.AddCarrying.js | 9 + .../wiwi/num/add_checked/trait.AddChecked.js | 9 + .../add_overflowing/trait.AddOverflowing.js | 9 + trait.impl/wiwi/num/add_regular/trait.Add.js | 9 + trait.impl/wiwi/num/and_regular/trait.And.js | 9 + .../trait.ArrayConversions.js | 9 + trait.impl/wiwi/num/base/trait.Base.js | 9 + .../wiwi/num/count_bits/trait.CountBits.js | 9 + .../wiwi/num/div_checked/trait.DivChecked.js | 9 + .../wiwi/num/div_float/trait.DivFloat.js | 9 + trait.impl/wiwi/num/div_int/trait.DivInt.js | 9 + .../div_overflowing/trait.DivOverflowing.js | 9 + trait.impl/wiwi/num/div_regular/trait.Div.js | 9 + .../from_lossless/trait.FromF32Lossless.js | 9 + .../from_lossless/trait.FromF64Lossless.js | 9 + .../from_lossless/trait.FromI128Lossless.js | 9 + .../from_lossless/trait.FromI16Lossless.js | 9 + .../from_lossless/trait.FromI32Lossless.js | 9 + .../from_lossless/trait.FromI64Lossless.js | 9 + .../num/from_lossless/trait.FromI8Lossless.js | 9 + .../from_lossless/trait.FromIsizeLossless.js | 9 + .../from_lossless/trait.FromU128Lossless.js | 9 + .../from_lossless/trait.FromU16Lossless.js | 9 + .../from_lossless/trait.FromU32Lossless.js | 9 + .../from_lossless/trait.FromU64Lossless.js | 9 + .../num/from_lossless/trait.FromU8Lossless.js | 9 + .../from_lossless/trait.FromUsizeLossless.js | 9 + .../wiwi/num/from_lossy/trait.FromF32Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromF64Lossy.js | 9 + .../num/from_lossy/trait.FromI128Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromI16Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromI32Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromI64Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromI8Lossy.js | 9 + .../num/from_lossy/trait.FromIsizeLossy.js | 9 + .../num/from_lossy/trait.FromU128Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromU16Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromU32Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromU64Lossy.js | 9 + .../wiwi/num/from_lossy/trait.FromU8Lossy.js | 9 + .../num/from_lossy/trait.FromUsizeLossy.js | 9 + .../into_lossless/trait.IntoF32Lossless.js | 9 + .../into_lossless/trait.IntoF64Lossless.js | 9 + .../into_lossless/trait.IntoI128Lossless.js | 9 + .../into_lossless/trait.IntoI16Lossless.js | 9 + .../into_lossless/trait.IntoI32Lossless.js | 9 + .../into_lossless/trait.IntoI64Lossless.js | 9 + .../num/into_lossless/trait.IntoI8Lossless.js | 9 + .../into_lossless/trait.IntoIsizeLossless.js | 9 + .../into_lossless/trait.IntoU128Lossless.js | 9 + .../into_lossless/trait.IntoU16Lossless.js | 9 + .../into_lossless/trait.IntoU32Lossless.js | 9 + .../into_lossless/trait.IntoU64Lossless.js | 9 + .../num/into_lossless/trait.IntoU8Lossless.js | 9 + .../into_lossless/trait.IntoUsizeLossless.js | 9 + .../wiwi/num/into_lossy/trait.IntoF32Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoF64Lossy.js | 9 + .../num/into_lossy/trait.IntoI128Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoI16Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoI32Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoI64Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoI8Lossy.js | 9 + .../num/into_lossy/trait.IntoIsizeLossy.js | 9 + .../num/into_lossy/trait.IntoU128Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoU16Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoU32Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoU64Lossy.js | 9 + .../wiwi/num/into_lossy/trait.IntoU8Lossy.js | 9 + .../num/into_lossy/trait.IntoUsizeLossy.js | 9 + .../wiwi/num/mul_checked/trait.MulChecked.js | 9 + .../mul_overflowing/trait.MulOverflowing.js | 9 + trait.impl/wiwi/num/mul_regular/trait.Mul.js | 9 + .../num/mul_unchecked/trait.MulUnchecked.js | 9 + .../num/mul_widening/trait.MulWidening.js | 9 + .../wiwi/num/narrowing/trait.Narrowing.js | 9 + .../wiwi/num/neg_checked/trait.NegChecked.js | 9 + trait.impl/wiwi/num/neg_regular/trait.Neg.js | 9 + trait.impl/wiwi/num/not_regular/trait.Not.js | 9 + trait.impl/wiwi/num/or_regular/trait.Or.js | 9 + .../wiwi/num/rem_checked/trait.RemChecked.js | 9 + trait.impl/wiwi/num/rem_regular/trait.Rem.js | 9 + .../wiwi/num/shl_checked/trait.ShlChecked.js | 9 + trait.impl/wiwi/num/shl_regular/trait.Shl.js | 9 + .../wiwi/num/shr_checked/trait.ShrChecked.js | 9 + trait.impl/wiwi/num/shr_regular/trait.Shr.js | 9 + .../wiwi/num/signedness/trait.IntSigned.js | 9 + .../wiwi/num/signedness/trait.IntUnsigned.js | 9 + .../num/sub_borrowing/trait.SubBorrowing.js | 9 + .../wiwi/num/sub_checked/trait.SubChecked.js | 9 + .../sub_overflowing/trait.SubOverflowing.js | 9 + trait.impl/wiwi/num/sub_regular/trait.Sub.js | 9 + .../wiwi/num/widening/trait.Widening.js | 9 + trait.impl/wiwi/num/xor_regular/trait.Xor.js | 9 + type.impl/std/primitive.f32.js | 4 +- type.impl/std/primitive.f64.js | 4 +- type.impl/std/primitive.i16.js | 4 +- type.impl/std/primitive.i32.js | 4 +- type.impl/std/primitive.i64.js | 4 +- type.impl/std/primitive.i8.js | 4 +- type.impl/std/primitive.isize.js | 4 +- type.impl/std/primitive.u16.js | 4 +- type.impl/std/primitive.u32.js | 4 +- type.impl/std/primitive.u64.js | 4 +- type.impl/std/primitive.u8.js | 4 +- type.impl/std/primitive.usize.js | 4 +- wiwi/_changelog/index.html | 2 +- wiwi/all.html | 2 +- .../hex/constant.TABLE_ENCODER_LEN.html | 2 + .../encode/constant.TABLE_ENCODER_LEN.html | 11 + .../encode/static.TABLE_ENCODER_LOWER.html | 11 + .../encode/static.TABLE_ENCODER_UPPER.html | 11 + wiwi/encoding/hex/enum.DecodeError.html | 18 + wiwi/encoding/hex/fn.decode_hex.html | 3 + wiwi/encoding/hex/fn.encode_hex.html | 2 + wiwi/encoding/hex/fn.encode_hex_upper.html | 2 + wiwi/encoding/hex/index.html | 4 + wiwi/encoding/hex/sidebar-items.js | 1 + .../hex/static.TABLE_ENCODER_LOWER.html | 4 + .../hex/static.TABLE_ENCODER_UPPER.html | 4 + wiwi/encoding/index.html | 1 + wiwi/encoding/sidebar-items.js | 1 + .../z85/constant.BINARY_FRAME_LEN.html | 3 + .../z85/constant.STRING_FRAME_LEN.html | 3 + .../z85/constant.TABLE_DECODER_LEN.html | 2 + .../z85/constant.TABLE_ENCODER_LEN.html | 2 + wiwi/encoding/z85/enum.DecodeError.html | 21 + wiwi/encoding/z85/fn.decode_z85.html | 2 + wiwi/encoding/z85/fn.encode_z85.html | 2 + wiwi/encoding/z85/index.html | 5 + wiwi/encoding/z85/sidebar-items.js | 1 + wiwi/encoding/z85/static.TABLE_DECODER.html | 8 + wiwi/encoding/z85/static.TABLE_ENCODER.html | 2 + wiwi/encoding/z85/struct.EncodedReprInfo.html | 54 + wiwi/h/fn.H.html | 2 + wiwi/h/fn.h.html | 2 + wiwi/h/index.html | 2 + wiwi/h/sidebar-items.js | 1 + wiwi/index.html | 4 +- wiwi/macro.export_all_submodules!.html | 11 + wiwi/macro.export_all_submodules.html | 6 + wiwi/macro.panic.html | 2 +- wiwi/num/add_carrying/trait.AddCarrying.html | 11 + wiwi/num/add_checked/trait.AddChecked.html | 11 + .../add_overflowing/trait.AddOverflowing.html | 11 + wiwi/num/add_regular/trait.Add.html | 11 + wiwi/num/and_regular/trait.And.html | 11 + .../trait.ArrayConversions.html | 11 + wiwi/num/base/trait.Base.html | 11 + wiwi/num/count_bits/trait.CountBits.html | 11 + wiwi/num/div_checked/trait.DivChecked.html | 11 + wiwi/num/div_float/trait.DivFloat.html | 11 + wiwi/num/div_int/trait.DivInt.html | 11 + .../div_overflowing/trait.DivOverflowing.html | 11 + wiwi/num/div_regular/trait.Div.html | 11 + .../from_lossless/trait.FromF32Lossless.html | 11 + .../from_lossless/trait.FromF64Lossless.html | 11 + .../from_lossless/trait.FromI128Lossless.html | 11 + .../from_lossless/trait.FromI16Lossless.html | 11 + .../from_lossless/trait.FromI32Lossless.html | 11 + .../from_lossless/trait.FromI64Lossless.html | 11 + .../from_lossless/trait.FromI8Lossless.html | 11 + .../trait.FromIsizeLossless.html | 11 + .../from_lossless/trait.FromU128Lossless.html | 11 + .../from_lossless/trait.FromU16Lossless.html | 11 + .../from_lossless/trait.FromU32Lossless.html | 11 + .../from_lossless/trait.FromU64Lossless.html | 11 + .../from_lossless/trait.FromU8Lossless.html | 11 + .../trait.FromUsizeLossless.html | 11 + wiwi/num/from_lossy/trait.FromF32Lossy.html | 11 + wiwi/num/from_lossy/trait.FromF64Lossy.html | 11 + wiwi/num/from_lossy/trait.FromI128Lossy.html | 11 + wiwi/num/from_lossy/trait.FromI16Lossy.html | 11 + wiwi/num/from_lossy/trait.FromI32Lossy.html | 11 + wiwi/num/from_lossy/trait.FromI64Lossy.html | 11 + wiwi/num/from_lossy/trait.FromI8Lossy.html | 11 + wiwi/num/from_lossy/trait.FromIsizeLossy.html | 11 + wiwi/num/from_lossy/trait.FromU128Lossy.html | 11 + wiwi/num/from_lossy/trait.FromU16Lossy.html | 11 + wiwi/num/from_lossy/trait.FromU32Lossy.html | 11 + wiwi/num/from_lossy/trait.FromU64Lossy.html | 11 + wiwi/num/from_lossy/trait.FromU8Lossy.html | 11 + wiwi/num/from_lossy/trait.FromUsizeLossy.html | 11 + wiwi/num/index.html | 58 + .../into_lossless/trait.IntoF32Lossless.html | 11 + .../into_lossless/trait.IntoF64Lossless.html | 11 + .../into_lossless/trait.IntoI128Lossless.html | 11 + .../into_lossless/trait.IntoI16Lossless.html | 11 + .../into_lossless/trait.IntoI32Lossless.html | 11 + .../into_lossless/trait.IntoI64Lossless.html | 11 + .../into_lossless/trait.IntoI8Lossless.html | 11 + .../trait.IntoIsizeLossless.html | 11 + .../into_lossless/trait.IntoU128Lossless.html | 11 + .../into_lossless/trait.IntoU16Lossless.html | 11 + .../into_lossless/trait.IntoU32Lossless.html | 11 + .../into_lossless/trait.IntoU64Lossless.html | 11 + .../into_lossless/trait.IntoU8Lossless.html | 11 + .../trait.IntoUsizeLossless.html | 11 + wiwi/num/into_lossy/trait.IntoF32Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoF64Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoI128Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoI16Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoI32Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoI64Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoI8Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoIsizeLossy.html | 11 + wiwi/num/into_lossy/trait.IntoU128Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoU16Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoU32Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoU64Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoU8Lossy.html | 11 + wiwi/num/into_lossy/trait.IntoUsizeLossy.html | 11 + wiwi/num/mul_checked/trait.MulChecked.html | 11 + .../mul_overflowing/trait.MulOverflowing.html | 11 + wiwi/num/mul_regular/trait.Mul.html | 11 + .../num/mul_unchecked/trait.MulUnchecked.html | 11 + wiwi/num/mul_widening/trait.MulWidening.html | 11 + wiwi/num/narrowing/trait.Narrowing.html | 11 + wiwi/num/neg_checked/trait.NegChecked.html | 11 + wiwi/num/neg_regular/trait.Neg.html | 11 + wiwi/num/not_regular/trait.Not.html | 11 + wiwi/num/or_regular/trait.Or.html | 11 + wiwi/num/rem_checked/trait.RemChecked.html | 11 + wiwi/num/rem_regular/trait.Rem.html | 11 + wiwi/num/shl_checked/trait.ShlChecked.html | 11 + wiwi/num/shl_regular/trait.Shl.html | 11 + wiwi/num/shr_checked/trait.ShrChecked.html | 11 + wiwi/num/shr_regular/trait.Shr.html | 11 + wiwi/num/sidebar-items.js | 1 + wiwi/num/signedness/trait.IntSigned.html | 11 + wiwi/num/signedness/trait.IntUnsigned.html | 11 + .../num/sub_borrowing/trait.SubBorrowing.html | 11 + wiwi/num/sub_checked/trait.SubChecked.html | 11 + .../sub_overflowing/trait.SubOverflowing.html | 11 + wiwi/num/sub_regular/trait.Sub.html | 11 + wiwi/num/trait.Add.html | 9 + wiwi/num/trait.AddCarrying.html | 8 + wiwi/num/trait.AddChecked.html | 5 + wiwi/num/trait.AddOverflowing.html | 8 + wiwi/num/trait.And.html | 5 + wiwi/num/trait.ArrayConversions.html | 36 + wiwi/num/trait.Base.html | 29 + wiwi/num/trait.CountBits.html | 9 + wiwi/num/trait.Div.html | 9 + wiwi/num/trait.DivChecked.html | 4 + wiwi/num/trait.DivFloat.html | 8 + wiwi/num/trait.DivInt.html | 8 + wiwi/num/trait.DivOverflowing.html | 8 + wiwi/num/trait.FromF32Lossless.html | 22 + wiwi/num/trait.FromF32Lossy.html | 81 + wiwi/num/trait.FromF64Lossless.html | 18 + wiwi/num/trait.FromF64Lossy.html | 81 + wiwi/num/trait.FromI128Lossless.html | 18 + wiwi/num/trait.FromI128Lossy.html | 81 + wiwi/num/trait.FromI16Lossless.html | 42 + wiwi/num/trait.FromI16Lossy.html | 81 + wiwi/num/trait.FromI32Lossless.html | 34 + wiwi/num/trait.FromI32Lossy.html | 81 + wiwi/num/trait.FromI64Lossless.html | 26 + wiwi/num/trait.FromI64Lossy.html | 81 + wiwi/num/trait.FromI8Lossless.html | 46 + wiwi/num/trait.FromI8Lossy.html | 81 + wiwi/num/trait.FromIsizeLossless.html | 26 + wiwi/num/trait.FromIsizeLossy.html | 81 + wiwi/num/trait.FromU128Lossless.html | 18 + wiwi/num/trait.FromU128Lossy.html | 81 + wiwi/num/trait.FromU16Lossless.html | 58 + wiwi/num/trait.FromU16Lossy.html | 81 + wiwi/num/trait.FromU32Lossless.html | 46 + wiwi/num/trait.FromU32Lossy.html | 81 + wiwi/num/trait.FromU64Lossless.html | 30 + wiwi/num/trait.FromU64Lossy.html | 81 + wiwi/num/trait.FromU8Lossless.html | 66 + wiwi/num/trait.FromU8Lossy.html | 81 + wiwi/num/trait.FromUsizeLossless.html | 30 + wiwi/num/trait.FromUsizeLossy.html | 81 + wiwi/num/trait.IntSigned.html | 7 + wiwi/num/trait.IntUnsigned.html | 7 + wiwi/num/trait.IntoF32Lossless.html | 13 + wiwi/num/trait.IntoF32Lossy.html | 11 + wiwi/num/trait.IntoF64Lossless.html | 13 + wiwi/num/trait.IntoF64Lossy.html | 11 + wiwi/num/trait.IntoI128Lossless.html | 13 + wiwi/num/trait.IntoI128Lossy.html | 11 + wiwi/num/trait.IntoI16Lossless.html | 13 + wiwi/num/trait.IntoI16Lossy.html | 11 + wiwi/num/trait.IntoI32Lossless.html | 13 + wiwi/num/trait.IntoI32Lossy.html | 11 + wiwi/num/trait.IntoI64Lossless.html | 13 + wiwi/num/trait.IntoI64Lossy.html | 11 + wiwi/num/trait.IntoI8Lossless.html | 13 + wiwi/num/trait.IntoI8Lossy.html | 11 + wiwi/num/trait.IntoIsizeLossless.html | 13 + wiwi/num/trait.IntoIsizeLossy.html | 11 + wiwi/num/trait.IntoU128Lossless.html | 13 + wiwi/num/trait.IntoU128Lossy.html | 11 + wiwi/num/trait.IntoU16Lossless.html | 13 + wiwi/num/trait.IntoU16Lossy.html | 11 + wiwi/num/trait.IntoU32Lossless.html | 13 + wiwi/num/trait.IntoU32Lossy.html | 11 + wiwi/num/trait.IntoU64Lossless.html | 13 + wiwi/num/trait.IntoU64Lossy.html | 11 + wiwi/num/trait.IntoU8Lossless.html | 13 + wiwi/num/trait.IntoU8Lossy.html | 11 + wiwi/num/trait.IntoUsizeLossless.html | 13 + wiwi/num/trait.IntoUsizeLossy.html | 11 + wiwi/num/trait.Mul.html | 9 + wiwi/num/trait.MulChecked.html | 4 + wiwi/num/trait.MulOverflowing.html | 8 + wiwi/num/trait.MulUnchecked.html | 10 + wiwi/num/trait.MulWidening.html | 10 + wiwi/num/trait.Narrowing.html | 13 + wiwi/num/trait.Neg.html | 5 + wiwi/num/trait.NegChecked.html | 5 + wiwi/num/trait.Not.html | 5 + wiwi/num/trait.Or.html | 5 + wiwi/num/trait.Rem.html | 5 + wiwi/num/trait.RemChecked.html | 4 + wiwi/num/trait.Shl.html | 5 + wiwi/num/trait.ShlChecked.html | 5 + wiwi/num/trait.Shr.html | 5 + wiwi/num/trait.ShrChecked.html | 5 + wiwi/num/trait.Sub.html | 9 + wiwi/num/trait.SubBorrowing.html | 8 + wiwi/num/trait.SubChecked.html | 4 + wiwi/num/trait.SubOverflowing.html | 8 + wiwi/num/trait.Widening.html | 12 + wiwi/num/trait.Xor.html | 5 + wiwi/num/widening/trait.Widening.html | 11 + wiwi/num/xor_regular/trait.Xor.html | 11 + wiwi/prelude/derive.Clone.html | 2 + wiwi/prelude/derive.Debug.html | 2 + wiwi/prelude/derive.Eq.html | 2 + wiwi/prelude/derive.Ord.html | 3 + wiwi/prelude/derive.PartialEq.html | 3 + wiwi/prelude/derive.PartialOrd.html | 3 + wiwi/prelude/index.html | 14 +- wiwi/prelude/macro.panic.html | 2 +- wiwi/prelude/macro.vec!.html | 11 + wiwi/prelude/macro.vec.html | 33 + wiwi/prelude/sidebar-items.js | 2 +- wiwi/prelude/trait.Clone.html | 276 ++ wiwi/prelude/trait.Debug.html | 472 ++ wiwi/prelude/trait.Display.html | 99 + wiwi/prelude/trait.Eq.html | 107 + wiwi/prelude/trait.Ord.html | 195 + wiwi/prelude/trait.PartialEq.html | 300 ++ wiwi/prelude/trait.PartialOrd.html | 267 ++ wiwi/prelude/trait.Send.html | 4 +- wiwi/prelude/trait.Sync.html | 4 +- wiwi/prelude/trait.Unpin.html | 4 +- wiwi/prelude/vec/index.html | 33 + wiwi/prelude/vec/sidebar-items.js | 1 + wiwi/prelude/vec/struct.Drain.html | 256 ++ wiwi/prelude/vec/struct.ExtractIf.html | 218 + wiwi/prelude/vec/struct.IntoIter.html | 255 ++ wiwi/prelude/vec/struct.Splice.html | 239 + wiwi/prelude/vec/struct.Vec.html | 4072 +++++++++++++++++ wiwi/rust_alloc/boxed/struct.Box.html | 2 +- wiwi/rust_alloc/fmt/trait.Debug.html | 2 +- wiwi/rust_alloc/fmt/trait.Display.html | 2 +- wiwi/rust_core/cmp/trait.PartialEq.html | 2 +- wiwi/rust_core/error/trait.Error.html | 2 +- wiwi/rust_core/fmt/trait.Debug.html | 2 +- wiwi/rust_core/fmt/trait.Display.html | 2 +- wiwi/rust_core/marker/trait.Freeze.html | 4 +- wiwi/rust_core/marker/trait.Send.html | 4 +- .../marker/trait.StructuralPartialEq.html | 2 +- wiwi/rust_core/marker/trait.Sync.html | 4 +- wiwi/rust_core/marker/trait.Unpin.html | 4 +- wiwi/rust_core/panic/trait.RefUnwindSafe.html | 4 +- wiwi/rust_core/panic/trait.UnwindSafe.html | 4 +- .../prelude/rust_2015/trait.PartialEq.html | 2 +- .../prelude/rust_2015/trait.Send.html | 4 +- .../prelude/rust_2015/trait.Sync.html | 4 +- .../prelude/rust_2015/trait.Unpin.html | 4 +- .../prelude/rust_2018/trait.PartialEq.html | 2 +- .../prelude/rust_2018/trait.Send.html | 4 +- .../prelude/rust_2018/trait.Sync.html | 4 +- .../prelude/rust_2018/trait.Unpin.html | 4 +- .../prelude/rust_2021/trait.PartialEq.html | 2 +- .../prelude/rust_2021/trait.Send.html | 4 +- .../prelude/rust_2021/trait.Sync.html | 4 +- .../prelude/rust_2021/trait.Unpin.html | 4 +- .../prelude/rust_2024/trait.PartialEq.html | 2 +- .../prelude/rust_2024/trait.Send.html | 4 +- .../prelude/rust_2024/trait.Sync.html | 4 +- .../prelude/rust_2024/trait.Unpin.html | 4 +- .../rust_core/prelude/v1/trait.PartialEq.html | 2 +- wiwi/rust_core/prelude/v1/trait.Send.html | 4 +- wiwi/rust_core/prelude/v1/trait.Sync.html | 4 +- wiwi/rust_core/prelude/v1/trait.Unpin.html | 4 +- wiwi/rust_std/boxed/struct.Box.html | 2 +- wiwi/rust_std/cmp/trait.PartialEq.html | 2 +- wiwi/rust_std/error/trait.Error.html | 2 +- wiwi/rust_std/fmt/trait.Debug.html | 2 +- wiwi/rust_std/fmt/trait.Display.html | 2 +- wiwi/rust_std/marker/trait.Freeze.html | 4 +- wiwi/rust_std/marker/trait.Send.html | 4 +- .../marker/trait.StructuralPartialEq.html | 2 +- wiwi/rust_std/marker/trait.Sync.html | 4 +- wiwi/rust_std/marker/trait.Unpin.html | 4 +- wiwi/rust_std/panic/trait.RefUnwindSafe.html | 4 +- wiwi/rust_std/panic/trait.UnwindSafe.html | 4 +- .../prelude/rust_2015/struct.Box.html | 2 +- .../prelude/rust_2015/trait.PartialEq.html | 2 +- .../prelude/rust_2015/trait.Send.html | 4 +- .../prelude/rust_2015/trait.Sync.html | 4 +- .../prelude/rust_2015/trait.Unpin.html | 4 +- .../prelude/rust_2018/struct.Box.html | 2 +- .../prelude/rust_2018/trait.PartialEq.html | 2 +- .../prelude/rust_2018/trait.Send.html | 4 +- .../prelude/rust_2018/trait.Sync.html | 4 +- .../prelude/rust_2018/trait.Unpin.html | 4 +- .../prelude/rust_2021/struct.Box.html | 2 +- .../prelude/rust_2021/trait.PartialEq.html | 2 +- .../prelude/rust_2021/trait.Send.html | 4 +- .../prelude/rust_2021/trait.Sync.html | 4 +- .../prelude/rust_2021/trait.Unpin.html | 4 +- .../prelude/rust_2024/struct.Box.html | 2 +- .../prelude/rust_2024/trait.PartialEq.html | 2 +- .../prelude/rust_2024/trait.Send.html | 4 +- .../prelude/rust_2024/trait.Sync.html | 4 +- .../prelude/rust_2024/trait.Unpin.html | 4 +- wiwi/rust_std/prelude/v1/struct.Box.html | 2 +- wiwi/rust_std/prelude/v1/trait.PartialEq.html | 2 +- wiwi/rust_std/prelude/v1/trait.Send.html | 4 +- wiwi/rust_std/prelude/v1/trait.Sync.html | 4 +- wiwi/rust_std/prelude/v1/trait.Unpin.html | 4 +- wiwi/sidebar-items.js | 2 +- wiwi/util/index.html | 2 + wiwi/util/macro.export_all_submodules!.html | 11 + wiwi/util/macro.export_all_submodules.html | 6 + wiwi/util/sidebar-items.js | 1 + .../encoding_utils/struct.ChunkedSlice.html | 11 + .../struct.UnsafeBufWriteGuard.html | 11 + wiwi/util_unsafe/index.html | 3 + wiwi/util_unsafe/sidebar-items.js | 1 + wiwi/util_unsafe/struct.ChunkedSlice.html | 38 + .../struct.UnsafeBufWriteGuard.html | 78 + 515 files changed, 18419 insertions(+), 194 deletions(-) create mode 100644 src/wiwi/encoding/hex/decode.rs.html create mode 100644 src/wiwi/encoding/hex/encode.rs.html create mode 100644 src/wiwi/encoding/hex/mod.rs.html create mode 100644 src/wiwi/encoding/mod.rs.html create mode 100644 src/wiwi/encoding/z85/mod.rs.html create mode 100644 src/wiwi/h/mod.rs.html create mode 100644 src/wiwi/num/add_carrying.rs.html create mode 100644 src/wiwi/num/add_checked.rs.html create mode 100644 src/wiwi/num/add_overflowing.rs.html create mode 100644 src/wiwi/num/add_regular.rs.html create mode 100644 src/wiwi/num/and_regular.rs.html create mode 100644 src/wiwi/num/array_conversions.rs.html create mode 100644 src/wiwi/num/base.rs.html create mode 100644 src/wiwi/num/count_bits.rs.html create mode 100644 src/wiwi/num/div_checked.rs.html create mode 100644 src/wiwi/num/div_float.rs.html create mode 100644 src/wiwi/num/div_int.rs.html create mode 100644 src/wiwi/num/div_overflowing.rs.html create mode 100644 src/wiwi/num/div_regular.rs.html create mode 100644 src/wiwi/num/from_lossless.rs.html create mode 100644 src/wiwi/num/from_lossy.rs.html create mode 100644 src/wiwi/num/into_lossless.rs.html create mode 100644 src/wiwi/num/into_lossy.rs.html create mode 100644 src/wiwi/num/mod.rs.html create mode 100644 src/wiwi/num/mul_checked.rs.html create mode 100644 src/wiwi/num/mul_overflowing.rs.html create mode 100644 src/wiwi/num/mul_regular.rs.html create mode 100644 src/wiwi/num/mul_unchecked.rs.html create mode 100644 src/wiwi/num/mul_widening.rs.html create mode 100644 src/wiwi/num/narrowing.rs.html create mode 100644 src/wiwi/num/neg_checked.rs.html create mode 100644 src/wiwi/num/neg_regular.rs.html create mode 100644 src/wiwi/num/not_regular.rs.html create mode 100644 src/wiwi/num/or_regular.rs.html create mode 100644 src/wiwi/num/rem_checked.rs.html create mode 100644 src/wiwi/num/rem_regular.rs.html create mode 100644 src/wiwi/num/shl_checked.rs.html create mode 100644 src/wiwi/num/shl_regular.rs.html create mode 100644 src/wiwi/num/shr_checked.rs.html create mode 100644 src/wiwi/num/shr_regular.rs.html create mode 100644 src/wiwi/num/signedness.rs.html create mode 100644 src/wiwi/num/sub_borrowing.rs.html create mode 100644 src/wiwi/num/sub_checked.rs.html create mode 100644 src/wiwi/num/sub_overflowing.rs.html create mode 100644 src/wiwi/num/sub_regular.rs.html create mode 100644 src/wiwi/num/widening.rs.html create mode 100644 src/wiwi/num/xor_regular.rs.html create mode 100644 src/wiwi/util/mod.rs.html create mode 100644 src/wiwi/util_unsafe/encoding_utils.rs.html create mode 100644 src/wiwi/util_unsafe/mod.rs.html create mode 100644 trait.impl/wiwi/num/add_carrying/trait.AddCarrying.js create mode 100644 trait.impl/wiwi/num/add_checked/trait.AddChecked.js create mode 100644 trait.impl/wiwi/num/add_overflowing/trait.AddOverflowing.js create mode 100644 trait.impl/wiwi/num/add_regular/trait.Add.js create mode 100644 trait.impl/wiwi/num/and_regular/trait.And.js create mode 100644 trait.impl/wiwi/num/array_conversions/trait.ArrayConversions.js create mode 100644 trait.impl/wiwi/num/base/trait.Base.js create mode 100644 trait.impl/wiwi/num/count_bits/trait.CountBits.js create mode 100644 trait.impl/wiwi/num/div_checked/trait.DivChecked.js create mode 100644 trait.impl/wiwi/num/div_float/trait.DivFloat.js create mode 100644 trait.impl/wiwi/num/div_int/trait.DivInt.js create mode 100644 trait.impl/wiwi/num/div_overflowing/trait.DivOverflowing.js create mode 100644 trait.impl/wiwi/num/div_regular/trait.Div.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromF32Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromF64Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromI128Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromI16Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromI32Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromI64Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromI8Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromIsizeLossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromU128Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromU16Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromU32Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromU64Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromU8Lossless.js create mode 100644 trait.impl/wiwi/num/from_lossless/trait.FromUsizeLossless.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromF32Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromF64Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromI128Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromI16Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromI32Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromI64Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromI8Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromIsizeLossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromU128Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromU16Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromU32Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromU64Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromU8Lossy.js create mode 100644 trait.impl/wiwi/num/from_lossy/trait.FromUsizeLossy.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoF32Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoF64Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoI128Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoI16Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoI32Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoI64Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoI8Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoIsizeLossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoU128Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoU16Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoU32Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoU64Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoU8Lossless.js create mode 100644 trait.impl/wiwi/num/into_lossless/trait.IntoUsizeLossless.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoF32Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoF64Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoI128Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoI16Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoI32Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoI64Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoI8Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoIsizeLossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoU128Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoU16Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoU32Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoU64Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoU8Lossy.js create mode 100644 trait.impl/wiwi/num/into_lossy/trait.IntoUsizeLossy.js create mode 100644 trait.impl/wiwi/num/mul_checked/trait.MulChecked.js create mode 100644 trait.impl/wiwi/num/mul_overflowing/trait.MulOverflowing.js create mode 100644 trait.impl/wiwi/num/mul_regular/trait.Mul.js create mode 100644 trait.impl/wiwi/num/mul_unchecked/trait.MulUnchecked.js create mode 100644 trait.impl/wiwi/num/mul_widening/trait.MulWidening.js create mode 100644 trait.impl/wiwi/num/narrowing/trait.Narrowing.js create mode 100644 trait.impl/wiwi/num/neg_checked/trait.NegChecked.js create mode 100644 trait.impl/wiwi/num/neg_regular/trait.Neg.js create mode 100644 trait.impl/wiwi/num/not_regular/trait.Not.js create mode 100644 trait.impl/wiwi/num/or_regular/trait.Or.js create mode 100644 trait.impl/wiwi/num/rem_checked/trait.RemChecked.js create mode 100644 trait.impl/wiwi/num/rem_regular/trait.Rem.js create mode 100644 trait.impl/wiwi/num/shl_checked/trait.ShlChecked.js create mode 100644 trait.impl/wiwi/num/shl_regular/trait.Shl.js create mode 100644 trait.impl/wiwi/num/shr_checked/trait.ShrChecked.js create mode 100644 trait.impl/wiwi/num/shr_regular/trait.Shr.js create mode 100644 trait.impl/wiwi/num/signedness/trait.IntSigned.js create mode 100644 trait.impl/wiwi/num/signedness/trait.IntUnsigned.js create mode 100644 trait.impl/wiwi/num/sub_borrowing/trait.SubBorrowing.js create mode 100644 trait.impl/wiwi/num/sub_checked/trait.SubChecked.js create mode 100644 trait.impl/wiwi/num/sub_overflowing/trait.SubOverflowing.js create mode 100644 trait.impl/wiwi/num/sub_regular/trait.Sub.js create mode 100644 trait.impl/wiwi/num/widening/trait.Widening.js create mode 100644 trait.impl/wiwi/num/xor_regular/trait.Xor.js create mode 100644 wiwi/encoding/hex/constant.TABLE_ENCODER_LEN.html create mode 100644 wiwi/encoding/hex/encode/constant.TABLE_ENCODER_LEN.html create mode 100644 wiwi/encoding/hex/encode/static.TABLE_ENCODER_LOWER.html create mode 100644 wiwi/encoding/hex/encode/static.TABLE_ENCODER_UPPER.html create mode 100644 wiwi/encoding/hex/enum.DecodeError.html create mode 100644 wiwi/encoding/hex/fn.decode_hex.html create mode 100644 wiwi/encoding/hex/fn.encode_hex.html create mode 100644 wiwi/encoding/hex/fn.encode_hex_upper.html create mode 100644 wiwi/encoding/hex/index.html create mode 100644 wiwi/encoding/hex/sidebar-items.js create mode 100644 wiwi/encoding/hex/static.TABLE_ENCODER_LOWER.html create mode 100644 wiwi/encoding/hex/static.TABLE_ENCODER_UPPER.html create mode 100644 wiwi/encoding/index.html create mode 100644 wiwi/encoding/sidebar-items.js create mode 100644 wiwi/encoding/z85/constant.BINARY_FRAME_LEN.html create mode 100644 wiwi/encoding/z85/constant.STRING_FRAME_LEN.html create mode 100644 wiwi/encoding/z85/constant.TABLE_DECODER_LEN.html create mode 100644 wiwi/encoding/z85/constant.TABLE_ENCODER_LEN.html create mode 100644 wiwi/encoding/z85/enum.DecodeError.html create mode 100644 wiwi/encoding/z85/fn.decode_z85.html create mode 100644 wiwi/encoding/z85/fn.encode_z85.html create mode 100644 wiwi/encoding/z85/index.html create mode 100644 wiwi/encoding/z85/sidebar-items.js create mode 100644 wiwi/encoding/z85/static.TABLE_DECODER.html create mode 100644 wiwi/encoding/z85/static.TABLE_ENCODER.html create mode 100644 wiwi/encoding/z85/struct.EncodedReprInfo.html create mode 100644 wiwi/h/fn.H.html create mode 100644 wiwi/h/fn.h.html create mode 100644 wiwi/h/index.html create mode 100644 wiwi/h/sidebar-items.js create mode 100644 wiwi/macro.export_all_submodules!.html create mode 100644 wiwi/macro.export_all_submodules.html create mode 100644 wiwi/num/add_carrying/trait.AddCarrying.html create mode 100644 wiwi/num/add_checked/trait.AddChecked.html create mode 100644 wiwi/num/add_overflowing/trait.AddOverflowing.html create mode 100644 wiwi/num/add_regular/trait.Add.html create mode 100644 wiwi/num/and_regular/trait.And.html create mode 100644 wiwi/num/array_conversions/trait.ArrayConversions.html create mode 100644 wiwi/num/base/trait.Base.html create mode 100644 wiwi/num/count_bits/trait.CountBits.html create mode 100644 wiwi/num/div_checked/trait.DivChecked.html create mode 100644 wiwi/num/div_float/trait.DivFloat.html create mode 100644 wiwi/num/div_int/trait.DivInt.html create mode 100644 wiwi/num/div_overflowing/trait.DivOverflowing.html create mode 100644 wiwi/num/div_regular/trait.Div.html create mode 100644 wiwi/num/from_lossless/trait.FromF32Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromF64Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromI128Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromI16Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromI32Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromI64Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromI8Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromIsizeLossless.html create mode 100644 wiwi/num/from_lossless/trait.FromU128Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromU16Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromU32Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromU64Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromU8Lossless.html create mode 100644 wiwi/num/from_lossless/trait.FromUsizeLossless.html create mode 100644 wiwi/num/from_lossy/trait.FromF32Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromF64Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromI128Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromI16Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromI32Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromI64Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromI8Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromIsizeLossy.html create mode 100644 wiwi/num/from_lossy/trait.FromU128Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromU16Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromU32Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromU64Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromU8Lossy.html create mode 100644 wiwi/num/from_lossy/trait.FromUsizeLossy.html create mode 100644 wiwi/num/index.html create mode 100644 wiwi/num/into_lossless/trait.IntoF32Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoF64Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoI128Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoI16Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoI32Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoI64Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoI8Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoIsizeLossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoU128Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoU16Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoU32Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoU64Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoU8Lossless.html create mode 100644 wiwi/num/into_lossless/trait.IntoUsizeLossless.html create mode 100644 wiwi/num/into_lossy/trait.IntoF32Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoF64Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoI128Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoI16Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoI32Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoI64Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoI8Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoIsizeLossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoU128Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoU16Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoU32Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoU64Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoU8Lossy.html create mode 100644 wiwi/num/into_lossy/trait.IntoUsizeLossy.html create mode 100644 wiwi/num/mul_checked/trait.MulChecked.html create mode 100644 wiwi/num/mul_overflowing/trait.MulOverflowing.html create mode 100644 wiwi/num/mul_regular/trait.Mul.html create mode 100644 wiwi/num/mul_unchecked/trait.MulUnchecked.html create mode 100644 wiwi/num/mul_widening/trait.MulWidening.html create mode 100644 wiwi/num/narrowing/trait.Narrowing.html create mode 100644 wiwi/num/neg_checked/trait.NegChecked.html create mode 100644 wiwi/num/neg_regular/trait.Neg.html create mode 100644 wiwi/num/not_regular/trait.Not.html create mode 100644 wiwi/num/or_regular/trait.Or.html create mode 100644 wiwi/num/rem_checked/trait.RemChecked.html create mode 100644 wiwi/num/rem_regular/trait.Rem.html create mode 100644 wiwi/num/shl_checked/trait.ShlChecked.html create mode 100644 wiwi/num/shl_regular/trait.Shl.html create mode 100644 wiwi/num/shr_checked/trait.ShrChecked.html create mode 100644 wiwi/num/shr_regular/trait.Shr.html create mode 100644 wiwi/num/sidebar-items.js create mode 100644 wiwi/num/signedness/trait.IntSigned.html create mode 100644 wiwi/num/signedness/trait.IntUnsigned.html create mode 100644 wiwi/num/sub_borrowing/trait.SubBorrowing.html create mode 100644 wiwi/num/sub_checked/trait.SubChecked.html create mode 100644 wiwi/num/sub_overflowing/trait.SubOverflowing.html create mode 100644 wiwi/num/sub_regular/trait.Sub.html create mode 100644 wiwi/num/trait.Add.html create mode 100644 wiwi/num/trait.AddCarrying.html create mode 100644 wiwi/num/trait.AddChecked.html create mode 100644 wiwi/num/trait.AddOverflowing.html create mode 100644 wiwi/num/trait.And.html create mode 100644 wiwi/num/trait.ArrayConversions.html create mode 100644 wiwi/num/trait.Base.html create mode 100644 wiwi/num/trait.CountBits.html create mode 100644 wiwi/num/trait.Div.html create mode 100644 wiwi/num/trait.DivChecked.html create mode 100644 wiwi/num/trait.DivFloat.html create mode 100644 wiwi/num/trait.DivInt.html create mode 100644 wiwi/num/trait.DivOverflowing.html create mode 100644 wiwi/num/trait.FromF32Lossless.html create mode 100644 wiwi/num/trait.FromF32Lossy.html create mode 100644 wiwi/num/trait.FromF64Lossless.html create mode 100644 wiwi/num/trait.FromF64Lossy.html create mode 100644 wiwi/num/trait.FromI128Lossless.html create mode 100644 wiwi/num/trait.FromI128Lossy.html create mode 100644 wiwi/num/trait.FromI16Lossless.html create mode 100644 wiwi/num/trait.FromI16Lossy.html create mode 100644 wiwi/num/trait.FromI32Lossless.html create mode 100644 wiwi/num/trait.FromI32Lossy.html create mode 100644 wiwi/num/trait.FromI64Lossless.html create mode 100644 wiwi/num/trait.FromI64Lossy.html create mode 100644 wiwi/num/trait.FromI8Lossless.html create mode 100644 wiwi/num/trait.FromI8Lossy.html create mode 100644 wiwi/num/trait.FromIsizeLossless.html create mode 100644 wiwi/num/trait.FromIsizeLossy.html create mode 100644 wiwi/num/trait.FromU128Lossless.html create mode 100644 wiwi/num/trait.FromU128Lossy.html create mode 100644 wiwi/num/trait.FromU16Lossless.html create mode 100644 wiwi/num/trait.FromU16Lossy.html create mode 100644 wiwi/num/trait.FromU32Lossless.html create mode 100644 wiwi/num/trait.FromU32Lossy.html create mode 100644 wiwi/num/trait.FromU64Lossless.html create mode 100644 wiwi/num/trait.FromU64Lossy.html create mode 100644 wiwi/num/trait.FromU8Lossless.html create mode 100644 wiwi/num/trait.FromU8Lossy.html create mode 100644 wiwi/num/trait.FromUsizeLossless.html create mode 100644 wiwi/num/trait.FromUsizeLossy.html create mode 100644 wiwi/num/trait.IntSigned.html create mode 100644 wiwi/num/trait.IntUnsigned.html create mode 100644 wiwi/num/trait.IntoF32Lossless.html create mode 100644 wiwi/num/trait.IntoF32Lossy.html create mode 100644 wiwi/num/trait.IntoF64Lossless.html create mode 100644 wiwi/num/trait.IntoF64Lossy.html create mode 100644 wiwi/num/trait.IntoI128Lossless.html create mode 100644 wiwi/num/trait.IntoI128Lossy.html create mode 100644 wiwi/num/trait.IntoI16Lossless.html create mode 100644 wiwi/num/trait.IntoI16Lossy.html create mode 100644 wiwi/num/trait.IntoI32Lossless.html create mode 100644 wiwi/num/trait.IntoI32Lossy.html create mode 100644 wiwi/num/trait.IntoI64Lossless.html create mode 100644 wiwi/num/trait.IntoI64Lossy.html create mode 100644 wiwi/num/trait.IntoI8Lossless.html create mode 100644 wiwi/num/trait.IntoI8Lossy.html create mode 100644 wiwi/num/trait.IntoIsizeLossless.html create mode 100644 wiwi/num/trait.IntoIsizeLossy.html create mode 100644 wiwi/num/trait.IntoU128Lossless.html create mode 100644 wiwi/num/trait.IntoU128Lossy.html create mode 100644 wiwi/num/trait.IntoU16Lossless.html create mode 100644 wiwi/num/trait.IntoU16Lossy.html create mode 100644 wiwi/num/trait.IntoU32Lossless.html create mode 100644 wiwi/num/trait.IntoU32Lossy.html create mode 100644 wiwi/num/trait.IntoU64Lossless.html create mode 100644 wiwi/num/trait.IntoU64Lossy.html create mode 100644 wiwi/num/trait.IntoU8Lossless.html create mode 100644 wiwi/num/trait.IntoU8Lossy.html create mode 100644 wiwi/num/trait.IntoUsizeLossless.html create mode 100644 wiwi/num/trait.IntoUsizeLossy.html create mode 100644 wiwi/num/trait.Mul.html create mode 100644 wiwi/num/trait.MulChecked.html create mode 100644 wiwi/num/trait.MulOverflowing.html create mode 100644 wiwi/num/trait.MulUnchecked.html create mode 100644 wiwi/num/trait.MulWidening.html create mode 100644 wiwi/num/trait.Narrowing.html create mode 100644 wiwi/num/trait.Neg.html create mode 100644 wiwi/num/trait.NegChecked.html create mode 100644 wiwi/num/trait.Not.html create mode 100644 wiwi/num/trait.Or.html create mode 100644 wiwi/num/trait.Rem.html create mode 100644 wiwi/num/trait.RemChecked.html create mode 100644 wiwi/num/trait.Shl.html create mode 100644 wiwi/num/trait.ShlChecked.html create mode 100644 wiwi/num/trait.Shr.html create mode 100644 wiwi/num/trait.ShrChecked.html create mode 100644 wiwi/num/trait.Sub.html create mode 100644 wiwi/num/trait.SubBorrowing.html create mode 100644 wiwi/num/trait.SubChecked.html create mode 100644 wiwi/num/trait.SubOverflowing.html create mode 100644 wiwi/num/trait.Widening.html create mode 100644 wiwi/num/trait.Xor.html create mode 100644 wiwi/num/widening/trait.Widening.html create mode 100644 wiwi/num/xor_regular/trait.Xor.html create mode 100644 wiwi/prelude/derive.Clone.html create mode 100644 wiwi/prelude/derive.Debug.html create mode 100644 wiwi/prelude/derive.Eq.html create mode 100644 wiwi/prelude/derive.Ord.html create mode 100644 wiwi/prelude/derive.PartialEq.html create mode 100644 wiwi/prelude/derive.PartialOrd.html create mode 100644 wiwi/prelude/macro.vec!.html create mode 100644 wiwi/prelude/macro.vec.html create mode 100644 wiwi/prelude/trait.Clone.html create mode 100644 wiwi/prelude/trait.Debug.html create mode 100644 wiwi/prelude/trait.Display.html create mode 100644 wiwi/prelude/trait.Eq.html create mode 100644 wiwi/prelude/trait.Ord.html create mode 100644 wiwi/prelude/trait.PartialEq.html create mode 100644 wiwi/prelude/trait.PartialOrd.html create mode 100644 wiwi/prelude/vec/index.html create mode 100644 wiwi/prelude/vec/sidebar-items.js create mode 100644 wiwi/prelude/vec/struct.Drain.html create mode 100644 wiwi/prelude/vec/struct.ExtractIf.html create mode 100644 wiwi/prelude/vec/struct.IntoIter.html create mode 100644 wiwi/prelude/vec/struct.Splice.html create mode 100644 wiwi/prelude/vec/struct.Vec.html create mode 100644 wiwi/util/index.html create mode 100644 wiwi/util/macro.export_all_submodules!.html create mode 100644 wiwi/util/macro.export_all_submodules.html create mode 100644 wiwi/util/sidebar-items.js create mode 100644 wiwi/util_unsafe/encoding_utils/struct.ChunkedSlice.html create mode 100644 wiwi/util_unsafe/encoding_utils/struct.UnsafeBufWriteGuard.html create mode 100644 wiwi/util_unsafe/index.html create mode 100644 wiwi/util_unsafe/sidebar-items.js create mode 100644 wiwi/util_unsafe/struct.ChunkedSlice.html create mode 100644 wiwi/util_unsafe/struct.UnsafeBufWriteGuard.html diff --git a/search-index.js b/search-index.js index 05fc27e78..b31a4aee2 100644 --- a/search-index.js +++ b/search-index.js @@ -1,4 +1,4 @@ -var searchIndex = new Map(JSON.parse('[["wiwi",{"t":"CQCCCCKKPGKKEPRRKKKKKKKKKKRRKRRKEPEPGRRRPRFFGKKEPFKKKKKKFNNHHNNNMMQQQNMMMQNNNNNNNQQQNNNQQQQHMNQQNNMNNQNNNNNNNNHQQMMNNNHNNNMMMNNNNNNNNQNNNNNNNNNNNMMNNNQNNNNNMNQQNNHNNNNNNHHNNNQNHHNNMMHHNNNNMMNNQNHNCCCCCCQCCCCCCCQFKFKFIFHMHNMNNHMMNNHHNNKKPGPRKMMNMFFPFFFPFFGFCCCCCOFFFFFFFFFFFGFFFFFFFPFFFFFPFFFOOFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFGFKPKYFFFFFKPFFFPKKKPKIPKKKMMMMMMMMMHHHNNMFFFFFFFFFFFFKFFFKRRRFFFFFFFFKFFFFFFFMHHHHHHMMMMMMMHHFFFFRFFFKFFFFFFFFFFFFFFFFFFFHHHMHHHHCFFFFFPKPKPKGKRFMMNNNMMNNNNNNFFFIFKMFFKKMMNNFFFFFCCCCCQQCQQCCCQQCCCQQQQQQCQQQCQCCCCCCQCQQCCCCCCCCQQQCCCCQQCQCQCCCCQCQCCQCCCCCCCCCQCCCQQQCCCCCCCQQCQQFKKFIFMNMNNMMNNNNKFMHHQQCFSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSHHHHSSSSSSIISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSHHHHHHSSSSSSSSSSSSSSSSSSSSSSSSHHHFFFFFFFFFFFFFFFIIIIHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFHOOOOFFHHHHHPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPHQQKFRKRRHMMNKKMMFFFFFFFFFFFFFFFFSFSFFFSHHHHKYKMNMKYPPPKYGKYKYFNMMNNNNHNHHHNHHHHHNMKKRRKKGKKKMMMHMMMKYMKFFNNNNNNNNNNNNNHHNNNNNNCSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSFFFFFIIIIIIIIIIICIIIIIGCFFFFNNNNNNNNNNNNNNNNFFGFKPKYFFFFFKPFFFPKKKPKIPKKKMMMMMMMMMHHNNMKFRKKRRRFFFHMHMQHMHHKFKYKRFMMMNNMNNNNNNNNNNNNNNHHHHHSSSSSSSSSSKRHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHPHGHHHHPHHHHHHPHHPHHHHHFHHHHHHHFHHHHGHHQQHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFFSSFFFFFFKFFKKFFFFFKFKFFFRKRRKFFFFFFKFFFFFFFKFFKFFKKFNNNNNNMNNHNNNNNNNNNHNNNMNNNNNNNNNNNMNHHMNNNNNNMNNNNNNNNNNNNNNNNNNNMMNNNHHNNNNNNMNNHHHNNNNNNNNNMHMNNNNNNNNNNHNYKKYKRKKKFFKKKYKKKKKKYMFFFUKHHHOHHHHHOHHHQHOHHHHHHNHHOHHFPPPGFFGPPPPGFFPPPPPGPGPPPFIIIIIIIIIIIIPFFPFPFFPPKKKKKKKKKKKKGPRRKPPGKGKKKKKKKPKKKKPKKKKKKKRRRRRRRRRRRRRRRRFKFFFFFKKKRRKKKKKKRKRPFRPMMMMMMMMMMMMMMMNMMMMMOOOMMMMMMMMMMMMMMMMOOMMMFFFPGPFFFFKKNNNNNNNNNNNNNNNNNNNNNNNNNHHCHHHHHHHHHHHHHHHHHHHHHHHHHHFKQCCCCCKKKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRKYKYGKKPKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNNNQNNKKKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRKYKYGKKPKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNNNQNNKKKYKYYKYKKKYPRRKKKKKKKYKRKRRKPPGKYRKYKYGKKPKKKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNMMNNQNNKKKYKYYKYKKKYPRRKKKKKKKKYKKRRKRRKPPGKYRRRKYKYGKKPKKKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNMNNNNNNNNNHHNNNQNNNXXQNNNNMMNNQNNKKKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRKYKYGKKPKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNNNQNNEEEEEEEEEEEEEEEEEFFRFKHQQHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHGPPFFFKFKFFFFFKPNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNOOOMNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNFFFOOOPFFFPGRTFFRKFKKKKKCNNIIIIIIIIIIIIIIMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIICCCQNNMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIRKKKMMMMMMMMMRRRRRRRRRKKKRMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMRRRRRRRRRFRRRRRRRRRFKKKKKKKKRRRMMMMMMMMMMMMMMIIIIIIIIIIIIIIMIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMMMMMMMMMMIIIIIIIMMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMQMMMMMMMMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMMMMMMMMMMRRRRRRRRKKRRMMMMMMMMMMMMMMMMMMMMFFFFFFFFFFFRFFRFFFFFFFFKKFFFFFFFMNNNNNHHHHHHMMMMMMNCHNNNHNHHFFFFRFFFKFFFFFFFFFFFFFFFFFFFHHMHHHHHCHFFFFFPKPKPKGKRFMMNNNMMNNNNNNFCSSSPPFFFFFFFFFFFFGPPPHHHFFFPGFFPFQFFSSSSSSSSSSQHHHSCHHSSCCCCCQQCQCCCCCQQCCCCQQQQQQCQQQQCCQQQCCCCCCQCQQQCCCCCCCCCQQQCCQCCQQCQCQCCCCQCCQCCCCCCQQCCCCCCCCQCCCQCQQQCCCCCQQCCQQQFKFKFIFFNNHMNHNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNHNNNNHNNNNHNNNNNNNNNNNNNNNNNNNNNNKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNHHQQQQQQQQQQCFSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSHHHHSSSSSSIISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSHHHHHHSSSSSSSSSSSSSSSSSSSSSSSSHHHFFFFFFFFFFFFFFFIIIIHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNHNNNNNNNHNNNNPPPKPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFPPPPPPPPPPPPPPPPPPPPRPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNMHNNNNNNNNNNNNNNMNNMMNNNNNMMNNNNNNNNNNNNQQKFRKRRNNNNNNNHNMNMNNNNNNNFFGPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKPGPRKNNNNNNMNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFSFSFFFSNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKYKMNMKYPPPKYGKYKYFNNNNNNNNNNNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNHNHHHNHHHHHNMNNNNNNNNNNNNNPFFFGPPFFPFFGPFNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNOFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFGFFFFFFFPFFFFFPFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONFFFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFGFFFFFFFFPPFFFFFGFFPPFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKRRKKGKKKMMNNNNNNNNNNMNNNNHMNNNNNMNMNNKYMFFFPPFGFFHHNNNNNNNNNNNNNNNNNCHHNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNHNNNNNNNNNHHHNNNNNHHNNNNNNNNNNNNNNNNNNNNNNNNHHHHSSSSSSSSKFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNCSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIICIIIIIGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFNNNNNNNNNNGFKPKYFFFFFKPFFFPKKKPKIPKKKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMMMMMMNNNNNNNHNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNMNNFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNHNNNHHNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNHNNNNNNHHNNHNNNNNNNHHHHNNNNNNNHNNNNHNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNKFRKKRRRFFFHMHNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNQHMNNNNHHNNNNNNNNNNNNNNKFFKYKRFFNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNHHHHHSSSSSSSSSSKRHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHPHGHHHHPHHHHHHPHHPHHHHHFHHHHHHHFHHHHGHHNNNNNNNNNNNNNNNNQQNNNNNNNNNNNNHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHPPPPFFPKFFFFPPPPPFPPFPPFGPPPPPPFPPPFFPKFFPPPPPPPPPPIKPFPIKGFFPPFFFFFFPFPPPPPKPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNHNNNNNNNNNNNHNNNNNMNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNHNMNNNNNNNNNNNHNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKKNNNNMMMNNNNMNNNNNNNNNMNNNNNNMNNNNSSFFFFFFKFFKKFFFFFKFKFFFRKRRKFFFFFFKFFFFFFFKFFKFFKKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNMNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNYKKYKRKKKFFKKKYKKKKKKYMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTFFTFUTTKTNHHHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNHHNNNNNNNNNNNHHNNNNNNNNNNNOHHHNNQNHOHHHNNNNNNNHHNNNNNHNHNNNNNNNNNNNNNNNHOHNHNFPTTTPPFPFGFFGRTTPPPPGPGFFFFKTTFPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTPGPGPTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTPPFIIIIIIIIIIIIPFFPFPFFPPKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKKKKKKKKKGPRRKPPGKGKKKKKKKPKKKKPKKKKKKKRRRRRRRRRRRRRRRRFKFFFFFKKKRRKKKKKKRKRPFRPMMNNNNMMMMMMMMMNNNNNNNNNNNNNNNNNNNNMNNMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMMNOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMNNNNNNMNNNNNNMMMNMMMMNNNNOOMNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCCCKKFKKFIMNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNMNNNNNNNNNNNNCCCCKMMMMMMMMMMMMMMMMMKKKMMMMMMMMKKFNNNNMNNNNNMNNMNNNNNOOIINNNNNININIIIIOOOOOOOOOOOOOOOOFINNNNIIIIIIIIIIIIIICCCCCCCCKKMMMMKKKKKKKKMMMMHHMMMMHMMMMMMMMMHMMMMMMMMMNNMMHMNMNKKFKKFIMMMMGGFFFPFPFFFFFFFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNOOKKFKKKKKKKKKKKKFKIMMMMMMMNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNNMMMMMMNMNKKMNMMMMMMMHMMMMMIIIIIIIIIIIIKIMMFGPFPFIKPKHNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNHNNNNNHHHNHNNNNNNNNNNNNNNNNHQFGFPPPFFSSPPFFGPFPFPPPPHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNCCCCCKKFKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNNNQNNKKFKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNNNQNNKKFKYKYYKYKKKYPRRKKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNMMNNQNNKKFKYKYYKYKKKYPRRKKKKKKKKYKKRRKRRKPPGKYRRRRKYKYGKKPFKKKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNMNNNNNNNNNHHNNNQNNNXXMMQNNNNMMNNQNNKKFKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNNNQNNEEEEEEEEEEEEEEEEEFFFFFFFFFFTFTFKHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNONOONONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFTRFKNNHQQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNHNNHNHNHNHNNNNNNNHNNNNNHHNHHNHNNNNNNNNNNNNNNHNNNNHHNNNNNNHNHNHNHNNHNHNNHNHNNNNNNNNNNNNNNNNHHHHHNHNHNHNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFFFPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTRTFFRKFKKKKKKNNNCNNMMMIIIIIIIIIIIIIINMNMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIINIIIIIIIMNMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIINCCCNQMNNNMMMNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIRKKKMMMMMMMMMRRRRRRRRRKKKRMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMRRRRRRRRRTFRRRRRRRRRFKKKKKKKKRRRMMNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMMNNNNNNNNNNNNNNNMNMNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNIIIIIIIIIIIIIINNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIINNNNNMNNMNNMNNMNNNNNMNNMMNNMNNNNNMNNMNNMNNIIIIIIIMMNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIINNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMMNNNNNNNNNNMMMNNNNNNNNNNNNMMMNNNNNNNNNNNNMMNNNNNNNNNNMMMNNNNNNNNNNNNMMMNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNMNNNNNMMNNNNNNNNNNMNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNMMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMMNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMNNMMNNMMNNMNNNNNMMNNMMNNRRRRRRRRKKRRMMMMMMMMMMMMMMMMMMMMFFFFFFFFFKFFFKRRRFFFFFFFFKFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHHHMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFRFFFKFFFFFFFFFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHMHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFPKPKPKGKRFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNMNNNMNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFIFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNFFFFPPFFIFFFFFSPPFFFFPFFFFFGIFFPNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSPPFFFFFFFFFFFFGPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPFFFFGFFFPFGGNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKFPGFFPKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNFFPFFPIFFFFNNHNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHNNHNNHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHFFTTTTTFFFSTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSSSSSSSSSSFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN","n":["_changelog","panic","prelude","rust_alloc","rust_core","rust_std","AsMut","AsRef","Borrowed","Cow","DoubleEndedIterator","Drop","Err","","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Future","Into","IntoFuture","","IntoIter","IntoIterator","Item","","Iterator","None","","Ok","","Option","Output","","","Owned","","PhantomData","PhantomPinned","Result","Send","Sized","Some","","String","Sync","ToOwned","ToString","TryFrom","TryInto","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","any","array_chunks","as_mut","as_ref","assert","assert_eq","assert_ne","by_ref","call","call_mut","call_once","cfg","chain","clone_into","cloned","cmp","cmp_by","collect","collect_into","column","compile_error","concat","copied","count","cycle","dbg","debug_assert","debug_assert_eq","debug_assert_ne","drop","","enumerate","eprint","eprintln","eq","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","forget","format","format_args","from","from_iter","fuse","ge","gt","identity","inspect","intersperse","intersperse_with","into","into_future","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","len","line","lt","map","map_while","map_windows","max","max_by","max_by_key","min","min_by","min_by_key","ne","next","next_back","next_chunk","nth","nth_back","panic","partial_cmp","partial_cmp_by","partition","partition_in_place","peekable","poll","position","print","println","product","reduce","replace","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","swap","take","","take_while","to_owned","to_string","transmute","transmute_copy","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","unreachable","unzip","zeroed","zip","alloc","borrow","boxed","collections","ffi","fmt","format","rc","slice","str","string","sync","task","vec","","AllocError","Allocator","Global","GlobalAlloc","Layout","LayoutErr","LayoutError","alloc","","alloc_zeroed","","allocate","allocate_zeroed","by_ref","dealloc","","deallocate","grow","grow_zeroed","handle_alloc_error","realloc","","shrink","Borrow","BorrowMut","Borrowed","Cow","Owned","","ToOwned","borrow","borrow_mut","clone_into","to_owned","Box","ThinBox","AllocError","BTreeMap","BTreeSet","BinaryHeap","CapacityOverflow","LinkedList","TryReserveError","TryReserveErrorKind","VecDeque","binary_heap","btree_map","btree_set","linked_list","vec_deque","layout","BinaryHeap","Drain","DrainSorted","IntoIter","IntoIterSorted","Iter","PeekMut","BTreeMap","Cursor","CursorMut","CursorMutKey","Entry","ExtractIf","IntoIter","IntoKeys","IntoValues","Iter","IterMut","Keys","Occupied","OccupiedEntry","OccupiedError","Range","RangeMut","UnorderedKeyError","Vacant","VacantEntry","Values","ValuesMut","entry","value","BTreeSet","Cursor","CursorMut","CursorMutKey","Difference","ExtractIf","Intersection","IntoIter","Iter","Range","SymmetricDifference","Union","UnorderedKeyError","Cursor","CursorMut","ExtractIf","IntoIter","Iter","IterMut","LinkedList","Drain","IntoIter","Iter","IterMut","VecDeque","CString","FromVecWithNulError","IntoStringError","NulError","c_str","CString","FromVecWithNulError","IntoStringError","NulError","Alignment","Arguments","Binary","Center","Debug","","DebugList","DebugMap","DebugSet","DebugStruct","DebugTuple","Display","Err","Error","Formatter","FromFn","Left","LowerExp","LowerHex","Octal","Ok","Pointer","Result","Right","UpperExp","UpperHex","Write","fmt","","","","","","","","","format","from_fn","write","write_char","write_fmt","write_str","Rc","UniqueRc","Weak","ArrayChunks","ArrayChunksMut","ArrayWindows","ChunkBy","ChunkByMut","Chunks","ChunksExact","ChunksExactMut","ChunksMut","Concat","EscapeAscii","Iter","IterMut","Join","Output","","","RChunks","RChunksExact","RChunksExactMut","RChunksMut","RSplit","RSplitMut","RSplitN","RSplitNMut","SliceIndex","Split","SplitInclusive","SplitInclusiveMut","SplitMut","SplitN","SplitNMut","Windows","concat","from_mut","from_mut_ptr_range","from_ptr_range","from_raw_parts","from_raw_parts_mut","from_ref","get","get_mut","get_unchecked","get_unchecked_mut","index","index_mut","join","range","try_range","Bytes","CharIndices","Chars","EncodeUtf16","Err","EscapeDebug","EscapeDefault","EscapeUnicode","FromStr","Lines","LinesAny","MatchIndices","Matches","ParseBoolError","RMatchIndices","RMatches","RSplit","RSplitN","RSplitTerminator","Split","SplitAsciiWhitespace","SplitInclusive","SplitN","SplitTerminator","SplitWhitespace","Utf8Chunk","Utf8Chunks","Utf8Error","from_boxed_utf8_unchecked","from_raw_parts","from_raw_parts_mut","from_str","from_utf8","from_utf8_mut","from_utf8_unchecked","from_utf8_unchecked_mut","pattern","CharArrayRefSearcher","CharArraySearcher","CharPredicateSearcher","CharSearcher","CharSliceSearcher","Done","DoubleEndedSearcher","Match","Pattern","Reject","ReverseSearcher","SearchStep","Searcher","","StrSearcher","haystack","into_searcher","is_contained_in","is_prefix_of","is_suffix_of","next","next_back","next_match","next_match_back","next_reject","next_reject_back","strip_prefix_of","strip_suffix_of","Drain","FromUtf16Error","FromUtf8Error","ParseError","String","ToString","to_string","Arc","Weak","LocalWake","Wake","wake","","wake_by_ref","","Drain","ExtractIf","IntoIter","Splice","Vec","alloc","any","arch","array","ascii","assert","assert_eq","assert_matches","assert_ne","assert_unsafe_precondition","async_iter","borrow","cell","cfg","cfg_match","char","clone","cmp","column","compile_error","concat","concat_bytes","concat_idents","const_format_args","convert","debug_assert","debug_assert_eq","debug_assert_ne","default","env","error","f128","f16","f32","f64","ffi","file","fmt","format_args","format_args_nl","future","hash","hint","i128","i16","i32","i64","i8","include","include_bytes","include_str","intrinsics","io","isize","iter","line","log_syntax","marker","matches","mem","module_path","net","num","ops","option","option_env","panic","","panicking","pat","pattern_type","pin","prelude","primitive","ptr","range","result","simd","slice","str","stringify","sync","task","time","todo","trace_macros","try","u128","u16","u32","u64","u8","ub_checks","unicode","unimplemented","unreachable","usize","write","writeln","AllocError","Allocator","GlobalAlloc","Layout","LayoutErr","LayoutError","alloc","alloc_zeroed","allocate","allocate_zeroed","by_ref","dealloc","deallocate","grow","grow_zeroed","realloc","shrink","Any","TypeId","type_id","type_name","type_name_of_val","asm","global_asm","x86_64","CpuidResult","_CMP_EQ_OQ","_CMP_EQ_OS","_CMP_EQ_UQ","_CMP_EQ_US","_CMP_FALSE_OQ","_CMP_FALSE_OS","_CMP_GE_OQ","_CMP_GE_OS","_CMP_GT_OQ","_CMP_GT_OS","_CMP_LE_OQ","_CMP_LE_OS","_CMP_LT_OQ","_CMP_LT_OS","_CMP_NEQ_OQ","_CMP_NEQ_OS","_CMP_NEQ_UQ","_CMP_NEQ_US","_CMP_NGE_UQ","_CMP_NGE_US","_CMP_NGT_UQ","_CMP_NGT_US","_CMP_NLE_UQ","_CMP_NLE_US","_CMP_NLT_UQ","_CMP_NLT_US","_CMP_ORD_Q","_CMP_ORD_S","_CMP_TRUE_UQ","_CMP_TRUE_US","_CMP_UNORD_Q","_CMP_UNORD_S","_MM_CMPINT_ENUM","_MM_CMPINT_EQ","_MM_CMPINT_FALSE","_MM_CMPINT_LE","_MM_CMPINT_LT","_MM_CMPINT_NE","_MM_CMPINT_NLE","_MM_CMPINT_NLT","_MM_CMPINT_TRUE","_MM_EXCEPT_DENORM","_MM_EXCEPT_DIV_ZERO","_MM_EXCEPT_INEXACT","_MM_EXCEPT_INVALID","_MM_EXCEPT_MASK","_MM_EXCEPT_OVERFLOW","_MM_EXCEPT_UNDERFLOW","_MM_FLUSH_ZERO_MASK","_MM_FLUSH_ZERO_OFF","_MM_FLUSH_ZERO_ON","_MM_FROUND_CEIL","_MM_FROUND_CUR_DIRECTION","_MM_FROUND_FLOOR","_MM_FROUND_NEARBYINT","_MM_FROUND_NINT","_MM_FROUND_NO_EXC","_MM_FROUND_RAISE_EXC","_MM_FROUND_RINT","_MM_FROUND_TO_NEAREST_INT","_MM_FROUND_TO_NEG_INF","_MM_FROUND_TO_POS_INF","_MM_FROUND_TO_ZERO","_MM_FROUND_TRUNC","_MM_GET_EXCEPTION_MASK","_MM_GET_EXCEPTION_STATE","_MM_GET_FLUSH_ZERO_MODE","_MM_GET_ROUNDING_MODE","_MM_HINT_ET0","_MM_HINT_ET1","_MM_HINT_NTA","_MM_HINT_T0","_MM_HINT_T1","_MM_HINT_T2","_MM_MANTISSA_NORM_ENUM","_MM_MANTISSA_SIGN_ENUM","_MM_MANT_NORM_1_2","_MM_MANT_NORM_P5_1","_MM_MANT_NORM_P5_2","_MM_MANT_NORM_P75_1P5","_MM_MANT_SIGN_NAN","_MM_MANT_SIGN_SRC","_MM_MANT_SIGN_ZERO","_MM_MASK_DENORM","_MM_MASK_DIV_ZERO","_MM_MASK_INEXACT","_MM_MASK_INVALID","_MM_MASK_MASK","_MM_MASK_OVERFLOW","_MM_MASK_UNDERFLOW","_MM_PERM_AAAA","_MM_PERM_AAAB","_MM_PERM_AAAC","_MM_PERM_AAAD","_MM_PERM_AABA","_MM_PERM_AABB","_MM_PERM_AABC","_MM_PERM_AABD","_MM_PERM_AACA","_MM_PERM_AACB","_MM_PERM_AACC","_MM_PERM_AACD","_MM_PERM_AADA","_MM_PERM_AADB","_MM_PERM_AADC","_MM_PERM_AADD","_MM_PERM_ABAA","_MM_PERM_ABAB","_MM_PERM_ABAC","_MM_PERM_ABAD","_MM_PERM_ABBA","_MM_PERM_ABBB","_MM_PERM_ABBC","_MM_PERM_ABBD","_MM_PERM_ABCA","_MM_PERM_ABCB","_MM_PERM_ABCC","_MM_PERM_ABCD","_MM_PERM_ABDA","_MM_PERM_ABDB","_MM_PERM_ABDC","_MM_PERM_ABDD","_MM_PERM_ACAA","_MM_PERM_ACAB","_MM_PERM_ACAC","_MM_PERM_ACAD","_MM_PERM_ACBA","_MM_PERM_ACBB","_MM_PERM_ACBC","_MM_PERM_ACBD","_MM_PERM_ACCA","_MM_PERM_ACCB","_MM_PERM_ACCC","_MM_PERM_ACCD","_MM_PERM_ACDA","_MM_PERM_ACDB","_MM_PERM_ACDC","_MM_PERM_ACDD","_MM_PERM_ADAA","_MM_PERM_ADAB","_MM_PERM_ADAC","_MM_PERM_ADAD","_MM_PERM_ADBA","_MM_PERM_ADBB","_MM_PERM_ADBC","_MM_PERM_ADBD","_MM_PERM_ADCA","_MM_PERM_ADCB","_MM_PERM_ADCC","_MM_PERM_ADCD","_MM_PERM_ADDA","_MM_PERM_ADDB","_MM_PERM_ADDC","_MM_PERM_ADDD","_MM_PERM_BAAA","_MM_PERM_BAAB","_MM_PERM_BAAC","_MM_PERM_BAAD","_MM_PERM_BABA","_MM_PERM_BABB","_MM_PERM_BABC","_MM_PERM_BABD","_MM_PERM_BACA","_MM_PERM_BACB","_MM_PERM_BACC","_MM_PERM_BACD","_MM_PERM_BADA","_MM_PERM_BADB","_MM_PERM_BADC","_MM_PERM_BADD","_MM_PERM_BBAA","_MM_PERM_BBAB","_MM_PERM_BBAC","_MM_PERM_BBAD","_MM_PERM_BBBA","_MM_PERM_BBBB","_MM_PERM_BBBC","_MM_PERM_BBBD","_MM_PERM_BBCA","_MM_PERM_BBCB","_MM_PERM_BBCC","_MM_PERM_BBCD","_MM_PERM_BBDA","_MM_PERM_BBDB","_MM_PERM_BBDC","_MM_PERM_BBDD","_MM_PERM_BCAA","_MM_PERM_BCAB","_MM_PERM_BCAC","_MM_PERM_BCAD","_MM_PERM_BCBA","_MM_PERM_BCBB","_MM_PERM_BCBC","_MM_PERM_BCBD","_MM_PERM_BCCA","_MM_PERM_BCCB","_MM_PERM_BCCC","_MM_PERM_BCCD","_MM_PERM_BCDA","_MM_PERM_BCDB","_MM_PERM_BCDC","_MM_PERM_BCDD","_MM_PERM_BDAA","_MM_PERM_BDAB","_MM_PERM_BDAC","_MM_PERM_BDAD","_MM_PERM_BDBA","_MM_PERM_BDBB","_MM_PERM_BDBC","_MM_PERM_BDBD","_MM_PERM_BDCA","_MM_PERM_BDCB","_MM_PERM_BDCC","_MM_PERM_BDCD","_MM_PERM_BDDA","_MM_PERM_BDDB","_MM_PERM_BDDC","_MM_PERM_BDDD","_MM_PERM_CAAA","_MM_PERM_CAAB","_MM_PERM_CAAC","_MM_PERM_CAAD","_MM_PERM_CABA","_MM_PERM_CABB","_MM_PERM_CABC","_MM_PERM_CABD","_MM_PERM_CACA","_MM_PERM_CACB","_MM_PERM_CACC","_MM_PERM_CACD","_MM_PERM_CADA","_MM_PERM_CADB","_MM_PERM_CADC","_MM_PERM_CADD","_MM_PERM_CBAA","_MM_PERM_CBAB","_MM_PERM_CBAC","_MM_PERM_CBAD","_MM_PERM_CBBA","_MM_PERM_CBBB","_MM_PERM_CBBC","_MM_PERM_CBBD","_MM_PERM_CBCA","_MM_PERM_CBCB","_MM_PERM_CBCC","_MM_PERM_CBCD","_MM_PERM_CBDA","_MM_PERM_CBDB","_MM_PERM_CBDC","_MM_PERM_CBDD","_MM_PERM_CCAA","_MM_PERM_CCAB","_MM_PERM_CCAC","_MM_PERM_CCAD","_MM_PERM_CCBA","_MM_PERM_CCBB","_MM_PERM_CCBC","_MM_PERM_CCBD","_MM_PERM_CCCA","_MM_PERM_CCCB","_MM_PERM_CCCC","_MM_PERM_CCCD","_MM_PERM_CCDA","_MM_PERM_CCDB","_MM_PERM_CCDC","_MM_PERM_CCDD","_MM_PERM_CDAA","_MM_PERM_CDAB","_MM_PERM_CDAC","_MM_PERM_CDAD","_MM_PERM_CDBA","_MM_PERM_CDBB","_MM_PERM_CDBC","_MM_PERM_CDBD","_MM_PERM_CDCA","_MM_PERM_CDCB","_MM_PERM_CDCC","_MM_PERM_CDCD","_MM_PERM_CDDA","_MM_PERM_CDDB","_MM_PERM_CDDC","_MM_PERM_CDDD","_MM_PERM_DAAA","_MM_PERM_DAAB","_MM_PERM_DAAC","_MM_PERM_DAAD","_MM_PERM_DABA","_MM_PERM_DABB","_MM_PERM_DABC","_MM_PERM_DABD","_MM_PERM_DACA","_MM_PERM_DACB","_MM_PERM_DACC","_MM_PERM_DACD","_MM_PERM_DADA","_MM_PERM_DADB","_MM_PERM_DADC","_MM_PERM_DADD","_MM_PERM_DBAA","_MM_PERM_DBAB","_MM_PERM_DBAC","_MM_PERM_DBAD","_MM_PERM_DBBA","_MM_PERM_DBBB","_MM_PERM_DBBC","_MM_PERM_DBBD","_MM_PERM_DBCA","_MM_PERM_DBCB","_MM_PERM_DBCC","_MM_PERM_DBCD","_MM_PERM_DBDA","_MM_PERM_DBDB","_MM_PERM_DBDC","_MM_PERM_DBDD","_MM_PERM_DCAA","_MM_PERM_DCAB","_MM_PERM_DCAC","_MM_PERM_DCAD","_MM_PERM_DCBA","_MM_PERM_DCBB","_MM_PERM_DCBC","_MM_PERM_DCBD","_MM_PERM_DCCA","_MM_PERM_DCCB","_MM_PERM_DCCC","_MM_PERM_DCCD","_MM_PERM_DCDA","_MM_PERM_DCDB","_MM_PERM_DCDC","_MM_PERM_DCDD","_MM_PERM_DDAA","_MM_PERM_DDAB","_MM_PERM_DDAC","_MM_PERM_DDAD","_MM_PERM_DDBA","_MM_PERM_DDBB","_MM_PERM_DDBC","_MM_PERM_DDBD","_MM_PERM_DDCA","_MM_PERM_DDCB","_MM_PERM_DDCC","_MM_PERM_DDCD","_MM_PERM_DDDA","_MM_PERM_DDDB","_MM_PERM_DDDC","_MM_PERM_DDDD","_MM_PERM_ENUM","_MM_ROUND_DOWN","_MM_ROUND_MASK","_MM_ROUND_NEAREST","_MM_ROUND_TOWARD_ZERO","_MM_ROUND_UP","_MM_SET_EXCEPTION_MASK","_MM_SET_EXCEPTION_STATE","_MM_SET_FLUSH_ZERO_MODE","_MM_SET_ROUNDING_MODE","_MM_SHUFFLE","_MM_TRANSPOSE4_PS","_SIDD_BIT_MASK","_SIDD_CMP_EQUAL_ANY","_SIDD_CMP_EQUAL_EACH","_SIDD_CMP_EQUAL_ORDERED","_SIDD_CMP_RANGES","_SIDD_LEAST_SIGNIFICANT","_SIDD_MASKED_NEGATIVE_POLARITY","_SIDD_MASKED_POSITIVE_POLARITY","_SIDD_MOST_SIGNIFICANT","_SIDD_NEGATIVE_POLARITY","_SIDD_POSITIVE_POLARITY","_SIDD_SBYTE_OPS","_SIDD_SWORD_OPS","_SIDD_UBYTE_OPS","_SIDD_UNIT_MASK","_SIDD_UWORD_OPS","_XABORT_CAPACITY","_XABORT_CONFLICT","_XABORT_DEBUG","_XABORT_EXPLICIT","_XABORT_NESTED","_XABORT_RETRY","_XBEGIN_STARTED","_XCR_XFEATURE_ENABLED_MASK","__cpuid","__cpuid_count","__get_cpuid_max","__m128","__m128bh","__m128d","__m128h","__m128i","__m256","__m256bh","__m256d","__m256h","__m256i","__m512","__m512bh","__m512d","__m512h","__m512i","__mmask16","__mmask32","__mmask64","__mmask8","__rdtscp","_addcarry_u32","_addcarry_u64","_addcarryx_u32","_addcarryx_u64","_andn_u32","_andn_u64","_bextr2_u32","_bextr2_u64","_bextr_u32","_bextr_u64","_bextri_u32","_bextri_u64","_bittest","_bittest64","_bittestandcomplement","_bittestandcomplement64","_bittestandreset","_bittestandreset64","_bittestandset","_bittestandset64","_blcfill_u32","_blcfill_u64","_blci_u32","_blci_u64","_blcic_u32","_blcic_u64","_blcmsk_u32","_blcmsk_u64","_blcs_u32","_blcs_u64","_blsfill_u32","_blsfill_u64","_blsi_u32","_blsi_u64","_blsic_u32","_blsic_u64","_blsmsk_u32","_blsmsk_u64","_blsr_u32","_blsr_u64","_bswap","_bswap64","_bzhi_u32","_bzhi_u64","_cvtmask16_u32","_cvtmask32_u32","_cvtmask64_u64","_cvtmask8_u32","_cvtu32_mask16","_cvtu32_mask32","_cvtu32_mask8","_cvtu64_mask64","_fxrstor","_fxrstor64","_fxsave","_fxsave64","_kadd_mask16","_kadd_mask32","_kadd_mask64","_kadd_mask8","_kand_mask16","_kand_mask32","_kand_mask64","_kand_mask8","_kandn_mask16","_kandn_mask32","_kandn_mask64","_kandn_mask8","_knot_mask16","_knot_mask32","_knot_mask64","_knot_mask8","_kor_mask16","_kor_mask32","_kor_mask64","_kor_mask8","_kortest_mask16_u8","_kortest_mask32_u8","_kortest_mask64_u8","_kortest_mask8_u8","_kortestc_mask16_u8","_kortestc_mask32_u8","_kortestc_mask64_u8","_kortestc_mask8_u8","_kortestz_mask16_u8","_kortestz_mask32_u8","_kortestz_mask64_u8","_kortestz_mask8_u8","_kshiftli_mask16","_kshiftli_mask32","_kshiftli_mask64","_kshiftli_mask8","_kshiftri_mask16","_kshiftri_mask32","_kshiftri_mask64","_kshiftri_mask8","_ktest_mask16_u8","_ktest_mask32_u8","_ktest_mask64_u8","_ktest_mask8_u8","_ktestc_mask16_u8","_ktestc_mask32_u8","_ktestc_mask64_u8","_ktestc_mask8_u8","_ktestz_mask16_u8","_ktestz_mask32_u8","_ktestz_mask64_u8","_ktestz_mask8_u8","_kxnor_mask16","_kxnor_mask32","_kxnor_mask64","_kxnor_mask8","_kxor_mask16","_kxor_mask32","_kxor_mask64","_kxor_mask8","_load_mask16","_load_mask32","_load_mask64","_load_mask8","_lzcnt_u32","_lzcnt_u64","_mm256_abs_epi16","_mm256_abs_epi32","_mm256_abs_epi64","_mm256_abs_epi8","_mm256_abs_ph","_mm256_add_epi16","_mm256_add_epi32","_mm256_add_epi64","_mm256_add_epi8","_mm256_add_pd","_mm256_add_ph","_mm256_add_ps","_mm256_adds_epi16","_mm256_adds_epi8","_mm256_adds_epu16","_mm256_adds_epu8","_mm256_addsub_pd","_mm256_addsub_ps","_mm256_aesdec_epi128","_mm256_aesdeclast_epi128","_mm256_aesenc_epi128","_mm256_aesenclast_epi128","_mm256_alignr_epi32","_mm256_alignr_epi64","_mm256_alignr_epi8","_mm256_and_pd","_mm256_and_ps","_mm256_and_si256","_mm256_andnot_pd","_mm256_andnot_ps","_mm256_andnot_si256","_mm256_avg_epu16","_mm256_avg_epu8","_mm256_bcstnebf16_ps","_mm256_bcstnesh_ps","_mm256_bitshuffle_epi64_mask","_mm256_blend_epi16","_mm256_blend_epi32","_mm256_blend_pd","_mm256_blend_ps","_mm256_blendv_epi8","_mm256_blendv_pd","_mm256_blendv_ps","_mm256_broadcast_f32x2","_mm256_broadcast_f32x4","_mm256_broadcast_f64x2","_mm256_broadcast_i32x2","_mm256_broadcast_i32x4","_mm256_broadcast_i64x2","_mm256_broadcast_pd","_mm256_broadcast_ps","_mm256_broadcast_sd","_mm256_broadcast_ss","_mm256_broadcastb_epi8","_mm256_broadcastd_epi32","_mm256_broadcastmb_epi64","_mm256_broadcastmw_epi32","_mm256_broadcastq_epi64","_mm256_broadcastsd_pd","_mm256_broadcastsi128_si256","_mm256_broadcastss_ps","_mm256_broadcastw_epi16","_mm256_bslli_epi128","_mm256_bsrli_epi128","_mm256_castpd128_pd256","_mm256_castpd256_pd128","_mm256_castpd_ph","_mm256_castpd_ps","_mm256_castpd_si256","_mm256_castph128_ph256","_mm256_castph256_ph128","_mm256_castph_pd","_mm256_castph_ps","_mm256_castph_si256","_mm256_castps128_ps256","_mm256_castps256_ps128","_mm256_castps_pd","_mm256_castps_ph","_mm256_castps_si256","_mm256_castsi128_si256","_mm256_castsi256_pd","_mm256_castsi256_ph","_mm256_castsi256_ps","_mm256_castsi256_si128","_mm256_ceil_pd","_mm256_ceil_ps","_mm256_clmulepi64_epi128","_mm256_cmp_epi16_mask","_mm256_cmp_epi32_mask","_mm256_cmp_epi64_mask","_mm256_cmp_epi8_mask","_mm256_cmp_epu16_mask","_mm256_cmp_epu32_mask","_mm256_cmp_epu64_mask","_mm256_cmp_epu8_mask","_mm256_cmp_pd","_mm256_cmp_pd_mask","_mm256_cmp_ph_mask","_mm256_cmp_ps","_mm256_cmp_ps_mask","_mm256_cmpeq_epi16","_mm256_cmpeq_epi16_mask","_mm256_cmpeq_epi32","_mm256_cmpeq_epi32_mask","_mm256_cmpeq_epi64","_mm256_cmpeq_epi64_mask","_mm256_cmpeq_epi8","_mm256_cmpeq_epi8_mask","_mm256_cmpeq_epu16_mask","_mm256_cmpeq_epu32_mask","_mm256_cmpeq_epu64_mask","_mm256_cmpeq_epu8_mask","_mm256_cmpge_epi16_mask","_mm256_cmpge_epi32_mask","_mm256_cmpge_epi64_mask","_mm256_cmpge_epi8_mask","_mm256_cmpge_epu16_mask","_mm256_cmpge_epu32_mask","_mm256_cmpge_epu64_mask","_mm256_cmpge_epu8_mask","_mm256_cmpgt_epi16","_mm256_cmpgt_epi16_mask","_mm256_cmpgt_epi32","_mm256_cmpgt_epi32_mask","_mm256_cmpgt_epi64","_mm256_cmpgt_epi64_mask","_mm256_cmpgt_epi8","_mm256_cmpgt_epi8_mask","_mm256_cmpgt_epu16_mask","_mm256_cmpgt_epu32_mask","_mm256_cmpgt_epu64_mask","_mm256_cmpgt_epu8_mask","_mm256_cmple_epi16_mask","_mm256_cmple_epi32_mask","_mm256_cmple_epi64_mask","_mm256_cmple_epi8_mask","_mm256_cmple_epu16_mask","_mm256_cmple_epu32_mask","_mm256_cmple_epu64_mask","_mm256_cmple_epu8_mask","_mm256_cmplt_epi16_mask","_mm256_cmplt_epi32_mask","_mm256_cmplt_epi64_mask","_mm256_cmplt_epi8_mask","_mm256_cmplt_epu16_mask","_mm256_cmplt_epu32_mask","_mm256_cmplt_epu64_mask","_mm256_cmplt_epu8_mask","_mm256_cmpneq_epi16_mask","_mm256_cmpneq_epi32_mask","_mm256_cmpneq_epi64_mask","_mm256_cmpneq_epi8_mask","_mm256_cmpneq_epu16_mask","_mm256_cmpneq_epu32_mask","_mm256_cmpneq_epu64_mask","_mm256_cmpneq_epu8_mask","_mm256_cmul_pch","_mm256_conflict_epi32","_mm256_conflict_epi64","_mm256_conj_pch","_mm256_cvtepi16_epi32","_mm256_cvtepi16_epi64","_mm256_cvtepi16_epi8","_mm256_cvtepi16_ph","_mm256_cvtepi32_epi16","_mm256_cvtepi32_epi64","_mm256_cvtepi32_epi8","_mm256_cvtepi32_pd","_mm256_cvtepi32_ph","_mm256_cvtepi32_ps","_mm256_cvtepi64_epi16","_mm256_cvtepi64_epi32","_mm256_cvtepi64_epi8","_mm256_cvtepi64_pd","_mm256_cvtepi64_ph","_mm256_cvtepi64_ps","_mm256_cvtepi8_epi16","_mm256_cvtepi8_epi32","_mm256_cvtepi8_epi64","_mm256_cvtepu16_epi32","_mm256_cvtepu16_epi64","_mm256_cvtepu16_ph","_mm256_cvtepu32_epi64","_mm256_cvtepu32_pd","_mm256_cvtepu32_ph","_mm256_cvtepu64_pd","_mm256_cvtepu64_ph","_mm256_cvtepu64_ps","_mm256_cvtepu8_epi16","_mm256_cvtepu8_epi32","_mm256_cvtepu8_epi64","_mm256_cvtne2ps_pbh","_mm256_cvtneebf16_ps","_mm256_cvtneeph_ps","_mm256_cvtneobf16_ps","_mm256_cvtneoph_ps","_mm256_cvtneps_avx_pbh","_mm256_cvtneps_pbh","_mm256_cvtpbh_ps","_mm256_cvtpd_epi32","_mm256_cvtpd_epi64","_mm256_cvtpd_epu32","_mm256_cvtpd_epu64","_mm256_cvtpd_ph","_mm256_cvtpd_ps","_mm256_cvtph_epi16","_mm256_cvtph_epi32","_mm256_cvtph_epi64","_mm256_cvtph_epu16","_mm256_cvtph_epu32","_mm256_cvtph_epu64","_mm256_cvtph_pd","_mm256_cvtph_ps","_mm256_cvtps_epi32","_mm256_cvtps_epi64","_mm256_cvtps_epu32","_mm256_cvtps_epu64","_mm256_cvtps_pd","_mm256_cvtps_ph","_mm256_cvtsd_f64","_mm256_cvtsepi16_epi8","_mm256_cvtsepi32_epi16","_mm256_cvtsepi32_epi8","_mm256_cvtsepi64_epi16","_mm256_cvtsepi64_epi32","_mm256_cvtsepi64_epi8","_mm256_cvtsh_h","_mm256_cvtsi256_si32","_mm256_cvtss_f32","_mm256_cvttpd_epi32","_mm256_cvttpd_epi64","_mm256_cvttpd_epu32","_mm256_cvttpd_epu64","_mm256_cvttph_epi16","_mm256_cvttph_epi32","_mm256_cvttph_epi64","_mm256_cvttph_epu16","_mm256_cvttph_epu32","_mm256_cvttph_epu64","_mm256_cvttps_epi32","_mm256_cvttps_epi64","_mm256_cvttps_epu32","_mm256_cvttps_epu64","_mm256_cvtusepi16_epi8","_mm256_cvtusepi32_epi16","_mm256_cvtusepi32_epi8","_mm256_cvtusepi64_epi16","_mm256_cvtusepi64_epi32","_mm256_cvtusepi64_epi8","_mm256_cvtxph_ps","_mm256_cvtxps_ph","_mm256_dbsad_epu8","_mm256_div_pd","_mm256_div_ph","_mm256_div_ps","_mm256_dp_ps","_mm256_dpbf16_ps","_mm256_dpbssd_epi32","_mm256_dpbssds_epi32","_mm256_dpbsud_epi32","_mm256_dpbsuds_epi32","_mm256_dpbusd_avx_epi32","_mm256_dpbusd_epi32","_mm256_dpbusds_avx_epi32","_mm256_dpbusds_epi32","_mm256_dpbuud_epi32","_mm256_dpbuuds_epi32","_mm256_dpwssd_avx_epi32","_mm256_dpwssd_epi32","_mm256_dpwssds_avx_epi32","_mm256_dpwssds_epi32","_mm256_dpwsud_epi32","_mm256_dpwsuds_epi32","_mm256_dpwusd_epi32","_mm256_dpwusds_epi32","_mm256_dpwuud_epi32","_mm256_dpwuuds_epi32","_mm256_extract_epi16","_mm256_extract_epi32","_mm256_extract_epi64","_mm256_extract_epi8","_mm256_extractf128_pd","_mm256_extractf128_ps","_mm256_extractf128_si256","_mm256_extractf32x4_ps","_mm256_extractf64x2_pd","_mm256_extracti128_si256","_mm256_extracti32x4_epi32","_mm256_extracti64x2_epi64","_mm256_fcmadd_pch","_mm256_fcmul_pch","_mm256_fixupimm_pd","_mm256_fixupimm_ps","_mm256_floor_pd","_mm256_floor_ps","_mm256_fmadd_pch","_mm256_fmadd_pd","_mm256_fmadd_ph","_mm256_fmadd_ps","_mm256_fmaddsub_pd","_mm256_fmaddsub_ph","_mm256_fmaddsub_ps","_mm256_fmsub_pd","_mm256_fmsub_ph","_mm256_fmsub_ps","_mm256_fmsubadd_pd","_mm256_fmsubadd_ph","_mm256_fmsubadd_ps","_mm256_fmul_pch","_mm256_fnmadd_pd","_mm256_fnmadd_ph","_mm256_fnmadd_ps","_mm256_fnmsub_pd","_mm256_fnmsub_ph","_mm256_fnmsub_ps","_mm256_fpclass_pd_mask","_mm256_fpclass_ph_mask","_mm256_fpclass_ps_mask","_mm256_getexp_pd","_mm256_getexp_ph","_mm256_getexp_ps","_mm256_getmant_pd","_mm256_getmant_ph","_mm256_getmant_ps","_mm256_gf2p8affine_epi64_epi8","_mm256_gf2p8affineinv_epi64_epi8","_mm256_gf2p8mul_epi8","_mm256_hadd_epi16","_mm256_hadd_epi32","_mm256_hadd_pd","_mm256_hadd_ps","_mm256_hadds_epi16","_mm256_hsub_epi16","_mm256_hsub_epi32","_mm256_hsub_pd","_mm256_hsub_ps","_mm256_hsubs_epi16","_mm256_i32gather_epi32","_mm256_i32gather_epi64","_mm256_i32gather_pd","_mm256_i32gather_ps","_mm256_i32scatter_epi32","_mm256_i32scatter_epi64","_mm256_i32scatter_pd","_mm256_i32scatter_ps","_mm256_i64gather_epi32","_mm256_i64gather_epi64","_mm256_i64gather_pd","_mm256_i64gather_ps","_mm256_i64scatter_epi32","_mm256_i64scatter_epi64","_mm256_i64scatter_pd","_mm256_i64scatter_ps","_mm256_insert_epi16","_mm256_insert_epi32","_mm256_insert_epi64","_mm256_insert_epi8","_mm256_insertf128_pd","_mm256_insertf128_ps","_mm256_insertf128_si256","_mm256_insertf32x4","_mm256_insertf64x2","_mm256_inserti128_si256","_mm256_inserti32x4","_mm256_inserti64x2","_mm256_lddqu_si256","_mm256_load_epi32","_mm256_load_epi64","_mm256_load_pd","_mm256_load_ph","_mm256_load_ps","_mm256_load_si256","_mm256_loadu2_m128","_mm256_loadu2_m128d","_mm256_loadu2_m128i","_mm256_loadu_epi16","_mm256_loadu_epi32","_mm256_loadu_epi64","_mm256_loadu_epi8","_mm256_loadu_pd","_mm256_loadu_ph","_mm256_loadu_ps","_mm256_loadu_si256","_mm256_lzcnt_epi32","_mm256_lzcnt_epi64","_mm256_madd52hi_avx_epu64","_mm256_madd52hi_epu64","_mm256_madd52lo_avx_epu64","_mm256_madd52lo_epu64","_mm256_madd_epi16","_mm256_maddubs_epi16","_mm256_mask2_permutex2var_epi16","_mm256_mask2_permutex2var_epi32","_mm256_mask2_permutex2var_epi64","_mm256_mask2_permutex2var_epi8","_mm256_mask2_permutex2var_pd","_mm256_mask2_permutex2var_ps","_mm256_mask3_fcmadd_pch","_mm256_mask3_fmadd_pch","_mm256_mask3_fmadd_pd","_mm256_mask3_fmadd_ph","_mm256_mask3_fmadd_ps","_mm256_mask3_fmaddsub_pd","_mm256_mask3_fmaddsub_ph","_mm256_mask3_fmaddsub_ps","_mm256_mask3_fmsub_pd","_mm256_mask3_fmsub_ph","_mm256_mask3_fmsub_ps","_mm256_mask3_fmsubadd_pd","_mm256_mask3_fmsubadd_ph","_mm256_mask3_fmsubadd_ps","_mm256_mask3_fnmadd_pd","_mm256_mask3_fnmadd_ph","_mm256_mask3_fnmadd_ps","_mm256_mask3_fnmsub_pd","_mm256_mask3_fnmsub_ph","_mm256_mask3_fnmsub_ps","_mm256_mask_abs_epi16","_mm256_mask_abs_epi32","_mm256_mask_abs_epi64","_mm256_mask_abs_epi8","_mm256_mask_add_epi16","_mm256_mask_add_epi32","_mm256_mask_add_epi64","_mm256_mask_add_epi8","_mm256_mask_add_pd","_mm256_mask_add_ph","_mm256_mask_add_ps","_mm256_mask_adds_epi16","_mm256_mask_adds_epi8","_mm256_mask_adds_epu16","_mm256_mask_adds_epu8","_mm256_mask_alignr_epi32","_mm256_mask_alignr_epi64","_mm256_mask_alignr_epi8","_mm256_mask_and_epi32","_mm256_mask_and_epi64","_mm256_mask_and_pd","_mm256_mask_and_ps","_mm256_mask_andnot_epi32","_mm256_mask_andnot_epi64","_mm256_mask_andnot_pd","_mm256_mask_andnot_ps","_mm256_mask_avg_epu16","_mm256_mask_avg_epu8","_mm256_mask_bitshuffle_epi64_mask","_mm256_mask_blend_epi16","_mm256_mask_blend_epi32","_mm256_mask_blend_epi64","_mm256_mask_blend_epi8","_mm256_mask_blend_pd","_mm256_mask_blend_ph","_mm256_mask_blend_ps","_mm256_mask_broadcast_f32x2","_mm256_mask_broadcast_f32x4","_mm256_mask_broadcast_f64x2","_mm256_mask_broadcast_i32x2","_mm256_mask_broadcast_i32x4","_mm256_mask_broadcast_i64x2","_mm256_mask_broadcastb_epi8","_mm256_mask_broadcastd_epi32","_mm256_mask_broadcastq_epi64","_mm256_mask_broadcastsd_pd","_mm256_mask_broadcastss_ps","_mm256_mask_broadcastw_epi16","_mm256_mask_cmp_epi16_mask","_mm256_mask_cmp_epi32_mask","_mm256_mask_cmp_epi64_mask","_mm256_mask_cmp_epi8_mask","_mm256_mask_cmp_epu16_mask","_mm256_mask_cmp_epu32_mask","_mm256_mask_cmp_epu64_mask","_mm256_mask_cmp_epu8_mask","_mm256_mask_cmp_pd_mask","_mm256_mask_cmp_ph_mask","_mm256_mask_cmp_ps_mask","_mm256_mask_cmpeq_epi16_mask","_mm256_mask_cmpeq_epi32_mask","_mm256_mask_cmpeq_epi64_mask","_mm256_mask_cmpeq_epi8_mask","_mm256_mask_cmpeq_epu16_mask","_mm256_mask_cmpeq_epu32_mask","_mm256_mask_cmpeq_epu64_mask","_mm256_mask_cmpeq_epu8_mask","_mm256_mask_cmpge_epi16_mask","_mm256_mask_cmpge_epi32_mask","_mm256_mask_cmpge_epi64_mask","_mm256_mask_cmpge_epi8_mask","_mm256_mask_cmpge_epu16_mask","_mm256_mask_cmpge_epu32_mask","_mm256_mask_cmpge_epu64_mask","_mm256_mask_cmpge_epu8_mask","_mm256_mask_cmpgt_epi16_mask","_mm256_mask_cmpgt_epi32_mask","_mm256_mask_cmpgt_epi64_mask","_mm256_mask_cmpgt_epi8_mask","_mm256_mask_cmpgt_epu16_mask","_mm256_mask_cmpgt_epu32_mask","_mm256_mask_cmpgt_epu64_mask","_mm256_mask_cmpgt_epu8_mask","_mm256_mask_cmple_epi16_mask","_mm256_mask_cmple_epi32_mask","_mm256_mask_cmple_epi64_mask","_mm256_mask_cmple_epi8_mask","_mm256_mask_cmple_epu16_mask","_mm256_mask_cmple_epu32_mask","_mm256_mask_cmple_epu64_mask","_mm256_mask_cmple_epu8_mask","_mm256_mask_cmplt_epi16_mask","_mm256_mask_cmplt_epi32_mask","_mm256_mask_cmplt_epi64_mask","_mm256_mask_cmplt_epi8_mask","_mm256_mask_cmplt_epu16_mask","_mm256_mask_cmplt_epu32_mask","_mm256_mask_cmplt_epu64_mask","_mm256_mask_cmplt_epu8_mask","_mm256_mask_cmpneq_epi16_mask","_mm256_mask_cmpneq_epi32_mask","_mm256_mask_cmpneq_epi64_mask","_mm256_mask_cmpneq_epi8_mask","_mm256_mask_cmpneq_epu16_mask","_mm256_mask_cmpneq_epu32_mask","_mm256_mask_cmpneq_epu64_mask","_mm256_mask_cmpneq_epu8_mask","_mm256_mask_cmul_pch","_mm256_mask_compress_epi16","_mm256_mask_compress_epi32","_mm256_mask_compress_epi64","_mm256_mask_compress_epi8","_mm256_mask_compress_pd","_mm256_mask_compress_ps","_mm256_mask_compressstoreu_epi16","_mm256_mask_compressstoreu_epi32","_mm256_mask_compressstoreu_epi64","_mm256_mask_compressstoreu_epi8","_mm256_mask_compressstoreu_pd","_mm256_mask_compressstoreu_ps","_mm256_mask_conflict_epi32","_mm256_mask_conflict_epi64","_mm256_mask_conj_pch","_mm256_mask_cvt_roundps_ph","_mm256_mask_cvtepi16_epi32","_mm256_mask_cvtepi16_epi64","_mm256_mask_cvtepi16_epi8","_mm256_mask_cvtepi16_ph","_mm256_mask_cvtepi16_storeu_epi8","_mm256_mask_cvtepi32_epi16","_mm256_mask_cvtepi32_epi64","_mm256_mask_cvtepi32_epi8","_mm256_mask_cvtepi32_pd","_mm256_mask_cvtepi32_ph","_mm256_mask_cvtepi32_ps","_mm256_mask_cvtepi32_storeu_epi16","_mm256_mask_cvtepi32_storeu_epi8","_mm256_mask_cvtepi64_epi16","_mm256_mask_cvtepi64_epi32","_mm256_mask_cvtepi64_epi8","_mm256_mask_cvtepi64_pd","_mm256_mask_cvtepi64_ph","_mm256_mask_cvtepi64_ps","_mm256_mask_cvtepi64_storeu_epi16","_mm256_mask_cvtepi64_storeu_epi32","_mm256_mask_cvtepi64_storeu_epi8","_mm256_mask_cvtepi8_epi16","_mm256_mask_cvtepi8_epi32","_mm256_mask_cvtepi8_epi64","_mm256_mask_cvtepu16_epi32","_mm256_mask_cvtepu16_epi64","_mm256_mask_cvtepu16_ph","_mm256_mask_cvtepu32_epi64","_mm256_mask_cvtepu32_pd","_mm256_mask_cvtepu32_ph","_mm256_mask_cvtepu64_pd","_mm256_mask_cvtepu64_ph","_mm256_mask_cvtepu64_ps","_mm256_mask_cvtepu8_epi16","_mm256_mask_cvtepu8_epi32","_mm256_mask_cvtepu8_epi64","_mm256_mask_cvtne2ps_pbh","_mm256_mask_cvtneps_pbh","_mm256_mask_cvtpbh_ps","_mm256_mask_cvtpd_epi32","_mm256_mask_cvtpd_epi64","_mm256_mask_cvtpd_epu32","_mm256_mask_cvtpd_epu64","_mm256_mask_cvtpd_ph","_mm256_mask_cvtpd_ps","_mm256_mask_cvtph_epi16","_mm256_mask_cvtph_epi32","_mm256_mask_cvtph_epi64","_mm256_mask_cvtph_epu16","_mm256_mask_cvtph_epu32","_mm256_mask_cvtph_epu64","_mm256_mask_cvtph_pd","_mm256_mask_cvtph_ps","_mm256_mask_cvtps_epi32","_mm256_mask_cvtps_epi64","_mm256_mask_cvtps_epu32","_mm256_mask_cvtps_epu64","_mm256_mask_cvtps_ph","_mm256_mask_cvtsepi16_epi8","_mm256_mask_cvtsepi16_storeu_epi8","_mm256_mask_cvtsepi32_epi16","_mm256_mask_cvtsepi32_epi8","_mm256_mask_cvtsepi32_storeu_epi16","_mm256_mask_cvtsepi32_storeu_epi8","_mm256_mask_cvtsepi64_epi16","_mm256_mask_cvtsepi64_epi32","_mm256_mask_cvtsepi64_epi8","_mm256_mask_cvtsepi64_storeu_epi16","_mm256_mask_cvtsepi64_storeu_epi32","_mm256_mask_cvtsepi64_storeu_epi8","_mm256_mask_cvttpd_epi32","_mm256_mask_cvttpd_epi64","_mm256_mask_cvttpd_epu32","_mm256_mask_cvttpd_epu64","_mm256_mask_cvttph_epi16","_mm256_mask_cvttph_epi32","_mm256_mask_cvttph_epi64","_mm256_mask_cvttph_epu16","_mm256_mask_cvttph_epu32","_mm256_mask_cvttph_epu64","_mm256_mask_cvttps_epi32","_mm256_mask_cvttps_epi64","_mm256_mask_cvttps_epu32","_mm256_mask_cvttps_epu64","_mm256_mask_cvtusepi16_epi8","_mm256_mask_cvtusepi16_storeu_epi8","_mm256_mask_cvtusepi32_epi16","_mm256_mask_cvtusepi32_epi8","_mm256_mask_cvtusepi32_storeu_epi16","_mm256_mask_cvtusepi32_storeu_epi8","_mm256_mask_cvtusepi64_epi16","_mm256_mask_cvtusepi64_epi32","_mm256_mask_cvtusepi64_epi8","_mm256_mask_cvtusepi64_storeu_epi16","_mm256_mask_cvtusepi64_storeu_epi32","_mm256_mask_cvtusepi64_storeu_epi8","_mm256_mask_cvtxph_ps","_mm256_mask_cvtxps_ph","_mm256_mask_dbsad_epu8","_mm256_mask_div_pd","_mm256_mask_div_ph","_mm256_mask_div_ps","_mm256_mask_dpbf16_ps","_mm256_mask_dpbusd_epi32","_mm256_mask_dpbusds_epi32","_mm256_mask_dpwssd_epi32","_mm256_mask_dpwssds_epi32","_mm256_mask_expand_epi16","_mm256_mask_expand_epi32","_mm256_mask_expand_epi64","_mm256_mask_expand_epi8","_mm256_mask_expand_pd","_mm256_mask_expand_ps","_mm256_mask_expandloadu_epi16","_mm256_mask_expandloadu_epi32","_mm256_mask_expandloadu_epi64","_mm256_mask_expandloadu_epi8","_mm256_mask_expandloadu_pd","_mm256_mask_expandloadu_ps","_mm256_mask_extractf32x4_ps","_mm256_mask_extractf64x2_pd","_mm256_mask_extracti32x4_epi32","_mm256_mask_extracti64x2_epi64","_mm256_mask_fcmadd_pch","_mm256_mask_fcmul_pch","_mm256_mask_fixupimm_pd","_mm256_mask_fixupimm_ps","_mm256_mask_fmadd_pch","_mm256_mask_fmadd_pd","_mm256_mask_fmadd_ph","_mm256_mask_fmadd_ps","_mm256_mask_fmaddsub_pd","_mm256_mask_fmaddsub_ph","_mm256_mask_fmaddsub_ps","_mm256_mask_fmsub_pd","_mm256_mask_fmsub_ph","_mm256_mask_fmsub_ps","_mm256_mask_fmsubadd_pd","_mm256_mask_fmsubadd_ph","_mm256_mask_fmsubadd_ps","_mm256_mask_fmul_pch","_mm256_mask_fnmadd_pd","_mm256_mask_fnmadd_ph","_mm256_mask_fnmadd_ps","_mm256_mask_fnmsub_pd","_mm256_mask_fnmsub_ph","_mm256_mask_fnmsub_ps","_mm256_mask_fpclass_pd_mask","_mm256_mask_fpclass_ph_mask","_mm256_mask_fpclass_ps_mask","_mm256_mask_getexp_pd","_mm256_mask_getexp_ph","_mm256_mask_getexp_ps","_mm256_mask_getmant_pd","_mm256_mask_getmant_ph","_mm256_mask_getmant_ps","_mm256_mask_gf2p8affine_epi64_epi8","_mm256_mask_gf2p8affineinv_epi64_epi8","_mm256_mask_gf2p8mul_epi8","_mm256_mask_i32gather_epi32","_mm256_mask_i32gather_epi64","_mm256_mask_i32gather_pd","_mm256_mask_i32gather_ps","_mm256_mask_i32scatter_epi32","_mm256_mask_i32scatter_epi64","_mm256_mask_i32scatter_pd","_mm256_mask_i32scatter_ps","_mm256_mask_i64gather_epi32","_mm256_mask_i64gather_epi64","_mm256_mask_i64gather_pd","_mm256_mask_i64gather_ps","_mm256_mask_i64scatter_epi32","_mm256_mask_i64scatter_epi64","_mm256_mask_i64scatter_pd","_mm256_mask_i64scatter_ps","_mm256_mask_insertf32x4","_mm256_mask_insertf64x2","_mm256_mask_inserti32x4","_mm256_mask_inserti64x2","_mm256_mask_load_epi32","_mm256_mask_load_epi64","_mm256_mask_load_pd","_mm256_mask_load_ps","_mm256_mask_loadu_epi16","_mm256_mask_loadu_epi32","_mm256_mask_loadu_epi64","_mm256_mask_loadu_epi8","_mm256_mask_loadu_pd","_mm256_mask_loadu_ps","_mm256_mask_lzcnt_epi32","_mm256_mask_lzcnt_epi64","_mm256_mask_madd52hi_epu64","_mm256_mask_madd52lo_epu64","_mm256_mask_madd_epi16","_mm256_mask_maddubs_epi16","_mm256_mask_max_epi16","_mm256_mask_max_epi32","_mm256_mask_max_epi64","_mm256_mask_max_epi8","_mm256_mask_max_epu16","_mm256_mask_max_epu32","_mm256_mask_max_epu64","_mm256_mask_max_epu8","_mm256_mask_max_pd","_mm256_mask_max_ph","_mm256_mask_max_ps","_mm256_mask_min_epi16","_mm256_mask_min_epi32","_mm256_mask_min_epi64","_mm256_mask_min_epi8","_mm256_mask_min_epu16","_mm256_mask_min_epu32","_mm256_mask_min_epu64","_mm256_mask_min_epu8","_mm256_mask_min_pd","_mm256_mask_min_ph","_mm256_mask_min_ps","_mm256_mask_mov_epi16","_mm256_mask_mov_epi32","_mm256_mask_mov_epi64","_mm256_mask_mov_epi8","_mm256_mask_mov_pd","_mm256_mask_mov_ps","_mm256_mask_movedup_pd","_mm256_mask_movehdup_ps","_mm256_mask_moveldup_ps","_mm256_mask_mul_epi32","_mm256_mask_mul_epu32","_mm256_mask_mul_pch","_mm256_mask_mul_pd","_mm256_mask_mul_ph","_mm256_mask_mul_ps","_mm256_mask_mulhi_epi16","_mm256_mask_mulhi_epu16","_mm256_mask_mulhrs_epi16","_mm256_mask_mullo_epi16","_mm256_mask_mullo_epi32","_mm256_mask_mullo_epi64","_mm256_mask_multishift_epi64_epi8","_mm256_mask_or_epi32","_mm256_mask_or_epi64","_mm256_mask_or_pd","_mm256_mask_or_ps","_mm256_mask_packs_epi16","_mm256_mask_packs_epi32","_mm256_mask_packus_epi16","_mm256_mask_packus_epi32","_mm256_mask_permute_pd","_mm256_mask_permute_ps","_mm256_mask_permutevar_pd","_mm256_mask_permutevar_ps","_mm256_mask_permutex2var_epi16","_mm256_mask_permutex2var_epi32","_mm256_mask_permutex2var_epi64","_mm256_mask_permutex2var_epi8","_mm256_mask_permutex2var_pd","_mm256_mask_permutex2var_ps","_mm256_mask_permutex_epi64","_mm256_mask_permutex_pd","_mm256_mask_permutexvar_epi16","_mm256_mask_permutexvar_epi32","_mm256_mask_permutexvar_epi64","_mm256_mask_permutexvar_epi8","_mm256_mask_permutexvar_pd","_mm256_mask_permutexvar_ps","_mm256_mask_popcnt_epi16","_mm256_mask_popcnt_epi32","_mm256_mask_popcnt_epi64","_mm256_mask_popcnt_epi8","_mm256_mask_range_pd","_mm256_mask_range_ps","_mm256_mask_rcp14_pd","_mm256_mask_rcp14_ps","_mm256_mask_rcp_ph","_mm256_mask_reduce_add_epi16","_mm256_mask_reduce_add_epi8","_mm256_mask_reduce_and_epi16","_mm256_mask_reduce_and_epi8","_mm256_mask_reduce_max_epi16","_mm256_mask_reduce_max_epi8","_mm256_mask_reduce_max_epu16","_mm256_mask_reduce_max_epu8","_mm256_mask_reduce_min_epi16","_mm256_mask_reduce_min_epi8","_mm256_mask_reduce_min_epu16","_mm256_mask_reduce_min_epu8","_mm256_mask_reduce_mul_epi16","_mm256_mask_reduce_mul_epi8","_mm256_mask_reduce_or_epi16","_mm256_mask_reduce_or_epi8","_mm256_mask_reduce_pd","_mm256_mask_reduce_ph","_mm256_mask_reduce_ps","_mm256_mask_rol_epi32","_mm256_mask_rol_epi64","_mm256_mask_rolv_epi32","_mm256_mask_rolv_epi64","_mm256_mask_ror_epi32","_mm256_mask_ror_epi64","_mm256_mask_rorv_epi32","_mm256_mask_rorv_epi64","_mm256_mask_roundscale_pd","_mm256_mask_roundscale_ph","_mm256_mask_roundscale_ps","_mm256_mask_rsqrt14_pd","_mm256_mask_rsqrt14_ps","_mm256_mask_rsqrt_ph","_mm256_mask_scalef_pd","_mm256_mask_scalef_ph","_mm256_mask_scalef_ps","_mm256_mask_set1_epi16","_mm256_mask_set1_epi32","_mm256_mask_set1_epi64","_mm256_mask_set1_epi8","_mm256_mask_shldi_epi16","_mm256_mask_shldi_epi32","_mm256_mask_shldi_epi64","_mm256_mask_shldv_epi16","_mm256_mask_shldv_epi32","_mm256_mask_shldv_epi64","_mm256_mask_shrdi_epi16","_mm256_mask_shrdi_epi32","_mm256_mask_shrdi_epi64","_mm256_mask_shrdv_epi16","_mm256_mask_shrdv_epi32","_mm256_mask_shrdv_epi64","_mm256_mask_shuffle_epi32","_mm256_mask_shuffle_epi8","_mm256_mask_shuffle_f32x4","_mm256_mask_shuffle_f64x2","_mm256_mask_shuffle_i32x4","_mm256_mask_shuffle_i64x2","_mm256_mask_shuffle_pd","_mm256_mask_shuffle_ps","_mm256_mask_shufflehi_epi16","_mm256_mask_shufflelo_epi16","_mm256_mask_sll_epi16","_mm256_mask_sll_epi32","_mm256_mask_sll_epi64","_mm256_mask_slli_epi16","_mm256_mask_slli_epi32","_mm256_mask_slli_epi64","_mm256_mask_sllv_epi16","_mm256_mask_sllv_epi32","_mm256_mask_sllv_epi64","_mm256_mask_sqrt_pd","_mm256_mask_sqrt_ph","_mm256_mask_sqrt_ps","_mm256_mask_sra_epi16","_mm256_mask_sra_epi32","_mm256_mask_sra_epi64","_mm256_mask_srai_epi16","_mm256_mask_srai_epi32","_mm256_mask_srai_epi64","_mm256_mask_srav_epi16","_mm256_mask_srav_epi32","_mm256_mask_srav_epi64","_mm256_mask_srl_epi16","_mm256_mask_srl_epi32","_mm256_mask_srl_epi64","_mm256_mask_srli_epi16","_mm256_mask_srli_epi32","_mm256_mask_srli_epi64","_mm256_mask_srlv_epi16","_mm256_mask_srlv_epi32","_mm256_mask_srlv_epi64","_mm256_mask_store_epi32","_mm256_mask_store_epi64","_mm256_mask_store_pd","_mm256_mask_store_ps","_mm256_mask_storeu_epi16","_mm256_mask_storeu_epi32","_mm256_mask_storeu_epi64","_mm256_mask_storeu_epi8","_mm256_mask_storeu_pd","_mm256_mask_storeu_ps","_mm256_mask_sub_epi16","_mm256_mask_sub_epi32","_mm256_mask_sub_epi64","_mm256_mask_sub_epi8","_mm256_mask_sub_pd","_mm256_mask_sub_ph","_mm256_mask_sub_ps","_mm256_mask_subs_epi16","_mm256_mask_subs_epi8","_mm256_mask_subs_epu16","_mm256_mask_subs_epu8","_mm256_mask_ternarylogic_epi32","_mm256_mask_ternarylogic_epi64","_mm256_mask_test_epi16_mask","_mm256_mask_test_epi32_mask","_mm256_mask_test_epi64_mask","_mm256_mask_test_epi8_mask","_mm256_mask_testn_epi16_mask","_mm256_mask_testn_epi32_mask","_mm256_mask_testn_epi64_mask","_mm256_mask_testn_epi8_mask","_mm256_mask_unpackhi_epi16","_mm256_mask_unpackhi_epi32","_mm256_mask_unpackhi_epi64","_mm256_mask_unpackhi_epi8","_mm256_mask_unpackhi_pd","_mm256_mask_unpackhi_ps","_mm256_mask_unpacklo_epi16","_mm256_mask_unpacklo_epi32","_mm256_mask_unpacklo_epi64","_mm256_mask_unpacklo_epi8","_mm256_mask_unpacklo_pd","_mm256_mask_unpacklo_ps","_mm256_mask_xor_epi32","_mm256_mask_xor_epi64","_mm256_mask_xor_pd","_mm256_mask_xor_ps","_mm256_maskload_epi32","_mm256_maskload_epi64","_mm256_maskload_pd","_mm256_maskload_ps","_mm256_maskstore_epi32","_mm256_maskstore_epi64","_mm256_maskstore_pd","_mm256_maskstore_ps","_mm256_maskz_abs_epi16","_mm256_maskz_abs_epi32","_mm256_maskz_abs_epi64","_mm256_maskz_abs_epi8","_mm256_maskz_add_epi16","_mm256_maskz_add_epi32","_mm256_maskz_add_epi64","_mm256_maskz_add_epi8","_mm256_maskz_add_pd","_mm256_maskz_add_ph","_mm256_maskz_add_ps","_mm256_maskz_adds_epi16","_mm256_maskz_adds_epi8","_mm256_maskz_adds_epu16","_mm256_maskz_adds_epu8","_mm256_maskz_alignr_epi32","_mm256_maskz_alignr_epi64","_mm256_maskz_alignr_epi8","_mm256_maskz_and_epi32","_mm256_maskz_and_epi64","_mm256_maskz_and_pd","_mm256_maskz_and_ps","_mm256_maskz_andnot_epi32","_mm256_maskz_andnot_epi64","_mm256_maskz_andnot_pd","_mm256_maskz_andnot_ps","_mm256_maskz_avg_epu16","_mm256_maskz_avg_epu8","_mm256_maskz_broadcast_f32x2","_mm256_maskz_broadcast_f32x4","_mm256_maskz_broadcast_f64x2","_mm256_maskz_broadcast_i32x2","_mm256_maskz_broadcast_i32x4","_mm256_maskz_broadcast_i64x2","_mm256_maskz_broadcastb_epi8","_mm256_maskz_broadcastd_epi32","_mm256_maskz_broadcastq_epi64","_mm256_maskz_broadcastsd_pd","_mm256_maskz_broadcastss_ps","_mm256_maskz_broadcastw_epi16","_mm256_maskz_cmul_pch","_mm256_maskz_compress_epi16","_mm256_maskz_compress_epi32","_mm256_maskz_compress_epi64","_mm256_maskz_compress_epi8","_mm256_maskz_compress_pd","_mm256_maskz_compress_ps","_mm256_maskz_conflict_epi32","_mm256_maskz_conflict_epi64","_mm256_maskz_conj_pch","_mm256_maskz_cvt_roundps_ph","_mm256_maskz_cvtepi16_epi32","_mm256_maskz_cvtepi16_epi64","_mm256_maskz_cvtepi16_epi8","_mm256_maskz_cvtepi16_ph","_mm256_maskz_cvtepi32_epi16","_mm256_maskz_cvtepi32_epi64","_mm256_maskz_cvtepi32_epi8","_mm256_maskz_cvtepi32_pd","_mm256_maskz_cvtepi32_ph","_mm256_maskz_cvtepi32_ps","_mm256_maskz_cvtepi64_epi16","_mm256_maskz_cvtepi64_epi32","_mm256_maskz_cvtepi64_epi8","_mm256_maskz_cvtepi64_pd","_mm256_maskz_cvtepi64_ph","_mm256_maskz_cvtepi64_ps","_mm256_maskz_cvtepi8_epi16","_mm256_maskz_cvtepi8_epi32","_mm256_maskz_cvtepi8_epi64","_mm256_maskz_cvtepu16_epi32","_mm256_maskz_cvtepu16_epi64","_mm256_maskz_cvtepu16_ph","_mm256_maskz_cvtepu32_epi64","_mm256_maskz_cvtepu32_pd","_mm256_maskz_cvtepu32_ph","_mm256_maskz_cvtepu64_pd","_mm256_maskz_cvtepu64_ph","_mm256_maskz_cvtepu64_ps","_mm256_maskz_cvtepu8_epi16","_mm256_maskz_cvtepu8_epi32","_mm256_maskz_cvtepu8_epi64","_mm256_maskz_cvtne2ps_pbh","_mm256_maskz_cvtneps_pbh","_mm256_maskz_cvtpbh_ps","_mm256_maskz_cvtpd_epi32","_mm256_maskz_cvtpd_epi64","_mm256_maskz_cvtpd_epu32","_mm256_maskz_cvtpd_epu64","_mm256_maskz_cvtpd_ph","_mm256_maskz_cvtpd_ps","_mm256_maskz_cvtph_epi16","_mm256_maskz_cvtph_epi32","_mm256_maskz_cvtph_epi64","_mm256_maskz_cvtph_epu16","_mm256_maskz_cvtph_epu32","_mm256_maskz_cvtph_epu64","_mm256_maskz_cvtph_pd","_mm256_maskz_cvtph_ps","_mm256_maskz_cvtps_epi32","_mm256_maskz_cvtps_epi64","_mm256_maskz_cvtps_epu32","_mm256_maskz_cvtps_epu64","_mm256_maskz_cvtps_ph","_mm256_maskz_cvtsepi16_epi8","_mm256_maskz_cvtsepi32_epi16","_mm256_maskz_cvtsepi32_epi8","_mm256_maskz_cvtsepi64_epi16","_mm256_maskz_cvtsepi64_epi32","_mm256_maskz_cvtsepi64_epi8","_mm256_maskz_cvttpd_epi32","_mm256_maskz_cvttpd_epi64","_mm256_maskz_cvttpd_epu32","_mm256_maskz_cvttpd_epu64","_mm256_maskz_cvttph_epi16","_mm256_maskz_cvttph_epi32","_mm256_maskz_cvttph_epi64","_mm256_maskz_cvttph_epu16","_mm256_maskz_cvttph_epu32","_mm256_maskz_cvttph_epu64","_mm256_maskz_cvttps_epi32","_mm256_maskz_cvttps_epi64","_mm256_maskz_cvttps_epu32","_mm256_maskz_cvttps_epu64","_mm256_maskz_cvtusepi16_epi8","_mm256_maskz_cvtusepi32_epi16","_mm256_maskz_cvtusepi32_epi8","_mm256_maskz_cvtusepi64_epi16","_mm256_maskz_cvtusepi64_epi32","_mm256_maskz_cvtusepi64_epi8","_mm256_maskz_cvtxph_ps","_mm256_maskz_cvtxps_ph","_mm256_maskz_dbsad_epu8","_mm256_maskz_div_pd","_mm256_maskz_div_ph","_mm256_maskz_div_ps","_mm256_maskz_dpbf16_ps","_mm256_maskz_dpbusd_epi32","_mm256_maskz_dpbusds_epi32","_mm256_maskz_dpwssd_epi32","_mm256_maskz_dpwssds_epi32","_mm256_maskz_expand_epi16","_mm256_maskz_expand_epi32","_mm256_maskz_expand_epi64","_mm256_maskz_expand_epi8","_mm256_maskz_expand_pd","_mm256_maskz_expand_ps","_mm256_maskz_expandloadu_epi16","_mm256_maskz_expandloadu_epi32","_mm256_maskz_expandloadu_epi64","_mm256_maskz_expandloadu_epi8","_mm256_maskz_expandloadu_pd","_mm256_maskz_expandloadu_ps","_mm256_maskz_extractf32x4_ps","_mm256_maskz_extractf64x2_pd","_mm256_maskz_extracti32x4_epi32","_mm256_maskz_extracti64x2_epi64","_mm256_maskz_fcmadd_pch","_mm256_maskz_fcmul_pch","_mm256_maskz_fixupimm_pd","_mm256_maskz_fixupimm_ps","_mm256_maskz_fmadd_pch","_mm256_maskz_fmadd_pd","_mm256_maskz_fmadd_ph","_mm256_maskz_fmadd_ps","_mm256_maskz_fmaddsub_pd","_mm256_maskz_fmaddsub_ph","_mm256_maskz_fmaddsub_ps","_mm256_maskz_fmsub_pd","_mm256_maskz_fmsub_ph","_mm256_maskz_fmsub_ps","_mm256_maskz_fmsubadd_pd","_mm256_maskz_fmsubadd_ph","_mm256_maskz_fmsubadd_ps","_mm256_maskz_fmul_pch","_mm256_maskz_fnmadd_pd","_mm256_maskz_fnmadd_ph","_mm256_maskz_fnmadd_ps","_mm256_maskz_fnmsub_pd","_mm256_maskz_fnmsub_ph","_mm256_maskz_fnmsub_ps","_mm256_maskz_getexp_pd","_mm256_maskz_getexp_ph","_mm256_maskz_getexp_ps","_mm256_maskz_getmant_pd","_mm256_maskz_getmant_ph","_mm256_maskz_getmant_ps","_mm256_maskz_gf2p8affine_epi64_epi8","_mm256_maskz_gf2p8affineinv_epi64_epi8","_mm256_maskz_gf2p8mul_epi8","_mm256_maskz_insertf32x4","_mm256_maskz_insertf64x2","_mm256_maskz_inserti32x4","_mm256_maskz_inserti64x2","_mm256_maskz_load_epi32","_mm256_maskz_load_epi64","_mm256_maskz_load_pd","_mm256_maskz_load_ps","_mm256_maskz_loadu_epi16","_mm256_maskz_loadu_epi32","_mm256_maskz_loadu_epi64","_mm256_maskz_loadu_epi8","_mm256_maskz_loadu_pd","_mm256_maskz_loadu_ps","_mm256_maskz_lzcnt_epi32","_mm256_maskz_lzcnt_epi64","_mm256_maskz_madd52hi_epu64","_mm256_maskz_madd52lo_epu64","_mm256_maskz_madd_epi16","_mm256_maskz_maddubs_epi16","_mm256_maskz_max_epi16","_mm256_maskz_max_epi32","_mm256_maskz_max_epi64","_mm256_maskz_max_epi8","_mm256_maskz_max_epu16","_mm256_maskz_max_epu32","_mm256_maskz_max_epu64","_mm256_maskz_max_epu8","_mm256_maskz_max_pd","_mm256_maskz_max_ph","_mm256_maskz_max_ps","_mm256_maskz_min_epi16","_mm256_maskz_min_epi32","_mm256_maskz_min_epi64","_mm256_maskz_min_epi8","_mm256_maskz_min_epu16","_mm256_maskz_min_epu32","_mm256_maskz_min_epu64","_mm256_maskz_min_epu8","_mm256_maskz_min_pd","_mm256_maskz_min_ph","_mm256_maskz_min_ps","_mm256_maskz_mov_epi16","_mm256_maskz_mov_epi32","_mm256_maskz_mov_epi64","_mm256_maskz_mov_epi8","_mm256_maskz_mov_pd","_mm256_maskz_mov_ps","_mm256_maskz_movedup_pd","_mm256_maskz_movehdup_ps","_mm256_maskz_moveldup_ps","_mm256_maskz_mul_epi32","_mm256_maskz_mul_epu32","_mm256_maskz_mul_pch","_mm256_maskz_mul_pd","_mm256_maskz_mul_ph","_mm256_maskz_mul_ps","_mm256_maskz_mulhi_epi16","_mm256_maskz_mulhi_epu16","_mm256_maskz_mulhrs_epi16","_mm256_maskz_mullo_epi16","_mm256_maskz_mullo_epi32","_mm256_maskz_mullo_epi64","_mm256_maskz_multishift_epi64_epi8","_mm256_maskz_or_epi32","_mm256_maskz_or_epi64","_mm256_maskz_or_pd","_mm256_maskz_or_ps","_mm256_maskz_packs_epi16","_mm256_maskz_packs_epi32","_mm256_maskz_packus_epi16","_mm256_maskz_packus_epi32","_mm256_maskz_permute_pd","_mm256_maskz_permute_ps","_mm256_maskz_permutevar_pd","_mm256_maskz_permutevar_ps","_mm256_maskz_permutex2var_epi16","_mm256_maskz_permutex2var_epi32","_mm256_maskz_permutex2var_epi64","_mm256_maskz_permutex2var_epi8","_mm256_maskz_permutex2var_pd","_mm256_maskz_permutex2var_ps","_mm256_maskz_permutex_epi64","_mm256_maskz_permutex_pd","_mm256_maskz_permutexvar_epi16","_mm256_maskz_permutexvar_epi32","_mm256_maskz_permutexvar_epi64","_mm256_maskz_permutexvar_epi8","_mm256_maskz_permutexvar_pd","_mm256_maskz_permutexvar_ps","_mm256_maskz_popcnt_epi16","_mm256_maskz_popcnt_epi32","_mm256_maskz_popcnt_epi64","_mm256_maskz_popcnt_epi8","_mm256_maskz_range_pd","_mm256_maskz_range_ps","_mm256_maskz_rcp14_pd","_mm256_maskz_rcp14_ps","_mm256_maskz_rcp_ph","_mm256_maskz_reduce_pd","_mm256_maskz_reduce_ph","_mm256_maskz_reduce_ps","_mm256_maskz_rol_epi32","_mm256_maskz_rol_epi64","_mm256_maskz_rolv_epi32","_mm256_maskz_rolv_epi64","_mm256_maskz_ror_epi32","_mm256_maskz_ror_epi64","_mm256_maskz_rorv_epi32","_mm256_maskz_rorv_epi64","_mm256_maskz_roundscale_pd","_mm256_maskz_roundscale_ph","_mm256_maskz_roundscale_ps","_mm256_maskz_rsqrt14_pd","_mm256_maskz_rsqrt14_ps","_mm256_maskz_rsqrt_ph","_mm256_maskz_scalef_pd","_mm256_maskz_scalef_ph","_mm256_maskz_scalef_ps","_mm256_maskz_set1_epi16","_mm256_maskz_set1_epi32","_mm256_maskz_set1_epi64","_mm256_maskz_set1_epi8","_mm256_maskz_shldi_epi16","_mm256_maskz_shldi_epi32","_mm256_maskz_shldi_epi64","_mm256_maskz_shldv_epi16","_mm256_maskz_shldv_epi32","_mm256_maskz_shldv_epi64","_mm256_maskz_shrdi_epi16","_mm256_maskz_shrdi_epi32","_mm256_maskz_shrdi_epi64","_mm256_maskz_shrdv_epi16","_mm256_maskz_shrdv_epi32","_mm256_maskz_shrdv_epi64","_mm256_maskz_shuffle_epi32","_mm256_maskz_shuffle_epi8","_mm256_maskz_shuffle_f32x4","_mm256_maskz_shuffle_f64x2","_mm256_maskz_shuffle_i32x4","_mm256_maskz_shuffle_i64x2","_mm256_maskz_shuffle_pd","_mm256_maskz_shuffle_ps","_mm256_maskz_shufflehi_epi16","_mm256_maskz_shufflelo_epi16","_mm256_maskz_sll_epi16","_mm256_maskz_sll_epi32","_mm256_maskz_sll_epi64","_mm256_maskz_slli_epi16","_mm256_maskz_slli_epi32","_mm256_maskz_slli_epi64","_mm256_maskz_sllv_epi16","_mm256_maskz_sllv_epi32","_mm256_maskz_sllv_epi64","_mm256_maskz_sqrt_pd","_mm256_maskz_sqrt_ph","_mm256_maskz_sqrt_ps","_mm256_maskz_sra_epi16","_mm256_maskz_sra_epi32","_mm256_maskz_sra_epi64","_mm256_maskz_srai_epi16","_mm256_maskz_srai_epi32","_mm256_maskz_srai_epi64","_mm256_maskz_srav_epi16","_mm256_maskz_srav_epi32","_mm256_maskz_srav_epi64","_mm256_maskz_srl_epi16","_mm256_maskz_srl_epi32","_mm256_maskz_srl_epi64","_mm256_maskz_srli_epi16","_mm256_maskz_srli_epi32","_mm256_maskz_srli_epi64","_mm256_maskz_srlv_epi16","_mm256_maskz_srlv_epi32","_mm256_maskz_srlv_epi64","_mm256_maskz_sub_epi16","_mm256_maskz_sub_epi32","_mm256_maskz_sub_epi64","_mm256_maskz_sub_epi8","_mm256_maskz_sub_pd","_mm256_maskz_sub_ph","_mm256_maskz_sub_ps","_mm256_maskz_subs_epi16","_mm256_maskz_subs_epi8","_mm256_maskz_subs_epu16","_mm256_maskz_subs_epu8","_mm256_maskz_ternarylogic_epi32","_mm256_maskz_ternarylogic_epi64","_mm256_maskz_unpackhi_epi16","_mm256_maskz_unpackhi_epi32","_mm256_maskz_unpackhi_epi64","_mm256_maskz_unpackhi_epi8","_mm256_maskz_unpackhi_pd","_mm256_maskz_unpackhi_ps","_mm256_maskz_unpacklo_epi16","_mm256_maskz_unpacklo_epi32","_mm256_maskz_unpacklo_epi64","_mm256_maskz_unpacklo_epi8","_mm256_maskz_unpacklo_pd","_mm256_maskz_unpacklo_ps","_mm256_maskz_xor_epi32","_mm256_maskz_xor_epi64","_mm256_maskz_xor_pd","_mm256_maskz_xor_ps","_mm256_max_epi16","_mm256_max_epi32","_mm256_max_epi64","_mm256_max_epi8","_mm256_max_epu16","_mm256_max_epu32","_mm256_max_epu64","_mm256_max_epu8","_mm256_max_pd","_mm256_max_ph","_mm256_max_ps","_mm256_min_epi16","_mm256_min_epi32","_mm256_min_epi64","_mm256_min_epi8","_mm256_min_epu16","_mm256_min_epu32","_mm256_min_epu64","_mm256_min_epu8","_mm256_min_pd","_mm256_min_ph","_mm256_min_ps","_mm256_mmask_i32gather_epi32","_mm256_mmask_i32gather_epi64","_mm256_mmask_i32gather_pd","_mm256_mmask_i32gather_ps","_mm256_mmask_i64gather_epi32","_mm256_mmask_i64gather_epi64","_mm256_mmask_i64gather_pd","_mm256_mmask_i64gather_ps","_mm256_movedup_pd","_mm256_movehdup_ps","_mm256_moveldup_ps","_mm256_movemask_epi8","_mm256_movemask_pd","_mm256_movemask_ps","_mm256_movepi16_mask","_mm256_movepi32_mask","_mm256_movepi64_mask","_mm256_movepi8_mask","_mm256_movm_epi16","_mm256_movm_epi32","_mm256_movm_epi64","_mm256_movm_epi8","_mm256_mpsadbw_epu8","_mm256_mul_epi32","_mm256_mul_epu32","_mm256_mul_pch","_mm256_mul_pd","_mm256_mul_ph","_mm256_mul_ps","_mm256_mulhi_epi16","_mm256_mulhi_epu16","_mm256_mulhrs_epi16","_mm256_mullo_epi16","_mm256_mullo_epi32","_mm256_mullo_epi64","_mm256_multishift_epi64_epi8","_mm256_or_epi32","_mm256_or_epi64","_mm256_or_pd","_mm256_or_ps","_mm256_or_si256","_mm256_packs_epi16","_mm256_packs_epi32","_mm256_packus_epi16","_mm256_packus_epi32","_mm256_permute2f128_pd","_mm256_permute2f128_ps","_mm256_permute2f128_si256","_mm256_permute2x128_si256","_mm256_permute4x64_epi64","_mm256_permute4x64_pd","_mm256_permute_pd","_mm256_permute_ps","_mm256_permutevar8x32_epi32","_mm256_permutevar8x32_ps","_mm256_permutevar_pd","_mm256_permutevar_ps","_mm256_permutex2var_epi16","_mm256_permutex2var_epi32","_mm256_permutex2var_epi64","_mm256_permutex2var_epi8","_mm256_permutex2var_pd","_mm256_permutex2var_ph","_mm256_permutex2var_ps","_mm256_permutex_epi64","_mm256_permutex_pd","_mm256_permutexvar_epi16","_mm256_permutexvar_epi32","_mm256_permutexvar_epi64","_mm256_permutexvar_epi8","_mm256_permutexvar_pd","_mm256_permutexvar_ph","_mm256_permutexvar_ps","_mm256_popcnt_epi16","_mm256_popcnt_epi32","_mm256_popcnt_epi64","_mm256_popcnt_epi8","_mm256_range_pd","_mm256_range_ps","_mm256_rcp14_pd","_mm256_rcp14_ps","_mm256_rcp_ph","_mm256_rcp_ps","_mm256_reduce_add_epi16","_mm256_reduce_add_epi8","_mm256_reduce_add_ph","_mm256_reduce_and_epi16","_mm256_reduce_and_epi8","_mm256_reduce_max_epi16","_mm256_reduce_max_epi8","_mm256_reduce_max_epu16","_mm256_reduce_max_epu8","_mm256_reduce_max_ph","_mm256_reduce_min_epi16","_mm256_reduce_min_epi8","_mm256_reduce_min_epu16","_mm256_reduce_min_epu8","_mm256_reduce_min_ph","_mm256_reduce_mul_epi16","_mm256_reduce_mul_epi8","_mm256_reduce_mul_ph","_mm256_reduce_or_epi16","_mm256_reduce_or_epi8","_mm256_reduce_pd","_mm256_reduce_ph","_mm256_reduce_ps","_mm256_rol_epi32","_mm256_rol_epi64","_mm256_rolv_epi32","_mm256_rolv_epi64","_mm256_ror_epi32","_mm256_ror_epi64","_mm256_rorv_epi32","_mm256_rorv_epi64","_mm256_round_pd","_mm256_round_ps","_mm256_roundscale_pd","_mm256_roundscale_ph","_mm256_roundscale_ps","_mm256_rsqrt14_pd","_mm256_rsqrt14_ps","_mm256_rsqrt_ph","_mm256_rsqrt_ps","_mm256_sad_epu8","_mm256_scalef_pd","_mm256_scalef_ph","_mm256_scalef_ps","_mm256_set1_epi16","_mm256_set1_epi32","_mm256_set1_epi64x","_mm256_set1_epi8","_mm256_set1_pd","_mm256_set1_ph","_mm256_set1_ps","_mm256_set_epi16","_mm256_set_epi32","_mm256_set_epi64x","_mm256_set_epi8","_mm256_set_m128","_mm256_set_m128d","_mm256_set_m128i","_mm256_set_pd","_mm256_set_ph","_mm256_set_ps","_mm256_setr_epi16","_mm256_setr_epi32","_mm256_setr_epi64x","_mm256_setr_epi8","_mm256_setr_m128","_mm256_setr_m128d","_mm256_setr_m128i","_mm256_setr_pd","_mm256_setr_ph","_mm256_setr_ps","_mm256_setzero_pd","_mm256_setzero_ph","_mm256_setzero_ps","_mm256_setzero_si256","_mm256_shldi_epi16","_mm256_shldi_epi32","_mm256_shldi_epi64","_mm256_shldv_epi16","_mm256_shldv_epi32","_mm256_shldv_epi64","_mm256_shrdi_epi16","_mm256_shrdi_epi32","_mm256_shrdi_epi64","_mm256_shrdv_epi16","_mm256_shrdv_epi32","_mm256_shrdv_epi64","_mm256_shuffle_epi32","_mm256_shuffle_epi8","_mm256_shuffle_f32x4","_mm256_shuffle_f64x2","_mm256_shuffle_i32x4","_mm256_shuffle_i64x2","_mm256_shuffle_pd","_mm256_shuffle_ps","_mm256_shufflehi_epi16","_mm256_shufflelo_epi16","_mm256_sign_epi16","_mm256_sign_epi32","_mm256_sign_epi8","_mm256_sll_epi16","_mm256_sll_epi32","_mm256_sll_epi64","_mm256_slli_epi16","_mm256_slli_epi32","_mm256_slli_epi64","_mm256_slli_si256","_mm256_sllv_epi16","_mm256_sllv_epi32","_mm256_sllv_epi64","_mm256_sqrt_pd","_mm256_sqrt_ph","_mm256_sqrt_ps","_mm256_sra_epi16","_mm256_sra_epi32","_mm256_sra_epi64","_mm256_srai_epi16","_mm256_srai_epi32","_mm256_srai_epi64","_mm256_srav_epi16","_mm256_srav_epi32","_mm256_srav_epi64","_mm256_srl_epi16","_mm256_srl_epi32","_mm256_srl_epi64","_mm256_srli_epi16","_mm256_srli_epi32","_mm256_srli_epi64","_mm256_srli_si256","_mm256_srlv_epi16","_mm256_srlv_epi32","_mm256_srlv_epi64","_mm256_store_epi32","_mm256_store_epi64","_mm256_store_pd","_mm256_store_ph","_mm256_store_ps","_mm256_store_si256","_mm256_storeu2_m128","_mm256_storeu2_m128d","_mm256_storeu2_m128i","_mm256_storeu_epi16","_mm256_storeu_epi32","_mm256_storeu_epi64","_mm256_storeu_epi8","_mm256_storeu_pd","_mm256_storeu_ph","_mm256_storeu_ps","_mm256_storeu_si256","_mm256_stream_load_si256","_mm256_stream_pd","_mm256_stream_ps","_mm256_stream_si256","_mm256_sub_epi16","_mm256_sub_epi32","_mm256_sub_epi64","_mm256_sub_epi8","_mm256_sub_pd","_mm256_sub_ph","_mm256_sub_ps","_mm256_subs_epi16","_mm256_subs_epi8","_mm256_subs_epu16","_mm256_subs_epu8","_mm256_ternarylogic_epi32","_mm256_ternarylogic_epi64","_mm256_test_epi16_mask","_mm256_test_epi32_mask","_mm256_test_epi64_mask","_mm256_test_epi8_mask","_mm256_testc_pd","_mm256_testc_ps","_mm256_testc_si256","_mm256_testn_epi16_mask","_mm256_testn_epi32_mask","_mm256_testn_epi64_mask","_mm256_testn_epi8_mask","_mm256_testnzc_pd","_mm256_testnzc_ps","_mm256_testnzc_si256","_mm256_testz_pd","_mm256_testz_ps","_mm256_testz_si256","_mm256_undefined_pd","_mm256_undefined_ph","_mm256_undefined_ps","_mm256_undefined_si256","_mm256_unpackhi_epi16","_mm256_unpackhi_epi32","_mm256_unpackhi_epi64","_mm256_unpackhi_epi8","_mm256_unpackhi_pd","_mm256_unpackhi_ps","_mm256_unpacklo_epi16","_mm256_unpacklo_epi32","_mm256_unpacklo_epi64","_mm256_unpacklo_epi8","_mm256_unpacklo_pd","_mm256_unpacklo_ps","_mm256_xor_epi32","_mm256_xor_epi64","_mm256_xor_pd","_mm256_xor_ps","_mm256_xor_si256","_mm256_zeroall","_mm256_zeroupper","_mm256_zextpd128_pd256","_mm256_zextph128_ph256","_mm256_zextps128_ps256","_mm256_zextsi128_si256","_mm512_abs_epi16","_mm512_abs_epi32","_mm512_abs_epi64","_mm512_abs_epi8","_mm512_abs_pd","_mm512_abs_ph","_mm512_abs_ps","_mm512_add_epi16","_mm512_add_epi32","_mm512_add_epi64","_mm512_add_epi8","_mm512_add_pd","_mm512_add_ph","_mm512_add_ps","_mm512_add_round_pd","_mm512_add_round_ph","_mm512_add_round_ps","_mm512_adds_epi16","_mm512_adds_epi8","_mm512_adds_epu16","_mm512_adds_epu8","_mm512_aesdec_epi128","_mm512_aesdeclast_epi128","_mm512_aesenc_epi128","_mm512_aesenclast_epi128","_mm512_alignr_epi32","_mm512_alignr_epi64","_mm512_alignr_epi8","_mm512_and_epi32","_mm512_and_epi64","_mm512_and_pd","_mm512_and_ps","_mm512_and_si512","_mm512_andnot_epi32","_mm512_andnot_epi64","_mm512_andnot_pd","_mm512_andnot_ps","_mm512_andnot_si512","_mm512_avg_epu16","_mm512_avg_epu8","_mm512_bitshuffle_epi64_mask","_mm512_broadcast_f32x2","_mm512_broadcast_f32x4","_mm512_broadcast_f32x8","_mm512_broadcast_f64x2","_mm512_broadcast_f64x4","_mm512_broadcast_i32x2","_mm512_broadcast_i32x4","_mm512_broadcast_i32x8","_mm512_broadcast_i64x2","_mm512_broadcast_i64x4","_mm512_broadcastb_epi8","_mm512_broadcastd_epi32","_mm512_broadcastmb_epi64","_mm512_broadcastmw_epi32","_mm512_broadcastq_epi64","_mm512_broadcastsd_pd","_mm512_broadcastss_ps","_mm512_broadcastw_epi16","_mm512_bslli_epi128","_mm512_bsrli_epi128","_mm512_castpd128_pd512","_mm512_castpd256_pd512","_mm512_castpd512_pd128","_mm512_castpd512_pd256","_mm512_castpd_ph","_mm512_castpd_ps","_mm512_castpd_si512","_mm512_castph128_ph512","_mm512_castph256_ph512","_mm512_castph512_ph128","_mm512_castph512_ph256","_mm512_castph_pd","_mm512_castph_ps","_mm512_castph_si512","_mm512_castps128_ps512","_mm512_castps256_ps512","_mm512_castps512_ps128","_mm512_castps512_ps256","_mm512_castps_pd","_mm512_castps_ph","_mm512_castps_si512","_mm512_castsi128_si512","_mm512_castsi256_si512","_mm512_castsi512_pd","_mm512_castsi512_ph","_mm512_castsi512_ps","_mm512_castsi512_si128","_mm512_castsi512_si256","_mm512_clmulepi64_epi128","_mm512_cmp_epi16_mask","_mm512_cmp_epi32_mask","_mm512_cmp_epi64_mask","_mm512_cmp_epi8_mask","_mm512_cmp_epu16_mask","_mm512_cmp_epu32_mask","_mm512_cmp_epu64_mask","_mm512_cmp_epu8_mask","_mm512_cmp_pd_mask","_mm512_cmp_ph_mask","_mm512_cmp_ps_mask","_mm512_cmp_round_pd_mask","_mm512_cmp_round_ph_mask","_mm512_cmp_round_ps_mask","_mm512_cmpeq_epi16_mask","_mm512_cmpeq_epi32_mask","_mm512_cmpeq_epi64_mask","_mm512_cmpeq_epi8_mask","_mm512_cmpeq_epu16_mask","_mm512_cmpeq_epu32_mask","_mm512_cmpeq_epu64_mask","_mm512_cmpeq_epu8_mask","_mm512_cmpeq_pd_mask","_mm512_cmpeq_ps_mask","_mm512_cmpge_epi16_mask","_mm512_cmpge_epi32_mask","_mm512_cmpge_epi64_mask","_mm512_cmpge_epi8_mask","_mm512_cmpge_epu16_mask","_mm512_cmpge_epu32_mask","_mm512_cmpge_epu64_mask","_mm512_cmpge_epu8_mask","_mm512_cmpgt_epi16_mask","_mm512_cmpgt_epi32_mask","_mm512_cmpgt_epi64_mask","_mm512_cmpgt_epi8_mask","_mm512_cmpgt_epu16_mask","_mm512_cmpgt_epu32_mask","_mm512_cmpgt_epu64_mask","_mm512_cmpgt_epu8_mask","_mm512_cmple_epi16_mask","_mm512_cmple_epi32_mask","_mm512_cmple_epi64_mask","_mm512_cmple_epi8_mask","_mm512_cmple_epu16_mask","_mm512_cmple_epu32_mask","_mm512_cmple_epu64_mask","_mm512_cmple_epu8_mask","_mm512_cmple_pd_mask","_mm512_cmple_ps_mask","_mm512_cmplt_epi16_mask","_mm512_cmplt_epi32_mask","_mm512_cmplt_epi64_mask","_mm512_cmplt_epi8_mask","_mm512_cmplt_epu16_mask","_mm512_cmplt_epu32_mask","_mm512_cmplt_epu64_mask","_mm512_cmplt_epu8_mask","_mm512_cmplt_pd_mask","_mm512_cmplt_ps_mask","_mm512_cmpneq_epi16_mask","_mm512_cmpneq_epi32_mask","_mm512_cmpneq_epi64_mask","_mm512_cmpneq_epi8_mask","_mm512_cmpneq_epu16_mask","_mm512_cmpneq_epu32_mask","_mm512_cmpneq_epu64_mask","_mm512_cmpneq_epu8_mask","_mm512_cmpneq_pd_mask","_mm512_cmpneq_ps_mask","_mm512_cmpnle_pd_mask","_mm512_cmpnle_ps_mask","_mm512_cmpnlt_pd_mask","_mm512_cmpnlt_ps_mask","_mm512_cmpord_pd_mask","_mm512_cmpord_ps_mask","_mm512_cmpunord_pd_mask","_mm512_cmpunord_ps_mask","_mm512_cmul_pch","_mm512_cmul_round_pch","_mm512_conflict_epi32","_mm512_conflict_epi64","_mm512_conj_pch","_mm512_cvt_roundepi16_ph","_mm512_cvt_roundepi32_ph","_mm512_cvt_roundepi32_ps","_mm512_cvt_roundepi64_pd","_mm512_cvt_roundepi64_ph","_mm512_cvt_roundepi64_ps","_mm512_cvt_roundepu16_ph","_mm512_cvt_roundepu32_ph","_mm512_cvt_roundepu32_ps","_mm512_cvt_roundepu64_pd","_mm512_cvt_roundepu64_ph","_mm512_cvt_roundepu64_ps","_mm512_cvt_roundpd_epi32","_mm512_cvt_roundpd_epi64","_mm512_cvt_roundpd_epu32","_mm512_cvt_roundpd_epu64","_mm512_cvt_roundpd_ph","_mm512_cvt_roundpd_ps","_mm512_cvt_roundph_epi16","_mm512_cvt_roundph_epi32","_mm512_cvt_roundph_epi64","_mm512_cvt_roundph_epu16","_mm512_cvt_roundph_epu32","_mm512_cvt_roundph_epu64","_mm512_cvt_roundph_pd","_mm512_cvt_roundph_ps","_mm512_cvt_roundps_epi32","_mm512_cvt_roundps_epi64","_mm512_cvt_roundps_epu32","_mm512_cvt_roundps_epu64","_mm512_cvt_roundps_pd","_mm512_cvt_roundps_ph","_mm512_cvtepi16_epi32","_mm512_cvtepi16_epi64","_mm512_cvtepi16_epi8","_mm512_cvtepi16_ph","_mm512_cvtepi32_epi16","_mm512_cvtepi32_epi64","_mm512_cvtepi32_epi8","_mm512_cvtepi32_pd","_mm512_cvtepi32_ph","_mm512_cvtepi32_ps","_mm512_cvtepi32lo_pd","_mm512_cvtepi64_epi16","_mm512_cvtepi64_epi32","_mm512_cvtepi64_epi8","_mm512_cvtepi64_pd","_mm512_cvtepi64_ph","_mm512_cvtepi64_ps","_mm512_cvtepi8_epi16","_mm512_cvtepi8_epi32","_mm512_cvtepi8_epi64","_mm512_cvtepu16_epi32","_mm512_cvtepu16_epi64","_mm512_cvtepu16_ph","_mm512_cvtepu32_epi64","_mm512_cvtepu32_pd","_mm512_cvtepu32_ph","_mm512_cvtepu32_ps","_mm512_cvtepu32lo_pd","_mm512_cvtepu64_pd","_mm512_cvtepu64_ph","_mm512_cvtepu64_ps","_mm512_cvtepu8_epi16","_mm512_cvtepu8_epi32","_mm512_cvtepu8_epi64","_mm512_cvtne2ps_pbh","_mm512_cvtneps_pbh","_mm512_cvtpbh_ps","_mm512_cvtpd_epi32","_mm512_cvtpd_epi64","_mm512_cvtpd_epu32","_mm512_cvtpd_epu64","_mm512_cvtpd_ph","_mm512_cvtpd_ps","_mm512_cvtpd_pslo","_mm512_cvtph_epi16","_mm512_cvtph_epi32","_mm512_cvtph_epi64","_mm512_cvtph_epu16","_mm512_cvtph_epu32","_mm512_cvtph_epu64","_mm512_cvtph_pd","_mm512_cvtph_ps","_mm512_cvtps_epi32","_mm512_cvtps_epi64","_mm512_cvtps_epu32","_mm512_cvtps_epu64","_mm512_cvtps_pd","_mm512_cvtps_ph","_mm512_cvtpslo_pd","_mm512_cvtsd_f64","_mm512_cvtsepi16_epi8","_mm512_cvtsepi32_epi16","_mm512_cvtsepi32_epi8","_mm512_cvtsepi64_epi16","_mm512_cvtsepi64_epi32","_mm512_cvtsepi64_epi8","_mm512_cvtsh_h","_mm512_cvtsi512_si32","_mm512_cvtss_f32","_mm512_cvtt_roundpd_epi32","_mm512_cvtt_roundpd_epi64","_mm512_cvtt_roundpd_epu32","_mm512_cvtt_roundpd_epu64","_mm512_cvtt_roundph_epi16","_mm512_cvtt_roundph_epi32","_mm512_cvtt_roundph_epi64","_mm512_cvtt_roundph_epu16","_mm512_cvtt_roundph_epu32","_mm512_cvtt_roundph_epu64","_mm512_cvtt_roundps_epi32","_mm512_cvtt_roundps_epi64","_mm512_cvtt_roundps_epu32","_mm512_cvtt_roundps_epu64","_mm512_cvttpd_epi32","_mm512_cvttpd_epi64","_mm512_cvttpd_epu32","_mm512_cvttpd_epu64","_mm512_cvttph_epi16","_mm512_cvttph_epi32","_mm512_cvttph_epi64","_mm512_cvttph_epu16","_mm512_cvttph_epu32","_mm512_cvttph_epu64","_mm512_cvttps_epi32","_mm512_cvttps_epi64","_mm512_cvttps_epu32","_mm512_cvttps_epu64","_mm512_cvtusepi16_epi8","_mm512_cvtusepi32_epi16","_mm512_cvtusepi32_epi8","_mm512_cvtusepi64_epi16","_mm512_cvtusepi64_epi32","_mm512_cvtusepi64_epi8","_mm512_cvtx_roundph_ps","_mm512_cvtx_roundps_ph","_mm512_cvtxph_ps","_mm512_cvtxps_ph","_mm512_dbsad_epu8","_mm512_div_pd","_mm512_div_ph","_mm512_div_ps","_mm512_div_round_pd","_mm512_div_round_ph","_mm512_div_round_ps","_mm512_dpbf16_ps","_mm512_dpbusd_epi32","_mm512_dpbusds_epi32","_mm512_dpwssd_epi32","_mm512_dpwssds_epi32","_mm512_extractf32x4_ps","_mm512_extractf32x8_ps","_mm512_extractf64x2_pd","_mm512_extractf64x4_pd","_mm512_extracti32x4_epi32","_mm512_extracti32x8_epi32","_mm512_extracti64x2_epi64","_mm512_extracti64x4_epi64","_mm512_fcmadd_pch","_mm512_fcmadd_round_pch","_mm512_fcmul_pch","_mm512_fcmul_round_pch","_mm512_fixupimm_pd","_mm512_fixupimm_ps","_mm512_fixupimm_round_pd","_mm512_fixupimm_round_ps","_mm512_fmadd_pch","_mm512_fmadd_pd","_mm512_fmadd_ph","_mm512_fmadd_ps","_mm512_fmadd_round_pch","_mm512_fmadd_round_pd","_mm512_fmadd_round_ph","_mm512_fmadd_round_ps","_mm512_fmaddsub_pd","_mm512_fmaddsub_ph","_mm512_fmaddsub_ps","_mm512_fmaddsub_round_pd","_mm512_fmaddsub_round_ph","_mm512_fmaddsub_round_ps","_mm512_fmsub_pd","_mm512_fmsub_ph","_mm512_fmsub_ps","_mm512_fmsub_round_pd","_mm512_fmsub_round_ph","_mm512_fmsub_round_ps","_mm512_fmsubadd_pd","_mm512_fmsubadd_ph","_mm512_fmsubadd_ps","_mm512_fmsubadd_round_pd","_mm512_fmsubadd_round_ph","_mm512_fmsubadd_round_ps","_mm512_fmul_pch","_mm512_fmul_round_pch","_mm512_fnmadd_pd","_mm512_fnmadd_ph","_mm512_fnmadd_ps","_mm512_fnmadd_round_pd","_mm512_fnmadd_round_ph","_mm512_fnmadd_round_ps","_mm512_fnmsub_pd","_mm512_fnmsub_ph","_mm512_fnmsub_ps","_mm512_fnmsub_round_pd","_mm512_fnmsub_round_ph","_mm512_fnmsub_round_ps","_mm512_fpclass_pd_mask","_mm512_fpclass_ph_mask","_mm512_fpclass_ps_mask","_mm512_getexp_pd","_mm512_getexp_ph","_mm512_getexp_ps","_mm512_getexp_round_pd","_mm512_getexp_round_ph","_mm512_getexp_round_ps","_mm512_getmant_pd","_mm512_getmant_ph","_mm512_getmant_ps","_mm512_getmant_round_pd","_mm512_getmant_round_ph","_mm512_getmant_round_ps","_mm512_gf2p8affine_epi64_epi8","_mm512_gf2p8affineinv_epi64_epi8","_mm512_gf2p8mul_epi8","_mm512_i32gather_epi32","_mm512_i32gather_epi64","_mm512_i32gather_pd","_mm512_i32gather_ps","_mm512_i32logather_epi64","_mm512_i32logather_pd","_mm512_i32loscatter_epi64","_mm512_i32loscatter_pd","_mm512_i32scatter_epi32","_mm512_i32scatter_epi64","_mm512_i32scatter_pd","_mm512_i32scatter_ps","_mm512_i64gather_epi32","_mm512_i64gather_epi64","_mm512_i64gather_pd","_mm512_i64gather_ps","_mm512_i64scatter_epi32","_mm512_i64scatter_epi64","_mm512_i64scatter_pd","_mm512_i64scatter_ps","_mm512_insertf32x4","_mm512_insertf32x8","_mm512_insertf64x2","_mm512_insertf64x4","_mm512_inserti32x4","_mm512_inserti32x8","_mm512_inserti64x2","_mm512_inserti64x4","_mm512_int2mask","_mm512_kand","_mm512_kandn","_mm512_kmov","_mm512_knot","_mm512_kor","_mm512_kortestc","_mm512_kortestz","_mm512_kunpackb","_mm512_kunpackd","_mm512_kunpackw","_mm512_kxnor","_mm512_kxor","_mm512_load_epi32","_mm512_load_epi64","_mm512_load_pd","_mm512_load_ph","_mm512_load_ps","_mm512_load_si512","_mm512_loadu_epi16","_mm512_loadu_epi32","_mm512_loadu_epi64","_mm512_loadu_epi8","_mm512_loadu_pd","_mm512_loadu_ph","_mm512_loadu_ps","_mm512_loadu_si512","_mm512_lzcnt_epi32","_mm512_lzcnt_epi64","_mm512_madd52hi_epu64","_mm512_madd52lo_epu64","_mm512_madd_epi16","_mm512_maddubs_epi16","_mm512_mask2_permutex2var_epi16","_mm512_mask2_permutex2var_epi32","_mm512_mask2_permutex2var_epi64","_mm512_mask2_permutex2var_epi8","_mm512_mask2_permutex2var_pd","_mm512_mask2_permutex2var_ps","_mm512_mask2int","_mm512_mask3_fcmadd_pch","_mm512_mask3_fcmadd_round_pch","_mm512_mask3_fmadd_pch","_mm512_mask3_fmadd_pd","_mm512_mask3_fmadd_ph","_mm512_mask3_fmadd_ps","_mm512_mask3_fmadd_round_pch","_mm512_mask3_fmadd_round_pd","_mm512_mask3_fmadd_round_ph","_mm512_mask3_fmadd_round_ps","_mm512_mask3_fmaddsub_pd","_mm512_mask3_fmaddsub_ph","_mm512_mask3_fmaddsub_ps","_mm512_mask3_fmaddsub_round_pd","_mm512_mask3_fmaddsub_round_ph","_mm512_mask3_fmaddsub_round_ps","_mm512_mask3_fmsub_pd","_mm512_mask3_fmsub_ph","_mm512_mask3_fmsub_ps","_mm512_mask3_fmsub_round_pd","_mm512_mask3_fmsub_round_ph","_mm512_mask3_fmsub_round_ps","_mm512_mask3_fmsubadd_pd","_mm512_mask3_fmsubadd_ph","_mm512_mask3_fmsubadd_ps","_mm512_mask3_fmsubadd_round_pd","_mm512_mask3_fmsubadd_round_ph","_mm512_mask3_fmsubadd_round_ps","_mm512_mask3_fnmadd_pd","_mm512_mask3_fnmadd_ph","_mm512_mask3_fnmadd_ps","_mm512_mask3_fnmadd_round_pd","_mm512_mask3_fnmadd_round_ph","_mm512_mask3_fnmadd_round_ps","_mm512_mask3_fnmsub_pd","_mm512_mask3_fnmsub_ph","_mm512_mask3_fnmsub_ps","_mm512_mask3_fnmsub_round_pd","_mm512_mask3_fnmsub_round_ph","_mm512_mask3_fnmsub_round_ps","_mm512_mask_abs_epi16","_mm512_mask_abs_epi32","_mm512_mask_abs_epi64","_mm512_mask_abs_epi8","_mm512_mask_abs_pd","_mm512_mask_abs_ps","_mm512_mask_add_epi16","_mm512_mask_add_epi32","_mm512_mask_add_epi64","_mm512_mask_add_epi8","_mm512_mask_add_pd","_mm512_mask_add_ph","_mm512_mask_add_ps","_mm512_mask_add_round_pd","_mm512_mask_add_round_ph","_mm512_mask_add_round_ps","_mm512_mask_adds_epi16","_mm512_mask_adds_epi8","_mm512_mask_adds_epu16","_mm512_mask_adds_epu8","_mm512_mask_alignr_epi32","_mm512_mask_alignr_epi64","_mm512_mask_alignr_epi8","_mm512_mask_and_epi32","_mm512_mask_and_epi64","_mm512_mask_and_pd","_mm512_mask_and_ps","_mm512_mask_andnot_epi32","_mm512_mask_andnot_epi64","_mm512_mask_andnot_pd","_mm512_mask_andnot_ps","_mm512_mask_avg_epu16","_mm512_mask_avg_epu8","_mm512_mask_bitshuffle_epi64_mask","_mm512_mask_blend_epi16","_mm512_mask_blend_epi32","_mm512_mask_blend_epi64","_mm512_mask_blend_epi8","_mm512_mask_blend_pd","_mm512_mask_blend_ph","_mm512_mask_blend_ps","_mm512_mask_broadcast_f32x2","_mm512_mask_broadcast_f32x4","_mm512_mask_broadcast_f32x8","_mm512_mask_broadcast_f64x2","_mm512_mask_broadcast_f64x4","_mm512_mask_broadcast_i32x2","_mm512_mask_broadcast_i32x4","_mm512_mask_broadcast_i32x8","_mm512_mask_broadcast_i64x2","_mm512_mask_broadcast_i64x4","_mm512_mask_broadcastb_epi8","_mm512_mask_broadcastd_epi32","_mm512_mask_broadcastq_epi64","_mm512_mask_broadcastsd_pd","_mm512_mask_broadcastss_ps","_mm512_mask_broadcastw_epi16","_mm512_mask_cmp_epi16_mask","_mm512_mask_cmp_epi32_mask","_mm512_mask_cmp_epi64_mask","_mm512_mask_cmp_epi8_mask","_mm512_mask_cmp_epu16_mask","_mm512_mask_cmp_epu32_mask","_mm512_mask_cmp_epu64_mask","_mm512_mask_cmp_epu8_mask","_mm512_mask_cmp_pd_mask","_mm512_mask_cmp_ph_mask","_mm512_mask_cmp_ps_mask","_mm512_mask_cmp_round_pd_mask","_mm512_mask_cmp_round_ph_mask","_mm512_mask_cmp_round_ps_mask","_mm512_mask_cmpeq_epi16_mask","_mm512_mask_cmpeq_epi32_mask","_mm512_mask_cmpeq_epi64_mask","_mm512_mask_cmpeq_epi8_mask","_mm512_mask_cmpeq_epu16_mask","_mm512_mask_cmpeq_epu32_mask","_mm512_mask_cmpeq_epu64_mask","_mm512_mask_cmpeq_epu8_mask","_mm512_mask_cmpeq_pd_mask","_mm512_mask_cmpeq_ps_mask","_mm512_mask_cmpge_epi16_mask","_mm512_mask_cmpge_epi32_mask","_mm512_mask_cmpge_epi64_mask","_mm512_mask_cmpge_epi8_mask","_mm512_mask_cmpge_epu16_mask","_mm512_mask_cmpge_epu32_mask","_mm512_mask_cmpge_epu64_mask","_mm512_mask_cmpge_epu8_mask","_mm512_mask_cmpgt_epi16_mask","_mm512_mask_cmpgt_epi32_mask","_mm512_mask_cmpgt_epi64_mask","_mm512_mask_cmpgt_epi8_mask","_mm512_mask_cmpgt_epu16_mask","_mm512_mask_cmpgt_epu32_mask","_mm512_mask_cmpgt_epu64_mask","_mm512_mask_cmpgt_epu8_mask","_mm512_mask_cmple_epi16_mask","_mm512_mask_cmple_epi32_mask","_mm512_mask_cmple_epi64_mask","_mm512_mask_cmple_epi8_mask","_mm512_mask_cmple_epu16_mask","_mm512_mask_cmple_epu32_mask","_mm512_mask_cmple_epu64_mask","_mm512_mask_cmple_epu8_mask","_mm512_mask_cmple_pd_mask","_mm512_mask_cmple_ps_mask","_mm512_mask_cmplt_epi16_mask","_mm512_mask_cmplt_epi32_mask","_mm512_mask_cmplt_epi64_mask","_mm512_mask_cmplt_epi8_mask","_mm512_mask_cmplt_epu16_mask","_mm512_mask_cmplt_epu32_mask","_mm512_mask_cmplt_epu64_mask","_mm512_mask_cmplt_epu8_mask","_mm512_mask_cmplt_pd_mask","_mm512_mask_cmplt_ps_mask","_mm512_mask_cmpneq_epi16_mask","_mm512_mask_cmpneq_epi32_mask","_mm512_mask_cmpneq_epi64_mask","_mm512_mask_cmpneq_epi8_mask","_mm512_mask_cmpneq_epu16_mask","_mm512_mask_cmpneq_epu32_mask","_mm512_mask_cmpneq_epu64_mask","_mm512_mask_cmpneq_epu8_mask","_mm512_mask_cmpneq_pd_mask","_mm512_mask_cmpneq_ps_mask","_mm512_mask_cmpnle_pd_mask","_mm512_mask_cmpnle_ps_mask","_mm512_mask_cmpnlt_pd_mask","_mm512_mask_cmpnlt_ps_mask","_mm512_mask_cmpord_pd_mask","_mm512_mask_cmpord_ps_mask","_mm512_mask_cmpunord_pd_mask","_mm512_mask_cmpunord_ps_mask","_mm512_mask_cmul_pch","_mm512_mask_cmul_round_pch","_mm512_mask_compress_epi16","_mm512_mask_compress_epi32","_mm512_mask_compress_epi64","_mm512_mask_compress_epi8","_mm512_mask_compress_pd","_mm512_mask_compress_ps","_mm512_mask_compressstoreu_epi16","_mm512_mask_compressstoreu_epi32","_mm512_mask_compressstoreu_epi64","_mm512_mask_compressstoreu_epi8","_mm512_mask_compressstoreu_pd","_mm512_mask_compressstoreu_ps","_mm512_mask_conflict_epi32","_mm512_mask_conflict_epi64","_mm512_mask_conj_pch","_mm512_mask_cvt_roundepi16_ph","_mm512_mask_cvt_roundepi32_ph","_mm512_mask_cvt_roundepi32_ps","_mm512_mask_cvt_roundepi64_pd","_mm512_mask_cvt_roundepi64_ph","_mm512_mask_cvt_roundepi64_ps","_mm512_mask_cvt_roundepu16_ph","_mm512_mask_cvt_roundepu32_ph","_mm512_mask_cvt_roundepu32_ps","_mm512_mask_cvt_roundepu64_pd","_mm512_mask_cvt_roundepu64_ph","_mm512_mask_cvt_roundepu64_ps","_mm512_mask_cvt_roundpd_epi32","_mm512_mask_cvt_roundpd_epi64","_mm512_mask_cvt_roundpd_epu32","_mm512_mask_cvt_roundpd_epu64","_mm512_mask_cvt_roundpd_ph","_mm512_mask_cvt_roundpd_ps","_mm512_mask_cvt_roundph_epi16","_mm512_mask_cvt_roundph_epi32","_mm512_mask_cvt_roundph_epi64","_mm512_mask_cvt_roundph_epu16","_mm512_mask_cvt_roundph_epu32","_mm512_mask_cvt_roundph_epu64","_mm512_mask_cvt_roundph_pd","_mm512_mask_cvt_roundph_ps","_mm512_mask_cvt_roundps_epi32","_mm512_mask_cvt_roundps_epi64","_mm512_mask_cvt_roundps_epu32","_mm512_mask_cvt_roundps_epu64","_mm512_mask_cvt_roundps_pd","_mm512_mask_cvt_roundps_ph","_mm512_mask_cvtepi16_epi32","_mm512_mask_cvtepi16_epi64","_mm512_mask_cvtepi16_epi8","_mm512_mask_cvtepi16_ph","_mm512_mask_cvtepi16_storeu_epi8","_mm512_mask_cvtepi32_epi16","_mm512_mask_cvtepi32_epi64","_mm512_mask_cvtepi32_epi8","_mm512_mask_cvtepi32_pd","_mm512_mask_cvtepi32_ph","_mm512_mask_cvtepi32_ps","_mm512_mask_cvtepi32_storeu_epi16","_mm512_mask_cvtepi32_storeu_epi8","_mm512_mask_cvtepi32lo_pd","_mm512_mask_cvtepi64_epi16","_mm512_mask_cvtepi64_epi32","_mm512_mask_cvtepi64_epi8","_mm512_mask_cvtepi64_pd","_mm512_mask_cvtepi64_ph","_mm512_mask_cvtepi64_ps","_mm512_mask_cvtepi64_storeu_epi16","_mm512_mask_cvtepi64_storeu_epi32","_mm512_mask_cvtepi64_storeu_epi8","_mm512_mask_cvtepi8_epi16","_mm512_mask_cvtepi8_epi32","_mm512_mask_cvtepi8_epi64","_mm512_mask_cvtepu16_epi32","_mm512_mask_cvtepu16_epi64","_mm512_mask_cvtepu16_ph","_mm512_mask_cvtepu32_epi64","_mm512_mask_cvtepu32_pd","_mm512_mask_cvtepu32_ph","_mm512_mask_cvtepu32_ps","_mm512_mask_cvtepu32lo_pd","_mm512_mask_cvtepu64_pd","_mm512_mask_cvtepu64_ph","_mm512_mask_cvtepu64_ps","_mm512_mask_cvtepu8_epi16","_mm512_mask_cvtepu8_epi32","_mm512_mask_cvtepu8_epi64","_mm512_mask_cvtne2ps_pbh","_mm512_mask_cvtneps_pbh","_mm512_mask_cvtpbh_ps","_mm512_mask_cvtpd_epi32","_mm512_mask_cvtpd_epi64","_mm512_mask_cvtpd_epu32","_mm512_mask_cvtpd_epu64","_mm512_mask_cvtpd_ph","_mm512_mask_cvtpd_ps","_mm512_mask_cvtpd_pslo","_mm512_mask_cvtph_epi16","_mm512_mask_cvtph_epi32","_mm512_mask_cvtph_epi64","_mm512_mask_cvtph_epu16","_mm512_mask_cvtph_epu32","_mm512_mask_cvtph_epu64","_mm512_mask_cvtph_pd","_mm512_mask_cvtph_ps","_mm512_mask_cvtps_epi32","_mm512_mask_cvtps_epi64","_mm512_mask_cvtps_epu32","_mm512_mask_cvtps_epu64","_mm512_mask_cvtps_pd","_mm512_mask_cvtps_ph","_mm512_mask_cvtpslo_pd","_mm512_mask_cvtsepi16_epi8","_mm512_mask_cvtsepi16_storeu_epi8","_mm512_mask_cvtsepi32_epi16","_mm512_mask_cvtsepi32_epi8","_mm512_mask_cvtsepi32_storeu_epi16","_mm512_mask_cvtsepi32_storeu_epi8","_mm512_mask_cvtsepi64_epi16","_mm512_mask_cvtsepi64_epi32","_mm512_mask_cvtsepi64_epi8","_mm512_mask_cvtsepi64_storeu_epi16","_mm512_mask_cvtsepi64_storeu_epi32","_mm512_mask_cvtsepi64_storeu_epi8","_mm512_mask_cvtt_roundpd_epi32","_mm512_mask_cvtt_roundpd_epi64","_mm512_mask_cvtt_roundpd_epu32","_mm512_mask_cvtt_roundpd_epu64","_mm512_mask_cvtt_roundph_epi16","_mm512_mask_cvtt_roundph_epi32","_mm512_mask_cvtt_roundph_epi64","_mm512_mask_cvtt_roundph_epu16","_mm512_mask_cvtt_roundph_epu32","_mm512_mask_cvtt_roundph_epu64","_mm512_mask_cvtt_roundps_epi32","_mm512_mask_cvtt_roundps_epi64","_mm512_mask_cvtt_roundps_epu32","_mm512_mask_cvtt_roundps_epu64","_mm512_mask_cvttpd_epi32","_mm512_mask_cvttpd_epi64","_mm512_mask_cvttpd_epu32","_mm512_mask_cvttpd_epu64","_mm512_mask_cvttph_epi16","_mm512_mask_cvttph_epi32","_mm512_mask_cvttph_epi64","_mm512_mask_cvttph_epu16","_mm512_mask_cvttph_epu32","_mm512_mask_cvttph_epu64","_mm512_mask_cvttps_epi32","_mm512_mask_cvttps_epi64","_mm512_mask_cvttps_epu32","_mm512_mask_cvttps_epu64","_mm512_mask_cvtusepi16_epi8","_mm512_mask_cvtusepi16_storeu_epi8","_mm512_mask_cvtusepi32_epi16","_mm512_mask_cvtusepi32_epi8","_mm512_mask_cvtusepi32_storeu_epi16","_mm512_mask_cvtusepi32_storeu_epi8","_mm512_mask_cvtusepi64_epi16","_mm512_mask_cvtusepi64_epi32","_mm512_mask_cvtusepi64_epi8","_mm512_mask_cvtusepi64_storeu_epi16","_mm512_mask_cvtusepi64_storeu_epi32","_mm512_mask_cvtusepi64_storeu_epi8","_mm512_mask_cvtx_roundph_ps","_mm512_mask_cvtx_roundps_ph","_mm512_mask_cvtxph_ps","_mm512_mask_cvtxps_ph","_mm512_mask_dbsad_epu8","_mm512_mask_div_pd","_mm512_mask_div_ph","_mm512_mask_div_ps","_mm512_mask_div_round_pd","_mm512_mask_div_round_ph","_mm512_mask_div_round_ps","_mm512_mask_dpbf16_ps","_mm512_mask_dpbusd_epi32","_mm512_mask_dpbusds_epi32","_mm512_mask_dpwssd_epi32","_mm512_mask_dpwssds_epi32","_mm512_mask_expand_epi16","_mm512_mask_expand_epi32","_mm512_mask_expand_epi64","_mm512_mask_expand_epi8","_mm512_mask_expand_pd","_mm512_mask_expand_ps","_mm512_mask_expandloadu_epi16","_mm512_mask_expandloadu_epi32","_mm512_mask_expandloadu_epi64","_mm512_mask_expandloadu_epi8","_mm512_mask_expandloadu_pd","_mm512_mask_expandloadu_ps","_mm512_mask_extractf32x4_ps","_mm512_mask_extractf32x8_ps","_mm512_mask_extractf64x2_pd","_mm512_mask_extractf64x4_pd","_mm512_mask_extracti32x4_epi32","_mm512_mask_extracti32x8_epi32","_mm512_mask_extracti64x2_epi64","_mm512_mask_extracti64x4_epi64","_mm512_mask_fcmadd_pch","_mm512_mask_fcmadd_round_pch","_mm512_mask_fcmul_pch","_mm512_mask_fcmul_round_pch","_mm512_mask_fixupimm_pd","_mm512_mask_fixupimm_ps","_mm512_mask_fixupimm_round_pd","_mm512_mask_fixupimm_round_ps","_mm512_mask_fmadd_pch","_mm512_mask_fmadd_pd","_mm512_mask_fmadd_ph","_mm512_mask_fmadd_ps","_mm512_mask_fmadd_round_pch","_mm512_mask_fmadd_round_pd","_mm512_mask_fmadd_round_ph","_mm512_mask_fmadd_round_ps","_mm512_mask_fmaddsub_pd","_mm512_mask_fmaddsub_ph","_mm512_mask_fmaddsub_ps","_mm512_mask_fmaddsub_round_pd","_mm512_mask_fmaddsub_round_ph","_mm512_mask_fmaddsub_round_ps","_mm512_mask_fmsub_pd","_mm512_mask_fmsub_ph","_mm512_mask_fmsub_ps","_mm512_mask_fmsub_round_pd","_mm512_mask_fmsub_round_ph","_mm512_mask_fmsub_round_ps","_mm512_mask_fmsubadd_pd","_mm512_mask_fmsubadd_ph","_mm512_mask_fmsubadd_ps","_mm512_mask_fmsubadd_round_pd","_mm512_mask_fmsubadd_round_ph","_mm512_mask_fmsubadd_round_ps","_mm512_mask_fmul_pch","_mm512_mask_fmul_round_pch","_mm512_mask_fnmadd_pd","_mm512_mask_fnmadd_ph","_mm512_mask_fnmadd_ps","_mm512_mask_fnmadd_round_pd","_mm512_mask_fnmadd_round_ph","_mm512_mask_fnmadd_round_ps","_mm512_mask_fnmsub_pd","_mm512_mask_fnmsub_ph","_mm512_mask_fnmsub_ps","_mm512_mask_fnmsub_round_pd","_mm512_mask_fnmsub_round_ph","_mm512_mask_fnmsub_round_ps","_mm512_mask_fpclass_pd_mask","_mm512_mask_fpclass_ph_mask","_mm512_mask_fpclass_ps_mask","_mm512_mask_getexp_pd","_mm512_mask_getexp_ph","_mm512_mask_getexp_ps","_mm512_mask_getexp_round_pd","_mm512_mask_getexp_round_ph","_mm512_mask_getexp_round_ps","_mm512_mask_getmant_pd","_mm512_mask_getmant_ph","_mm512_mask_getmant_ps","_mm512_mask_getmant_round_pd","_mm512_mask_getmant_round_ph","_mm512_mask_getmant_round_ps","_mm512_mask_gf2p8affine_epi64_epi8","_mm512_mask_gf2p8affineinv_epi64_epi8","_mm512_mask_gf2p8mul_epi8","_mm512_mask_i32gather_epi32","_mm512_mask_i32gather_epi64","_mm512_mask_i32gather_pd","_mm512_mask_i32gather_ps","_mm512_mask_i32logather_epi64","_mm512_mask_i32logather_pd","_mm512_mask_i32loscatter_epi64","_mm512_mask_i32loscatter_pd","_mm512_mask_i32scatter_epi32","_mm512_mask_i32scatter_epi64","_mm512_mask_i32scatter_pd","_mm512_mask_i32scatter_ps","_mm512_mask_i64gather_epi32","_mm512_mask_i64gather_epi64","_mm512_mask_i64gather_pd","_mm512_mask_i64gather_ps","_mm512_mask_i64scatter_epi32","_mm512_mask_i64scatter_epi64","_mm512_mask_i64scatter_pd","_mm512_mask_i64scatter_ps","_mm512_mask_insertf32x4","_mm512_mask_insertf32x8","_mm512_mask_insertf64x2","_mm512_mask_insertf64x4","_mm512_mask_inserti32x4","_mm512_mask_inserti32x8","_mm512_mask_inserti64x2","_mm512_mask_inserti64x4","_mm512_mask_load_epi32","_mm512_mask_load_epi64","_mm512_mask_load_pd","_mm512_mask_load_ps","_mm512_mask_loadu_epi16","_mm512_mask_loadu_epi32","_mm512_mask_loadu_epi64","_mm512_mask_loadu_epi8","_mm512_mask_loadu_pd","_mm512_mask_loadu_ps","_mm512_mask_lzcnt_epi32","_mm512_mask_lzcnt_epi64","_mm512_mask_madd52hi_epu64","_mm512_mask_madd52lo_epu64","_mm512_mask_madd_epi16","_mm512_mask_maddubs_epi16","_mm512_mask_max_epi16","_mm512_mask_max_epi32","_mm512_mask_max_epi64","_mm512_mask_max_epi8","_mm512_mask_max_epu16","_mm512_mask_max_epu32","_mm512_mask_max_epu64","_mm512_mask_max_epu8","_mm512_mask_max_pd","_mm512_mask_max_ph","_mm512_mask_max_ps","_mm512_mask_max_round_pd","_mm512_mask_max_round_ph","_mm512_mask_max_round_ps","_mm512_mask_min_epi16","_mm512_mask_min_epi32","_mm512_mask_min_epi64","_mm512_mask_min_epi8","_mm512_mask_min_epu16","_mm512_mask_min_epu32","_mm512_mask_min_epu64","_mm512_mask_min_epu8","_mm512_mask_min_pd","_mm512_mask_min_ph","_mm512_mask_min_ps","_mm512_mask_min_round_pd","_mm512_mask_min_round_ph","_mm512_mask_min_round_ps","_mm512_mask_mov_epi16","_mm512_mask_mov_epi32","_mm512_mask_mov_epi64","_mm512_mask_mov_epi8","_mm512_mask_mov_pd","_mm512_mask_mov_ps","_mm512_mask_movedup_pd","_mm512_mask_movehdup_ps","_mm512_mask_moveldup_ps","_mm512_mask_mul_epi32","_mm512_mask_mul_epu32","_mm512_mask_mul_pch","_mm512_mask_mul_pd","_mm512_mask_mul_ph","_mm512_mask_mul_ps","_mm512_mask_mul_round_pch","_mm512_mask_mul_round_pd","_mm512_mask_mul_round_ph","_mm512_mask_mul_round_ps","_mm512_mask_mulhi_epi16","_mm512_mask_mulhi_epu16","_mm512_mask_mulhrs_epi16","_mm512_mask_mullo_epi16","_mm512_mask_mullo_epi32","_mm512_mask_mullo_epi64","_mm512_mask_mullox_epi64","_mm512_mask_multishift_epi64_epi8","_mm512_mask_or_epi32","_mm512_mask_or_epi64","_mm512_mask_or_pd","_mm512_mask_or_ps","_mm512_mask_packs_epi16","_mm512_mask_packs_epi32","_mm512_mask_packus_epi16","_mm512_mask_packus_epi32","_mm512_mask_permute_pd","_mm512_mask_permute_ps","_mm512_mask_permutevar_epi32","_mm512_mask_permutevar_pd","_mm512_mask_permutevar_ps","_mm512_mask_permutex2var_epi16","_mm512_mask_permutex2var_epi32","_mm512_mask_permutex2var_epi64","_mm512_mask_permutex2var_epi8","_mm512_mask_permutex2var_pd","_mm512_mask_permutex2var_ps","_mm512_mask_permutex_epi64","_mm512_mask_permutex_pd","_mm512_mask_permutexvar_epi16","_mm512_mask_permutexvar_epi32","_mm512_mask_permutexvar_epi64","_mm512_mask_permutexvar_epi8","_mm512_mask_permutexvar_pd","_mm512_mask_permutexvar_ps","_mm512_mask_popcnt_epi16","_mm512_mask_popcnt_epi32","_mm512_mask_popcnt_epi64","_mm512_mask_popcnt_epi8","_mm512_mask_range_pd","_mm512_mask_range_ps","_mm512_mask_range_round_pd","_mm512_mask_range_round_ps","_mm512_mask_rcp14_pd","_mm512_mask_rcp14_ps","_mm512_mask_rcp_ph","_mm512_mask_reduce_add_epi32","_mm512_mask_reduce_add_epi64","_mm512_mask_reduce_add_pd","_mm512_mask_reduce_add_ps","_mm512_mask_reduce_and_epi32","_mm512_mask_reduce_and_epi64","_mm512_mask_reduce_max_epi32","_mm512_mask_reduce_max_epi64","_mm512_mask_reduce_max_epu32","_mm512_mask_reduce_max_epu64","_mm512_mask_reduce_max_pd","_mm512_mask_reduce_max_ps","_mm512_mask_reduce_min_epi32","_mm512_mask_reduce_min_epi64","_mm512_mask_reduce_min_epu32","_mm512_mask_reduce_min_epu64","_mm512_mask_reduce_min_pd","_mm512_mask_reduce_min_ps","_mm512_mask_reduce_mul_epi32","_mm512_mask_reduce_mul_epi64","_mm512_mask_reduce_mul_pd","_mm512_mask_reduce_mul_ps","_mm512_mask_reduce_or_epi32","_mm512_mask_reduce_or_epi64","_mm512_mask_reduce_pd","_mm512_mask_reduce_ph","_mm512_mask_reduce_ps","_mm512_mask_reduce_round_pd","_mm512_mask_reduce_round_ph","_mm512_mask_reduce_round_ps","_mm512_mask_rol_epi32","_mm512_mask_rol_epi64","_mm512_mask_rolv_epi32","_mm512_mask_rolv_epi64","_mm512_mask_ror_epi32","_mm512_mask_ror_epi64","_mm512_mask_rorv_epi32","_mm512_mask_rorv_epi64","_mm512_mask_roundscale_pd","_mm512_mask_roundscale_ph","_mm512_mask_roundscale_ps","_mm512_mask_roundscale_round_pd","_mm512_mask_roundscale_round_ph","_mm512_mask_roundscale_round_ps","_mm512_mask_rsqrt14_pd","_mm512_mask_rsqrt14_ps","_mm512_mask_rsqrt_ph","_mm512_mask_scalef_pd","_mm512_mask_scalef_ph","_mm512_mask_scalef_ps","_mm512_mask_scalef_round_pd","_mm512_mask_scalef_round_ph","_mm512_mask_scalef_round_ps","_mm512_mask_set1_epi16","_mm512_mask_set1_epi32","_mm512_mask_set1_epi64","_mm512_mask_set1_epi8","_mm512_mask_shldi_epi16","_mm512_mask_shldi_epi32","_mm512_mask_shldi_epi64","_mm512_mask_shldv_epi16","_mm512_mask_shldv_epi32","_mm512_mask_shldv_epi64","_mm512_mask_shrdi_epi16","_mm512_mask_shrdi_epi32","_mm512_mask_shrdi_epi64","_mm512_mask_shrdv_epi16","_mm512_mask_shrdv_epi32","_mm512_mask_shrdv_epi64","_mm512_mask_shuffle_epi32","_mm512_mask_shuffle_epi8","_mm512_mask_shuffle_f32x4","_mm512_mask_shuffle_f64x2","_mm512_mask_shuffle_i32x4","_mm512_mask_shuffle_i64x2","_mm512_mask_shuffle_pd","_mm512_mask_shuffle_ps","_mm512_mask_shufflehi_epi16","_mm512_mask_shufflelo_epi16","_mm512_mask_sll_epi16","_mm512_mask_sll_epi32","_mm512_mask_sll_epi64","_mm512_mask_slli_epi16","_mm512_mask_slli_epi32","_mm512_mask_slli_epi64","_mm512_mask_sllv_epi16","_mm512_mask_sllv_epi32","_mm512_mask_sllv_epi64","_mm512_mask_sqrt_pd","_mm512_mask_sqrt_ph","_mm512_mask_sqrt_ps","_mm512_mask_sqrt_round_pd","_mm512_mask_sqrt_round_ph","_mm512_mask_sqrt_round_ps","_mm512_mask_sra_epi16","_mm512_mask_sra_epi32","_mm512_mask_sra_epi64","_mm512_mask_srai_epi16","_mm512_mask_srai_epi32","_mm512_mask_srai_epi64","_mm512_mask_srav_epi16","_mm512_mask_srav_epi32","_mm512_mask_srav_epi64","_mm512_mask_srl_epi16","_mm512_mask_srl_epi32","_mm512_mask_srl_epi64","_mm512_mask_srli_epi16","_mm512_mask_srli_epi32","_mm512_mask_srli_epi64","_mm512_mask_srlv_epi16","_mm512_mask_srlv_epi32","_mm512_mask_srlv_epi64","_mm512_mask_store_epi32","_mm512_mask_store_epi64","_mm512_mask_store_pd","_mm512_mask_store_ps","_mm512_mask_storeu_epi16","_mm512_mask_storeu_epi32","_mm512_mask_storeu_epi64","_mm512_mask_storeu_epi8","_mm512_mask_storeu_pd","_mm512_mask_storeu_ps","_mm512_mask_sub_epi16","_mm512_mask_sub_epi32","_mm512_mask_sub_epi64","_mm512_mask_sub_epi8","_mm512_mask_sub_pd","_mm512_mask_sub_ph","_mm512_mask_sub_ps","_mm512_mask_sub_round_pd","_mm512_mask_sub_round_ph","_mm512_mask_sub_round_ps","_mm512_mask_subs_epi16","_mm512_mask_subs_epi8","_mm512_mask_subs_epu16","_mm512_mask_subs_epu8","_mm512_mask_ternarylogic_epi32","_mm512_mask_ternarylogic_epi64","_mm512_mask_test_epi16_mask","_mm512_mask_test_epi32_mask","_mm512_mask_test_epi64_mask","_mm512_mask_test_epi8_mask","_mm512_mask_testn_epi16_mask","_mm512_mask_testn_epi32_mask","_mm512_mask_testn_epi64_mask","_mm512_mask_testn_epi8_mask","_mm512_mask_unpackhi_epi16","_mm512_mask_unpackhi_epi32","_mm512_mask_unpackhi_epi64","_mm512_mask_unpackhi_epi8","_mm512_mask_unpackhi_pd","_mm512_mask_unpackhi_ps","_mm512_mask_unpacklo_epi16","_mm512_mask_unpacklo_epi32","_mm512_mask_unpacklo_epi64","_mm512_mask_unpacklo_epi8","_mm512_mask_unpacklo_pd","_mm512_mask_unpacklo_ps","_mm512_mask_xor_epi32","_mm512_mask_xor_epi64","_mm512_mask_xor_pd","_mm512_mask_xor_ps","_mm512_maskz_abs_epi16","_mm512_maskz_abs_epi32","_mm512_maskz_abs_epi64","_mm512_maskz_abs_epi8","_mm512_maskz_add_epi16","_mm512_maskz_add_epi32","_mm512_maskz_add_epi64","_mm512_maskz_add_epi8","_mm512_maskz_add_pd","_mm512_maskz_add_ph","_mm512_maskz_add_ps","_mm512_maskz_add_round_pd","_mm512_maskz_add_round_ph","_mm512_maskz_add_round_ps","_mm512_maskz_adds_epi16","_mm512_maskz_adds_epi8","_mm512_maskz_adds_epu16","_mm512_maskz_adds_epu8","_mm512_maskz_alignr_epi32","_mm512_maskz_alignr_epi64","_mm512_maskz_alignr_epi8","_mm512_maskz_and_epi32","_mm512_maskz_and_epi64","_mm512_maskz_and_pd","_mm512_maskz_and_ps","_mm512_maskz_andnot_epi32","_mm512_maskz_andnot_epi64","_mm512_maskz_andnot_pd","_mm512_maskz_andnot_ps","_mm512_maskz_avg_epu16","_mm512_maskz_avg_epu8","_mm512_maskz_broadcast_f32x2","_mm512_maskz_broadcast_f32x4","_mm512_maskz_broadcast_f32x8","_mm512_maskz_broadcast_f64x2","_mm512_maskz_broadcast_f64x4","_mm512_maskz_broadcast_i32x2","_mm512_maskz_broadcast_i32x4","_mm512_maskz_broadcast_i32x8","_mm512_maskz_broadcast_i64x2","_mm512_maskz_broadcast_i64x4","_mm512_maskz_broadcastb_epi8","_mm512_maskz_broadcastd_epi32","_mm512_maskz_broadcastq_epi64","_mm512_maskz_broadcastsd_pd","_mm512_maskz_broadcastss_ps","_mm512_maskz_broadcastw_epi16","_mm512_maskz_cmul_pch","_mm512_maskz_cmul_round_pch","_mm512_maskz_compress_epi16","_mm512_maskz_compress_epi32","_mm512_maskz_compress_epi64","_mm512_maskz_compress_epi8","_mm512_maskz_compress_pd","_mm512_maskz_compress_ps","_mm512_maskz_conflict_epi32","_mm512_maskz_conflict_epi64","_mm512_maskz_conj_pch","_mm512_maskz_cvt_roundepi16_ph","_mm512_maskz_cvt_roundepi32_ph","_mm512_maskz_cvt_roundepi32_ps","_mm512_maskz_cvt_roundepi64_pd","_mm512_maskz_cvt_roundepi64_ph","_mm512_maskz_cvt_roundepi64_ps","_mm512_maskz_cvt_roundepu16_ph","_mm512_maskz_cvt_roundepu32_ph","_mm512_maskz_cvt_roundepu32_ps","_mm512_maskz_cvt_roundepu64_pd","_mm512_maskz_cvt_roundepu64_ph","_mm512_maskz_cvt_roundepu64_ps","_mm512_maskz_cvt_roundpd_epi32","_mm512_maskz_cvt_roundpd_epi64","_mm512_maskz_cvt_roundpd_epu32","_mm512_maskz_cvt_roundpd_epu64","_mm512_maskz_cvt_roundpd_ph","_mm512_maskz_cvt_roundpd_ps","_mm512_maskz_cvt_roundph_epi16","_mm512_maskz_cvt_roundph_epi32","_mm512_maskz_cvt_roundph_epi64","_mm512_maskz_cvt_roundph_epu16","_mm512_maskz_cvt_roundph_epu32","_mm512_maskz_cvt_roundph_epu64","_mm512_maskz_cvt_roundph_pd","_mm512_maskz_cvt_roundph_ps","_mm512_maskz_cvt_roundps_epi32","_mm512_maskz_cvt_roundps_epi64","_mm512_maskz_cvt_roundps_epu32","_mm512_maskz_cvt_roundps_epu64","_mm512_maskz_cvt_roundps_pd","_mm512_maskz_cvt_roundps_ph","_mm512_maskz_cvtepi16_epi32","_mm512_maskz_cvtepi16_epi64","_mm512_maskz_cvtepi16_epi8","_mm512_maskz_cvtepi16_ph","_mm512_maskz_cvtepi32_epi16","_mm512_maskz_cvtepi32_epi64","_mm512_maskz_cvtepi32_epi8","_mm512_maskz_cvtepi32_pd","_mm512_maskz_cvtepi32_ph","_mm512_maskz_cvtepi32_ps","_mm512_maskz_cvtepi64_epi16","_mm512_maskz_cvtepi64_epi32","_mm512_maskz_cvtepi64_epi8","_mm512_maskz_cvtepi64_pd","_mm512_maskz_cvtepi64_ph","_mm512_maskz_cvtepi64_ps","_mm512_maskz_cvtepi8_epi16","_mm512_maskz_cvtepi8_epi32","_mm512_maskz_cvtepi8_epi64","_mm512_maskz_cvtepu16_epi32","_mm512_maskz_cvtepu16_epi64","_mm512_maskz_cvtepu16_ph","_mm512_maskz_cvtepu32_epi64","_mm512_maskz_cvtepu32_pd","_mm512_maskz_cvtepu32_ph","_mm512_maskz_cvtepu32_ps","_mm512_maskz_cvtepu64_pd","_mm512_maskz_cvtepu64_ph","_mm512_maskz_cvtepu64_ps","_mm512_maskz_cvtepu8_epi16","_mm512_maskz_cvtepu8_epi32","_mm512_maskz_cvtepu8_epi64","_mm512_maskz_cvtne2ps_pbh","_mm512_maskz_cvtneps_pbh","_mm512_maskz_cvtpbh_ps","_mm512_maskz_cvtpd_epi32","_mm512_maskz_cvtpd_epi64","_mm512_maskz_cvtpd_epu32","_mm512_maskz_cvtpd_epu64","_mm512_maskz_cvtpd_ph","_mm512_maskz_cvtpd_ps","_mm512_maskz_cvtph_epi16","_mm512_maskz_cvtph_epi32","_mm512_maskz_cvtph_epi64","_mm512_maskz_cvtph_epu16","_mm512_maskz_cvtph_epu32","_mm512_maskz_cvtph_epu64","_mm512_maskz_cvtph_pd","_mm512_maskz_cvtph_ps","_mm512_maskz_cvtps_epi32","_mm512_maskz_cvtps_epi64","_mm512_maskz_cvtps_epu32","_mm512_maskz_cvtps_epu64","_mm512_maskz_cvtps_pd","_mm512_maskz_cvtps_ph","_mm512_maskz_cvtsepi16_epi8","_mm512_maskz_cvtsepi32_epi16","_mm512_maskz_cvtsepi32_epi8","_mm512_maskz_cvtsepi64_epi16","_mm512_maskz_cvtsepi64_epi32","_mm512_maskz_cvtsepi64_epi8","_mm512_maskz_cvtt_roundpd_epi32","_mm512_maskz_cvtt_roundpd_epi64","_mm512_maskz_cvtt_roundpd_epu32","_mm512_maskz_cvtt_roundpd_epu64","_mm512_maskz_cvtt_roundph_epi16","_mm512_maskz_cvtt_roundph_epi32","_mm512_maskz_cvtt_roundph_epi64","_mm512_maskz_cvtt_roundph_epu16","_mm512_maskz_cvtt_roundph_epu32","_mm512_maskz_cvtt_roundph_epu64","_mm512_maskz_cvtt_roundps_epi32","_mm512_maskz_cvtt_roundps_epi64","_mm512_maskz_cvtt_roundps_epu32","_mm512_maskz_cvtt_roundps_epu64","_mm512_maskz_cvttpd_epi32","_mm512_maskz_cvttpd_epi64","_mm512_maskz_cvttpd_epu32","_mm512_maskz_cvttpd_epu64","_mm512_maskz_cvttph_epi16","_mm512_maskz_cvttph_epi32","_mm512_maskz_cvttph_epi64","_mm512_maskz_cvttph_epu16","_mm512_maskz_cvttph_epu32","_mm512_maskz_cvttph_epu64","_mm512_maskz_cvttps_epi32","_mm512_maskz_cvttps_epi64","_mm512_maskz_cvttps_epu32","_mm512_maskz_cvttps_epu64","_mm512_maskz_cvtusepi16_epi8","_mm512_maskz_cvtusepi32_epi16","_mm512_maskz_cvtusepi32_epi8","_mm512_maskz_cvtusepi64_epi16","_mm512_maskz_cvtusepi64_epi32","_mm512_maskz_cvtusepi64_epi8","_mm512_maskz_cvtx_roundph_ps","_mm512_maskz_cvtx_roundps_ph","_mm512_maskz_cvtxph_ps","_mm512_maskz_cvtxps_ph","_mm512_maskz_dbsad_epu8","_mm512_maskz_div_pd","_mm512_maskz_div_ph","_mm512_maskz_div_ps","_mm512_maskz_div_round_pd","_mm512_maskz_div_round_ph","_mm512_maskz_div_round_ps","_mm512_maskz_dpbf16_ps","_mm512_maskz_dpbusd_epi32","_mm512_maskz_dpbusds_epi32","_mm512_maskz_dpwssd_epi32","_mm512_maskz_dpwssds_epi32","_mm512_maskz_expand_epi16","_mm512_maskz_expand_epi32","_mm512_maskz_expand_epi64","_mm512_maskz_expand_epi8","_mm512_maskz_expand_pd","_mm512_maskz_expand_ps","_mm512_maskz_expandloadu_epi16","_mm512_maskz_expandloadu_epi32","_mm512_maskz_expandloadu_epi64","_mm512_maskz_expandloadu_epi8","_mm512_maskz_expandloadu_pd","_mm512_maskz_expandloadu_ps","_mm512_maskz_extractf32x4_ps","_mm512_maskz_extractf32x8_ps","_mm512_maskz_extractf64x2_pd","_mm512_maskz_extractf64x4_pd","_mm512_maskz_extracti32x4_epi32","_mm512_maskz_extracti32x8_epi32","_mm512_maskz_extracti64x2_epi64","_mm512_maskz_extracti64x4_epi64","_mm512_maskz_fcmadd_pch","_mm512_maskz_fcmadd_round_pch","_mm512_maskz_fcmul_pch","_mm512_maskz_fcmul_round_pch","_mm512_maskz_fixupimm_pd","_mm512_maskz_fixupimm_ps","_mm512_maskz_fixupimm_round_pd","_mm512_maskz_fixupimm_round_ps","_mm512_maskz_fmadd_pch","_mm512_maskz_fmadd_pd","_mm512_maskz_fmadd_ph","_mm512_maskz_fmadd_ps","_mm512_maskz_fmadd_round_pch","_mm512_maskz_fmadd_round_pd","_mm512_maskz_fmadd_round_ph","_mm512_maskz_fmadd_round_ps","_mm512_maskz_fmaddsub_pd","_mm512_maskz_fmaddsub_ph","_mm512_maskz_fmaddsub_ps","_mm512_maskz_fmaddsub_round_pd","_mm512_maskz_fmaddsub_round_ph","_mm512_maskz_fmaddsub_round_ps","_mm512_maskz_fmsub_pd","_mm512_maskz_fmsub_ph","_mm512_maskz_fmsub_ps","_mm512_maskz_fmsub_round_pd","_mm512_maskz_fmsub_round_ph","_mm512_maskz_fmsub_round_ps","_mm512_maskz_fmsubadd_pd","_mm512_maskz_fmsubadd_ph","_mm512_maskz_fmsubadd_ps","_mm512_maskz_fmsubadd_round_pd","_mm512_maskz_fmsubadd_round_ph","_mm512_maskz_fmsubadd_round_ps","_mm512_maskz_fmul_pch","_mm512_maskz_fmul_round_pch","_mm512_maskz_fnmadd_pd","_mm512_maskz_fnmadd_ph","_mm512_maskz_fnmadd_ps","_mm512_maskz_fnmadd_round_pd","_mm512_maskz_fnmadd_round_ph","_mm512_maskz_fnmadd_round_ps","_mm512_maskz_fnmsub_pd","_mm512_maskz_fnmsub_ph","_mm512_maskz_fnmsub_ps","_mm512_maskz_fnmsub_round_pd","_mm512_maskz_fnmsub_round_ph","_mm512_maskz_fnmsub_round_ps","_mm512_maskz_getexp_pd","_mm512_maskz_getexp_ph","_mm512_maskz_getexp_ps","_mm512_maskz_getexp_round_pd","_mm512_maskz_getexp_round_ph","_mm512_maskz_getexp_round_ps","_mm512_maskz_getmant_pd","_mm512_maskz_getmant_ph","_mm512_maskz_getmant_ps","_mm512_maskz_getmant_round_pd","_mm512_maskz_getmant_round_ph","_mm512_maskz_getmant_round_ps","_mm512_maskz_gf2p8affine_epi64_epi8","_mm512_maskz_gf2p8affineinv_epi64_epi8","_mm512_maskz_gf2p8mul_epi8","_mm512_maskz_insertf32x4","_mm512_maskz_insertf32x8","_mm512_maskz_insertf64x2","_mm512_maskz_insertf64x4","_mm512_maskz_inserti32x4","_mm512_maskz_inserti32x8","_mm512_maskz_inserti64x2","_mm512_maskz_inserti64x4","_mm512_maskz_load_epi32","_mm512_maskz_load_epi64","_mm512_maskz_load_pd","_mm512_maskz_load_ps","_mm512_maskz_loadu_epi16","_mm512_maskz_loadu_epi32","_mm512_maskz_loadu_epi64","_mm512_maskz_loadu_epi8","_mm512_maskz_loadu_pd","_mm512_maskz_loadu_ps","_mm512_maskz_lzcnt_epi32","_mm512_maskz_lzcnt_epi64","_mm512_maskz_madd52hi_epu64","_mm512_maskz_madd52lo_epu64","_mm512_maskz_madd_epi16","_mm512_maskz_maddubs_epi16","_mm512_maskz_max_epi16","_mm512_maskz_max_epi32","_mm512_maskz_max_epi64","_mm512_maskz_max_epi8","_mm512_maskz_max_epu16","_mm512_maskz_max_epu32","_mm512_maskz_max_epu64","_mm512_maskz_max_epu8","_mm512_maskz_max_pd","_mm512_maskz_max_ph","_mm512_maskz_max_ps","_mm512_maskz_max_round_pd","_mm512_maskz_max_round_ph","_mm512_maskz_max_round_ps","_mm512_maskz_min_epi16","_mm512_maskz_min_epi32","_mm512_maskz_min_epi64","_mm512_maskz_min_epi8","_mm512_maskz_min_epu16","_mm512_maskz_min_epu32","_mm512_maskz_min_epu64","_mm512_maskz_min_epu8","_mm512_maskz_min_pd","_mm512_maskz_min_ph","_mm512_maskz_min_ps","_mm512_maskz_min_round_pd","_mm512_maskz_min_round_ph","_mm512_maskz_min_round_ps","_mm512_maskz_mov_epi16","_mm512_maskz_mov_epi32","_mm512_maskz_mov_epi64","_mm512_maskz_mov_epi8","_mm512_maskz_mov_pd","_mm512_maskz_mov_ps","_mm512_maskz_movedup_pd","_mm512_maskz_movehdup_ps","_mm512_maskz_moveldup_ps","_mm512_maskz_mul_epi32","_mm512_maskz_mul_epu32","_mm512_maskz_mul_pch","_mm512_maskz_mul_pd","_mm512_maskz_mul_ph","_mm512_maskz_mul_ps","_mm512_maskz_mul_round_pch","_mm512_maskz_mul_round_pd","_mm512_maskz_mul_round_ph","_mm512_maskz_mul_round_ps","_mm512_maskz_mulhi_epi16","_mm512_maskz_mulhi_epu16","_mm512_maskz_mulhrs_epi16","_mm512_maskz_mullo_epi16","_mm512_maskz_mullo_epi32","_mm512_maskz_mullo_epi64","_mm512_maskz_multishift_epi64_epi8","_mm512_maskz_or_epi32","_mm512_maskz_or_epi64","_mm512_maskz_or_pd","_mm512_maskz_or_ps","_mm512_maskz_packs_epi16","_mm512_maskz_packs_epi32","_mm512_maskz_packus_epi16","_mm512_maskz_packus_epi32","_mm512_maskz_permute_pd","_mm512_maskz_permute_ps","_mm512_maskz_permutevar_pd","_mm512_maskz_permutevar_ps","_mm512_maskz_permutex2var_epi16","_mm512_maskz_permutex2var_epi32","_mm512_maskz_permutex2var_epi64","_mm512_maskz_permutex2var_epi8","_mm512_maskz_permutex2var_pd","_mm512_maskz_permutex2var_ps","_mm512_maskz_permutex_epi64","_mm512_maskz_permutex_pd","_mm512_maskz_permutexvar_epi16","_mm512_maskz_permutexvar_epi32","_mm512_maskz_permutexvar_epi64","_mm512_maskz_permutexvar_epi8","_mm512_maskz_permutexvar_pd","_mm512_maskz_permutexvar_ps","_mm512_maskz_popcnt_epi16","_mm512_maskz_popcnt_epi32","_mm512_maskz_popcnt_epi64","_mm512_maskz_popcnt_epi8","_mm512_maskz_range_pd","_mm512_maskz_range_ps","_mm512_maskz_range_round_pd","_mm512_maskz_range_round_ps","_mm512_maskz_rcp14_pd","_mm512_maskz_rcp14_ps","_mm512_maskz_rcp_ph","_mm512_maskz_reduce_pd","_mm512_maskz_reduce_ph","_mm512_maskz_reduce_ps","_mm512_maskz_reduce_round_pd","_mm512_maskz_reduce_round_ph","_mm512_maskz_reduce_round_ps","_mm512_maskz_rol_epi32","_mm512_maskz_rol_epi64","_mm512_maskz_rolv_epi32","_mm512_maskz_rolv_epi64","_mm512_maskz_ror_epi32","_mm512_maskz_ror_epi64","_mm512_maskz_rorv_epi32","_mm512_maskz_rorv_epi64","_mm512_maskz_roundscale_pd","_mm512_maskz_roundscale_ph","_mm512_maskz_roundscale_ps","_mm512_maskz_roundscale_round_pd","_mm512_maskz_roundscale_round_ph","_mm512_maskz_roundscale_round_ps","_mm512_maskz_rsqrt14_pd","_mm512_maskz_rsqrt14_ps","_mm512_maskz_rsqrt_ph","_mm512_maskz_scalef_pd","_mm512_maskz_scalef_ph","_mm512_maskz_scalef_ps","_mm512_maskz_scalef_round_pd","_mm512_maskz_scalef_round_ph","_mm512_maskz_scalef_round_ps","_mm512_maskz_set1_epi16","_mm512_maskz_set1_epi32","_mm512_maskz_set1_epi64","_mm512_maskz_set1_epi8","_mm512_maskz_shldi_epi16","_mm512_maskz_shldi_epi32","_mm512_maskz_shldi_epi64","_mm512_maskz_shldv_epi16","_mm512_maskz_shldv_epi32","_mm512_maskz_shldv_epi64","_mm512_maskz_shrdi_epi16","_mm512_maskz_shrdi_epi32","_mm512_maskz_shrdi_epi64","_mm512_maskz_shrdv_epi16","_mm512_maskz_shrdv_epi32","_mm512_maskz_shrdv_epi64","_mm512_maskz_shuffle_epi32","_mm512_maskz_shuffle_epi8","_mm512_maskz_shuffle_f32x4","_mm512_maskz_shuffle_f64x2","_mm512_maskz_shuffle_i32x4","_mm512_maskz_shuffle_i64x2","_mm512_maskz_shuffle_pd","_mm512_maskz_shuffle_ps","_mm512_maskz_shufflehi_epi16","_mm512_maskz_shufflelo_epi16","_mm512_maskz_sll_epi16","_mm512_maskz_sll_epi32","_mm512_maskz_sll_epi64","_mm512_maskz_slli_epi16","_mm512_maskz_slli_epi32","_mm512_maskz_slli_epi64","_mm512_maskz_sllv_epi16","_mm512_maskz_sllv_epi32","_mm512_maskz_sllv_epi64","_mm512_maskz_sqrt_pd","_mm512_maskz_sqrt_ph","_mm512_maskz_sqrt_ps","_mm512_maskz_sqrt_round_pd","_mm512_maskz_sqrt_round_ph","_mm512_maskz_sqrt_round_ps","_mm512_maskz_sra_epi16","_mm512_maskz_sra_epi32","_mm512_maskz_sra_epi64","_mm512_maskz_srai_epi16","_mm512_maskz_srai_epi32","_mm512_maskz_srai_epi64","_mm512_maskz_srav_epi16","_mm512_maskz_srav_epi32","_mm512_maskz_srav_epi64","_mm512_maskz_srl_epi16","_mm512_maskz_srl_epi32","_mm512_maskz_srl_epi64","_mm512_maskz_srli_epi16","_mm512_maskz_srli_epi32","_mm512_maskz_srli_epi64","_mm512_maskz_srlv_epi16","_mm512_maskz_srlv_epi32","_mm512_maskz_srlv_epi64","_mm512_maskz_sub_epi16","_mm512_maskz_sub_epi32","_mm512_maskz_sub_epi64","_mm512_maskz_sub_epi8","_mm512_maskz_sub_pd","_mm512_maskz_sub_ph","_mm512_maskz_sub_ps","_mm512_maskz_sub_round_pd","_mm512_maskz_sub_round_ph","_mm512_maskz_sub_round_ps","_mm512_maskz_subs_epi16","_mm512_maskz_subs_epi8","_mm512_maskz_subs_epu16","_mm512_maskz_subs_epu8","_mm512_maskz_ternarylogic_epi32","_mm512_maskz_ternarylogic_epi64","_mm512_maskz_unpackhi_epi16","_mm512_maskz_unpackhi_epi32","_mm512_maskz_unpackhi_epi64","_mm512_maskz_unpackhi_epi8","_mm512_maskz_unpackhi_pd","_mm512_maskz_unpackhi_ps","_mm512_maskz_unpacklo_epi16","_mm512_maskz_unpacklo_epi32","_mm512_maskz_unpacklo_epi64","_mm512_maskz_unpacklo_epi8","_mm512_maskz_unpacklo_pd","_mm512_maskz_unpacklo_ps","_mm512_maskz_xor_epi32","_mm512_maskz_xor_epi64","_mm512_maskz_xor_pd","_mm512_maskz_xor_ps","_mm512_max_epi16","_mm512_max_epi32","_mm512_max_epi64","_mm512_max_epi8","_mm512_max_epu16","_mm512_max_epu32","_mm512_max_epu64","_mm512_max_epu8","_mm512_max_pd","_mm512_max_ph","_mm512_max_ps","_mm512_max_round_pd","_mm512_max_round_ph","_mm512_max_round_ps","_mm512_min_epi16","_mm512_min_epi32","_mm512_min_epi64","_mm512_min_epi8","_mm512_min_epu16","_mm512_min_epu32","_mm512_min_epu64","_mm512_min_epu8","_mm512_min_pd","_mm512_min_ph","_mm512_min_ps","_mm512_min_round_pd","_mm512_min_round_ph","_mm512_min_round_ps","_mm512_movedup_pd","_mm512_movehdup_ps","_mm512_moveldup_ps","_mm512_movepi16_mask","_mm512_movepi32_mask","_mm512_movepi64_mask","_mm512_movepi8_mask","_mm512_movm_epi16","_mm512_movm_epi32","_mm512_movm_epi64","_mm512_movm_epi8","_mm512_mul_epi32","_mm512_mul_epu32","_mm512_mul_pch","_mm512_mul_pd","_mm512_mul_ph","_mm512_mul_ps","_mm512_mul_round_pch","_mm512_mul_round_pd","_mm512_mul_round_ph","_mm512_mul_round_ps","_mm512_mulhi_epi16","_mm512_mulhi_epu16","_mm512_mulhrs_epi16","_mm512_mullo_epi16","_mm512_mullo_epi32","_mm512_mullo_epi64","_mm512_mullox_epi64","_mm512_multishift_epi64_epi8","_mm512_or_epi32","_mm512_or_epi64","_mm512_or_pd","_mm512_or_ps","_mm512_or_si512","_mm512_packs_epi16","_mm512_packs_epi32","_mm512_packus_epi16","_mm512_packus_epi32","_mm512_permute_pd","_mm512_permute_ps","_mm512_permutevar_epi32","_mm512_permutevar_pd","_mm512_permutevar_ps","_mm512_permutex2var_epi16","_mm512_permutex2var_epi32","_mm512_permutex2var_epi64","_mm512_permutex2var_epi8","_mm512_permutex2var_pd","_mm512_permutex2var_ph","_mm512_permutex2var_ps","_mm512_permutex_epi64","_mm512_permutex_pd","_mm512_permutexvar_epi16","_mm512_permutexvar_epi32","_mm512_permutexvar_epi64","_mm512_permutexvar_epi8","_mm512_permutexvar_pd","_mm512_permutexvar_ph","_mm512_permutexvar_ps","_mm512_popcnt_epi16","_mm512_popcnt_epi32","_mm512_popcnt_epi64","_mm512_popcnt_epi8","_mm512_range_pd","_mm512_range_ps","_mm512_range_round_pd","_mm512_range_round_ps","_mm512_rcp14_pd","_mm512_rcp14_ps","_mm512_rcp_ph","_mm512_reduce_add_epi32","_mm512_reduce_add_epi64","_mm512_reduce_add_pd","_mm512_reduce_add_ph","_mm512_reduce_add_ps","_mm512_reduce_and_epi32","_mm512_reduce_and_epi64","_mm512_reduce_max_epi32","_mm512_reduce_max_epi64","_mm512_reduce_max_epu32","_mm512_reduce_max_epu64","_mm512_reduce_max_pd","_mm512_reduce_max_ph","_mm512_reduce_max_ps","_mm512_reduce_min_epi32","_mm512_reduce_min_epi64","_mm512_reduce_min_epu32","_mm512_reduce_min_epu64","_mm512_reduce_min_pd","_mm512_reduce_min_ph","_mm512_reduce_min_ps","_mm512_reduce_mul_epi32","_mm512_reduce_mul_epi64","_mm512_reduce_mul_pd","_mm512_reduce_mul_ph","_mm512_reduce_mul_ps","_mm512_reduce_or_epi32","_mm512_reduce_or_epi64","_mm512_reduce_pd","_mm512_reduce_ph","_mm512_reduce_ps","_mm512_reduce_round_pd","_mm512_reduce_round_ph","_mm512_reduce_round_ps","_mm512_rol_epi32","_mm512_rol_epi64","_mm512_rolv_epi32","_mm512_rolv_epi64","_mm512_ror_epi32","_mm512_ror_epi64","_mm512_rorv_epi32","_mm512_rorv_epi64","_mm512_roundscale_pd","_mm512_roundscale_ph","_mm512_roundscale_ps","_mm512_roundscale_round_pd","_mm512_roundscale_round_ph","_mm512_roundscale_round_ps","_mm512_rsqrt14_pd","_mm512_rsqrt14_ps","_mm512_rsqrt_ph","_mm512_sad_epu8","_mm512_scalef_pd","_mm512_scalef_ph","_mm512_scalef_ps","_mm512_scalef_round_pd","_mm512_scalef_round_ph","_mm512_scalef_round_ps","_mm512_set1_epi16","_mm512_set1_epi32","_mm512_set1_epi64","_mm512_set1_epi8","_mm512_set1_pd","_mm512_set1_ph","_mm512_set1_ps","_mm512_set4_epi32","_mm512_set4_epi64","_mm512_set4_pd","_mm512_set4_ps","_mm512_set_epi16","_mm512_set_epi32","_mm512_set_epi64","_mm512_set_epi8","_mm512_set_pd","_mm512_set_ph","_mm512_set_ps","_mm512_setr4_epi32","_mm512_setr4_epi64","_mm512_setr4_pd","_mm512_setr4_ps","_mm512_setr_epi32","_mm512_setr_epi64","_mm512_setr_pd","_mm512_setr_ph","_mm512_setr_ps","_mm512_setzero","_mm512_setzero_epi32","_mm512_setzero_pd","_mm512_setzero_ph","_mm512_setzero_ps","_mm512_setzero_si512","_mm512_shldi_epi16","_mm512_shldi_epi32","_mm512_shldi_epi64","_mm512_shldv_epi16","_mm512_shldv_epi32","_mm512_shldv_epi64","_mm512_shrdi_epi16","_mm512_shrdi_epi32","_mm512_shrdi_epi64","_mm512_shrdv_epi16","_mm512_shrdv_epi32","_mm512_shrdv_epi64","_mm512_shuffle_epi32","_mm512_shuffle_epi8","_mm512_shuffle_f32x4","_mm512_shuffle_f64x2","_mm512_shuffle_i32x4","_mm512_shuffle_i64x2","_mm512_shuffle_pd","_mm512_shuffle_ps","_mm512_shufflehi_epi16","_mm512_shufflelo_epi16","_mm512_sll_epi16","_mm512_sll_epi32","_mm512_sll_epi64","_mm512_slli_epi16","_mm512_slli_epi32","_mm512_slli_epi64","_mm512_sllv_epi16","_mm512_sllv_epi32","_mm512_sllv_epi64","_mm512_sqrt_pd","_mm512_sqrt_ph","_mm512_sqrt_ps","_mm512_sqrt_round_pd","_mm512_sqrt_round_ph","_mm512_sqrt_round_ps","_mm512_sra_epi16","_mm512_sra_epi32","_mm512_sra_epi64","_mm512_srai_epi16","_mm512_srai_epi32","_mm512_srai_epi64","_mm512_srav_epi16","_mm512_srav_epi32","_mm512_srav_epi64","_mm512_srl_epi16","_mm512_srl_epi32","_mm512_srl_epi64","_mm512_srli_epi16","_mm512_srli_epi32","_mm512_srli_epi64","_mm512_srlv_epi16","_mm512_srlv_epi32","_mm512_srlv_epi64","_mm512_store_epi32","_mm512_store_epi64","_mm512_store_pd","_mm512_store_ph","_mm512_store_ps","_mm512_store_si512","_mm512_storeu_epi16","_mm512_storeu_epi32","_mm512_storeu_epi64","_mm512_storeu_epi8","_mm512_storeu_pd","_mm512_storeu_ph","_mm512_storeu_ps","_mm512_storeu_si512","_mm512_stream_load_si512","_mm512_stream_pd","_mm512_stream_ps","_mm512_stream_si512","_mm512_sub_epi16","_mm512_sub_epi32","_mm512_sub_epi64","_mm512_sub_epi8","_mm512_sub_pd","_mm512_sub_ph","_mm512_sub_ps","_mm512_sub_round_pd","_mm512_sub_round_ph","_mm512_sub_round_ps","_mm512_subs_epi16","_mm512_subs_epi8","_mm512_subs_epu16","_mm512_subs_epu8","_mm512_ternarylogic_epi32","_mm512_ternarylogic_epi64","_mm512_test_epi16_mask","_mm512_test_epi32_mask","_mm512_test_epi64_mask","_mm512_test_epi8_mask","_mm512_testn_epi16_mask","_mm512_testn_epi32_mask","_mm512_testn_epi64_mask","_mm512_testn_epi8_mask","_mm512_undefined","_mm512_undefined_epi32","_mm512_undefined_pd","_mm512_undefined_ph","_mm512_undefined_ps","_mm512_unpackhi_epi16","_mm512_unpackhi_epi32","_mm512_unpackhi_epi64","_mm512_unpackhi_epi8","_mm512_unpackhi_pd","_mm512_unpackhi_ps","_mm512_unpacklo_epi16","_mm512_unpacklo_epi32","_mm512_unpacklo_epi64","_mm512_unpacklo_epi8","_mm512_unpacklo_pd","_mm512_unpacklo_ps","_mm512_xor_epi32","_mm512_xor_epi64","_mm512_xor_pd","_mm512_xor_ps","_mm512_xor_si512","_mm512_zextpd128_pd512","_mm512_zextpd256_pd512","_mm512_zextph128_ph512","_mm512_zextph256_ph512","_mm512_zextps128_ps512","_mm512_zextps256_ps512","_mm512_zextsi128_si512","_mm512_zextsi256_si512","_mm_abs_epi16","_mm_abs_epi32","_mm_abs_epi64","_mm_abs_epi8","_mm_abs_ph","_mm_add_epi16","_mm_add_epi32","_mm_add_epi64","_mm_add_epi8","_mm_add_pd","_mm_add_ph","_mm_add_ps","_mm_add_round_sd","_mm_add_round_sh","_mm_add_round_ss","_mm_add_sd","_mm_add_sh","_mm_add_ss","_mm_adds_epi16","_mm_adds_epi8","_mm_adds_epu16","_mm_adds_epu8","_mm_addsub_pd","_mm_addsub_ps","_mm_aesdec_si128","_mm_aesdeclast_si128","_mm_aesenc_si128","_mm_aesenclast_si128","_mm_aesimc_si128","_mm_aeskeygenassist_si128","_mm_alignr_epi32","_mm_alignr_epi64","_mm_alignr_epi8","_mm_and_pd","_mm_and_ps","_mm_and_si128","_mm_andnot_pd","_mm_andnot_ps","_mm_andnot_si128","_mm_avg_epu16","_mm_avg_epu8","_mm_bcstnebf16_ps","_mm_bcstnesh_ps","_mm_bitshuffle_epi64_mask","_mm_blend_epi16","_mm_blend_epi32","_mm_blend_pd","_mm_blend_ps","_mm_blendv_epi8","_mm_blendv_pd","_mm_blendv_ps","_mm_broadcast_i32x2","_mm_broadcast_ss","_mm_broadcastb_epi8","_mm_broadcastd_epi32","_mm_broadcastmb_epi64","_mm_broadcastmw_epi32","_mm_broadcastq_epi64","_mm_broadcastsd_pd","_mm_broadcastsi128_si256","_mm_broadcastss_ps","_mm_broadcastw_epi16","_mm_bslli_si128","_mm_bsrli_si128","_mm_castpd_ph","_mm_castpd_ps","_mm_castpd_si128","_mm_castph_pd","_mm_castph_ps","_mm_castph_si128","_mm_castps_pd","_mm_castps_ph","_mm_castps_si128","_mm_castsi128_pd","_mm_castsi128_ph","_mm_castsi128_ps","_mm_ceil_pd","_mm_ceil_ps","_mm_ceil_sd","_mm_ceil_ss","_mm_clflush","_mm_clmulepi64_si128","_mm_cmp_epi16_mask","_mm_cmp_epi32_mask","_mm_cmp_epi64_mask","_mm_cmp_epi8_mask","_mm_cmp_epu16_mask","_mm_cmp_epu32_mask","_mm_cmp_epu64_mask","_mm_cmp_epu8_mask","_mm_cmp_pd","_mm_cmp_pd_mask","_mm_cmp_ph_mask","_mm_cmp_ps","_mm_cmp_ps_mask","_mm_cmp_round_sd_mask","_mm_cmp_round_sh_mask","_mm_cmp_round_ss_mask","_mm_cmp_sd","_mm_cmp_sd_mask","_mm_cmp_sh_mask","_mm_cmp_ss","_mm_cmp_ss_mask","_mm_cmpeq_epi16","_mm_cmpeq_epi16_mask","_mm_cmpeq_epi32","_mm_cmpeq_epi32_mask","_mm_cmpeq_epi64","_mm_cmpeq_epi64_mask","_mm_cmpeq_epi8","_mm_cmpeq_epi8_mask","_mm_cmpeq_epu16_mask","_mm_cmpeq_epu32_mask","_mm_cmpeq_epu64_mask","_mm_cmpeq_epu8_mask","_mm_cmpeq_pd","_mm_cmpeq_ps","_mm_cmpeq_sd","_mm_cmpeq_ss","_mm_cmpestra","_mm_cmpestrc","_mm_cmpestri","_mm_cmpestrm","_mm_cmpestro","_mm_cmpestrs","_mm_cmpestrz","_mm_cmpge_epi16_mask","_mm_cmpge_epi32_mask","_mm_cmpge_epi64_mask","_mm_cmpge_epi8_mask","_mm_cmpge_epu16_mask","_mm_cmpge_epu32_mask","_mm_cmpge_epu64_mask","_mm_cmpge_epu8_mask","_mm_cmpge_pd","_mm_cmpge_ps","_mm_cmpge_sd","_mm_cmpge_ss","_mm_cmpgt_epi16","_mm_cmpgt_epi16_mask","_mm_cmpgt_epi32","_mm_cmpgt_epi32_mask","_mm_cmpgt_epi64","_mm_cmpgt_epi64_mask","_mm_cmpgt_epi8","_mm_cmpgt_epi8_mask","_mm_cmpgt_epu16_mask","_mm_cmpgt_epu32_mask","_mm_cmpgt_epu64_mask","_mm_cmpgt_epu8_mask","_mm_cmpgt_pd","_mm_cmpgt_ps","_mm_cmpgt_sd","_mm_cmpgt_ss","_mm_cmpistra","_mm_cmpistrc","_mm_cmpistri","_mm_cmpistrm","_mm_cmpistro","_mm_cmpistrs","_mm_cmpistrz","_mm_cmple_epi16_mask","_mm_cmple_epi32_mask","_mm_cmple_epi64_mask","_mm_cmple_epi8_mask","_mm_cmple_epu16_mask","_mm_cmple_epu32_mask","_mm_cmple_epu64_mask","_mm_cmple_epu8_mask","_mm_cmple_pd","_mm_cmple_ps","_mm_cmple_sd","_mm_cmple_ss","_mm_cmplt_epi16","_mm_cmplt_epi16_mask","_mm_cmplt_epi32","_mm_cmplt_epi32_mask","_mm_cmplt_epi64_mask","_mm_cmplt_epi8","_mm_cmplt_epi8_mask","_mm_cmplt_epu16_mask","_mm_cmplt_epu32_mask","_mm_cmplt_epu64_mask","_mm_cmplt_epu8_mask","_mm_cmplt_pd","_mm_cmplt_ps","_mm_cmplt_sd","_mm_cmplt_ss","_mm_cmpneq_epi16_mask","_mm_cmpneq_epi32_mask","_mm_cmpneq_epi64_mask","_mm_cmpneq_epi8_mask","_mm_cmpneq_epu16_mask","_mm_cmpneq_epu32_mask","_mm_cmpneq_epu64_mask","_mm_cmpneq_epu8_mask","_mm_cmpneq_pd","_mm_cmpneq_ps","_mm_cmpneq_sd","_mm_cmpneq_ss","_mm_cmpnge_pd","_mm_cmpnge_ps","_mm_cmpnge_sd","_mm_cmpnge_ss","_mm_cmpngt_pd","_mm_cmpngt_ps","_mm_cmpngt_sd","_mm_cmpngt_ss","_mm_cmpnle_pd","_mm_cmpnle_ps","_mm_cmpnle_sd","_mm_cmpnle_ss","_mm_cmpnlt_pd","_mm_cmpnlt_ps","_mm_cmpnlt_sd","_mm_cmpnlt_ss","_mm_cmpord_pd","_mm_cmpord_ps","_mm_cmpord_sd","_mm_cmpord_ss","_mm_cmpunord_pd","_mm_cmpunord_ps","_mm_cmpunord_sd","_mm_cmpunord_ss","_mm_cmul_pch","_mm_cmul_round_sch","_mm_cmul_sch","_mm_comi_round_sd","_mm_comi_round_sh","_mm_comi_round_ss","_mm_comi_sh","_mm_comieq_sd","_mm_comieq_sh","_mm_comieq_ss","_mm_comige_sd","_mm_comige_sh","_mm_comige_ss","_mm_comigt_sd","_mm_comigt_sh","_mm_comigt_ss","_mm_comile_sd","_mm_comile_sh","_mm_comile_ss","_mm_comilt_sd","_mm_comilt_sh","_mm_comilt_ss","_mm_comineq_sd","_mm_comineq_sh","_mm_comineq_ss","_mm_conflict_epi32","_mm_conflict_epi64","_mm_conj_pch","_mm_crc32_u16","_mm_crc32_u32","_mm_crc32_u64","_mm_crc32_u8","_mm_cvt_roundi32_sh","_mm_cvt_roundi32_ss","_mm_cvt_roundi64_sd","_mm_cvt_roundi64_sh","_mm_cvt_roundi64_ss","_mm_cvt_roundsd_i32","_mm_cvt_roundsd_i64","_mm_cvt_roundsd_sh","_mm_cvt_roundsd_si32","_mm_cvt_roundsd_si64","_mm_cvt_roundsd_ss","_mm_cvt_roundsd_u32","_mm_cvt_roundsd_u64","_mm_cvt_roundsh_i32","_mm_cvt_roundsh_i64","_mm_cvt_roundsh_sd","_mm_cvt_roundsh_ss","_mm_cvt_roundsh_u32","_mm_cvt_roundsh_u64","_mm_cvt_roundsi32_ss","_mm_cvt_roundsi64_sd","_mm_cvt_roundsi64_ss","_mm_cvt_roundss_i32","_mm_cvt_roundss_i64","_mm_cvt_roundss_sd","_mm_cvt_roundss_sh","_mm_cvt_roundss_si32","_mm_cvt_roundss_si64","_mm_cvt_roundss_u32","_mm_cvt_roundss_u64","_mm_cvt_roundu32_sh","_mm_cvt_roundu32_ss","_mm_cvt_roundu64_sd","_mm_cvt_roundu64_sh","_mm_cvt_roundu64_ss","_mm_cvt_si2ss","_mm_cvt_ss2si","_mm_cvtepi16_epi32","_mm_cvtepi16_epi64","_mm_cvtepi16_epi8","_mm_cvtepi16_ph","_mm_cvtepi32_epi16","_mm_cvtepi32_epi64","_mm_cvtepi32_epi8","_mm_cvtepi32_pd","_mm_cvtepi32_ph","_mm_cvtepi32_ps","_mm_cvtepi64_epi16","_mm_cvtepi64_epi32","_mm_cvtepi64_epi8","_mm_cvtepi64_pd","_mm_cvtepi64_ph","_mm_cvtepi64_ps","_mm_cvtepi8_epi16","_mm_cvtepi8_epi32","_mm_cvtepi8_epi64","_mm_cvtepu16_epi32","_mm_cvtepu16_epi64","_mm_cvtepu16_ph","_mm_cvtepu32_epi64","_mm_cvtepu32_pd","_mm_cvtepu32_ph","_mm_cvtepu64_pd","_mm_cvtepu64_ph","_mm_cvtepu64_ps","_mm_cvtepu8_epi16","_mm_cvtepu8_epi32","_mm_cvtepu8_epi64","_mm_cvti32_sd","_mm_cvti32_sh","_mm_cvti32_ss","_mm_cvti64_sd","_mm_cvti64_sh","_mm_cvti64_ss","_mm_cvtne2ps_pbh","_mm_cvtneebf16_ps","_mm_cvtneeph_ps","_mm_cvtneobf16_ps","_mm_cvtneoph_ps","_mm_cvtneps_avx_pbh","_mm_cvtneps_pbh","_mm_cvtness_sbh","_mm_cvtpbh_ps","_mm_cvtpd_epi32","_mm_cvtpd_epi64","_mm_cvtpd_epu32","_mm_cvtpd_epu64","_mm_cvtpd_ph","_mm_cvtpd_ps","_mm_cvtph_epi16","_mm_cvtph_epi32","_mm_cvtph_epi64","_mm_cvtph_epu16","_mm_cvtph_epu32","_mm_cvtph_epu64","_mm_cvtph_pd","_mm_cvtph_ps","_mm_cvtps_epi32","_mm_cvtps_epi64","_mm_cvtps_epu32","_mm_cvtps_epu64","_mm_cvtps_pd","_mm_cvtps_ph","_mm_cvtsbh_ss","_mm_cvtsd_f64","_mm_cvtsd_i32","_mm_cvtsd_i64","_mm_cvtsd_sh","_mm_cvtsd_si32","_mm_cvtsd_si64","_mm_cvtsd_si64x","_mm_cvtsd_ss","_mm_cvtsd_u32","_mm_cvtsd_u64","_mm_cvtsepi16_epi8","_mm_cvtsepi32_epi16","_mm_cvtsepi32_epi8","_mm_cvtsepi64_epi16","_mm_cvtsepi64_epi32","_mm_cvtsepi64_epi8","_mm_cvtsh_h","_mm_cvtsh_i32","_mm_cvtsh_i64","_mm_cvtsh_sd","_mm_cvtsh_ss","_mm_cvtsh_u32","_mm_cvtsh_u64","_mm_cvtsi128_si16","_mm_cvtsi128_si32","_mm_cvtsi128_si64","_mm_cvtsi128_si64x","_mm_cvtsi16_si128","_mm_cvtsi32_sd","_mm_cvtsi32_si128","_mm_cvtsi32_ss","_mm_cvtsi64_sd","_mm_cvtsi64_si128","_mm_cvtsi64_ss","_mm_cvtsi64x_sd","_mm_cvtsi64x_si128","_mm_cvtss_f32","_mm_cvtss_i32","_mm_cvtss_i64","_mm_cvtss_sd","_mm_cvtss_sh","_mm_cvtss_si32","_mm_cvtss_si64","_mm_cvtss_u32","_mm_cvtss_u64","_mm_cvtt_roundsd_i32","_mm_cvtt_roundsd_i64","_mm_cvtt_roundsd_si32","_mm_cvtt_roundsd_si64","_mm_cvtt_roundsd_u32","_mm_cvtt_roundsd_u64","_mm_cvtt_roundsh_i32","_mm_cvtt_roundsh_i64","_mm_cvtt_roundsh_u32","_mm_cvtt_roundsh_u64","_mm_cvtt_roundss_i32","_mm_cvtt_roundss_i64","_mm_cvtt_roundss_si32","_mm_cvtt_roundss_si64","_mm_cvtt_roundss_u32","_mm_cvtt_roundss_u64","_mm_cvtt_ss2si","_mm_cvttpd_epi32","_mm_cvttpd_epi64","_mm_cvttpd_epu32","_mm_cvttpd_epu64","_mm_cvttph_epi16","_mm_cvttph_epi32","_mm_cvttph_epi64","_mm_cvttph_epu16","_mm_cvttph_epu32","_mm_cvttph_epu64","_mm_cvttps_epi32","_mm_cvttps_epi64","_mm_cvttps_epu32","_mm_cvttps_epu64","_mm_cvttsd_i32","_mm_cvttsd_i64","_mm_cvttsd_si32","_mm_cvttsd_si64","_mm_cvttsd_si64x","_mm_cvttsd_u32","_mm_cvttsd_u64","_mm_cvttsh_i32","_mm_cvttsh_i64","_mm_cvttsh_u32","_mm_cvttsh_u64","_mm_cvttss_i32","_mm_cvttss_i64","_mm_cvttss_si32","_mm_cvttss_si64","_mm_cvttss_u32","_mm_cvttss_u64","_mm_cvtu32_sd","_mm_cvtu32_sh","_mm_cvtu32_ss","_mm_cvtu64_sd","_mm_cvtu64_sh","_mm_cvtu64_ss","_mm_cvtusepi16_epi8","_mm_cvtusepi32_epi16","_mm_cvtusepi32_epi8","_mm_cvtusepi64_epi16","_mm_cvtusepi64_epi32","_mm_cvtusepi64_epi8","_mm_cvtxph_ps","_mm_cvtxps_ph","_mm_dbsad_epu8","_mm_div_pd","_mm_div_ph","_mm_div_ps","_mm_div_round_sd","_mm_div_round_sh","_mm_div_round_ss","_mm_div_sd","_mm_div_sh","_mm_div_ss","_mm_dp_pd","_mm_dp_ps","_mm_dpbf16_ps","_mm_dpbssd_epi32","_mm_dpbssds_epi32","_mm_dpbsud_epi32","_mm_dpbsuds_epi32","_mm_dpbusd_avx_epi32","_mm_dpbusd_epi32","_mm_dpbusds_avx_epi32","_mm_dpbusds_epi32","_mm_dpbuud_epi32","_mm_dpbuuds_epi32","_mm_dpwssd_avx_epi32","_mm_dpwssd_epi32","_mm_dpwssds_avx_epi32","_mm_dpwssds_epi32","_mm_dpwsud_epi32","_mm_dpwsuds_epi32","_mm_dpwusd_epi32","_mm_dpwusds_epi32","_mm_dpwuud_epi32","_mm_dpwuuds_epi32","_mm_extract_epi16","_mm_extract_epi32","_mm_extract_epi64","_mm_extract_epi8","_mm_extract_ps","_mm_extract_si64","_mm_extracti_si64","_mm_fcmadd_pch","_mm_fcmadd_round_sch","_mm_fcmadd_sch","_mm_fcmul_pch","_mm_fcmul_round_sch","_mm_fcmul_sch","_mm_fixupimm_pd","_mm_fixupimm_ps","_mm_fixupimm_round_sd","_mm_fixupimm_round_ss","_mm_fixupimm_sd","_mm_fixupimm_ss","_mm_floor_pd","_mm_floor_ps","_mm_floor_sd","_mm_floor_ss","_mm_fmadd_pch","_mm_fmadd_pd","_mm_fmadd_ph","_mm_fmadd_ps","_mm_fmadd_round_sch","_mm_fmadd_round_sd","_mm_fmadd_round_sh","_mm_fmadd_round_ss","_mm_fmadd_sch","_mm_fmadd_sd","_mm_fmadd_sh","_mm_fmadd_ss","_mm_fmaddsub_pd","_mm_fmaddsub_ph","_mm_fmaddsub_ps","_mm_fmsub_pd","_mm_fmsub_ph","_mm_fmsub_ps","_mm_fmsub_round_sd","_mm_fmsub_round_sh","_mm_fmsub_round_ss","_mm_fmsub_sd","_mm_fmsub_sh","_mm_fmsub_ss","_mm_fmsubadd_pd","_mm_fmsubadd_ph","_mm_fmsubadd_ps","_mm_fmul_pch","_mm_fmul_round_sch","_mm_fmul_sch","_mm_fnmadd_pd","_mm_fnmadd_ph","_mm_fnmadd_ps","_mm_fnmadd_round_sd","_mm_fnmadd_round_sh","_mm_fnmadd_round_ss","_mm_fnmadd_sd","_mm_fnmadd_sh","_mm_fnmadd_ss","_mm_fnmsub_pd","_mm_fnmsub_ph","_mm_fnmsub_ps","_mm_fnmsub_round_sd","_mm_fnmsub_round_sh","_mm_fnmsub_round_ss","_mm_fnmsub_sd","_mm_fnmsub_sh","_mm_fnmsub_ss","_mm_fpclass_pd_mask","_mm_fpclass_ph_mask","_mm_fpclass_ps_mask","_mm_fpclass_sd_mask","_mm_fpclass_sh_mask","_mm_fpclass_ss_mask","_mm_getcsr","_mm_getexp_pd","_mm_getexp_ph","_mm_getexp_ps","_mm_getexp_round_sd","_mm_getexp_round_sh","_mm_getexp_round_ss","_mm_getexp_sd","_mm_getexp_sh","_mm_getexp_ss","_mm_getmant_pd","_mm_getmant_ph","_mm_getmant_ps","_mm_getmant_round_sd","_mm_getmant_round_sh","_mm_getmant_round_ss","_mm_getmant_sd","_mm_getmant_sh","_mm_getmant_ss","_mm_gf2p8affine_epi64_epi8","_mm_gf2p8affineinv_epi64_epi8","_mm_gf2p8mul_epi8","_mm_hadd_epi16","_mm_hadd_epi32","_mm_hadd_pd","_mm_hadd_ps","_mm_hadds_epi16","_mm_hsub_epi16","_mm_hsub_epi32","_mm_hsub_pd","_mm_hsub_ps","_mm_hsubs_epi16","_mm_i32gather_epi32","_mm_i32gather_epi64","_mm_i32gather_pd","_mm_i32gather_ps","_mm_i32scatter_epi32","_mm_i32scatter_epi64","_mm_i32scatter_pd","_mm_i32scatter_ps","_mm_i64gather_epi32","_mm_i64gather_epi64","_mm_i64gather_pd","_mm_i64gather_ps","_mm_i64scatter_epi32","_mm_i64scatter_epi64","_mm_i64scatter_pd","_mm_i64scatter_ps","_mm_insert_epi16","_mm_insert_epi32","_mm_insert_epi64","_mm_insert_epi8","_mm_insert_ps","_mm_insert_si64","_mm_inserti_si64","_mm_lddqu_si128","_mm_lfence","_mm_load1_pd","_mm_load1_ps","_mm_load_epi32","_mm_load_epi64","_mm_load_pd","_mm_load_pd1","_mm_load_ph","_mm_load_ps","_mm_load_ps1","_mm_load_sd","_mm_load_sh","_mm_load_si128","_mm_load_ss","_mm_loaddup_pd","_mm_loadh_pd","_mm_loadl_epi64","_mm_loadl_pd","_mm_loadr_pd","_mm_loadr_ps","_mm_loadu_epi16","_mm_loadu_epi32","_mm_loadu_epi64","_mm_loadu_epi8","_mm_loadu_pd","_mm_loadu_ph","_mm_loadu_ps","_mm_loadu_si128","_mm_loadu_si16","_mm_loadu_si32","_mm_loadu_si64","_mm_lzcnt_epi32","_mm_lzcnt_epi64","_mm_madd52hi_avx_epu64","_mm_madd52hi_epu64","_mm_madd52lo_avx_epu64","_mm_madd52lo_epu64","_mm_madd_epi16","_mm_maddubs_epi16","_mm_mask2_permutex2var_epi16","_mm_mask2_permutex2var_epi32","_mm_mask2_permutex2var_epi64","_mm_mask2_permutex2var_epi8","_mm_mask2_permutex2var_pd","_mm_mask2_permutex2var_ps","_mm_mask3_fcmadd_pch","_mm_mask3_fcmadd_round_sch","_mm_mask3_fcmadd_sch","_mm_mask3_fmadd_pch","_mm_mask3_fmadd_pd","_mm_mask3_fmadd_ph","_mm_mask3_fmadd_ps","_mm_mask3_fmadd_round_sch","_mm_mask3_fmadd_round_sd","_mm_mask3_fmadd_round_sh","_mm_mask3_fmadd_round_ss","_mm_mask3_fmadd_sch","_mm_mask3_fmadd_sd","_mm_mask3_fmadd_sh","_mm_mask3_fmadd_ss","_mm_mask3_fmaddsub_pd","_mm_mask3_fmaddsub_ph","_mm_mask3_fmaddsub_ps","_mm_mask3_fmsub_pd","_mm_mask3_fmsub_ph","_mm_mask3_fmsub_ps","_mm_mask3_fmsub_round_sd","_mm_mask3_fmsub_round_sh","_mm_mask3_fmsub_round_ss","_mm_mask3_fmsub_sd","_mm_mask3_fmsub_sh","_mm_mask3_fmsub_ss","_mm_mask3_fmsubadd_pd","_mm_mask3_fmsubadd_ph","_mm_mask3_fmsubadd_ps","_mm_mask3_fnmadd_pd","_mm_mask3_fnmadd_ph","_mm_mask3_fnmadd_ps","_mm_mask3_fnmadd_round_sd","_mm_mask3_fnmadd_round_sh","_mm_mask3_fnmadd_round_ss","_mm_mask3_fnmadd_sd","_mm_mask3_fnmadd_sh","_mm_mask3_fnmadd_ss","_mm_mask3_fnmsub_pd","_mm_mask3_fnmsub_ph","_mm_mask3_fnmsub_ps","_mm_mask3_fnmsub_round_sd","_mm_mask3_fnmsub_round_sh","_mm_mask3_fnmsub_round_ss","_mm_mask3_fnmsub_sd","_mm_mask3_fnmsub_sh","_mm_mask3_fnmsub_ss","_mm_mask_abs_epi16","_mm_mask_abs_epi32","_mm_mask_abs_epi64","_mm_mask_abs_epi8","_mm_mask_add_epi16","_mm_mask_add_epi32","_mm_mask_add_epi64","_mm_mask_add_epi8","_mm_mask_add_pd","_mm_mask_add_ph","_mm_mask_add_ps","_mm_mask_add_round_sd","_mm_mask_add_round_sh","_mm_mask_add_round_ss","_mm_mask_add_sd","_mm_mask_add_sh","_mm_mask_add_ss","_mm_mask_adds_epi16","_mm_mask_adds_epi8","_mm_mask_adds_epu16","_mm_mask_adds_epu8","_mm_mask_alignr_epi32","_mm_mask_alignr_epi64","_mm_mask_alignr_epi8","_mm_mask_and_epi32","_mm_mask_and_epi64","_mm_mask_and_pd","_mm_mask_and_ps","_mm_mask_andnot_epi32","_mm_mask_andnot_epi64","_mm_mask_andnot_pd","_mm_mask_andnot_ps","_mm_mask_avg_epu16","_mm_mask_avg_epu8","_mm_mask_bitshuffle_epi64_mask","_mm_mask_blend_epi16","_mm_mask_blend_epi32","_mm_mask_blend_epi64","_mm_mask_blend_epi8","_mm_mask_blend_pd","_mm_mask_blend_ph","_mm_mask_blend_ps","_mm_mask_broadcast_i32x2","_mm_mask_broadcastb_epi8","_mm_mask_broadcastd_epi32","_mm_mask_broadcastq_epi64","_mm_mask_broadcastss_ps","_mm_mask_broadcastw_epi16","_mm_mask_cmp_epi16_mask","_mm_mask_cmp_epi32_mask","_mm_mask_cmp_epi64_mask","_mm_mask_cmp_epi8_mask","_mm_mask_cmp_epu16_mask","_mm_mask_cmp_epu32_mask","_mm_mask_cmp_epu64_mask","_mm_mask_cmp_epu8_mask","_mm_mask_cmp_pd_mask","_mm_mask_cmp_ph_mask","_mm_mask_cmp_ps_mask","_mm_mask_cmp_round_sd_mask","_mm_mask_cmp_round_sh_mask","_mm_mask_cmp_round_ss_mask","_mm_mask_cmp_sd_mask","_mm_mask_cmp_sh_mask","_mm_mask_cmp_ss_mask","_mm_mask_cmpeq_epi16_mask","_mm_mask_cmpeq_epi32_mask","_mm_mask_cmpeq_epi64_mask","_mm_mask_cmpeq_epi8_mask","_mm_mask_cmpeq_epu16_mask","_mm_mask_cmpeq_epu32_mask","_mm_mask_cmpeq_epu64_mask","_mm_mask_cmpeq_epu8_mask","_mm_mask_cmpge_epi16_mask","_mm_mask_cmpge_epi32_mask","_mm_mask_cmpge_epi64_mask","_mm_mask_cmpge_epi8_mask","_mm_mask_cmpge_epu16_mask","_mm_mask_cmpge_epu32_mask","_mm_mask_cmpge_epu64_mask","_mm_mask_cmpge_epu8_mask","_mm_mask_cmpgt_epi16_mask","_mm_mask_cmpgt_epi32_mask","_mm_mask_cmpgt_epi64_mask","_mm_mask_cmpgt_epi8_mask","_mm_mask_cmpgt_epu16_mask","_mm_mask_cmpgt_epu32_mask","_mm_mask_cmpgt_epu64_mask","_mm_mask_cmpgt_epu8_mask","_mm_mask_cmple_epi16_mask","_mm_mask_cmple_epi32_mask","_mm_mask_cmple_epi64_mask","_mm_mask_cmple_epi8_mask","_mm_mask_cmple_epu16_mask","_mm_mask_cmple_epu32_mask","_mm_mask_cmple_epu64_mask","_mm_mask_cmple_epu8_mask","_mm_mask_cmplt_epi16_mask","_mm_mask_cmplt_epi32_mask","_mm_mask_cmplt_epi64_mask","_mm_mask_cmplt_epi8_mask","_mm_mask_cmplt_epu16_mask","_mm_mask_cmplt_epu32_mask","_mm_mask_cmplt_epu64_mask","_mm_mask_cmplt_epu8_mask","_mm_mask_cmpneq_epi16_mask","_mm_mask_cmpneq_epi32_mask","_mm_mask_cmpneq_epi64_mask","_mm_mask_cmpneq_epi8_mask","_mm_mask_cmpneq_epu16_mask","_mm_mask_cmpneq_epu32_mask","_mm_mask_cmpneq_epu64_mask","_mm_mask_cmpneq_epu8_mask","_mm_mask_cmul_pch","_mm_mask_cmul_round_sch","_mm_mask_cmul_sch","_mm_mask_compress_epi16","_mm_mask_compress_epi32","_mm_mask_compress_epi64","_mm_mask_compress_epi8","_mm_mask_compress_pd","_mm_mask_compress_ps","_mm_mask_compressstoreu_epi16","_mm_mask_compressstoreu_epi32","_mm_mask_compressstoreu_epi64","_mm_mask_compressstoreu_epi8","_mm_mask_compressstoreu_pd","_mm_mask_compressstoreu_ps","_mm_mask_conflict_epi32","_mm_mask_conflict_epi64","_mm_mask_conj_pch","_mm_mask_cvt_roundps_ph","_mm_mask_cvt_roundsd_sh","_mm_mask_cvt_roundsd_ss","_mm_mask_cvt_roundsh_sd","_mm_mask_cvt_roundsh_ss","_mm_mask_cvt_roundss_sd","_mm_mask_cvt_roundss_sh","_mm_mask_cvtepi16_epi32","_mm_mask_cvtepi16_epi64","_mm_mask_cvtepi16_epi8","_mm_mask_cvtepi16_ph","_mm_mask_cvtepi16_storeu_epi8","_mm_mask_cvtepi32_epi16","_mm_mask_cvtepi32_epi64","_mm_mask_cvtepi32_epi8","_mm_mask_cvtepi32_pd","_mm_mask_cvtepi32_ph","_mm_mask_cvtepi32_ps","_mm_mask_cvtepi32_storeu_epi16","_mm_mask_cvtepi32_storeu_epi8","_mm_mask_cvtepi64_epi16","_mm_mask_cvtepi64_epi32","_mm_mask_cvtepi64_epi8","_mm_mask_cvtepi64_pd","_mm_mask_cvtepi64_ph","_mm_mask_cvtepi64_ps","_mm_mask_cvtepi64_storeu_epi16","_mm_mask_cvtepi64_storeu_epi32","_mm_mask_cvtepi64_storeu_epi8","_mm_mask_cvtepi8_epi16","_mm_mask_cvtepi8_epi32","_mm_mask_cvtepi8_epi64","_mm_mask_cvtepu16_epi32","_mm_mask_cvtepu16_epi64","_mm_mask_cvtepu16_ph","_mm_mask_cvtepu32_epi64","_mm_mask_cvtepu32_pd","_mm_mask_cvtepu32_ph","_mm_mask_cvtepu64_pd","_mm_mask_cvtepu64_ph","_mm_mask_cvtepu64_ps","_mm_mask_cvtepu8_epi16","_mm_mask_cvtepu8_epi32","_mm_mask_cvtepu8_epi64","_mm_mask_cvtne2ps_pbh","_mm_mask_cvtneps_pbh","_mm_mask_cvtpbh_ps","_mm_mask_cvtpd_epi32","_mm_mask_cvtpd_epi64","_mm_mask_cvtpd_epu32","_mm_mask_cvtpd_epu64","_mm_mask_cvtpd_ph","_mm_mask_cvtpd_ps","_mm_mask_cvtph_epi16","_mm_mask_cvtph_epi32","_mm_mask_cvtph_epi64","_mm_mask_cvtph_epu16","_mm_mask_cvtph_epu32","_mm_mask_cvtph_epu64","_mm_mask_cvtph_pd","_mm_mask_cvtph_ps","_mm_mask_cvtps_epi32","_mm_mask_cvtps_epi64","_mm_mask_cvtps_epu32","_mm_mask_cvtps_epu64","_mm_mask_cvtps_ph","_mm_mask_cvtsd_sh","_mm_mask_cvtsd_ss","_mm_mask_cvtsepi16_epi8","_mm_mask_cvtsepi16_storeu_epi8","_mm_mask_cvtsepi32_epi16","_mm_mask_cvtsepi32_epi8","_mm_mask_cvtsepi32_storeu_epi16","_mm_mask_cvtsepi32_storeu_epi8","_mm_mask_cvtsepi64_epi16","_mm_mask_cvtsepi64_epi32","_mm_mask_cvtsepi64_epi8","_mm_mask_cvtsepi64_storeu_epi16","_mm_mask_cvtsepi64_storeu_epi32","_mm_mask_cvtsepi64_storeu_epi8","_mm_mask_cvtsh_sd","_mm_mask_cvtsh_ss","_mm_mask_cvtss_sd","_mm_mask_cvtss_sh","_mm_mask_cvttpd_epi32","_mm_mask_cvttpd_epi64","_mm_mask_cvttpd_epu32","_mm_mask_cvttpd_epu64","_mm_mask_cvttph_epi16","_mm_mask_cvttph_epi32","_mm_mask_cvttph_epi64","_mm_mask_cvttph_epu16","_mm_mask_cvttph_epu32","_mm_mask_cvttph_epu64","_mm_mask_cvttps_epi32","_mm_mask_cvttps_epi64","_mm_mask_cvttps_epu32","_mm_mask_cvttps_epu64","_mm_mask_cvtusepi16_epi8","_mm_mask_cvtusepi16_storeu_epi8","_mm_mask_cvtusepi32_epi16","_mm_mask_cvtusepi32_epi8","_mm_mask_cvtusepi32_storeu_epi16","_mm_mask_cvtusepi32_storeu_epi8","_mm_mask_cvtusepi64_epi16","_mm_mask_cvtusepi64_epi32","_mm_mask_cvtusepi64_epi8","_mm_mask_cvtusepi64_storeu_epi16","_mm_mask_cvtusepi64_storeu_epi32","_mm_mask_cvtusepi64_storeu_epi8","_mm_mask_cvtxph_ps","_mm_mask_cvtxps_ph","_mm_mask_dbsad_epu8","_mm_mask_div_pd","_mm_mask_div_ph","_mm_mask_div_ps","_mm_mask_div_round_sd","_mm_mask_div_round_sh","_mm_mask_div_round_ss","_mm_mask_div_sd","_mm_mask_div_sh","_mm_mask_div_ss","_mm_mask_dpbf16_ps","_mm_mask_dpbusd_epi32","_mm_mask_dpbusds_epi32","_mm_mask_dpwssd_epi32","_mm_mask_dpwssds_epi32","_mm_mask_expand_epi16","_mm_mask_expand_epi32","_mm_mask_expand_epi64","_mm_mask_expand_epi8","_mm_mask_expand_pd","_mm_mask_expand_ps","_mm_mask_expandloadu_epi16","_mm_mask_expandloadu_epi32","_mm_mask_expandloadu_epi64","_mm_mask_expandloadu_epi8","_mm_mask_expandloadu_pd","_mm_mask_expandloadu_ps","_mm_mask_fcmadd_pch","_mm_mask_fcmadd_round_sch","_mm_mask_fcmadd_sch","_mm_mask_fcmul_pch","_mm_mask_fcmul_round_sch","_mm_mask_fcmul_sch","_mm_mask_fixupimm_pd","_mm_mask_fixupimm_ps","_mm_mask_fixupimm_round_sd","_mm_mask_fixupimm_round_ss","_mm_mask_fixupimm_sd","_mm_mask_fixupimm_ss","_mm_mask_fmadd_pch","_mm_mask_fmadd_pd","_mm_mask_fmadd_ph","_mm_mask_fmadd_ps","_mm_mask_fmadd_round_sch","_mm_mask_fmadd_round_sd","_mm_mask_fmadd_round_sh","_mm_mask_fmadd_round_ss","_mm_mask_fmadd_sch","_mm_mask_fmadd_sd","_mm_mask_fmadd_sh","_mm_mask_fmadd_ss","_mm_mask_fmaddsub_pd","_mm_mask_fmaddsub_ph","_mm_mask_fmaddsub_ps","_mm_mask_fmsub_pd","_mm_mask_fmsub_ph","_mm_mask_fmsub_ps","_mm_mask_fmsub_round_sd","_mm_mask_fmsub_round_sh","_mm_mask_fmsub_round_ss","_mm_mask_fmsub_sd","_mm_mask_fmsub_sh","_mm_mask_fmsub_ss","_mm_mask_fmsubadd_pd","_mm_mask_fmsubadd_ph","_mm_mask_fmsubadd_ps","_mm_mask_fmul_pch","_mm_mask_fmul_round_sch","_mm_mask_fmul_sch","_mm_mask_fnmadd_pd","_mm_mask_fnmadd_ph","_mm_mask_fnmadd_ps","_mm_mask_fnmadd_round_sd","_mm_mask_fnmadd_round_sh","_mm_mask_fnmadd_round_ss","_mm_mask_fnmadd_sd","_mm_mask_fnmadd_sh","_mm_mask_fnmadd_ss","_mm_mask_fnmsub_pd","_mm_mask_fnmsub_ph","_mm_mask_fnmsub_ps","_mm_mask_fnmsub_round_sd","_mm_mask_fnmsub_round_sh","_mm_mask_fnmsub_round_ss","_mm_mask_fnmsub_sd","_mm_mask_fnmsub_sh","_mm_mask_fnmsub_ss","_mm_mask_fpclass_pd_mask","_mm_mask_fpclass_ph_mask","_mm_mask_fpclass_ps_mask","_mm_mask_fpclass_sd_mask","_mm_mask_fpclass_sh_mask","_mm_mask_fpclass_ss_mask","_mm_mask_getexp_pd","_mm_mask_getexp_ph","_mm_mask_getexp_ps","_mm_mask_getexp_round_sd","_mm_mask_getexp_round_sh","_mm_mask_getexp_round_ss","_mm_mask_getexp_sd","_mm_mask_getexp_sh","_mm_mask_getexp_ss","_mm_mask_getmant_pd","_mm_mask_getmant_ph","_mm_mask_getmant_ps","_mm_mask_getmant_round_sd","_mm_mask_getmant_round_sh","_mm_mask_getmant_round_ss","_mm_mask_getmant_sd","_mm_mask_getmant_sh","_mm_mask_getmant_ss","_mm_mask_gf2p8affine_epi64_epi8","_mm_mask_gf2p8affineinv_epi64_epi8","_mm_mask_gf2p8mul_epi8","_mm_mask_i32gather_epi32","_mm_mask_i32gather_epi64","_mm_mask_i32gather_pd","_mm_mask_i32gather_ps","_mm_mask_i32scatter_epi32","_mm_mask_i32scatter_epi64","_mm_mask_i32scatter_pd","_mm_mask_i32scatter_ps","_mm_mask_i64gather_epi32","_mm_mask_i64gather_epi64","_mm_mask_i64gather_pd","_mm_mask_i64gather_ps","_mm_mask_i64scatter_epi32","_mm_mask_i64scatter_epi64","_mm_mask_i64scatter_pd","_mm_mask_i64scatter_ps","_mm_mask_load_epi32","_mm_mask_load_epi64","_mm_mask_load_pd","_mm_mask_load_ps","_mm_mask_load_sd","_mm_mask_load_sh","_mm_mask_load_ss","_mm_mask_loadu_epi16","_mm_mask_loadu_epi32","_mm_mask_loadu_epi64","_mm_mask_loadu_epi8","_mm_mask_loadu_pd","_mm_mask_loadu_ps","_mm_mask_lzcnt_epi32","_mm_mask_lzcnt_epi64","_mm_mask_madd52hi_epu64","_mm_mask_madd52lo_epu64","_mm_mask_madd_epi16","_mm_mask_maddubs_epi16","_mm_mask_max_epi16","_mm_mask_max_epi32","_mm_mask_max_epi64","_mm_mask_max_epi8","_mm_mask_max_epu16","_mm_mask_max_epu32","_mm_mask_max_epu64","_mm_mask_max_epu8","_mm_mask_max_pd","_mm_mask_max_ph","_mm_mask_max_ps","_mm_mask_max_round_sd","_mm_mask_max_round_sh","_mm_mask_max_round_ss","_mm_mask_max_sd","_mm_mask_max_sh","_mm_mask_max_ss","_mm_mask_min_epi16","_mm_mask_min_epi32","_mm_mask_min_epi64","_mm_mask_min_epi8","_mm_mask_min_epu16","_mm_mask_min_epu32","_mm_mask_min_epu64","_mm_mask_min_epu8","_mm_mask_min_pd","_mm_mask_min_ph","_mm_mask_min_ps","_mm_mask_min_round_sd","_mm_mask_min_round_sh","_mm_mask_min_round_ss","_mm_mask_min_sd","_mm_mask_min_sh","_mm_mask_min_ss","_mm_mask_mov_epi16","_mm_mask_mov_epi32","_mm_mask_mov_epi64","_mm_mask_mov_epi8","_mm_mask_mov_pd","_mm_mask_mov_ps","_mm_mask_move_sd","_mm_mask_move_sh","_mm_mask_move_ss","_mm_mask_movedup_pd","_mm_mask_movehdup_ps","_mm_mask_moveldup_ps","_mm_mask_mul_epi32","_mm_mask_mul_epu32","_mm_mask_mul_pch","_mm_mask_mul_pd","_mm_mask_mul_ph","_mm_mask_mul_ps","_mm_mask_mul_round_sch","_mm_mask_mul_round_sd","_mm_mask_mul_round_sh","_mm_mask_mul_round_ss","_mm_mask_mul_sch","_mm_mask_mul_sd","_mm_mask_mul_sh","_mm_mask_mul_ss","_mm_mask_mulhi_epi16","_mm_mask_mulhi_epu16","_mm_mask_mulhrs_epi16","_mm_mask_mullo_epi16","_mm_mask_mullo_epi32","_mm_mask_mullo_epi64","_mm_mask_multishift_epi64_epi8","_mm_mask_or_epi32","_mm_mask_or_epi64","_mm_mask_or_pd","_mm_mask_or_ps","_mm_mask_packs_epi16","_mm_mask_packs_epi32","_mm_mask_packus_epi16","_mm_mask_packus_epi32","_mm_mask_permute_pd","_mm_mask_permute_ps","_mm_mask_permutevar_pd","_mm_mask_permutevar_ps","_mm_mask_permutex2var_epi16","_mm_mask_permutex2var_epi32","_mm_mask_permutex2var_epi64","_mm_mask_permutex2var_epi8","_mm_mask_permutex2var_pd","_mm_mask_permutex2var_ps","_mm_mask_permutexvar_epi16","_mm_mask_permutexvar_epi8","_mm_mask_popcnt_epi16","_mm_mask_popcnt_epi32","_mm_mask_popcnt_epi64","_mm_mask_popcnt_epi8","_mm_mask_range_pd","_mm_mask_range_ps","_mm_mask_range_round_sd","_mm_mask_range_round_ss","_mm_mask_range_sd","_mm_mask_range_ss","_mm_mask_rcp14_pd","_mm_mask_rcp14_ps","_mm_mask_rcp14_sd","_mm_mask_rcp14_ss","_mm_mask_rcp_ph","_mm_mask_rcp_sh","_mm_mask_reduce_add_epi16","_mm_mask_reduce_add_epi8","_mm_mask_reduce_and_epi16","_mm_mask_reduce_and_epi8","_mm_mask_reduce_max_epi16","_mm_mask_reduce_max_epi8","_mm_mask_reduce_max_epu16","_mm_mask_reduce_max_epu8","_mm_mask_reduce_min_epi16","_mm_mask_reduce_min_epi8","_mm_mask_reduce_min_epu16","_mm_mask_reduce_min_epu8","_mm_mask_reduce_mul_epi16","_mm_mask_reduce_mul_epi8","_mm_mask_reduce_or_epi16","_mm_mask_reduce_or_epi8","_mm_mask_reduce_pd","_mm_mask_reduce_ph","_mm_mask_reduce_ps","_mm_mask_reduce_round_sd","_mm_mask_reduce_round_sh","_mm_mask_reduce_round_ss","_mm_mask_reduce_sd","_mm_mask_reduce_sh","_mm_mask_reduce_ss","_mm_mask_rol_epi32","_mm_mask_rol_epi64","_mm_mask_rolv_epi32","_mm_mask_rolv_epi64","_mm_mask_ror_epi32","_mm_mask_ror_epi64","_mm_mask_rorv_epi32","_mm_mask_rorv_epi64","_mm_mask_roundscale_pd","_mm_mask_roundscale_ph","_mm_mask_roundscale_ps","_mm_mask_roundscale_round_sd","_mm_mask_roundscale_round_sh","_mm_mask_roundscale_round_ss","_mm_mask_roundscale_sd","_mm_mask_roundscale_sh","_mm_mask_roundscale_ss","_mm_mask_rsqrt14_pd","_mm_mask_rsqrt14_ps","_mm_mask_rsqrt14_sd","_mm_mask_rsqrt14_ss","_mm_mask_rsqrt_ph","_mm_mask_rsqrt_sh","_mm_mask_scalef_pd","_mm_mask_scalef_ph","_mm_mask_scalef_ps","_mm_mask_scalef_round_sd","_mm_mask_scalef_round_sh","_mm_mask_scalef_round_ss","_mm_mask_scalef_sd","_mm_mask_scalef_sh","_mm_mask_scalef_ss","_mm_mask_set1_epi16","_mm_mask_set1_epi32","_mm_mask_set1_epi64","_mm_mask_set1_epi8","_mm_mask_shldi_epi16","_mm_mask_shldi_epi32","_mm_mask_shldi_epi64","_mm_mask_shldv_epi16","_mm_mask_shldv_epi32","_mm_mask_shldv_epi64","_mm_mask_shrdi_epi16","_mm_mask_shrdi_epi32","_mm_mask_shrdi_epi64","_mm_mask_shrdv_epi16","_mm_mask_shrdv_epi32","_mm_mask_shrdv_epi64","_mm_mask_shuffle_epi32","_mm_mask_shuffle_epi8","_mm_mask_shuffle_pd","_mm_mask_shuffle_ps","_mm_mask_shufflehi_epi16","_mm_mask_shufflelo_epi16","_mm_mask_sll_epi16","_mm_mask_sll_epi32","_mm_mask_sll_epi64","_mm_mask_slli_epi16","_mm_mask_slli_epi32","_mm_mask_slli_epi64","_mm_mask_sllv_epi16","_mm_mask_sllv_epi32","_mm_mask_sllv_epi64","_mm_mask_sqrt_pd","_mm_mask_sqrt_ph","_mm_mask_sqrt_ps","_mm_mask_sqrt_round_sd","_mm_mask_sqrt_round_sh","_mm_mask_sqrt_round_ss","_mm_mask_sqrt_sd","_mm_mask_sqrt_sh","_mm_mask_sqrt_ss","_mm_mask_sra_epi16","_mm_mask_sra_epi32","_mm_mask_sra_epi64","_mm_mask_srai_epi16","_mm_mask_srai_epi32","_mm_mask_srai_epi64","_mm_mask_srav_epi16","_mm_mask_srav_epi32","_mm_mask_srav_epi64","_mm_mask_srl_epi16","_mm_mask_srl_epi32","_mm_mask_srl_epi64","_mm_mask_srli_epi16","_mm_mask_srli_epi32","_mm_mask_srli_epi64","_mm_mask_srlv_epi16","_mm_mask_srlv_epi32","_mm_mask_srlv_epi64","_mm_mask_store_epi32","_mm_mask_store_epi64","_mm_mask_store_pd","_mm_mask_store_ps","_mm_mask_store_sd","_mm_mask_store_sh","_mm_mask_store_ss","_mm_mask_storeu_epi16","_mm_mask_storeu_epi32","_mm_mask_storeu_epi64","_mm_mask_storeu_epi8","_mm_mask_storeu_pd","_mm_mask_storeu_ps","_mm_mask_sub_epi16","_mm_mask_sub_epi32","_mm_mask_sub_epi64","_mm_mask_sub_epi8","_mm_mask_sub_pd","_mm_mask_sub_ph","_mm_mask_sub_ps","_mm_mask_sub_round_sd","_mm_mask_sub_round_sh","_mm_mask_sub_round_ss","_mm_mask_sub_sd","_mm_mask_sub_sh","_mm_mask_sub_ss","_mm_mask_subs_epi16","_mm_mask_subs_epi8","_mm_mask_subs_epu16","_mm_mask_subs_epu8","_mm_mask_ternarylogic_epi32","_mm_mask_ternarylogic_epi64","_mm_mask_test_epi16_mask","_mm_mask_test_epi32_mask","_mm_mask_test_epi64_mask","_mm_mask_test_epi8_mask","_mm_mask_testn_epi16_mask","_mm_mask_testn_epi32_mask","_mm_mask_testn_epi64_mask","_mm_mask_testn_epi8_mask","_mm_mask_unpackhi_epi16","_mm_mask_unpackhi_epi32","_mm_mask_unpackhi_epi64","_mm_mask_unpackhi_epi8","_mm_mask_unpackhi_pd","_mm_mask_unpackhi_ps","_mm_mask_unpacklo_epi16","_mm_mask_unpacklo_epi32","_mm_mask_unpacklo_epi64","_mm_mask_unpacklo_epi8","_mm_mask_unpacklo_pd","_mm_mask_unpacklo_ps","_mm_mask_xor_epi32","_mm_mask_xor_epi64","_mm_mask_xor_pd","_mm_mask_xor_ps","_mm_maskload_epi32","_mm_maskload_epi64","_mm_maskload_pd","_mm_maskload_ps","_mm_maskmoveu_si128","_mm_maskstore_epi32","_mm_maskstore_epi64","_mm_maskstore_pd","_mm_maskstore_ps","_mm_maskz_abs_epi16","_mm_maskz_abs_epi32","_mm_maskz_abs_epi64","_mm_maskz_abs_epi8","_mm_maskz_add_epi16","_mm_maskz_add_epi32","_mm_maskz_add_epi64","_mm_maskz_add_epi8","_mm_maskz_add_pd","_mm_maskz_add_ph","_mm_maskz_add_ps","_mm_maskz_add_round_sd","_mm_maskz_add_round_sh","_mm_maskz_add_round_ss","_mm_maskz_add_sd","_mm_maskz_add_sh","_mm_maskz_add_ss","_mm_maskz_adds_epi16","_mm_maskz_adds_epi8","_mm_maskz_adds_epu16","_mm_maskz_adds_epu8","_mm_maskz_alignr_epi32","_mm_maskz_alignr_epi64","_mm_maskz_alignr_epi8","_mm_maskz_and_epi32","_mm_maskz_and_epi64","_mm_maskz_and_pd","_mm_maskz_and_ps","_mm_maskz_andnot_epi32","_mm_maskz_andnot_epi64","_mm_maskz_andnot_pd","_mm_maskz_andnot_ps","_mm_maskz_avg_epu16","_mm_maskz_avg_epu8","_mm_maskz_broadcast_i32x2","_mm_maskz_broadcastb_epi8","_mm_maskz_broadcastd_epi32","_mm_maskz_broadcastq_epi64","_mm_maskz_broadcastss_ps","_mm_maskz_broadcastw_epi16","_mm_maskz_cmul_pch","_mm_maskz_cmul_round_sch","_mm_maskz_cmul_sch","_mm_maskz_compress_epi16","_mm_maskz_compress_epi32","_mm_maskz_compress_epi64","_mm_maskz_compress_epi8","_mm_maskz_compress_pd","_mm_maskz_compress_ps","_mm_maskz_conflict_epi32","_mm_maskz_conflict_epi64","_mm_maskz_conj_pch","_mm_maskz_cvt_roundps_ph","_mm_maskz_cvt_roundsd_sh","_mm_maskz_cvt_roundsd_ss","_mm_maskz_cvt_roundsh_sd","_mm_maskz_cvt_roundsh_ss","_mm_maskz_cvt_roundss_sd","_mm_maskz_cvt_roundss_sh","_mm_maskz_cvtepi16_epi32","_mm_maskz_cvtepi16_epi64","_mm_maskz_cvtepi16_epi8","_mm_maskz_cvtepi16_ph","_mm_maskz_cvtepi32_epi16","_mm_maskz_cvtepi32_epi64","_mm_maskz_cvtepi32_epi8","_mm_maskz_cvtepi32_pd","_mm_maskz_cvtepi32_ph","_mm_maskz_cvtepi32_ps","_mm_maskz_cvtepi64_epi16","_mm_maskz_cvtepi64_epi32","_mm_maskz_cvtepi64_epi8","_mm_maskz_cvtepi64_pd","_mm_maskz_cvtepi64_ph","_mm_maskz_cvtepi64_ps","_mm_maskz_cvtepi8_epi16","_mm_maskz_cvtepi8_epi32","_mm_maskz_cvtepi8_epi64","_mm_maskz_cvtepu16_epi32","_mm_maskz_cvtepu16_epi64","_mm_maskz_cvtepu16_ph","_mm_maskz_cvtepu32_epi64","_mm_maskz_cvtepu32_pd","_mm_maskz_cvtepu32_ph","_mm_maskz_cvtepu64_pd","_mm_maskz_cvtepu64_ph","_mm_maskz_cvtepu64_ps","_mm_maskz_cvtepu8_epi16","_mm_maskz_cvtepu8_epi32","_mm_maskz_cvtepu8_epi64","_mm_maskz_cvtne2ps_pbh","_mm_maskz_cvtneps_pbh","_mm_maskz_cvtpbh_ps","_mm_maskz_cvtpd_epi32","_mm_maskz_cvtpd_epi64","_mm_maskz_cvtpd_epu32","_mm_maskz_cvtpd_epu64","_mm_maskz_cvtpd_ph","_mm_maskz_cvtpd_ps","_mm_maskz_cvtph_epi16","_mm_maskz_cvtph_epi32","_mm_maskz_cvtph_epi64","_mm_maskz_cvtph_epu16","_mm_maskz_cvtph_epu32","_mm_maskz_cvtph_epu64","_mm_maskz_cvtph_pd","_mm_maskz_cvtph_ps","_mm_maskz_cvtps_epi32","_mm_maskz_cvtps_epi64","_mm_maskz_cvtps_epu32","_mm_maskz_cvtps_epu64","_mm_maskz_cvtps_ph","_mm_maskz_cvtsd_sh","_mm_maskz_cvtsd_ss","_mm_maskz_cvtsepi16_epi8","_mm_maskz_cvtsepi32_epi16","_mm_maskz_cvtsepi32_epi8","_mm_maskz_cvtsepi64_epi16","_mm_maskz_cvtsepi64_epi32","_mm_maskz_cvtsepi64_epi8","_mm_maskz_cvtsh_sd","_mm_maskz_cvtsh_ss","_mm_maskz_cvtss_sd","_mm_maskz_cvtss_sh","_mm_maskz_cvttpd_epi32","_mm_maskz_cvttpd_epi64","_mm_maskz_cvttpd_epu32","_mm_maskz_cvttpd_epu64","_mm_maskz_cvttph_epi16","_mm_maskz_cvttph_epi32","_mm_maskz_cvttph_epi64","_mm_maskz_cvttph_epu16","_mm_maskz_cvttph_epu32","_mm_maskz_cvttph_epu64","_mm_maskz_cvttps_epi32","_mm_maskz_cvttps_epi64","_mm_maskz_cvttps_epu32","_mm_maskz_cvttps_epu64","_mm_maskz_cvtusepi16_epi8","_mm_maskz_cvtusepi32_epi16","_mm_maskz_cvtusepi32_epi8","_mm_maskz_cvtusepi64_epi16","_mm_maskz_cvtusepi64_epi32","_mm_maskz_cvtusepi64_epi8","_mm_maskz_cvtxph_ps","_mm_maskz_cvtxps_ph","_mm_maskz_dbsad_epu8","_mm_maskz_div_pd","_mm_maskz_div_ph","_mm_maskz_div_ps","_mm_maskz_div_round_sd","_mm_maskz_div_round_sh","_mm_maskz_div_round_ss","_mm_maskz_div_sd","_mm_maskz_div_sh","_mm_maskz_div_ss","_mm_maskz_dpbf16_ps","_mm_maskz_dpbusd_epi32","_mm_maskz_dpbusds_epi32","_mm_maskz_dpwssd_epi32","_mm_maskz_dpwssds_epi32","_mm_maskz_expand_epi16","_mm_maskz_expand_epi32","_mm_maskz_expand_epi64","_mm_maskz_expand_epi8","_mm_maskz_expand_pd","_mm_maskz_expand_ps","_mm_maskz_expandloadu_epi16","_mm_maskz_expandloadu_epi32","_mm_maskz_expandloadu_epi64","_mm_maskz_expandloadu_epi8","_mm_maskz_expandloadu_pd","_mm_maskz_expandloadu_ps","_mm_maskz_fcmadd_pch","_mm_maskz_fcmadd_round_sch","_mm_maskz_fcmadd_sch","_mm_maskz_fcmul_pch","_mm_maskz_fcmul_round_sch","_mm_maskz_fcmul_sch","_mm_maskz_fixupimm_pd","_mm_maskz_fixupimm_ps","_mm_maskz_fixupimm_round_sd","_mm_maskz_fixupimm_round_ss","_mm_maskz_fixupimm_sd","_mm_maskz_fixupimm_ss","_mm_maskz_fmadd_pch","_mm_maskz_fmadd_pd","_mm_maskz_fmadd_ph","_mm_maskz_fmadd_ps","_mm_maskz_fmadd_round_sch","_mm_maskz_fmadd_round_sd","_mm_maskz_fmadd_round_sh","_mm_maskz_fmadd_round_ss","_mm_maskz_fmadd_sch","_mm_maskz_fmadd_sd","_mm_maskz_fmadd_sh","_mm_maskz_fmadd_ss","_mm_maskz_fmaddsub_pd","_mm_maskz_fmaddsub_ph","_mm_maskz_fmaddsub_ps","_mm_maskz_fmsub_pd","_mm_maskz_fmsub_ph","_mm_maskz_fmsub_ps","_mm_maskz_fmsub_round_sd","_mm_maskz_fmsub_round_sh","_mm_maskz_fmsub_round_ss","_mm_maskz_fmsub_sd","_mm_maskz_fmsub_sh","_mm_maskz_fmsub_ss","_mm_maskz_fmsubadd_pd","_mm_maskz_fmsubadd_ph","_mm_maskz_fmsubadd_ps","_mm_maskz_fmul_pch","_mm_maskz_fmul_round_sch","_mm_maskz_fmul_sch","_mm_maskz_fnmadd_pd","_mm_maskz_fnmadd_ph","_mm_maskz_fnmadd_ps","_mm_maskz_fnmadd_round_sd","_mm_maskz_fnmadd_round_sh","_mm_maskz_fnmadd_round_ss","_mm_maskz_fnmadd_sd","_mm_maskz_fnmadd_sh","_mm_maskz_fnmadd_ss","_mm_maskz_fnmsub_pd","_mm_maskz_fnmsub_ph","_mm_maskz_fnmsub_ps","_mm_maskz_fnmsub_round_sd","_mm_maskz_fnmsub_round_sh","_mm_maskz_fnmsub_round_ss","_mm_maskz_fnmsub_sd","_mm_maskz_fnmsub_sh","_mm_maskz_fnmsub_ss","_mm_maskz_getexp_pd","_mm_maskz_getexp_ph","_mm_maskz_getexp_ps","_mm_maskz_getexp_round_sd","_mm_maskz_getexp_round_sh","_mm_maskz_getexp_round_ss","_mm_maskz_getexp_sd","_mm_maskz_getexp_sh","_mm_maskz_getexp_ss","_mm_maskz_getmant_pd","_mm_maskz_getmant_ph","_mm_maskz_getmant_ps","_mm_maskz_getmant_round_sd","_mm_maskz_getmant_round_sh","_mm_maskz_getmant_round_ss","_mm_maskz_getmant_sd","_mm_maskz_getmant_sh","_mm_maskz_getmant_ss","_mm_maskz_gf2p8affine_epi64_epi8","_mm_maskz_gf2p8affineinv_epi64_epi8","_mm_maskz_gf2p8mul_epi8","_mm_maskz_load_epi32","_mm_maskz_load_epi64","_mm_maskz_load_pd","_mm_maskz_load_ps","_mm_maskz_load_sd","_mm_maskz_load_sh","_mm_maskz_load_ss","_mm_maskz_loadu_epi16","_mm_maskz_loadu_epi32","_mm_maskz_loadu_epi64","_mm_maskz_loadu_epi8","_mm_maskz_loadu_pd","_mm_maskz_loadu_ps","_mm_maskz_lzcnt_epi32","_mm_maskz_lzcnt_epi64","_mm_maskz_madd52hi_epu64","_mm_maskz_madd52lo_epu64","_mm_maskz_madd_epi16","_mm_maskz_maddubs_epi16","_mm_maskz_max_epi16","_mm_maskz_max_epi32","_mm_maskz_max_epi64","_mm_maskz_max_epi8","_mm_maskz_max_epu16","_mm_maskz_max_epu32","_mm_maskz_max_epu64","_mm_maskz_max_epu8","_mm_maskz_max_pd","_mm_maskz_max_ph","_mm_maskz_max_ps","_mm_maskz_max_round_sd","_mm_maskz_max_round_sh","_mm_maskz_max_round_ss","_mm_maskz_max_sd","_mm_maskz_max_sh","_mm_maskz_max_ss","_mm_maskz_min_epi16","_mm_maskz_min_epi32","_mm_maskz_min_epi64","_mm_maskz_min_epi8","_mm_maskz_min_epu16","_mm_maskz_min_epu32","_mm_maskz_min_epu64","_mm_maskz_min_epu8","_mm_maskz_min_pd","_mm_maskz_min_ph","_mm_maskz_min_ps","_mm_maskz_min_round_sd","_mm_maskz_min_round_sh","_mm_maskz_min_round_ss","_mm_maskz_min_sd","_mm_maskz_min_sh","_mm_maskz_min_ss","_mm_maskz_mov_epi16","_mm_maskz_mov_epi32","_mm_maskz_mov_epi64","_mm_maskz_mov_epi8","_mm_maskz_mov_pd","_mm_maskz_mov_ps","_mm_maskz_move_sd","_mm_maskz_move_sh","_mm_maskz_move_ss","_mm_maskz_movedup_pd","_mm_maskz_movehdup_ps","_mm_maskz_moveldup_ps","_mm_maskz_mul_epi32","_mm_maskz_mul_epu32","_mm_maskz_mul_pch","_mm_maskz_mul_pd","_mm_maskz_mul_ph","_mm_maskz_mul_ps","_mm_maskz_mul_round_sch","_mm_maskz_mul_round_sd","_mm_maskz_mul_round_sh","_mm_maskz_mul_round_ss","_mm_maskz_mul_sch","_mm_maskz_mul_sd","_mm_maskz_mul_sh","_mm_maskz_mul_ss","_mm_maskz_mulhi_epi16","_mm_maskz_mulhi_epu16","_mm_maskz_mulhrs_epi16","_mm_maskz_mullo_epi16","_mm_maskz_mullo_epi32","_mm_maskz_mullo_epi64","_mm_maskz_multishift_epi64_epi8","_mm_maskz_or_epi32","_mm_maskz_or_epi64","_mm_maskz_or_pd","_mm_maskz_or_ps","_mm_maskz_packs_epi16","_mm_maskz_packs_epi32","_mm_maskz_packus_epi16","_mm_maskz_packus_epi32","_mm_maskz_permute_pd","_mm_maskz_permute_ps","_mm_maskz_permutevar_pd","_mm_maskz_permutevar_ps","_mm_maskz_permutex2var_epi16","_mm_maskz_permutex2var_epi32","_mm_maskz_permutex2var_epi64","_mm_maskz_permutex2var_epi8","_mm_maskz_permutex2var_pd","_mm_maskz_permutex2var_ps","_mm_maskz_permutexvar_epi16","_mm_maskz_permutexvar_epi8","_mm_maskz_popcnt_epi16","_mm_maskz_popcnt_epi32","_mm_maskz_popcnt_epi64","_mm_maskz_popcnt_epi8","_mm_maskz_range_pd","_mm_maskz_range_ps","_mm_maskz_range_round_sd","_mm_maskz_range_round_ss","_mm_maskz_range_sd","_mm_maskz_range_ss","_mm_maskz_rcp14_pd","_mm_maskz_rcp14_ps","_mm_maskz_rcp14_sd","_mm_maskz_rcp14_ss","_mm_maskz_rcp_ph","_mm_maskz_rcp_sh","_mm_maskz_reduce_pd","_mm_maskz_reduce_ph","_mm_maskz_reduce_ps","_mm_maskz_reduce_round_sd","_mm_maskz_reduce_round_sh","_mm_maskz_reduce_round_ss","_mm_maskz_reduce_sd","_mm_maskz_reduce_sh","_mm_maskz_reduce_ss","_mm_maskz_rol_epi32","_mm_maskz_rol_epi64","_mm_maskz_rolv_epi32","_mm_maskz_rolv_epi64","_mm_maskz_ror_epi32","_mm_maskz_ror_epi64","_mm_maskz_rorv_epi32","_mm_maskz_rorv_epi64","_mm_maskz_roundscale_pd","_mm_maskz_roundscale_ph","_mm_maskz_roundscale_ps","_mm_maskz_roundscale_round_sd","_mm_maskz_roundscale_round_sh","_mm_maskz_roundscale_round_ss","_mm_maskz_roundscale_sd","_mm_maskz_roundscale_sh","_mm_maskz_roundscale_ss","_mm_maskz_rsqrt14_pd","_mm_maskz_rsqrt14_ps","_mm_maskz_rsqrt14_sd","_mm_maskz_rsqrt14_ss","_mm_maskz_rsqrt_ph","_mm_maskz_rsqrt_sh","_mm_maskz_scalef_pd","_mm_maskz_scalef_ph","_mm_maskz_scalef_ps","_mm_maskz_scalef_round_sd","_mm_maskz_scalef_round_sh","_mm_maskz_scalef_round_ss","_mm_maskz_scalef_sd","_mm_maskz_scalef_sh","_mm_maskz_scalef_ss","_mm_maskz_set1_epi16","_mm_maskz_set1_epi32","_mm_maskz_set1_epi64","_mm_maskz_set1_epi8","_mm_maskz_shldi_epi16","_mm_maskz_shldi_epi32","_mm_maskz_shldi_epi64","_mm_maskz_shldv_epi16","_mm_maskz_shldv_epi32","_mm_maskz_shldv_epi64","_mm_maskz_shrdi_epi16","_mm_maskz_shrdi_epi32","_mm_maskz_shrdi_epi64","_mm_maskz_shrdv_epi16","_mm_maskz_shrdv_epi32","_mm_maskz_shrdv_epi64","_mm_maskz_shuffle_epi32","_mm_maskz_shuffle_epi8","_mm_maskz_shuffle_pd","_mm_maskz_shuffle_ps","_mm_maskz_shufflehi_epi16","_mm_maskz_shufflelo_epi16","_mm_maskz_sll_epi16","_mm_maskz_sll_epi32","_mm_maskz_sll_epi64","_mm_maskz_slli_epi16","_mm_maskz_slli_epi32","_mm_maskz_slli_epi64","_mm_maskz_sllv_epi16","_mm_maskz_sllv_epi32","_mm_maskz_sllv_epi64","_mm_maskz_sqrt_pd","_mm_maskz_sqrt_ph","_mm_maskz_sqrt_ps","_mm_maskz_sqrt_round_sd","_mm_maskz_sqrt_round_sh","_mm_maskz_sqrt_round_ss","_mm_maskz_sqrt_sd","_mm_maskz_sqrt_sh","_mm_maskz_sqrt_ss","_mm_maskz_sra_epi16","_mm_maskz_sra_epi32","_mm_maskz_sra_epi64","_mm_maskz_srai_epi16","_mm_maskz_srai_epi32","_mm_maskz_srai_epi64","_mm_maskz_srav_epi16","_mm_maskz_srav_epi32","_mm_maskz_srav_epi64","_mm_maskz_srl_epi16","_mm_maskz_srl_epi32","_mm_maskz_srl_epi64","_mm_maskz_srli_epi16","_mm_maskz_srli_epi32","_mm_maskz_srli_epi64","_mm_maskz_srlv_epi16","_mm_maskz_srlv_epi32","_mm_maskz_srlv_epi64","_mm_maskz_sub_epi16","_mm_maskz_sub_epi32","_mm_maskz_sub_epi64","_mm_maskz_sub_epi8","_mm_maskz_sub_pd","_mm_maskz_sub_ph","_mm_maskz_sub_ps","_mm_maskz_sub_round_sd","_mm_maskz_sub_round_sh","_mm_maskz_sub_round_ss","_mm_maskz_sub_sd","_mm_maskz_sub_sh","_mm_maskz_sub_ss","_mm_maskz_subs_epi16","_mm_maskz_subs_epi8","_mm_maskz_subs_epu16","_mm_maskz_subs_epu8","_mm_maskz_ternarylogic_epi32","_mm_maskz_ternarylogic_epi64","_mm_maskz_unpackhi_epi16","_mm_maskz_unpackhi_epi32","_mm_maskz_unpackhi_epi64","_mm_maskz_unpackhi_epi8","_mm_maskz_unpackhi_pd","_mm_maskz_unpackhi_ps","_mm_maskz_unpacklo_epi16","_mm_maskz_unpacklo_epi32","_mm_maskz_unpacklo_epi64","_mm_maskz_unpacklo_epi8","_mm_maskz_unpacklo_pd","_mm_maskz_unpacklo_ps","_mm_maskz_xor_epi32","_mm_maskz_xor_epi64","_mm_maskz_xor_pd","_mm_maskz_xor_ps","_mm_max_epi16","_mm_max_epi32","_mm_max_epi64","_mm_max_epi8","_mm_max_epu16","_mm_max_epu32","_mm_max_epu64","_mm_max_epu8","_mm_max_pd","_mm_max_ph","_mm_max_ps","_mm_max_round_sd","_mm_max_round_sh","_mm_max_round_ss","_mm_max_sd","_mm_max_sh","_mm_max_ss","_mm_mfence","_mm_min_epi16","_mm_min_epi32","_mm_min_epi64","_mm_min_epi8","_mm_min_epu16","_mm_min_epu32","_mm_min_epu64","_mm_min_epu8","_mm_min_pd","_mm_min_ph","_mm_min_ps","_mm_min_round_sd","_mm_min_round_sh","_mm_min_round_ss","_mm_min_sd","_mm_min_sh","_mm_min_ss","_mm_minpos_epu16","_mm_mmask_i32gather_epi32","_mm_mmask_i32gather_epi64","_mm_mmask_i32gather_pd","_mm_mmask_i32gather_ps","_mm_mmask_i64gather_epi32","_mm_mmask_i64gather_epi64","_mm_mmask_i64gather_pd","_mm_mmask_i64gather_ps","_mm_move_epi64","_mm_move_sd","_mm_move_sh","_mm_move_ss","_mm_movedup_pd","_mm_movehdup_ps","_mm_movehl_ps","_mm_moveldup_ps","_mm_movelh_ps","_mm_movemask_epi8","_mm_movemask_pd","_mm_movemask_ps","_mm_movepi16_mask","_mm_movepi32_mask","_mm_movepi64_mask","_mm_movepi8_mask","_mm_movm_epi16","_mm_movm_epi32","_mm_movm_epi64","_mm_movm_epi8","_mm_mpsadbw_epu8","_mm_mul_epi32","_mm_mul_epu32","_mm_mul_pch","_mm_mul_pd","_mm_mul_ph","_mm_mul_ps","_mm_mul_round_sch","_mm_mul_round_sd","_mm_mul_round_sh","_mm_mul_round_ss","_mm_mul_sch","_mm_mul_sd","_mm_mul_sh","_mm_mul_ss","_mm_mulhi_epi16","_mm_mulhi_epu16","_mm_mulhrs_epi16","_mm_mullo_epi16","_mm_mullo_epi32","_mm_mullo_epi64","_mm_multishift_epi64_epi8","_mm_or_epi32","_mm_or_epi64","_mm_or_pd","_mm_or_ps","_mm_or_si128","_mm_packs_epi16","_mm_packs_epi32","_mm_packus_epi16","_mm_packus_epi32","_mm_pause","_mm_permute_pd","_mm_permute_ps","_mm_permutevar_pd","_mm_permutevar_ps","_mm_permutex2var_epi16","_mm_permutex2var_epi32","_mm_permutex2var_epi64","_mm_permutex2var_epi8","_mm_permutex2var_pd","_mm_permutex2var_ph","_mm_permutex2var_ps","_mm_permutexvar_epi16","_mm_permutexvar_epi8","_mm_permutexvar_ph","_mm_popcnt_epi16","_mm_popcnt_epi32","_mm_popcnt_epi64","_mm_popcnt_epi8","_mm_prefetch","_mm_range_pd","_mm_range_ps","_mm_range_round_sd","_mm_range_round_ss","_mm_rcp14_pd","_mm_rcp14_ps","_mm_rcp14_sd","_mm_rcp14_ss","_mm_rcp_ph","_mm_rcp_ps","_mm_rcp_sh","_mm_rcp_ss","_mm_reduce_add_epi16","_mm_reduce_add_epi8","_mm_reduce_add_ph","_mm_reduce_and_epi16","_mm_reduce_and_epi8","_mm_reduce_max_epi16","_mm_reduce_max_epi8","_mm_reduce_max_epu16","_mm_reduce_max_epu8","_mm_reduce_max_ph","_mm_reduce_min_epi16","_mm_reduce_min_epi8","_mm_reduce_min_epu16","_mm_reduce_min_epu8","_mm_reduce_min_ph","_mm_reduce_mul_epi16","_mm_reduce_mul_epi8","_mm_reduce_mul_ph","_mm_reduce_or_epi16","_mm_reduce_or_epi8","_mm_reduce_pd","_mm_reduce_ph","_mm_reduce_ps","_mm_reduce_round_sd","_mm_reduce_round_sh","_mm_reduce_round_ss","_mm_reduce_sd","_mm_reduce_sh","_mm_reduce_ss","_mm_rol_epi32","_mm_rol_epi64","_mm_rolv_epi32","_mm_rolv_epi64","_mm_ror_epi32","_mm_ror_epi64","_mm_rorv_epi32","_mm_rorv_epi64","_mm_round_pd","_mm_round_ps","_mm_round_sd","_mm_round_ss","_mm_roundscale_pd","_mm_roundscale_ph","_mm_roundscale_ps","_mm_roundscale_round_sd","_mm_roundscale_round_sh","_mm_roundscale_round_ss","_mm_roundscale_sd","_mm_roundscale_sh","_mm_roundscale_ss","_mm_rsqrt14_pd","_mm_rsqrt14_ps","_mm_rsqrt14_sd","_mm_rsqrt14_ss","_mm_rsqrt_ph","_mm_rsqrt_ps","_mm_rsqrt_sh","_mm_rsqrt_ss","_mm_sad_epu8","_mm_scalef_pd","_mm_scalef_ph","_mm_scalef_ps","_mm_scalef_round_sd","_mm_scalef_round_sh","_mm_scalef_round_ss","_mm_scalef_sd","_mm_scalef_sh","_mm_scalef_ss","_mm_set1_epi16","_mm_set1_epi32","_mm_set1_epi64x","_mm_set1_epi8","_mm_set1_pd","_mm_set1_ph","_mm_set1_ps","_mm_set_epi16","_mm_set_epi32","_mm_set_epi64x","_mm_set_epi8","_mm_set_pd","_mm_set_pd1","_mm_set_ph","_mm_set_ps","_mm_set_ps1","_mm_set_sd","_mm_set_sh","_mm_set_ss","_mm_setcsr","_mm_setr_epi16","_mm_setr_epi32","_mm_setr_epi8","_mm_setr_pd","_mm_setr_ph","_mm_setr_ps","_mm_setzero_pd","_mm_setzero_ph","_mm_setzero_ps","_mm_setzero_si128","_mm_sfence","_mm_sha1msg1_epu32","_mm_sha1msg2_epu32","_mm_sha1nexte_epu32","_mm_sha1rnds4_epu32","_mm_sha256msg1_epu32","_mm_sha256msg2_epu32","_mm_sha256rnds2_epu32","_mm_shldi_epi16","_mm_shldi_epi32","_mm_shldi_epi64","_mm_shldv_epi16","_mm_shldv_epi32","_mm_shldv_epi64","_mm_shrdi_epi16","_mm_shrdi_epi32","_mm_shrdi_epi64","_mm_shrdv_epi16","_mm_shrdv_epi32","_mm_shrdv_epi64","_mm_shuffle_epi32","_mm_shuffle_epi8","_mm_shuffle_pd","_mm_shuffle_ps","_mm_shufflehi_epi16","_mm_shufflelo_epi16","_mm_sign_epi16","_mm_sign_epi32","_mm_sign_epi8","_mm_sll_epi16","_mm_sll_epi32","_mm_sll_epi64","_mm_slli_epi16","_mm_slli_epi32","_mm_slli_epi64","_mm_slli_si128","_mm_sllv_epi16","_mm_sllv_epi32","_mm_sllv_epi64","_mm_sqrt_pd","_mm_sqrt_ph","_mm_sqrt_ps","_mm_sqrt_round_sd","_mm_sqrt_round_sh","_mm_sqrt_round_ss","_mm_sqrt_sd","_mm_sqrt_sh","_mm_sqrt_ss","_mm_sra_epi16","_mm_sra_epi32","_mm_sra_epi64","_mm_srai_epi16","_mm_srai_epi32","_mm_srai_epi64","_mm_srav_epi16","_mm_srav_epi32","_mm_srav_epi64","_mm_srl_epi16","_mm_srl_epi32","_mm_srl_epi64","_mm_srli_epi16","_mm_srli_epi32","_mm_srli_epi64","_mm_srli_si128","_mm_srlv_epi16","_mm_srlv_epi32","_mm_srlv_epi64","_mm_store1_pd","_mm_store1_ps","_mm_store_epi32","_mm_store_epi64","_mm_store_pd","_mm_store_pd1","_mm_store_ph","_mm_store_ps","_mm_store_ps1","_mm_store_sd","_mm_store_sh","_mm_store_si128","_mm_store_ss","_mm_storeh_pd","_mm_storel_epi64","_mm_storel_pd","_mm_storer_pd","_mm_storer_ps","_mm_storeu_epi16","_mm_storeu_epi32","_mm_storeu_epi64","_mm_storeu_epi8","_mm_storeu_pd","_mm_storeu_ph","_mm_storeu_ps","_mm_storeu_si128","_mm_storeu_si16","_mm_storeu_si32","_mm_storeu_si64","_mm_stream_load_si128","_mm_stream_pd","_mm_stream_ps","_mm_stream_sd","_mm_stream_si128","_mm_stream_si32","_mm_stream_si64","_mm_stream_ss","_mm_sub_epi16","_mm_sub_epi32","_mm_sub_epi64","_mm_sub_epi8","_mm_sub_pd","_mm_sub_ph","_mm_sub_ps","_mm_sub_round_sd","_mm_sub_round_sh","_mm_sub_round_ss","_mm_sub_sd","_mm_sub_sh","_mm_sub_ss","_mm_subs_epi16","_mm_subs_epi8","_mm_subs_epu16","_mm_subs_epu8","_mm_ternarylogic_epi32","_mm_ternarylogic_epi64","_mm_test_all_ones","_mm_test_all_zeros","_mm_test_epi16_mask","_mm_test_epi32_mask","_mm_test_epi64_mask","_mm_test_epi8_mask","_mm_test_mix_ones_zeros","_mm_testc_pd","_mm_testc_ps","_mm_testc_si128","_mm_testn_epi16_mask","_mm_testn_epi32_mask","_mm_testn_epi64_mask","_mm_testn_epi8_mask","_mm_testnzc_pd","_mm_testnzc_ps","_mm_testnzc_si128","_mm_testz_pd","_mm_testz_ps","_mm_testz_si128","_mm_tzcnt_32","_mm_tzcnt_64","_mm_ucomieq_sd","_mm_ucomieq_sh","_mm_ucomieq_ss","_mm_ucomige_sd","_mm_ucomige_sh","_mm_ucomige_ss","_mm_ucomigt_sd","_mm_ucomigt_sh","_mm_ucomigt_ss","_mm_ucomile_sd","_mm_ucomile_sh","_mm_ucomile_ss","_mm_ucomilt_sd","_mm_ucomilt_sh","_mm_ucomilt_ss","_mm_ucomineq_sd","_mm_ucomineq_sh","_mm_ucomineq_ss","_mm_undefined_pd","_mm_undefined_ph","_mm_undefined_ps","_mm_undefined_si128","_mm_unpackhi_epi16","_mm_unpackhi_epi32","_mm_unpackhi_epi64","_mm_unpackhi_epi8","_mm_unpackhi_pd","_mm_unpackhi_ps","_mm_unpacklo_epi16","_mm_unpacklo_epi32","_mm_unpacklo_epi64","_mm_unpacklo_epi8","_mm_unpacklo_pd","_mm_unpacklo_ps","_mm_xor_epi32","_mm_xor_epi64","_mm_xor_pd","_mm_xor_ps","_mm_xor_si128","_mulx_u32","_mulx_u64","_pdep_u32","_pdep_u64","_pext_u32","_pext_u64","_popcnt32","_popcnt64","_rdrand16_step","_rdrand32_step","_rdrand64_step","_rdseed16_step","_rdseed32_step","_rdseed64_step","_rdtsc","_store_mask16","_store_mask32","_store_mask64","_store_mask8","_subborrow_u32","_subborrow_u64","_t1mskc_u32","_t1mskc_u64","_tile_cmmimfp16ps","_tile_cmmrlfp16ps","_tile_dpbf16ps","_tile_dpbssd","_tile_dpbsud","_tile_dpbusd","_tile_dpbuud","_tile_dpfp16ps","_tile_loadconfig","_tile_loadd","_tile_release","_tile_storeconfig","_tile_stored","_tile_stream_loadd","_tile_zero","_tzcnt_u16","_tzcnt_u32","_tzcnt_u64","_tzmsk_u32","_tzmsk_u64","_xabort","_xabort_code","_xbegin","_xend","_xgetbv","_xrstor","_xrstor64","_xrstors","_xrstors64","_xsave","_xsave64","_xsavec","_xsavec64","_xsaveopt","_xsaveopt64","_xsaves","_xsaves64","_xsetbv","_xtest","bf16","cmpxchg16b","eax","ebx","ecx","edx","IntoIter","TryFromSliceError","from_fn","from_mut","from_ref","repeat","try_from_fn","Acknowledge","Ampersand","Apostrophe","Asterisk","Backspace","Bell","Cancel","CapitalA","CapitalB","CapitalC","CapitalD","CapitalE","CapitalF","CapitalG","CapitalH","CapitalI","CapitalJ","CapitalK","CapitalL","CapitalM","CapitalN","CapitalO","CapitalP","CapitalQ","CapitalR","CapitalS","CapitalT","CapitalU","CapitalV","CapitalW","CapitalX","CapitalY","CapitalZ","CarriageReturn","Char","CharacterTabulation","CircumflexAccent","Colon","Comma","CommercialAt","DataLinkEscape","Delete","DeviceControlFour","DeviceControlOne","DeviceControlThree","DeviceControlTwo","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DollarSign","EndOfMedium","EndOfText","EndOfTransmission","EndOfTransmissionBlock","Enquiry","EqualsSign","Escape","EscapeDefault","ExclamationMark","FormFeed","FullStop","GraveAccent","GreaterThanSign","HyphenMinus","InformationSeparatorFour","InformationSeparatorOne","InformationSeparatorThree","InformationSeparatorTwo","LeftCurlyBracket","LeftParenthesis","LeftSquareBracket","LessThanSign","LineFeed","LineTabulation","LowLine","NegativeAcknowledge","Null","NumberSign","PercentSign","PlusSign","QuestionMark","QuotationMark","ReverseSolidus","RightCurlyBracket","RightParenthesis","RightSquareBracket","Semicolon","ShiftIn","ShiftOut","SmallA","SmallB","SmallC","SmallD","SmallE","SmallF","SmallG","SmallH","SmallI","SmallJ","SmallK","SmallL","SmallM","SmallN","SmallO","SmallP","SmallQ","SmallR","SmallS","SmallT","SmallU","SmallV","SmallW","SmallX","SmallY","SmallZ","Solidus","Space","StartOfHeading","StartOfText","Substitute","SynchronousIdle","Tilde","VerticalLine","escape_default","assert_matches","debug_assert_matches","AsyncIterator","FromIter","IntoAsyncIter","IntoAsyncIterator","Item","","from_iter","into_async_iter","poll_next","size_hint","Borrow","BorrowMut","borrow","borrow_mut","BorrowError","BorrowMutError","Cell","LazyCell","OnceCell","Ref","RefCell","RefMut","SyncUnsafeCell","UnsafeCell","CharTryFromError","DecodeUtf16","DecodeUtf16Error","EscapeDebug","EscapeDefault","EscapeUnicode","MAX","ParseCharError","REPLACEMENT_CHARACTER","ToLowercase","ToUppercase","TryFromCharError","UNICODE_VERSION","decode_utf16","from_digit","from_u32","from_u32_unchecked","Clone","","CloneToUninit","clone","clone_from","clone_to_uninit","Eq","","Equal","Greater","Less","Ord","","Ordering","PartialEq","","PartialOrd","","Reverse","clamp","cmp","eq","ge","gt","le","lt","max","","max_by","max_by_key","min","","min_by","min_by_key","minmax","minmax_by","minmax_by_key","ne","partial_cmp","AsMut","AsRef","Error","","FloatToInt","From","Infallible","Into","TryFrom","TryInto","as_mut","as_ref","from","identity","into","try_from","try_into","Default","","default","Error","Request","Source","borrow","borrow_mut","cause","clone","clone_into","clone_to_uninit","description","fmt","from","into","into_iter","next","provide","request_ref","request_value","size_hint","source","to_owned","try_from","try_into","type_id","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","CStr","FromBytesUntilNulError","FromBytesWithNulError","VaList","VaListImpl","c_char","c_double","c_float","c_int","c_long","c_longlong","c_ptrdiff_t","c_schar","c_short","c_size_t","c_ssize_t","c_str","c_uchar","c_uint","c_ulong","c_ulonglong","c_ushort","c_void","va_list","Bytes","CStr","FromBytesUntilNulError","FromBytesWithNulError","borrow","borrow_mut","clone","clone_into","clone_to_uninit","count","fmt","from","into","into_iter","next","size_hint","to_owned","try_from","try_into","type_id","VaList","VaListImpl","Alignment","Arguments","Binary","Center","Debug","","DebugList","DebugMap","DebugSet","DebugStruct","DebugTuple","Display","Err","Error","Formatter","FromFn","Left","LowerExp","LowerHex","Octal","Ok","Pointer","Result","Right","UpperExp","UpperHex","Write","fmt","","","","","","","","","from_fn","write","write_char","write_fmt","write_str","AsyncDrop","AsyncDropInPlace","Dropper","Future","IntoFuture","","Output","","Pending","PollFn","Ready","async_drop","","async_drop_in_place","into_future","join","pending","poll","poll_fn","ready","BuildHasher","BuildHasherDefault","Hash","","Hasher","","SipHasher","build_hasher","finish","hash","hash_one","hash_slice","write","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_length_prefix","write_str","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","assert_unchecked","black_box","must_use","spin_loop","unreachable_unchecked","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","AggregateRawPtr","Metadata","abort","add_with_overflow","aggregate_raw_ptr","arith_offset","assert_inhabited","assert_mem_uninitialized_valid","assert_zero_valid","assume","atomic_and_acqrel","atomic_and_acquire","atomic_and_relaxed","atomic_and_release","atomic_and_seqcst","atomic_cxchg_acqrel_acquire","atomic_cxchg_acqrel_relaxed","atomic_cxchg_acqrel_seqcst","atomic_cxchg_acquire_acquire","atomic_cxchg_acquire_relaxed","atomic_cxchg_acquire_seqcst","atomic_cxchg_relaxed_acquire","atomic_cxchg_relaxed_relaxed","atomic_cxchg_relaxed_seqcst","atomic_cxchg_release_acquire","atomic_cxchg_release_relaxed","atomic_cxchg_release_seqcst","atomic_cxchg_seqcst_acquire","atomic_cxchg_seqcst_relaxed","atomic_cxchg_seqcst_seqcst","atomic_cxchgweak_acqrel_acquire","atomic_cxchgweak_acqrel_relaxed","atomic_cxchgweak_acqrel_seqcst","atomic_cxchgweak_acquire_acquire","atomic_cxchgweak_acquire_relaxed","atomic_cxchgweak_acquire_seqcst","atomic_cxchgweak_relaxed_acquire","atomic_cxchgweak_relaxed_relaxed","atomic_cxchgweak_relaxed_seqcst","atomic_cxchgweak_release_acquire","atomic_cxchgweak_release_relaxed","atomic_cxchgweak_release_seqcst","atomic_cxchgweak_seqcst_acquire","atomic_cxchgweak_seqcst_relaxed","atomic_cxchgweak_seqcst_seqcst","atomic_fence_acqrel","atomic_fence_acquire","atomic_fence_release","atomic_fence_seqcst","atomic_load_acquire","atomic_load_relaxed","atomic_load_seqcst","atomic_load_unordered","atomic_max_acqrel","atomic_max_acquire","atomic_max_relaxed","atomic_max_release","atomic_max_seqcst","atomic_min_acqrel","atomic_min_acquire","atomic_min_relaxed","atomic_min_release","atomic_min_seqcst","atomic_nand_acqrel","atomic_nand_acquire","atomic_nand_relaxed","atomic_nand_release","atomic_nand_seqcst","atomic_or_acqrel","atomic_or_acquire","atomic_or_relaxed","atomic_or_release","atomic_or_seqcst","atomic_singlethreadfence_acqrel","atomic_singlethreadfence_acquire","atomic_singlethreadfence_release","atomic_singlethreadfence_seqcst","atomic_store_relaxed","atomic_store_release","atomic_store_seqcst","atomic_store_unordered","atomic_umax_acqrel","atomic_umax_acquire","atomic_umax_relaxed","atomic_umax_release","atomic_umax_seqcst","atomic_umin_acqrel","atomic_umin_acquire","atomic_umin_relaxed","atomic_umin_release","atomic_umin_seqcst","atomic_xadd_acqrel","atomic_xadd_acquire","atomic_xadd_relaxed","atomic_xadd_release","atomic_xadd_seqcst","atomic_xchg_acqrel","atomic_xchg_acquire","atomic_xchg_relaxed","atomic_xchg_release","atomic_xchg_seqcst","atomic_xor_acqrel","atomic_xor_acquire","atomic_xor_relaxed","atomic_xor_release","atomic_xor_seqcst","atomic_xsub_acqrel","atomic_xsub_acquire","atomic_xsub_relaxed","atomic_xsub_release","atomic_xsub_seqcst","bitreverse","black_box","breakpoint","bswap","caller_location","catch_unwind","ceilf128","ceilf16","ceilf32","ceilf64","compare_bytes","const_allocate","const_deallocate","const_eval_select","copy","copy_nonoverlapping","copysignf128","copysignf16","copysignf32","copysignf64","cosf128","cosf16","cosf32","cosf64","ctlz","ctlz_nonzero","ctpop","cttz","cttz_nonzero","discriminant_value","drop_in_place","exact_div","exp2f128","exp2f16","exp2f32","exp2f64","expf128","expf16","expf32","expf64","fabsf128","fabsf16","fabsf32","fabsf64","fadd_algebraic","fadd_fast","fdiv_algebraic","fdiv_fast","float_to_int_unchecked","floorf128","floorf16","floorf32","floorf64","fmaf128","fmaf16","fmaf32","fmaf64","fmul_algebraic","fmul_fast","forget","frem_algebraic","frem_fast","fsub_algebraic","fsub_fast","is_val_statically_known","likely","log10f128","log10f16","log10f32","log10f64","log2f128","log2f16","log2f32","log2f64","logf128","logf16","logf32","logf64","maxnumf128","maxnumf16","maxnumf32","maxnumf64","min_align_of","min_align_of_val","minnumf128","minnumf16","minnumf32","minnumf64","mir","mul_with_overflow","nearbyintf128","nearbyintf16","nearbyintf32","nearbyintf64","needs_drop","nontemporal_store","offset","powf128","powf16","powf32","powf64","powif128","powif16","powif32","powif64","pref_align_of","prefetch_read_data","prefetch_read_instruction","prefetch_write_data","prefetch_write_instruction","ptr_guaranteed_cmp","ptr_mask","ptr_metadata","ptr_offset_from","ptr_offset_from_unsigned","raw_eq","read_via_copy","rintf128","rintf16","rintf32","rintf64","rotate_left","rotate_right","roundevenf128","roundevenf16","roundevenf32","roundevenf64","roundf128","roundf16","roundf32","roundf64","rustc_peek","saturating_add","saturating_sub","select_unpredictable","simd","sinf128","sinf16","sinf32","sinf64","size_of","size_of_val","sqrtf128","sqrtf16","sqrtf32","sqrtf64","sub_with_overflow","three_way_compare","transmute","transmute_unchecked","truncf128","truncf16","truncf32","truncf64","type_id","type_name","typed_swap","ub_checks","unaligned_volatile_load","unaligned_volatile_store","unchecked_add","unchecked_div","unchecked_mul","unchecked_rem","unchecked_shl","unchecked_shr","unchecked_sub","unlikely","unreachable","variant_count","volatile_copy_memory","volatile_copy_nonoverlapping_memory","volatile_load","volatile_set_memory","volatile_store","vtable_align","vtable_size","wrapping_add","wrapping_mul","wrapping_sub","write_bytes","write_via_move","Abi","Assume","BasicBlock","Call","CastPtrToPtr","CastTransmute","Checked","Cleanup","CopyForDeref","Deinit","Discriminant","Drop","Field","Goto","InCleanup","Len","Move","Normal","Offset","PtrMetadata","Retag","Return","ReturnTo","ReturnToArg","SetDiscriminant","Static","StaticMut","StorageDead","StorageLive","TailCall","Unreachable","UnwindActionArg","UnwindCleanup","UnwindContinue","UnwindResume","UnwindTerminate","UnwindTerminateReason","UnwindUnreachable","Variant","mir","place","simd_add","simd_and","simd_arith_offset","simd_as","simd_bitmask","simd_bitreverse","simd_bswap","simd_cast","simd_cast_ptr","simd_ceil","simd_ctlz","simd_ctpop","simd_cttz","simd_div","simd_eq","simd_expose_provenance","simd_extract","simd_fabs","simd_fcos","simd_fexp","simd_fexp2","simd_flog","simd_flog10","simd_flog2","simd_floor","simd_fma","simd_fmax","simd_fmin","simd_fsin","simd_fsqrt","simd_gather","simd_ge","simd_gt","simd_insert","simd_le","simd_lt","simd_masked_load","simd_masked_store","simd_mul","simd_ne","simd_neg","simd_or","simd_reduce_add_ordered","simd_reduce_add_unordered","simd_reduce_all","simd_reduce_and","simd_reduce_any","simd_reduce_max","simd_reduce_min","simd_reduce_mul_ordered","simd_reduce_mul_unordered","simd_reduce_or","simd_reduce_xor","simd_rem","simd_round","simd_saturating_add","simd_saturating_sub","simd_scatter","simd_select","simd_select_bitmask","simd_shl","simd_shr","simd_shuffle","simd_sub","simd_trunc","simd_with_exposed_provenance","simd_xor","BorrowedBuf","BorrowedCursor","MAX","MIN","ArrayChunks","ByRefSized","Chain","Cloned","Copied","Cycle","DoubleEndedIterator","Empty","Enumerate","ExactSizeIterator","Extend","Filter","FilterMap","FlatMap","Flatten","FromFn","FromIterator","Fuse","FusedIterator","Inspect","Intersperse","IntersperseWith","IntoIter","IntoIterator","Item","","Iterator","Map","MapWhile","MapWindows","Once","OnceWith","Peekable","Product","Repeat","RepeatN","RepeatWith","Rev","Scan","Skip","SkipWhile","Step","StepBy","Successors","Sum","Take","TakeWhile","TrustedLen","TrustedStep","Zip","advance_back_by","advance_by","all","any","array_chunks","backward","backward_checked","backward_unchecked","by_ref","chain","","cloned","cmp","cmp_by","collect","collect_into","copied","count","cycle","empty","enumerate","eq","eq_by","extend","extend_one","extend_reserve","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","forward","forward_checked","forward_unchecked","from_coroutine","from_fn","from_iter","fuse","ge","gt","inspect","intersperse","intersperse_with","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","len","lt","map","map_while","map_windows","max","max_by","max_by_key","min","min_by","min_by_key","ne","next","next_back","next_chunk","nth","nth_back","once","once_with","partial_cmp","partial_cmp_by","partition","partition_in_place","peekable","position","product","","reduce","repeat","repeat_n","repeat_with","rev","rfind","rfold","rposition","scan","size_hint","skip","skip_while","step_by","steps_between","successors","sum","","take","take_while","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","unzip","zip","","ConstParamTy","ConstParamTy_","Copy","","Destruct","Discriminant","DiscriminantKind","FnPtr","Freeze","PhantomData","PhantomPinned","PointerLike","Send","Sized","SmartPointer","StructuralPartialEq","Sync","Tuple","Unpin","Unsize","UnsizedConstParamTy","","addr","Assume","Discriminant","ManuallyDrop","MaybeUninit","TransmuteFrom","align_of","align_of_val","align_of_val_raw","alignment","copy","discriminant","drop","forget","forget_unsized","lifetimes","min_align_of","min_align_of_val","needs_drop","offset_of","replace","safety","size_of","size_of_val","size_of_val_raw","swap","take","transmute","","transmute_copy","uninitialized","validity","variant_count","zeroed","AddrParseError","AdminLocal","Global","InterfaceLocal","IpAddr","Ipv4Addr","Ipv6Addr","Ipv6MulticastScope","LinkLocal","OrganizationLocal","RealmLocal","SiteLocal","SocketAddr","SocketAddrV4","SocketAddrV6","V4","","V6","","Empty","FpCategory","Infinite","IntErrorKind","InvalidDigit","Nan","NegOverflow","NonZero","NonZeroI128","NonZeroI16","NonZeroI32","NonZeroI64","NonZeroI8","NonZeroIsize","NonZeroU128","NonZeroU16","NonZeroU32","NonZeroU64","NonZeroU8","NonZeroUsize","Normal","ParseFloatError","ParseIntError","PosOverflow","Saturating","Subnormal","TryFromIntError","Wrapping","Zero","","ZeroablePrimitive","Add","AddAssign","AsyncFn","AsyncFnMut","AsyncFnOnce","BitAnd","BitAndAssign","BitOr","BitOrAssign","BitXor","BitXorAssign","Bound","Break","CallOnceFuture","CallRefFuture","CoerceUnsized","Complete","Continue","ControlFlow","Coroutine","CoroutineState","Deref","DerefMut","DerefPure","DispatchFromDyn","Div","DivAssign","Drop","Excluded","Fn","FnMut","FnOnce","FromResidual","Included","Index","IndexMut","Mul","MulAssign","Neg","Not","OneSidedRange","Output","","","","","","","","","","","","","","","","Range","RangeBounds","RangeFrom","RangeFull","RangeInclusive","RangeTo","RangeToInclusive","Rem","RemAssign","Residual","","Return","Shl","ShlAssign","Shr","ShrAssign","Sub","SubAssign","Target","Try","TryType","Unbounded","Yeet","Yield","Yielded","add","add_assign","async_call","async_call_mut","async_call_once","bitand","bitand_assign","bitor","bitor_assign","bitxor","bitxor_assign","branch","call","call_mut","call_once","contains","deref","deref_mut","div","div_assign","drop","end","","","end_bound","from_output","from_residual","index","index_mut","mul","mul_assign","neg","not","rem","rem_assign","resume","shl","shl_assign","shr","shr_assign","start","","start_bound","sub","sub_assign","IntoIter","Iter","IterMut","None","Option","Some","AssertUnwindSafe","Location","PanicInfo","PanicMessage","RefUnwindSafe","UnwindSafe","as_str","borrow","","borrow_mut","","can_unwind","fmt","","","","from","","into","","location","message","payload","to_string","","try_from","","try_into","","type_id","","const_panic_fmt","panic","panic_const","panic_display","panic_explicit","panic_fmt","panic_nounwind","panic_nounwind_fmt","panic_nounwind_nobacktrace","panic_str_2015","unreachable_display","panic_const_add_overflow","panic_const_async_fn_resumed","panic_const_async_fn_resumed_panic","panic_const_async_gen_fn_resumed","panic_const_async_gen_fn_resumed_panic","panic_const_coroutine_resumed","panic_const_coroutine_resumed_panic","panic_const_div_by_zero","panic_const_div_overflow","panic_const_gen_fn_none","panic_const_gen_fn_none_panic","panic_const_mul_overflow","panic_const_neg_overflow","panic_const_rem_by_zero","panic_const_rem_overflow","panic_const_shl_overflow","panic_const_shr_overflow","panic_const_sub_overflow","Pin","PinCoerceUnsized","pin","rust_2015","rust_2018","rust_2021","rust_2024","v1","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","TryFrom","TryInto","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Future","Hash","Into","IntoFuture","","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","","","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","TryFrom","TryInto","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_future","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","poll","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","bool","char","f32","f64","i128","i16","i32","i64","i8","isize","str","u128","u16","u32","u64","u8","usize","Alignment","DynMetadata","Metadata","NonNull","Pointee","addr_eq","addr_of","addr_of_mut","copy","copy_nonoverlapping","dangling","dangling_mut","drop_in_place","eq","fn_addr_eq","from_mut","from_raw_parts","from_raw_parts_mut","from_ref","hash","metadata","null","null_mut","read","read_unaligned","read_volatile","replace","slice_from_raw_parts","slice_from_raw_parts_mut","swap","swap_nonoverlapping","with_exposed_provenance","with_exposed_provenance_mut","without_provenance","without_provenance_mut","write","write_bytes","write_unaligned","write_volatile","Bound","Excluded","Included","IterRange","IterRangeFrom","IterRangeInclusive","OneSidedRange","Range","RangeBounds","RangeFrom","RangeFull","RangeInclusive","RangeTo","RangeToInclusive","Step","Unbounded","advance_back_by","","advance_by","","backward","backward_checked","backward_unchecked","borrow","","","","","","borrow_mut","","","","","","clone","","","","","","clone_into","","","","","","clone_to_uninit","","","","","","contains","","","","count","","default","end","","","","end_bound","","","","","","","eq","","","fmt","","","","","","forward","forward_checked","forward_unchecked","from","","","","","","","","","get","","","","","","get_mut","","","","","","get_unchecked","","","","","","get_unchecked_mut","","","","","","hash","","","index","","","","","","index_mut","","","","","","into","","","","","","into_iter","","","","","","is_empty","","is_sorted","","iter","","","last","","legacy","max","","min","","next","","","next_back","","nth","","","nth_back","","remainder","","","size_hint","","","start","","","start_bound","","","","","","","steps_between","to_owned","","","","","","try_from","","","","","","try_into","","","","","","type_id","","","","","","Range","RangeFrom","RangeInclusive","end","start","","Err","IntoIter","Iter","IterMut","Ok","Result","Bytes","INDEX","LaneCount","Mask","","MaskElement","Simd","SimdCast","SimdElement","SupportedLaneCount","Swizzle","ToBytes","cmp","concat_swizzle","concat_swizzle_mask","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","from_be_bytes","from_le_bytes","from_ne_bytes","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","num","prelude","ptr","simd_swizzle","swizzle","swizzle_mask","to_be_bytes","to_le_bytes","to_ne_bytes","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","Mask","SimdOrd","SimdPartialEq","SimdPartialOrd","simd_clamp","simd_eq","simd_ge","simd_gt","simd_le","simd_lt","simd_max","simd_min","simd_ne","Bits","Cast","","","Mask","","Scalar","","","SimdFloat","SimdInt","SimdUint","Unsigned","abs","","cast","","","copysign","from_bits","is_finite","is_infinite","is_nan","is_negative","is_normal","is_positive","is_sign_negative","is_sign_positive","is_subnormal","leading_ones","","leading_zeros","","recip","reduce_and","","reduce_max","","","reduce_min","","","reduce_or","","reduce_product","","","reduce_sum","","","reduce_xor","","reverse_bits","","saturating_abs","saturating_add","","saturating_neg","saturating_sub","","signum","","simd_clamp","simd_max","simd_min","swap_bytes","","to_bits","to_degrees","to_int_unchecked","to_radians","trailing_ones","","trailing_zeros","","wrapping_neg","Bits","Cast","","","CastPtr","","ConstPtr","Isize","","Mask","","","","","","MutPtr","Scalar","","","Simd","SimdConstPtr","SimdFloat","SimdInt","SimdMutPtr","SimdOrd","SimdPartialEq","SimdPartialOrd","SimdUint","Unsigned","Usize","","abs","","addr","","cast","","","","","cast_const","cast_mut","copysign","expose_provenance","","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","from_bits","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","is_finite","is_infinite","is_nan","is_negative","is_normal","is_null","","is_positive","is_sign_negative","is_sign_positive","is_subnormal","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","leading_ones","","leading_zeros","","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","recip","reduce_and","","reduce_max","","","reduce_min","","","reduce_or","","reduce_product","","","reduce_sum","","","reduce_xor","","reverse_bits","","saturating_abs","saturating_add","","saturating_neg","saturating_sub","","signum","","simd_clamp","","simd_eq","simd_ge","simd_gt","simd_le","simd_lt","simd_max","","simd_min","","simd_ne","simd_swizzle","swap_bytes","","to_bits","to_degrees","to_int_unchecked","to_radians","trailing_ones","","trailing_zeros","","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","with_addr","","with_exposed_provenance","","wrapping_add","","wrapping_neg","wrapping_offset","","wrapping_sub","","CastPtr","","ConstPtr","Isize","","Mask","","MutPtr","SimdConstPtr","SimdMutPtr","Usize","","addr","","cast","","cast_const","cast_mut","expose_provenance","","is_null","","with_addr","","with_exposed_provenance","","wrapping_add","","wrapping_offset","","wrapping_sub","","ArrayChunks","ArrayChunksMut","ArrayWindows","ChunkBy","ChunkByMut","Chunks","ChunksExact","ChunksExactMut","ChunksMut","EscapeAscii","GetManyMutError","Item","Iter","IterMut","Output","RChunks","RChunksExact","RChunksExactMut","RChunksMut","RSplit","RSplitMut","RSplitN","RSplitNMut","SliceIndex","SlicePattern","Split","SplitInclusive","SplitInclusiveMut","SplitMut","SplitN","SplitNMut","Windows","as_slice","borrow","borrow_mut","fmt","","from","from_mut","from_mut_ptr_range","from_ptr_range","from_raw_parts","from_raw_parts_mut","from_ref","get","get_mut","get_unchecked","get_unchecked_mut","index","index_mut","into","memchr","range","to_string","try_from","try_into","try_range","type_id","memchr","memrchr","Bytes","CharIndices","Chars","EncodeUtf16","Err","EscapeDebug","EscapeDefault","EscapeUnicode","FromStr","Lines","LinesAny","MatchIndices","Matches","ParseBoolError","RMatchIndices","RMatches","RSplit","RSplitN","RSplitTerminator","Split","SplitAsciiWhitespace","SplitInclusive","SplitN","SplitTerminator","SplitWhitespace","Utf8Chunk","Utf8Chunks","Utf8Error","from_raw_parts","from_raw_parts_mut","from_str","from_utf8","from_utf8_mut","from_utf8_unchecked","from_utf8_unchecked_mut","next_code_point","pattern","utf8_char_width","CharArrayRefSearcher","CharArraySearcher","CharPredicateSearcher","CharSearcher","CharSliceSearcher","Done","DoubleEndedSearcher","Match","Pattern","Reject","ReverseSearcher","SearchStep","Searcher","","StrSearcher","haystack","into_searcher","is_contained_in","is_prefix_of","is_suffix_of","next","next_back","next_match","next_match_back","next_reject","next_reject_back","strip_prefix_of","strip_suffix_of","Exclusive","atomic","ATOMIC_BOOL_INIT","ATOMIC_ISIZE_INIT","ATOMIC_USIZE_INIT","AcqRel","Acquire","AtomicBool","AtomicI16","AtomicI32","AtomicI64","AtomicI8","AtomicIsize","AtomicPtr","AtomicU16","AtomicU32","AtomicU64","AtomicU8","AtomicUsize","Ordering","Relaxed","Release","SeqCst","compiler_fence","fence","spin_loop_hint","Context","ContextBuilder","LocalWaker","Pending","Poll","RawWaker","RawWakerVTable","Ready","Waker","ready","Duration","TryFromFloatSecsError","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","assert_unsafe_precondition","check_library_ub","Case_Ignorable","Cased","UNICODE_VERSION","conversions","to_lower","to_upper","MAX","MIN","alloc","any","arch","array","ascii","assert","assert_eq","assert_matches","assert_ne","async_iter","backtrace","borrow","boxed","cell","cfg","cfg_match","char","clone","cmp","collections","column","compile_error","concat","concat_bytes","concat_idents","const_format_args","convert","dbg","debug_assert","debug_assert_eq","debug_assert_ne","default","env","","eprint","eprintln","error","f128","f16","f32","f64","ffi","file","fmt","format","format_args","format_args_nl","fs","future","hash","hint","i128","i16","i32","i64","i8","include","include_bytes","include_str","intrinsics","io","is_x86_feature_detected","isize","iter","line","log_syntax","marker","matches","mem","module_path","net","num","ops","option","option_env","os","panic","","pat","path","pin","pipe","prelude","primitive","print","println","process","ptr","rc","result","simd","slice","str","string","stringify","sync","task","thread","thread_local","time","todo","trace_macros","try","u128","u16","u32","u64","u8","unimplemented","unreachable","usize","vec","","write","writeln","AllocError","Allocator","Global","GlobalAlloc","Layout","LayoutErr","LayoutError","System","align","align_to","alloc","","","alloc_zeroed","","","allocate","","","allocate_zeroed","","","array","borrow","","","","","borrow_mut","","","","","by_ref","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","dangling","dealloc","","","deallocate","","","default","","eq","","","extend","extend_packed","fmt","","","","","","","for_value","for_value_raw","from","","","","","from_size_align","from_size_align_unchecked","grow","","","grow_zeroed","","","handle_alloc_error","hash","into","","","","","new","pad_to_align","padding_needed_for","realloc","","","repeat","repeat_packed","set_alloc_error_hook","shrink","","","size","take_alloc_error_hook","to_owned","","","","","to_string","","try_from","","","","","try_into","","","","","type_id","","","","","Any","TypeId","borrow","borrow_mut","clone","clone_into","clone_to_uninit","cmp","downcast_mut","","","downcast_mut_unchecked","","","downcast_ref","","","downcast_ref_unchecked","","","eq","fmt","","","","from","hash","into","is","","","of","partial_cmp","to_owned","try_from","try_into","type_id","","type_name","type_name_of_val","asm","global_asm","is_aarch64_feature_detected","is_arm_feature_detected","is_mips64_feature_detected","is_mips_feature_detected","is_powerpc64_feature_detected","is_powerpc_feature_detected","is_riscv_feature_detected","is_x86_feature_detected","x86_64","CpuidResult","_CMP_EQ_OQ","_CMP_EQ_OS","_CMP_EQ_UQ","_CMP_EQ_US","_CMP_FALSE_OQ","_CMP_FALSE_OS","_CMP_GE_OQ","_CMP_GE_OS","_CMP_GT_OQ","_CMP_GT_OS","_CMP_LE_OQ","_CMP_LE_OS","_CMP_LT_OQ","_CMP_LT_OS","_CMP_NEQ_OQ","_CMP_NEQ_OS","_CMP_NEQ_UQ","_CMP_NEQ_US","_CMP_NGE_UQ","_CMP_NGE_US","_CMP_NGT_UQ","_CMP_NGT_US","_CMP_NLE_UQ","_CMP_NLE_US","_CMP_NLT_UQ","_CMP_NLT_US","_CMP_ORD_Q","_CMP_ORD_S","_CMP_TRUE_UQ","_CMP_TRUE_US","_CMP_UNORD_Q","_CMP_UNORD_S","_MM_CMPINT_ENUM","_MM_CMPINT_EQ","_MM_CMPINT_FALSE","_MM_CMPINT_LE","_MM_CMPINT_LT","_MM_CMPINT_NE","_MM_CMPINT_NLE","_MM_CMPINT_NLT","_MM_CMPINT_TRUE","_MM_EXCEPT_DENORM","_MM_EXCEPT_DIV_ZERO","_MM_EXCEPT_INEXACT","_MM_EXCEPT_INVALID","_MM_EXCEPT_MASK","_MM_EXCEPT_OVERFLOW","_MM_EXCEPT_UNDERFLOW","_MM_FLUSH_ZERO_MASK","_MM_FLUSH_ZERO_OFF","_MM_FLUSH_ZERO_ON","_MM_FROUND_CEIL","_MM_FROUND_CUR_DIRECTION","_MM_FROUND_FLOOR","_MM_FROUND_NEARBYINT","_MM_FROUND_NINT","_MM_FROUND_NO_EXC","_MM_FROUND_RAISE_EXC","_MM_FROUND_RINT","_MM_FROUND_TO_NEAREST_INT","_MM_FROUND_TO_NEG_INF","_MM_FROUND_TO_POS_INF","_MM_FROUND_TO_ZERO","_MM_FROUND_TRUNC","_MM_GET_EXCEPTION_MASK","_MM_GET_EXCEPTION_STATE","_MM_GET_FLUSH_ZERO_MODE","_MM_GET_ROUNDING_MODE","_MM_HINT_ET0","_MM_HINT_ET1","_MM_HINT_NTA","_MM_HINT_T0","_MM_HINT_T1","_MM_HINT_T2","_MM_MANTISSA_NORM_ENUM","_MM_MANTISSA_SIGN_ENUM","_MM_MANT_NORM_1_2","_MM_MANT_NORM_P5_1","_MM_MANT_NORM_P5_2","_MM_MANT_NORM_P75_1P5","_MM_MANT_SIGN_NAN","_MM_MANT_SIGN_SRC","_MM_MANT_SIGN_ZERO","_MM_MASK_DENORM","_MM_MASK_DIV_ZERO","_MM_MASK_INEXACT","_MM_MASK_INVALID","_MM_MASK_MASK","_MM_MASK_OVERFLOW","_MM_MASK_UNDERFLOW","_MM_PERM_AAAA","_MM_PERM_AAAB","_MM_PERM_AAAC","_MM_PERM_AAAD","_MM_PERM_AABA","_MM_PERM_AABB","_MM_PERM_AABC","_MM_PERM_AABD","_MM_PERM_AACA","_MM_PERM_AACB","_MM_PERM_AACC","_MM_PERM_AACD","_MM_PERM_AADA","_MM_PERM_AADB","_MM_PERM_AADC","_MM_PERM_AADD","_MM_PERM_ABAA","_MM_PERM_ABAB","_MM_PERM_ABAC","_MM_PERM_ABAD","_MM_PERM_ABBA","_MM_PERM_ABBB","_MM_PERM_ABBC","_MM_PERM_ABBD","_MM_PERM_ABCA","_MM_PERM_ABCB","_MM_PERM_ABCC","_MM_PERM_ABCD","_MM_PERM_ABDA","_MM_PERM_ABDB","_MM_PERM_ABDC","_MM_PERM_ABDD","_MM_PERM_ACAA","_MM_PERM_ACAB","_MM_PERM_ACAC","_MM_PERM_ACAD","_MM_PERM_ACBA","_MM_PERM_ACBB","_MM_PERM_ACBC","_MM_PERM_ACBD","_MM_PERM_ACCA","_MM_PERM_ACCB","_MM_PERM_ACCC","_MM_PERM_ACCD","_MM_PERM_ACDA","_MM_PERM_ACDB","_MM_PERM_ACDC","_MM_PERM_ACDD","_MM_PERM_ADAA","_MM_PERM_ADAB","_MM_PERM_ADAC","_MM_PERM_ADAD","_MM_PERM_ADBA","_MM_PERM_ADBB","_MM_PERM_ADBC","_MM_PERM_ADBD","_MM_PERM_ADCA","_MM_PERM_ADCB","_MM_PERM_ADCC","_MM_PERM_ADCD","_MM_PERM_ADDA","_MM_PERM_ADDB","_MM_PERM_ADDC","_MM_PERM_ADDD","_MM_PERM_BAAA","_MM_PERM_BAAB","_MM_PERM_BAAC","_MM_PERM_BAAD","_MM_PERM_BABA","_MM_PERM_BABB","_MM_PERM_BABC","_MM_PERM_BABD","_MM_PERM_BACA","_MM_PERM_BACB","_MM_PERM_BACC","_MM_PERM_BACD","_MM_PERM_BADA","_MM_PERM_BADB","_MM_PERM_BADC","_MM_PERM_BADD","_MM_PERM_BBAA","_MM_PERM_BBAB","_MM_PERM_BBAC","_MM_PERM_BBAD","_MM_PERM_BBBA","_MM_PERM_BBBB","_MM_PERM_BBBC","_MM_PERM_BBBD","_MM_PERM_BBCA","_MM_PERM_BBCB","_MM_PERM_BBCC","_MM_PERM_BBCD","_MM_PERM_BBDA","_MM_PERM_BBDB","_MM_PERM_BBDC","_MM_PERM_BBDD","_MM_PERM_BCAA","_MM_PERM_BCAB","_MM_PERM_BCAC","_MM_PERM_BCAD","_MM_PERM_BCBA","_MM_PERM_BCBB","_MM_PERM_BCBC","_MM_PERM_BCBD","_MM_PERM_BCCA","_MM_PERM_BCCB","_MM_PERM_BCCC","_MM_PERM_BCCD","_MM_PERM_BCDA","_MM_PERM_BCDB","_MM_PERM_BCDC","_MM_PERM_BCDD","_MM_PERM_BDAA","_MM_PERM_BDAB","_MM_PERM_BDAC","_MM_PERM_BDAD","_MM_PERM_BDBA","_MM_PERM_BDBB","_MM_PERM_BDBC","_MM_PERM_BDBD","_MM_PERM_BDCA","_MM_PERM_BDCB","_MM_PERM_BDCC","_MM_PERM_BDCD","_MM_PERM_BDDA","_MM_PERM_BDDB","_MM_PERM_BDDC","_MM_PERM_BDDD","_MM_PERM_CAAA","_MM_PERM_CAAB","_MM_PERM_CAAC","_MM_PERM_CAAD","_MM_PERM_CABA","_MM_PERM_CABB","_MM_PERM_CABC","_MM_PERM_CABD","_MM_PERM_CACA","_MM_PERM_CACB","_MM_PERM_CACC","_MM_PERM_CACD","_MM_PERM_CADA","_MM_PERM_CADB","_MM_PERM_CADC","_MM_PERM_CADD","_MM_PERM_CBAA","_MM_PERM_CBAB","_MM_PERM_CBAC","_MM_PERM_CBAD","_MM_PERM_CBBA","_MM_PERM_CBBB","_MM_PERM_CBBC","_MM_PERM_CBBD","_MM_PERM_CBCA","_MM_PERM_CBCB","_MM_PERM_CBCC","_MM_PERM_CBCD","_MM_PERM_CBDA","_MM_PERM_CBDB","_MM_PERM_CBDC","_MM_PERM_CBDD","_MM_PERM_CCAA","_MM_PERM_CCAB","_MM_PERM_CCAC","_MM_PERM_CCAD","_MM_PERM_CCBA","_MM_PERM_CCBB","_MM_PERM_CCBC","_MM_PERM_CCBD","_MM_PERM_CCCA","_MM_PERM_CCCB","_MM_PERM_CCCC","_MM_PERM_CCCD","_MM_PERM_CCDA","_MM_PERM_CCDB","_MM_PERM_CCDC","_MM_PERM_CCDD","_MM_PERM_CDAA","_MM_PERM_CDAB","_MM_PERM_CDAC","_MM_PERM_CDAD","_MM_PERM_CDBA","_MM_PERM_CDBB","_MM_PERM_CDBC","_MM_PERM_CDBD","_MM_PERM_CDCA","_MM_PERM_CDCB","_MM_PERM_CDCC","_MM_PERM_CDCD","_MM_PERM_CDDA","_MM_PERM_CDDB","_MM_PERM_CDDC","_MM_PERM_CDDD","_MM_PERM_DAAA","_MM_PERM_DAAB","_MM_PERM_DAAC","_MM_PERM_DAAD","_MM_PERM_DABA","_MM_PERM_DABB","_MM_PERM_DABC","_MM_PERM_DABD","_MM_PERM_DACA","_MM_PERM_DACB","_MM_PERM_DACC","_MM_PERM_DACD","_MM_PERM_DADA","_MM_PERM_DADB","_MM_PERM_DADC","_MM_PERM_DADD","_MM_PERM_DBAA","_MM_PERM_DBAB","_MM_PERM_DBAC","_MM_PERM_DBAD","_MM_PERM_DBBA","_MM_PERM_DBBB","_MM_PERM_DBBC","_MM_PERM_DBBD","_MM_PERM_DBCA","_MM_PERM_DBCB","_MM_PERM_DBCC","_MM_PERM_DBCD","_MM_PERM_DBDA","_MM_PERM_DBDB","_MM_PERM_DBDC","_MM_PERM_DBDD","_MM_PERM_DCAA","_MM_PERM_DCAB","_MM_PERM_DCAC","_MM_PERM_DCAD","_MM_PERM_DCBA","_MM_PERM_DCBB","_MM_PERM_DCBC","_MM_PERM_DCBD","_MM_PERM_DCCA","_MM_PERM_DCCB","_MM_PERM_DCCC","_MM_PERM_DCCD","_MM_PERM_DCDA","_MM_PERM_DCDB","_MM_PERM_DCDC","_MM_PERM_DCDD","_MM_PERM_DDAA","_MM_PERM_DDAB","_MM_PERM_DDAC","_MM_PERM_DDAD","_MM_PERM_DDBA","_MM_PERM_DDBB","_MM_PERM_DDBC","_MM_PERM_DDBD","_MM_PERM_DDCA","_MM_PERM_DDCB","_MM_PERM_DDCC","_MM_PERM_DDCD","_MM_PERM_DDDA","_MM_PERM_DDDB","_MM_PERM_DDDC","_MM_PERM_DDDD","_MM_PERM_ENUM","_MM_ROUND_DOWN","_MM_ROUND_MASK","_MM_ROUND_NEAREST","_MM_ROUND_TOWARD_ZERO","_MM_ROUND_UP","_MM_SET_EXCEPTION_MASK","_MM_SET_EXCEPTION_STATE","_MM_SET_FLUSH_ZERO_MODE","_MM_SET_ROUNDING_MODE","_MM_SHUFFLE","_MM_TRANSPOSE4_PS","_SIDD_BIT_MASK","_SIDD_CMP_EQUAL_ANY","_SIDD_CMP_EQUAL_EACH","_SIDD_CMP_EQUAL_ORDERED","_SIDD_CMP_RANGES","_SIDD_LEAST_SIGNIFICANT","_SIDD_MASKED_NEGATIVE_POLARITY","_SIDD_MASKED_POSITIVE_POLARITY","_SIDD_MOST_SIGNIFICANT","_SIDD_NEGATIVE_POLARITY","_SIDD_POSITIVE_POLARITY","_SIDD_SBYTE_OPS","_SIDD_SWORD_OPS","_SIDD_UBYTE_OPS","_SIDD_UNIT_MASK","_SIDD_UWORD_OPS","_XABORT_CAPACITY","_XABORT_CONFLICT","_XABORT_DEBUG","_XABORT_EXPLICIT","_XABORT_NESTED","_XABORT_RETRY","_XBEGIN_STARTED","_XCR_XFEATURE_ENABLED_MASK","__cpuid","__cpuid_count","__get_cpuid_max","__m128","__m128bh","__m128d","__m128h","__m128i","__m256","__m256bh","__m256d","__m256h","__m256i","__m512","__m512bh","__m512d","__m512h","__m512i","__mmask16","__mmask32","__mmask64","__mmask8","__rdtscp","_addcarry_u32","_addcarry_u64","_addcarryx_u32","_addcarryx_u64","_andn_u32","_andn_u64","_bextr2_u32","_bextr2_u64","_bextr_u32","_bextr_u64","_bextri_u32","_bextri_u64","_bittest","_bittest64","_bittestandcomplement","_bittestandcomplement64","_bittestandreset","_bittestandreset64","_bittestandset","_bittestandset64","_blcfill_u32","_blcfill_u64","_blci_u32","_blci_u64","_blcic_u32","_blcic_u64","_blcmsk_u32","_blcmsk_u64","_blcs_u32","_blcs_u64","_blsfill_u32","_blsfill_u64","_blsi_u32","_blsi_u64","_blsic_u32","_blsic_u64","_blsmsk_u32","_blsmsk_u64","_blsr_u32","_blsr_u64","_bswap","_bswap64","_bzhi_u32","_bzhi_u64","_cvtmask16_u32","_cvtmask32_u32","_cvtmask64_u64","_cvtmask8_u32","_cvtu32_mask16","_cvtu32_mask32","_cvtu32_mask8","_cvtu64_mask64","_fxrstor","_fxrstor64","_fxsave","_fxsave64","_kadd_mask16","_kadd_mask32","_kadd_mask64","_kadd_mask8","_kand_mask16","_kand_mask32","_kand_mask64","_kand_mask8","_kandn_mask16","_kandn_mask32","_kandn_mask64","_kandn_mask8","_knot_mask16","_knot_mask32","_knot_mask64","_knot_mask8","_kor_mask16","_kor_mask32","_kor_mask64","_kor_mask8","_kortest_mask16_u8","_kortest_mask32_u8","_kortest_mask64_u8","_kortest_mask8_u8","_kortestc_mask16_u8","_kortestc_mask32_u8","_kortestc_mask64_u8","_kortestc_mask8_u8","_kortestz_mask16_u8","_kortestz_mask32_u8","_kortestz_mask64_u8","_kortestz_mask8_u8","_kshiftli_mask16","_kshiftli_mask32","_kshiftli_mask64","_kshiftli_mask8","_kshiftri_mask16","_kshiftri_mask32","_kshiftri_mask64","_kshiftri_mask8","_ktest_mask16_u8","_ktest_mask32_u8","_ktest_mask64_u8","_ktest_mask8_u8","_ktestc_mask16_u8","_ktestc_mask32_u8","_ktestc_mask64_u8","_ktestc_mask8_u8","_ktestz_mask16_u8","_ktestz_mask32_u8","_ktestz_mask64_u8","_ktestz_mask8_u8","_kxnor_mask16","_kxnor_mask32","_kxnor_mask64","_kxnor_mask8","_kxor_mask16","_kxor_mask32","_kxor_mask64","_kxor_mask8","_load_mask16","_load_mask32","_load_mask64","_load_mask8","_lzcnt_u32","_lzcnt_u64","_mm256_abs_epi16","_mm256_abs_epi32","_mm256_abs_epi64","_mm256_abs_epi8","_mm256_abs_ph","_mm256_add_epi16","_mm256_add_epi32","_mm256_add_epi64","_mm256_add_epi8","_mm256_add_pd","_mm256_add_ph","_mm256_add_ps","_mm256_adds_epi16","_mm256_adds_epi8","_mm256_adds_epu16","_mm256_adds_epu8","_mm256_addsub_pd","_mm256_addsub_ps","_mm256_aesdec_epi128","_mm256_aesdeclast_epi128","_mm256_aesenc_epi128","_mm256_aesenclast_epi128","_mm256_alignr_epi32","_mm256_alignr_epi64","_mm256_alignr_epi8","_mm256_and_pd","_mm256_and_ps","_mm256_and_si256","_mm256_andnot_pd","_mm256_andnot_ps","_mm256_andnot_si256","_mm256_avg_epu16","_mm256_avg_epu8","_mm256_bcstnebf16_ps","_mm256_bcstnesh_ps","_mm256_bitshuffle_epi64_mask","_mm256_blend_epi16","_mm256_blend_epi32","_mm256_blend_pd","_mm256_blend_ps","_mm256_blendv_epi8","_mm256_blendv_pd","_mm256_blendv_ps","_mm256_broadcast_f32x2","_mm256_broadcast_f32x4","_mm256_broadcast_f64x2","_mm256_broadcast_i32x2","_mm256_broadcast_i32x4","_mm256_broadcast_i64x2","_mm256_broadcast_pd","_mm256_broadcast_ps","_mm256_broadcast_sd","_mm256_broadcast_ss","_mm256_broadcastb_epi8","_mm256_broadcastd_epi32","_mm256_broadcastmb_epi64","_mm256_broadcastmw_epi32","_mm256_broadcastq_epi64","_mm256_broadcastsd_pd","_mm256_broadcastsi128_si256","_mm256_broadcastss_ps","_mm256_broadcastw_epi16","_mm256_bslli_epi128","_mm256_bsrli_epi128","_mm256_castpd128_pd256","_mm256_castpd256_pd128","_mm256_castpd_ph","_mm256_castpd_ps","_mm256_castpd_si256","_mm256_castph128_ph256","_mm256_castph256_ph128","_mm256_castph_pd","_mm256_castph_ps","_mm256_castph_si256","_mm256_castps128_ps256","_mm256_castps256_ps128","_mm256_castps_pd","_mm256_castps_ph","_mm256_castps_si256","_mm256_castsi128_si256","_mm256_castsi256_pd","_mm256_castsi256_ph","_mm256_castsi256_ps","_mm256_castsi256_si128","_mm256_ceil_pd","_mm256_ceil_ps","_mm256_clmulepi64_epi128","_mm256_cmp_epi16_mask","_mm256_cmp_epi32_mask","_mm256_cmp_epi64_mask","_mm256_cmp_epi8_mask","_mm256_cmp_epu16_mask","_mm256_cmp_epu32_mask","_mm256_cmp_epu64_mask","_mm256_cmp_epu8_mask","_mm256_cmp_pd","_mm256_cmp_pd_mask","_mm256_cmp_ph_mask","_mm256_cmp_ps","_mm256_cmp_ps_mask","_mm256_cmpeq_epi16","_mm256_cmpeq_epi16_mask","_mm256_cmpeq_epi32","_mm256_cmpeq_epi32_mask","_mm256_cmpeq_epi64","_mm256_cmpeq_epi64_mask","_mm256_cmpeq_epi8","_mm256_cmpeq_epi8_mask","_mm256_cmpeq_epu16_mask","_mm256_cmpeq_epu32_mask","_mm256_cmpeq_epu64_mask","_mm256_cmpeq_epu8_mask","_mm256_cmpge_epi16_mask","_mm256_cmpge_epi32_mask","_mm256_cmpge_epi64_mask","_mm256_cmpge_epi8_mask","_mm256_cmpge_epu16_mask","_mm256_cmpge_epu32_mask","_mm256_cmpge_epu64_mask","_mm256_cmpge_epu8_mask","_mm256_cmpgt_epi16","_mm256_cmpgt_epi16_mask","_mm256_cmpgt_epi32","_mm256_cmpgt_epi32_mask","_mm256_cmpgt_epi64","_mm256_cmpgt_epi64_mask","_mm256_cmpgt_epi8","_mm256_cmpgt_epi8_mask","_mm256_cmpgt_epu16_mask","_mm256_cmpgt_epu32_mask","_mm256_cmpgt_epu64_mask","_mm256_cmpgt_epu8_mask","_mm256_cmple_epi16_mask","_mm256_cmple_epi32_mask","_mm256_cmple_epi64_mask","_mm256_cmple_epi8_mask","_mm256_cmple_epu16_mask","_mm256_cmple_epu32_mask","_mm256_cmple_epu64_mask","_mm256_cmple_epu8_mask","_mm256_cmplt_epi16_mask","_mm256_cmplt_epi32_mask","_mm256_cmplt_epi64_mask","_mm256_cmplt_epi8_mask","_mm256_cmplt_epu16_mask","_mm256_cmplt_epu32_mask","_mm256_cmplt_epu64_mask","_mm256_cmplt_epu8_mask","_mm256_cmpneq_epi16_mask","_mm256_cmpneq_epi32_mask","_mm256_cmpneq_epi64_mask","_mm256_cmpneq_epi8_mask","_mm256_cmpneq_epu16_mask","_mm256_cmpneq_epu32_mask","_mm256_cmpneq_epu64_mask","_mm256_cmpneq_epu8_mask","_mm256_cmul_pch","_mm256_conflict_epi32","_mm256_conflict_epi64","_mm256_conj_pch","_mm256_cvtepi16_epi32","_mm256_cvtepi16_epi64","_mm256_cvtepi16_epi8","_mm256_cvtepi16_ph","_mm256_cvtepi32_epi16","_mm256_cvtepi32_epi64","_mm256_cvtepi32_epi8","_mm256_cvtepi32_pd","_mm256_cvtepi32_ph","_mm256_cvtepi32_ps","_mm256_cvtepi64_epi16","_mm256_cvtepi64_epi32","_mm256_cvtepi64_epi8","_mm256_cvtepi64_pd","_mm256_cvtepi64_ph","_mm256_cvtepi64_ps","_mm256_cvtepi8_epi16","_mm256_cvtepi8_epi32","_mm256_cvtepi8_epi64","_mm256_cvtepu16_epi32","_mm256_cvtepu16_epi64","_mm256_cvtepu16_ph","_mm256_cvtepu32_epi64","_mm256_cvtepu32_pd","_mm256_cvtepu32_ph","_mm256_cvtepu64_pd","_mm256_cvtepu64_ph","_mm256_cvtepu64_ps","_mm256_cvtepu8_epi16","_mm256_cvtepu8_epi32","_mm256_cvtepu8_epi64","_mm256_cvtne2ps_pbh","_mm256_cvtneebf16_ps","_mm256_cvtneeph_ps","_mm256_cvtneobf16_ps","_mm256_cvtneoph_ps","_mm256_cvtneps_avx_pbh","_mm256_cvtneps_pbh","_mm256_cvtpbh_ps","_mm256_cvtpd_epi32","_mm256_cvtpd_epi64","_mm256_cvtpd_epu32","_mm256_cvtpd_epu64","_mm256_cvtpd_ph","_mm256_cvtpd_ps","_mm256_cvtph_epi16","_mm256_cvtph_epi32","_mm256_cvtph_epi64","_mm256_cvtph_epu16","_mm256_cvtph_epu32","_mm256_cvtph_epu64","_mm256_cvtph_pd","_mm256_cvtph_ps","_mm256_cvtps_epi32","_mm256_cvtps_epi64","_mm256_cvtps_epu32","_mm256_cvtps_epu64","_mm256_cvtps_pd","_mm256_cvtps_ph","_mm256_cvtsd_f64","_mm256_cvtsepi16_epi8","_mm256_cvtsepi32_epi16","_mm256_cvtsepi32_epi8","_mm256_cvtsepi64_epi16","_mm256_cvtsepi64_epi32","_mm256_cvtsepi64_epi8","_mm256_cvtsh_h","_mm256_cvtsi256_si32","_mm256_cvtss_f32","_mm256_cvttpd_epi32","_mm256_cvttpd_epi64","_mm256_cvttpd_epu32","_mm256_cvttpd_epu64","_mm256_cvttph_epi16","_mm256_cvttph_epi32","_mm256_cvttph_epi64","_mm256_cvttph_epu16","_mm256_cvttph_epu32","_mm256_cvttph_epu64","_mm256_cvttps_epi32","_mm256_cvttps_epi64","_mm256_cvttps_epu32","_mm256_cvttps_epu64","_mm256_cvtusepi16_epi8","_mm256_cvtusepi32_epi16","_mm256_cvtusepi32_epi8","_mm256_cvtusepi64_epi16","_mm256_cvtusepi64_epi32","_mm256_cvtusepi64_epi8","_mm256_cvtxph_ps","_mm256_cvtxps_ph","_mm256_dbsad_epu8","_mm256_div_pd","_mm256_div_ph","_mm256_div_ps","_mm256_dp_ps","_mm256_dpbf16_ps","_mm256_dpbssd_epi32","_mm256_dpbssds_epi32","_mm256_dpbsud_epi32","_mm256_dpbsuds_epi32","_mm256_dpbusd_avx_epi32","_mm256_dpbusd_epi32","_mm256_dpbusds_avx_epi32","_mm256_dpbusds_epi32","_mm256_dpbuud_epi32","_mm256_dpbuuds_epi32","_mm256_dpwssd_avx_epi32","_mm256_dpwssd_epi32","_mm256_dpwssds_avx_epi32","_mm256_dpwssds_epi32","_mm256_dpwsud_epi32","_mm256_dpwsuds_epi32","_mm256_dpwusd_epi32","_mm256_dpwusds_epi32","_mm256_dpwuud_epi32","_mm256_dpwuuds_epi32","_mm256_extract_epi16","_mm256_extract_epi32","_mm256_extract_epi64","_mm256_extract_epi8","_mm256_extractf128_pd","_mm256_extractf128_ps","_mm256_extractf128_si256","_mm256_extractf32x4_ps","_mm256_extractf64x2_pd","_mm256_extracti128_si256","_mm256_extracti32x4_epi32","_mm256_extracti64x2_epi64","_mm256_fcmadd_pch","_mm256_fcmul_pch","_mm256_fixupimm_pd","_mm256_fixupimm_ps","_mm256_floor_pd","_mm256_floor_ps","_mm256_fmadd_pch","_mm256_fmadd_pd","_mm256_fmadd_ph","_mm256_fmadd_ps","_mm256_fmaddsub_pd","_mm256_fmaddsub_ph","_mm256_fmaddsub_ps","_mm256_fmsub_pd","_mm256_fmsub_ph","_mm256_fmsub_ps","_mm256_fmsubadd_pd","_mm256_fmsubadd_ph","_mm256_fmsubadd_ps","_mm256_fmul_pch","_mm256_fnmadd_pd","_mm256_fnmadd_ph","_mm256_fnmadd_ps","_mm256_fnmsub_pd","_mm256_fnmsub_ph","_mm256_fnmsub_ps","_mm256_fpclass_pd_mask","_mm256_fpclass_ph_mask","_mm256_fpclass_ps_mask","_mm256_getexp_pd","_mm256_getexp_ph","_mm256_getexp_ps","_mm256_getmant_pd","_mm256_getmant_ph","_mm256_getmant_ps","_mm256_gf2p8affine_epi64_epi8","_mm256_gf2p8affineinv_epi64_epi8","_mm256_gf2p8mul_epi8","_mm256_hadd_epi16","_mm256_hadd_epi32","_mm256_hadd_pd","_mm256_hadd_ps","_mm256_hadds_epi16","_mm256_hsub_epi16","_mm256_hsub_epi32","_mm256_hsub_pd","_mm256_hsub_ps","_mm256_hsubs_epi16","_mm256_i32gather_epi32","_mm256_i32gather_epi64","_mm256_i32gather_pd","_mm256_i32gather_ps","_mm256_i32scatter_epi32","_mm256_i32scatter_epi64","_mm256_i32scatter_pd","_mm256_i32scatter_ps","_mm256_i64gather_epi32","_mm256_i64gather_epi64","_mm256_i64gather_pd","_mm256_i64gather_ps","_mm256_i64scatter_epi32","_mm256_i64scatter_epi64","_mm256_i64scatter_pd","_mm256_i64scatter_ps","_mm256_insert_epi16","_mm256_insert_epi32","_mm256_insert_epi64","_mm256_insert_epi8","_mm256_insertf128_pd","_mm256_insertf128_ps","_mm256_insertf128_si256","_mm256_insertf32x4","_mm256_insertf64x2","_mm256_inserti128_si256","_mm256_inserti32x4","_mm256_inserti64x2","_mm256_lddqu_si256","_mm256_load_epi32","_mm256_load_epi64","_mm256_load_pd","_mm256_load_ph","_mm256_load_ps","_mm256_load_si256","_mm256_loadu2_m128","_mm256_loadu2_m128d","_mm256_loadu2_m128i","_mm256_loadu_epi16","_mm256_loadu_epi32","_mm256_loadu_epi64","_mm256_loadu_epi8","_mm256_loadu_pd","_mm256_loadu_ph","_mm256_loadu_ps","_mm256_loadu_si256","_mm256_lzcnt_epi32","_mm256_lzcnt_epi64","_mm256_madd52hi_avx_epu64","_mm256_madd52hi_epu64","_mm256_madd52lo_avx_epu64","_mm256_madd52lo_epu64","_mm256_madd_epi16","_mm256_maddubs_epi16","_mm256_mask2_permutex2var_epi16","_mm256_mask2_permutex2var_epi32","_mm256_mask2_permutex2var_epi64","_mm256_mask2_permutex2var_epi8","_mm256_mask2_permutex2var_pd","_mm256_mask2_permutex2var_ps","_mm256_mask3_fcmadd_pch","_mm256_mask3_fmadd_pch","_mm256_mask3_fmadd_pd","_mm256_mask3_fmadd_ph","_mm256_mask3_fmadd_ps","_mm256_mask3_fmaddsub_pd","_mm256_mask3_fmaddsub_ph","_mm256_mask3_fmaddsub_ps","_mm256_mask3_fmsub_pd","_mm256_mask3_fmsub_ph","_mm256_mask3_fmsub_ps","_mm256_mask3_fmsubadd_pd","_mm256_mask3_fmsubadd_ph","_mm256_mask3_fmsubadd_ps","_mm256_mask3_fnmadd_pd","_mm256_mask3_fnmadd_ph","_mm256_mask3_fnmadd_ps","_mm256_mask3_fnmsub_pd","_mm256_mask3_fnmsub_ph","_mm256_mask3_fnmsub_ps","_mm256_mask_abs_epi16","_mm256_mask_abs_epi32","_mm256_mask_abs_epi64","_mm256_mask_abs_epi8","_mm256_mask_add_epi16","_mm256_mask_add_epi32","_mm256_mask_add_epi64","_mm256_mask_add_epi8","_mm256_mask_add_pd","_mm256_mask_add_ph","_mm256_mask_add_ps","_mm256_mask_adds_epi16","_mm256_mask_adds_epi8","_mm256_mask_adds_epu16","_mm256_mask_adds_epu8","_mm256_mask_alignr_epi32","_mm256_mask_alignr_epi64","_mm256_mask_alignr_epi8","_mm256_mask_and_epi32","_mm256_mask_and_epi64","_mm256_mask_and_pd","_mm256_mask_and_ps","_mm256_mask_andnot_epi32","_mm256_mask_andnot_epi64","_mm256_mask_andnot_pd","_mm256_mask_andnot_ps","_mm256_mask_avg_epu16","_mm256_mask_avg_epu8","_mm256_mask_bitshuffle_epi64_mask","_mm256_mask_blend_epi16","_mm256_mask_blend_epi32","_mm256_mask_blend_epi64","_mm256_mask_blend_epi8","_mm256_mask_blend_pd","_mm256_mask_blend_ph","_mm256_mask_blend_ps","_mm256_mask_broadcast_f32x2","_mm256_mask_broadcast_f32x4","_mm256_mask_broadcast_f64x2","_mm256_mask_broadcast_i32x2","_mm256_mask_broadcast_i32x4","_mm256_mask_broadcast_i64x2","_mm256_mask_broadcastb_epi8","_mm256_mask_broadcastd_epi32","_mm256_mask_broadcastq_epi64","_mm256_mask_broadcastsd_pd","_mm256_mask_broadcastss_ps","_mm256_mask_broadcastw_epi16","_mm256_mask_cmp_epi16_mask","_mm256_mask_cmp_epi32_mask","_mm256_mask_cmp_epi64_mask","_mm256_mask_cmp_epi8_mask","_mm256_mask_cmp_epu16_mask","_mm256_mask_cmp_epu32_mask","_mm256_mask_cmp_epu64_mask","_mm256_mask_cmp_epu8_mask","_mm256_mask_cmp_pd_mask","_mm256_mask_cmp_ph_mask","_mm256_mask_cmp_ps_mask","_mm256_mask_cmpeq_epi16_mask","_mm256_mask_cmpeq_epi32_mask","_mm256_mask_cmpeq_epi64_mask","_mm256_mask_cmpeq_epi8_mask","_mm256_mask_cmpeq_epu16_mask","_mm256_mask_cmpeq_epu32_mask","_mm256_mask_cmpeq_epu64_mask","_mm256_mask_cmpeq_epu8_mask","_mm256_mask_cmpge_epi16_mask","_mm256_mask_cmpge_epi32_mask","_mm256_mask_cmpge_epi64_mask","_mm256_mask_cmpge_epi8_mask","_mm256_mask_cmpge_epu16_mask","_mm256_mask_cmpge_epu32_mask","_mm256_mask_cmpge_epu64_mask","_mm256_mask_cmpge_epu8_mask","_mm256_mask_cmpgt_epi16_mask","_mm256_mask_cmpgt_epi32_mask","_mm256_mask_cmpgt_epi64_mask","_mm256_mask_cmpgt_epi8_mask","_mm256_mask_cmpgt_epu16_mask","_mm256_mask_cmpgt_epu32_mask","_mm256_mask_cmpgt_epu64_mask","_mm256_mask_cmpgt_epu8_mask","_mm256_mask_cmple_epi16_mask","_mm256_mask_cmple_epi32_mask","_mm256_mask_cmple_epi64_mask","_mm256_mask_cmple_epi8_mask","_mm256_mask_cmple_epu16_mask","_mm256_mask_cmple_epu32_mask","_mm256_mask_cmple_epu64_mask","_mm256_mask_cmple_epu8_mask","_mm256_mask_cmplt_epi16_mask","_mm256_mask_cmplt_epi32_mask","_mm256_mask_cmplt_epi64_mask","_mm256_mask_cmplt_epi8_mask","_mm256_mask_cmplt_epu16_mask","_mm256_mask_cmplt_epu32_mask","_mm256_mask_cmplt_epu64_mask","_mm256_mask_cmplt_epu8_mask","_mm256_mask_cmpneq_epi16_mask","_mm256_mask_cmpneq_epi32_mask","_mm256_mask_cmpneq_epi64_mask","_mm256_mask_cmpneq_epi8_mask","_mm256_mask_cmpneq_epu16_mask","_mm256_mask_cmpneq_epu32_mask","_mm256_mask_cmpneq_epu64_mask","_mm256_mask_cmpneq_epu8_mask","_mm256_mask_cmul_pch","_mm256_mask_compress_epi16","_mm256_mask_compress_epi32","_mm256_mask_compress_epi64","_mm256_mask_compress_epi8","_mm256_mask_compress_pd","_mm256_mask_compress_ps","_mm256_mask_compressstoreu_epi16","_mm256_mask_compressstoreu_epi32","_mm256_mask_compressstoreu_epi64","_mm256_mask_compressstoreu_epi8","_mm256_mask_compressstoreu_pd","_mm256_mask_compressstoreu_ps","_mm256_mask_conflict_epi32","_mm256_mask_conflict_epi64","_mm256_mask_conj_pch","_mm256_mask_cvt_roundps_ph","_mm256_mask_cvtepi16_epi32","_mm256_mask_cvtepi16_epi64","_mm256_mask_cvtepi16_epi8","_mm256_mask_cvtepi16_ph","_mm256_mask_cvtepi16_storeu_epi8","_mm256_mask_cvtepi32_epi16","_mm256_mask_cvtepi32_epi64","_mm256_mask_cvtepi32_epi8","_mm256_mask_cvtepi32_pd","_mm256_mask_cvtepi32_ph","_mm256_mask_cvtepi32_ps","_mm256_mask_cvtepi32_storeu_epi16","_mm256_mask_cvtepi32_storeu_epi8","_mm256_mask_cvtepi64_epi16","_mm256_mask_cvtepi64_epi32","_mm256_mask_cvtepi64_epi8","_mm256_mask_cvtepi64_pd","_mm256_mask_cvtepi64_ph","_mm256_mask_cvtepi64_ps","_mm256_mask_cvtepi64_storeu_epi16","_mm256_mask_cvtepi64_storeu_epi32","_mm256_mask_cvtepi64_storeu_epi8","_mm256_mask_cvtepi8_epi16","_mm256_mask_cvtepi8_epi32","_mm256_mask_cvtepi8_epi64","_mm256_mask_cvtepu16_epi32","_mm256_mask_cvtepu16_epi64","_mm256_mask_cvtepu16_ph","_mm256_mask_cvtepu32_epi64","_mm256_mask_cvtepu32_pd","_mm256_mask_cvtepu32_ph","_mm256_mask_cvtepu64_pd","_mm256_mask_cvtepu64_ph","_mm256_mask_cvtepu64_ps","_mm256_mask_cvtepu8_epi16","_mm256_mask_cvtepu8_epi32","_mm256_mask_cvtepu8_epi64","_mm256_mask_cvtne2ps_pbh","_mm256_mask_cvtneps_pbh","_mm256_mask_cvtpbh_ps","_mm256_mask_cvtpd_epi32","_mm256_mask_cvtpd_epi64","_mm256_mask_cvtpd_epu32","_mm256_mask_cvtpd_epu64","_mm256_mask_cvtpd_ph","_mm256_mask_cvtpd_ps","_mm256_mask_cvtph_epi16","_mm256_mask_cvtph_epi32","_mm256_mask_cvtph_epi64","_mm256_mask_cvtph_epu16","_mm256_mask_cvtph_epu32","_mm256_mask_cvtph_epu64","_mm256_mask_cvtph_pd","_mm256_mask_cvtph_ps","_mm256_mask_cvtps_epi32","_mm256_mask_cvtps_epi64","_mm256_mask_cvtps_epu32","_mm256_mask_cvtps_epu64","_mm256_mask_cvtps_ph","_mm256_mask_cvtsepi16_epi8","_mm256_mask_cvtsepi16_storeu_epi8","_mm256_mask_cvtsepi32_epi16","_mm256_mask_cvtsepi32_epi8","_mm256_mask_cvtsepi32_storeu_epi16","_mm256_mask_cvtsepi32_storeu_epi8","_mm256_mask_cvtsepi64_epi16","_mm256_mask_cvtsepi64_epi32","_mm256_mask_cvtsepi64_epi8","_mm256_mask_cvtsepi64_storeu_epi16","_mm256_mask_cvtsepi64_storeu_epi32","_mm256_mask_cvtsepi64_storeu_epi8","_mm256_mask_cvttpd_epi32","_mm256_mask_cvttpd_epi64","_mm256_mask_cvttpd_epu32","_mm256_mask_cvttpd_epu64","_mm256_mask_cvttph_epi16","_mm256_mask_cvttph_epi32","_mm256_mask_cvttph_epi64","_mm256_mask_cvttph_epu16","_mm256_mask_cvttph_epu32","_mm256_mask_cvttph_epu64","_mm256_mask_cvttps_epi32","_mm256_mask_cvttps_epi64","_mm256_mask_cvttps_epu32","_mm256_mask_cvttps_epu64","_mm256_mask_cvtusepi16_epi8","_mm256_mask_cvtusepi16_storeu_epi8","_mm256_mask_cvtusepi32_epi16","_mm256_mask_cvtusepi32_epi8","_mm256_mask_cvtusepi32_storeu_epi16","_mm256_mask_cvtusepi32_storeu_epi8","_mm256_mask_cvtusepi64_epi16","_mm256_mask_cvtusepi64_epi32","_mm256_mask_cvtusepi64_epi8","_mm256_mask_cvtusepi64_storeu_epi16","_mm256_mask_cvtusepi64_storeu_epi32","_mm256_mask_cvtusepi64_storeu_epi8","_mm256_mask_cvtxph_ps","_mm256_mask_cvtxps_ph","_mm256_mask_dbsad_epu8","_mm256_mask_div_pd","_mm256_mask_div_ph","_mm256_mask_div_ps","_mm256_mask_dpbf16_ps","_mm256_mask_dpbusd_epi32","_mm256_mask_dpbusds_epi32","_mm256_mask_dpwssd_epi32","_mm256_mask_dpwssds_epi32","_mm256_mask_expand_epi16","_mm256_mask_expand_epi32","_mm256_mask_expand_epi64","_mm256_mask_expand_epi8","_mm256_mask_expand_pd","_mm256_mask_expand_ps","_mm256_mask_expandloadu_epi16","_mm256_mask_expandloadu_epi32","_mm256_mask_expandloadu_epi64","_mm256_mask_expandloadu_epi8","_mm256_mask_expandloadu_pd","_mm256_mask_expandloadu_ps","_mm256_mask_extractf32x4_ps","_mm256_mask_extractf64x2_pd","_mm256_mask_extracti32x4_epi32","_mm256_mask_extracti64x2_epi64","_mm256_mask_fcmadd_pch","_mm256_mask_fcmul_pch","_mm256_mask_fixupimm_pd","_mm256_mask_fixupimm_ps","_mm256_mask_fmadd_pch","_mm256_mask_fmadd_pd","_mm256_mask_fmadd_ph","_mm256_mask_fmadd_ps","_mm256_mask_fmaddsub_pd","_mm256_mask_fmaddsub_ph","_mm256_mask_fmaddsub_ps","_mm256_mask_fmsub_pd","_mm256_mask_fmsub_ph","_mm256_mask_fmsub_ps","_mm256_mask_fmsubadd_pd","_mm256_mask_fmsubadd_ph","_mm256_mask_fmsubadd_ps","_mm256_mask_fmul_pch","_mm256_mask_fnmadd_pd","_mm256_mask_fnmadd_ph","_mm256_mask_fnmadd_ps","_mm256_mask_fnmsub_pd","_mm256_mask_fnmsub_ph","_mm256_mask_fnmsub_ps","_mm256_mask_fpclass_pd_mask","_mm256_mask_fpclass_ph_mask","_mm256_mask_fpclass_ps_mask","_mm256_mask_getexp_pd","_mm256_mask_getexp_ph","_mm256_mask_getexp_ps","_mm256_mask_getmant_pd","_mm256_mask_getmant_ph","_mm256_mask_getmant_ps","_mm256_mask_gf2p8affine_epi64_epi8","_mm256_mask_gf2p8affineinv_epi64_epi8","_mm256_mask_gf2p8mul_epi8","_mm256_mask_i32gather_epi32","_mm256_mask_i32gather_epi64","_mm256_mask_i32gather_pd","_mm256_mask_i32gather_ps","_mm256_mask_i32scatter_epi32","_mm256_mask_i32scatter_epi64","_mm256_mask_i32scatter_pd","_mm256_mask_i32scatter_ps","_mm256_mask_i64gather_epi32","_mm256_mask_i64gather_epi64","_mm256_mask_i64gather_pd","_mm256_mask_i64gather_ps","_mm256_mask_i64scatter_epi32","_mm256_mask_i64scatter_epi64","_mm256_mask_i64scatter_pd","_mm256_mask_i64scatter_ps","_mm256_mask_insertf32x4","_mm256_mask_insertf64x2","_mm256_mask_inserti32x4","_mm256_mask_inserti64x2","_mm256_mask_load_epi32","_mm256_mask_load_epi64","_mm256_mask_load_pd","_mm256_mask_load_ps","_mm256_mask_loadu_epi16","_mm256_mask_loadu_epi32","_mm256_mask_loadu_epi64","_mm256_mask_loadu_epi8","_mm256_mask_loadu_pd","_mm256_mask_loadu_ps","_mm256_mask_lzcnt_epi32","_mm256_mask_lzcnt_epi64","_mm256_mask_madd52hi_epu64","_mm256_mask_madd52lo_epu64","_mm256_mask_madd_epi16","_mm256_mask_maddubs_epi16","_mm256_mask_max_epi16","_mm256_mask_max_epi32","_mm256_mask_max_epi64","_mm256_mask_max_epi8","_mm256_mask_max_epu16","_mm256_mask_max_epu32","_mm256_mask_max_epu64","_mm256_mask_max_epu8","_mm256_mask_max_pd","_mm256_mask_max_ph","_mm256_mask_max_ps","_mm256_mask_min_epi16","_mm256_mask_min_epi32","_mm256_mask_min_epi64","_mm256_mask_min_epi8","_mm256_mask_min_epu16","_mm256_mask_min_epu32","_mm256_mask_min_epu64","_mm256_mask_min_epu8","_mm256_mask_min_pd","_mm256_mask_min_ph","_mm256_mask_min_ps","_mm256_mask_mov_epi16","_mm256_mask_mov_epi32","_mm256_mask_mov_epi64","_mm256_mask_mov_epi8","_mm256_mask_mov_pd","_mm256_mask_mov_ps","_mm256_mask_movedup_pd","_mm256_mask_movehdup_ps","_mm256_mask_moveldup_ps","_mm256_mask_mul_epi32","_mm256_mask_mul_epu32","_mm256_mask_mul_pch","_mm256_mask_mul_pd","_mm256_mask_mul_ph","_mm256_mask_mul_ps","_mm256_mask_mulhi_epi16","_mm256_mask_mulhi_epu16","_mm256_mask_mulhrs_epi16","_mm256_mask_mullo_epi16","_mm256_mask_mullo_epi32","_mm256_mask_mullo_epi64","_mm256_mask_multishift_epi64_epi8","_mm256_mask_or_epi32","_mm256_mask_or_epi64","_mm256_mask_or_pd","_mm256_mask_or_ps","_mm256_mask_packs_epi16","_mm256_mask_packs_epi32","_mm256_mask_packus_epi16","_mm256_mask_packus_epi32","_mm256_mask_permute_pd","_mm256_mask_permute_ps","_mm256_mask_permutevar_pd","_mm256_mask_permutevar_ps","_mm256_mask_permutex2var_epi16","_mm256_mask_permutex2var_epi32","_mm256_mask_permutex2var_epi64","_mm256_mask_permutex2var_epi8","_mm256_mask_permutex2var_pd","_mm256_mask_permutex2var_ps","_mm256_mask_permutex_epi64","_mm256_mask_permutex_pd","_mm256_mask_permutexvar_epi16","_mm256_mask_permutexvar_epi32","_mm256_mask_permutexvar_epi64","_mm256_mask_permutexvar_epi8","_mm256_mask_permutexvar_pd","_mm256_mask_permutexvar_ps","_mm256_mask_popcnt_epi16","_mm256_mask_popcnt_epi32","_mm256_mask_popcnt_epi64","_mm256_mask_popcnt_epi8","_mm256_mask_range_pd","_mm256_mask_range_ps","_mm256_mask_rcp14_pd","_mm256_mask_rcp14_ps","_mm256_mask_rcp_ph","_mm256_mask_reduce_add_epi16","_mm256_mask_reduce_add_epi8","_mm256_mask_reduce_and_epi16","_mm256_mask_reduce_and_epi8","_mm256_mask_reduce_max_epi16","_mm256_mask_reduce_max_epi8","_mm256_mask_reduce_max_epu16","_mm256_mask_reduce_max_epu8","_mm256_mask_reduce_min_epi16","_mm256_mask_reduce_min_epi8","_mm256_mask_reduce_min_epu16","_mm256_mask_reduce_min_epu8","_mm256_mask_reduce_mul_epi16","_mm256_mask_reduce_mul_epi8","_mm256_mask_reduce_or_epi16","_mm256_mask_reduce_or_epi8","_mm256_mask_reduce_pd","_mm256_mask_reduce_ph","_mm256_mask_reduce_ps","_mm256_mask_rol_epi32","_mm256_mask_rol_epi64","_mm256_mask_rolv_epi32","_mm256_mask_rolv_epi64","_mm256_mask_ror_epi32","_mm256_mask_ror_epi64","_mm256_mask_rorv_epi32","_mm256_mask_rorv_epi64","_mm256_mask_roundscale_pd","_mm256_mask_roundscale_ph","_mm256_mask_roundscale_ps","_mm256_mask_rsqrt14_pd","_mm256_mask_rsqrt14_ps","_mm256_mask_rsqrt_ph","_mm256_mask_scalef_pd","_mm256_mask_scalef_ph","_mm256_mask_scalef_ps","_mm256_mask_set1_epi16","_mm256_mask_set1_epi32","_mm256_mask_set1_epi64","_mm256_mask_set1_epi8","_mm256_mask_shldi_epi16","_mm256_mask_shldi_epi32","_mm256_mask_shldi_epi64","_mm256_mask_shldv_epi16","_mm256_mask_shldv_epi32","_mm256_mask_shldv_epi64","_mm256_mask_shrdi_epi16","_mm256_mask_shrdi_epi32","_mm256_mask_shrdi_epi64","_mm256_mask_shrdv_epi16","_mm256_mask_shrdv_epi32","_mm256_mask_shrdv_epi64","_mm256_mask_shuffle_epi32","_mm256_mask_shuffle_epi8","_mm256_mask_shuffle_f32x4","_mm256_mask_shuffle_f64x2","_mm256_mask_shuffle_i32x4","_mm256_mask_shuffle_i64x2","_mm256_mask_shuffle_pd","_mm256_mask_shuffle_ps","_mm256_mask_shufflehi_epi16","_mm256_mask_shufflelo_epi16","_mm256_mask_sll_epi16","_mm256_mask_sll_epi32","_mm256_mask_sll_epi64","_mm256_mask_slli_epi16","_mm256_mask_slli_epi32","_mm256_mask_slli_epi64","_mm256_mask_sllv_epi16","_mm256_mask_sllv_epi32","_mm256_mask_sllv_epi64","_mm256_mask_sqrt_pd","_mm256_mask_sqrt_ph","_mm256_mask_sqrt_ps","_mm256_mask_sra_epi16","_mm256_mask_sra_epi32","_mm256_mask_sra_epi64","_mm256_mask_srai_epi16","_mm256_mask_srai_epi32","_mm256_mask_srai_epi64","_mm256_mask_srav_epi16","_mm256_mask_srav_epi32","_mm256_mask_srav_epi64","_mm256_mask_srl_epi16","_mm256_mask_srl_epi32","_mm256_mask_srl_epi64","_mm256_mask_srli_epi16","_mm256_mask_srli_epi32","_mm256_mask_srli_epi64","_mm256_mask_srlv_epi16","_mm256_mask_srlv_epi32","_mm256_mask_srlv_epi64","_mm256_mask_store_epi32","_mm256_mask_store_epi64","_mm256_mask_store_pd","_mm256_mask_store_ps","_mm256_mask_storeu_epi16","_mm256_mask_storeu_epi32","_mm256_mask_storeu_epi64","_mm256_mask_storeu_epi8","_mm256_mask_storeu_pd","_mm256_mask_storeu_ps","_mm256_mask_sub_epi16","_mm256_mask_sub_epi32","_mm256_mask_sub_epi64","_mm256_mask_sub_epi8","_mm256_mask_sub_pd","_mm256_mask_sub_ph","_mm256_mask_sub_ps","_mm256_mask_subs_epi16","_mm256_mask_subs_epi8","_mm256_mask_subs_epu16","_mm256_mask_subs_epu8","_mm256_mask_ternarylogic_epi32","_mm256_mask_ternarylogic_epi64","_mm256_mask_test_epi16_mask","_mm256_mask_test_epi32_mask","_mm256_mask_test_epi64_mask","_mm256_mask_test_epi8_mask","_mm256_mask_testn_epi16_mask","_mm256_mask_testn_epi32_mask","_mm256_mask_testn_epi64_mask","_mm256_mask_testn_epi8_mask","_mm256_mask_unpackhi_epi16","_mm256_mask_unpackhi_epi32","_mm256_mask_unpackhi_epi64","_mm256_mask_unpackhi_epi8","_mm256_mask_unpackhi_pd","_mm256_mask_unpackhi_ps","_mm256_mask_unpacklo_epi16","_mm256_mask_unpacklo_epi32","_mm256_mask_unpacklo_epi64","_mm256_mask_unpacklo_epi8","_mm256_mask_unpacklo_pd","_mm256_mask_unpacklo_ps","_mm256_mask_xor_epi32","_mm256_mask_xor_epi64","_mm256_mask_xor_pd","_mm256_mask_xor_ps","_mm256_maskload_epi32","_mm256_maskload_epi64","_mm256_maskload_pd","_mm256_maskload_ps","_mm256_maskstore_epi32","_mm256_maskstore_epi64","_mm256_maskstore_pd","_mm256_maskstore_ps","_mm256_maskz_abs_epi16","_mm256_maskz_abs_epi32","_mm256_maskz_abs_epi64","_mm256_maskz_abs_epi8","_mm256_maskz_add_epi16","_mm256_maskz_add_epi32","_mm256_maskz_add_epi64","_mm256_maskz_add_epi8","_mm256_maskz_add_pd","_mm256_maskz_add_ph","_mm256_maskz_add_ps","_mm256_maskz_adds_epi16","_mm256_maskz_adds_epi8","_mm256_maskz_adds_epu16","_mm256_maskz_adds_epu8","_mm256_maskz_alignr_epi32","_mm256_maskz_alignr_epi64","_mm256_maskz_alignr_epi8","_mm256_maskz_and_epi32","_mm256_maskz_and_epi64","_mm256_maskz_and_pd","_mm256_maskz_and_ps","_mm256_maskz_andnot_epi32","_mm256_maskz_andnot_epi64","_mm256_maskz_andnot_pd","_mm256_maskz_andnot_ps","_mm256_maskz_avg_epu16","_mm256_maskz_avg_epu8","_mm256_maskz_broadcast_f32x2","_mm256_maskz_broadcast_f32x4","_mm256_maskz_broadcast_f64x2","_mm256_maskz_broadcast_i32x2","_mm256_maskz_broadcast_i32x4","_mm256_maskz_broadcast_i64x2","_mm256_maskz_broadcastb_epi8","_mm256_maskz_broadcastd_epi32","_mm256_maskz_broadcastq_epi64","_mm256_maskz_broadcastsd_pd","_mm256_maskz_broadcastss_ps","_mm256_maskz_broadcastw_epi16","_mm256_maskz_cmul_pch","_mm256_maskz_compress_epi16","_mm256_maskz_compress_epi32","_mm256_maskz_compress_epi64","_mm256_maskz_compress_epi8","_mm256_maskz_compress_pd","_mm256_maskz_compress_ps","_mm256_maskz_conflict_epi32","_mm256_maskz_conflict_epi64","_mm256_maskz_conj_pch","_mm256_maskz_cvt_roundps_ph","_mm256_maskz_cvtepi16_epi32","_mm256_maskz_cvtepi16_epi64","_mm256_maskz_cvtepi16_epi8","_mm256_maskz_cvtepi16_ph","_mm256_maskz_cvtepi32_epi16","_mm256_maskz_cvtepi32_epi64","_mm256_maskz_cvtepi32_epi8","_mm256_maskz_cvtepi32_pd","_mm256_maskz_cvtepi32_ph","_mm256_maskz_cvtepi32_ps","_mm256_maskz_cvtepi64_epi16","_mm256_maskz_cvtepi64_epi32","_mm256_maskz_cvtepi64_epi8","_mm256_maskz_cvtepi64_pd","_mm256_maskz_cvtepi64_ph","_mm256_maskz_cvtepi64_ps","_mm256_maskz_cvtepi8_epi16","_mm256_maskz_cvtepi8_epi32","_mm256_maskz_cvtepi8_epi64","_mm256_maskz_cvtepu16_epi32","_mm256_maskz_cvtepu16_epi64","_mm256_maskz_cvtepu16_ph","_mm256_maskz_cvtepu32_epi64","_mm256_maskz_cvtepu32_pd","_mm256_maskz_cvtepu32_ph","_mm256_maskz_cvtepu64_pd","_mm256_maskz_cvtepu64_ph","_mm256_maskz_cvtepu64_ps","_mm256_maskz_cvtepu8_epi16","_mm256_maskz_cvtepu8_epi32","_mm256_maskz_cvtepu8_epi64","_mm256_maskz_cvtne2ps_pbh","_mm256_maskz_cvtneps_pbh","_mm256_maskz_cvtpbh_ps","_mm256_maskz_cvtpd_epi32","_mm256_maskz_cvtpd_epi64","_mm256_maskz_cvtpd_epu32","_mm256_maskz_cvtpd_epu64","_mm256_maskz_cvtpd_ph","_mm256_maskz_cvtpd_ps","_mm256_maskz_cvtph_epi16","_mm256_maskz_cvtph_epi32","_mm256_maskz_cvtph_epi64","_mm256_maskz_cvtph_epu16","_mm256_maskz_cvtph_epu32","_mm256_maskz_cvtph_epu64","_mm256_maskz_cvtph_pd","_mm256_maskz_cvtph_ps","_mm256_maskz_cvtps_epi32","_mm256_maskz_cvtps_epi64","_mm256_maskz_cvtps_epu32","_mm256_maskz_cvtps_epu64","_mm256_maskz_cvtps_ph","_mm256_maskz_cvtsepi16_epi8","_mm256_maskz_cvtsepi32_epi16","_mm256_maskz_cvtsepi32_epi8","_mm256_maskz_cvtsepi64_epi16","_mm256_maskz_cvtsepi64_epi32","_mm256_maskz_cvtsepi64_epi8","_mm256_maskz_cvttpd_epi32","_mm256_maskz_cvttpd_epi64","_mm256_maskz_cvttpd_epu32","_mm256_maskz_cvttpd_epu64","_mm256_maskz_cvttph_epi16","_mm256_maskz_cvttph_epi32","_mm256_maskz_cvttph_epi64","_mm256_maskz_cvttph_epu16","_mm256_maskz_cvttph_epu32","_mm256_maskz_cvttph_epu64","_mm256_maskz_cvttps_epi32","_mm256_maskz_cvttps_epi64","_mm256_maskz_cvttps_epu32","_mm256_maskz_cvttps_epu64","_mm256_maskz_cvtusepi16_epi8","_mm256_maskz_cvtusepi32_epi16","_mm256_maskz_cvtusepi32_epi8","_mm256_maskz_cvtusepi64_epi16","_mm256_maskz_cvtusepi64_epi32","_mm256_maskz_cvtusepi64_epi8","_mm256_maskz_cvtxph_ps","_mm256_maskz_cvtxps_ph","_mm256_maskz_dbsad_epu8","_mm256_maskz_div_pd","_mm256_maskz_div_ph","_mm256_maskz_div_ps","_mm256_maskz_dpbf16_ps","_mm256_maskz_dpbusd_epi32","_mm256_maskz_dpbusds_epi32","_mm256_maskz_dpwssd_epi32","_mm256_maskz_dpwssds_epi32","_mm256_maskz_expand_epi16","_mm256_maskz_expand_epi32","_mm256_maskz_expand_epi64","_mm256_maskz_expand_epi8","_mm256_maskz_expand_pd","_mm256_maskz_expand_ps","_mm256_maskz_expandloadu_epi16","_mm256_maskz_expandloadu_epi32","_mm256_maskz_expandloadu_epi64","_mm256_maskz_expandloadu_epi8","_mm256_maskz_expandloadu_pd","_mm256_maskz_expandloadu_ps","_mm256_maskz_extractf32x4_ps","_mm256_maskz_extractf64x2_pd","_mm256_maskz_extracti32x4_epi32","_mm256_maskz_extracti64x2_epi64","_mm256_maskz_fcmadd_pch","_mm256_maskz_fcmul_pch","_mm256_maskz_fixupimm_pd","_mm256_maskz_fixupimm_ps","_mm256_maskz_fmadd_pch","_mm256_maskz_fmadd_pd","_mm256_maskz_fmadd_ph","_mm256_maskz_fmadd_ps","_mm256_maskz_fmaddsub_pd","_mm256_maskz_fmaddsub_ph","_mm256_maskz_fmaddsub_ps","_mm256_maskz_fmsub_pd","_mm256_maskz_fmsub_ph","_mm256_maskz_fmsub_ps","_mm256_maskz_fmsubadd_pd","_mm256_maskz_fmsubadd_ph","_mm256_maskz_fmsubadd_ps","_mm256_maskz_fmul_pch","_mm256_maskz_fnmadd_pd","_mm256_maskz_fnmadd_ph","_mm256_maskz_fnmadd_ps","_mm256_maskz_fnmsub_pd","_mm256_maskz_fnmsub_ph","_mm256_maskz_fnmsub_ps","_mm256_maskz_getexp_pd","_mm256_maskz_getexp_ph","_mm256_maskz_getexp_ps","_mm256_maskz_getmant_pd","_mm256_maskz_getmant_ph","_mm256_maskz_getmant_ps","_mm256_maskz_gf2p8affine_epi64_epi8","_mm256_maskz_gf2p8affineinv_epi64_epi8","_mm256_maskz_gf2p8mul_epi8","_mm256_maskz_insertf32x4","_mm256_maskz_insertf64x2","_mm256_maskz_inserti32x4","_mm256_maskz_inserti64x2","_mm256_maskz_load_epi32","_mm256_maskz_load_epi64","_mm256_maskz_load_pd","_mm256_maskz_load_ps","_mm256_maskz_loadu_epi16","_mm256_maskz_loadu_epi32","_mm256_maskz_loadu_epi64","_mm256_maskz_loadu_epi8","_mm256_maskz_loadu_pd","_mm256_maskz_loadu_ps","_mm256_maskz_lzcnt_epi32","_mm256_maskz_lzcnt_epi64","_mm256_maskz_madd52hi_epu64","_mm256_maskz_madd52lo_epu64","_mm256_maskz_madd_epi16","_mm256_maskz_maddubs_epi16","_mm256_maskz_max_epi16","_mm256_maskz_max_epi32","_mm256_maskz_max_epi64","_mm256_maskz_max_epi8","_mm256_maskz_max_epu16","_mm256_maskz_max_epu32","_mm256_maskz_max_epu64","_mm256_maskz_max_epu8","_mm256_maskz_max_pd","_mm256_maskz_max_ph","_mm256_maskz_max_ps","_mm256_maskz_min_epi16","_mm256_maskz_min_epi32","_mm256_maskz_min_epi64","_mm256_maskz_min_epi8","_mm256_maskz_min_epu16","_mm256_maskz_min_epu32","_mm256_maskz_min_epu64","_mm256_maskz_min_epu8","_mm256_maskz_min_pd","_mm256_maskz_min_ph","_mm256_maskz_min_ps","_mm256_maskz_mov_epi16","_mm256_maskz_mov_epi32","_mm256_maskz_mov_epi64","_mm256_maskz_mov_epi8","_mm256_maskz_mov_pd","_mm256_maskz_mov_ps","_mm256_maskz_movedup_pd","_mm256_maskz_movehdup_ps","_mm256_maskz_moveldup_ps","_mm256_maskz_mul_epi32","_mm256_maskz_mul_epu32","_mm256_maskz_mul_pch","_mm256_maskz_mul_pd","_mm256_maskz_mul_ph","_mm256_maskz_mul_ps","_mm256_maskz_mulhi_epi16","_mm256_maskz_mulhi_epu16","_mm256_maskz_mulhrs_epi16","_mm256_maskz_mullo_epi16","_mm256_maskz_mullo_epi32","_mm256_maskz_mullo_epi64","_mm256_maskz_multishift_epi64_epi8","_mm256_maskz_or_epi32","_mm256_maskz_or_epi64","_mm256_maskz_or_pd","_mm256_maskz_or_ps","_mm256_maskz_packs_epi16","_mm256_maskz_packs_epi32","_mm256_maskz_packus_epi16","_mm256_maskz_packus_epi32","_mm256_maskz_permute_pd","_mm256_maskz_permute_ps","_mm256_maskz_permutevar_pd","_mm256_maskz_permutevar_ps","_mm256_maskz_permutex2var_epi16","_mm256_maskz_permutex2var_epi32","_mm256_maskz_permutex2var_epi64","_mm256_maskz_permutex2var_epi8","_mm256_maskz_permutex2var_pd","_mm256_maskz_permutex2var_ps","_mm256_maskz_permutex_epi64","_mm256_maskz_permutex_pd","_mm256_maskz_permutexvar_epi16","_mm256_maskz_permutexvar_epi32","_mm256_maskz_permutexvar_epi64","_mm256_maskz_permutexvar_epi8","_mm256_maskz_permutexvar_pd","_mm256_maskz_permutexvar_ps","_mm256_maskz_popcnt_epi16","_mm256_maskz_popcnt_epi32","_mm256_maskz_popcnt_epi64","_mm256_maskz_popcnt_epi8","_mm256_maskz_range_pd","_mm256_maskz_range_ps","_mm256_maskz_rcp14_pd","_mm256_maskz_rcp14_ps","_mm256_maskz_rcp_ph","_mm256_maskz_reduce_pd","_mm256_maskz_reduce_ph","_mm256_maskz_reduce_ps","_mm256_maskz_rol_epi32","_mm256_maskz_rol_epi64","_mm256_maskz_rolv_epi32","_mm256_maskz_rolv_epi64","_mm256_maskz_ror_epi32","_mm256_maskz_ror_epi64","_mm256_maskz_rorv_epi32","_mm256_maskz_rorv_epi64","_mm256_maskz_roundscale_pd","_mm256_maskz_roundscale_ph","_mm256_maskz_roundscale_ps","_mm256_maskz_rsqrt14_pd","_mm256_maskz_rsqrt14_ps","_mm256_maskz_rsqrt_ph","_mm256_maskz_scalef_pd","_mm256_maskz_scalef_ph","_mm256_maskz_scalef_ps","_mm256_maskz_set1_epi16","_mm256_maskz_set1_epi32","_mm256_maskz_set1_epi64","_mm256_maskz_set1_epi8","_mm256_maskz_shldi_epi16","_mm256_maskz_shldi_epi32","_mm256_maskz_shldi_epi64","_mm256_maskz_shldv_epi16","_mm256_maskz_shldv_epi32","_mm256_maskz_shldv_epi64","_mm256_maskz_shrdi_epi16","_mm256_maskz_shrdi_epi32","_mm256_maskz_shrdi_epi64","_mm256_maskz_shrdv_epi16","_mm256_maskz_shrdv_epi32","_mm256_maskz_shrdv_epi64","_mm256_maskz_shuffle_epi32","_mm256_maskz_shuffle_epi8","_mm256_maskz_shuffle_f32x4","_mm256_maskz_shuffle_f64x2","_mm256_maskz_shuffle_i32x4","_mm256_maskz_shuffle_i64x2","_mm256_maskz_shuffle_pd","_mm256_maskz_shuffle_ps","_mm256_maskz_shufflehi_epi16","_mm256_maskz_shufflelo_epi16","_mm256_maskz_sll_epi16","_mm256_maskz_sll_epi32","_mm256_maskz_sll_epi64","_mm256_maskz_slli_epi16","_mm256_maskz_slli_epi32","_mm256_maskz_slli_epi64","_mm256_maskz_sllv_epi16","_mm256_maskz_sllv_epi32","_mm256_maskz_sllv_epi64","_mm256_maskz_sqrt_pd","_mm256_maskz_sqrt_ph","_mm256_maskz_sqrt_ps","_mm256_maskz_sra_epi16","_mm256_maskz_sra_epi32","_mm256_maskz_sra_epi64","_mm256_maskz_srai_epi16","_mm256_maskz_srai_epi32","_mm256_maskz_srai_epi64","_mm256_maskz_srav_epi16","_mm256_maskz_srav_epi32","_mm256_maskz_srav_epi64","_mm256_maskz_srl_epi16","_mm256_maskz_srl_epi32","_mm256_maskz_srl_epi64","_mm256_maskz_srli_epi16","_mm256_maskz_srli_epi32","_mm256_maskz_srli_epi64","_mm256_maskz_srlv_epi16","_mm256_maskz_srlv_epi32","_mm256_maskz_srlv_epi64","_mm256_maskz_sub_epi16","_mm256_maskz_sub_epi32","_mm256_maskz_sub_epi64","_mm256_maskz_sub_epi8","_mm256_maskz_sub_pd","_mm256_maskz_sub_ph","_mm256_maskz_sub_ps","_mm256_maskz_subs_epi16","_mm256_maskz_subs_epi8","_mm256_maskz_subs_epu16","_mm256_maskz_subs_epu8","_mm256_maskz_ternarylogic_epi32","_mm256_maskz_ternarylogic_epi64","_mm256_maskz_unpackhi_epi16","_mm256_maskz_unpackhi_epi32","_mm256_maskz_unpackhi_epi64","_mm256_maskz_unpackhi_epi8","_mm256_maskz_unpackhi_pd","_mm256_maskz_unpackhi_ps","_mm256_maskz_unpacklo_epi16","_mm256_maskz_unpacklo_epi32","_mm256_maskz_unpacklo_epi64","_mm256_maskz_unpacklo_epi8","_mm256_maskz_unpacklo_pd","_mm256_maskz_unpacklo_ps","_mm256_maskz_xor_epi32","_mm256_maskz_xor_epi64","_mm256_maskz_xor_pd","_mm256_maskz_xor_ps","_mm256_max_epi16","_mm256_max_epi32","_mm256_max_epi64","_mm256_max_epi8","_mm256_max_epu16","_mm256_max_epu32","_mm256_max_epu64","_mm256_max_epu8","_mm256_max_pd","_mm256_max_ph","_mm256_max_ps","_mm256_min_epi16","_mm256_min_epi32","_mm256_min_epi64","_mm256_min_epi8","_mm256_min_epu16","_mm256_min_epu32","_mm256_min_epu64","_mm256_min_epu8","_mm256_min_pd","_mm256_min_ph","_mm256_min_ps","_mm256_mmask_i32gather_epi32","_mm256_mmask_i32gather_epi64","_mm256_mmask_i32gather_pd","_mm256_mmask_i32gather_ps","_mm256_mmask_i64gather_epi32","_mm256_mmask_i64gather_epi64","_mm256_mmask_i64gather_pd","_mm256_mmask_i64gather_ps","_mm256_movedup_pd","_mm256_movehdup_ps","_mm256_moveldup_ps","_mm256_movemask_epi8","_mm256_movemask_pd","_mm256_movemask_ps","_mm256_movepi16_mask","_mm256_movepi32_mask","_mm256_movepi64_mask","_mm256_movepi8_mask","_mm256_movm_epi16","_mm256_movm_epi32","_mm256_movm_epi64","_mm256_movm_epi8","_mm256_mpsadbw_epu8","_mm256_mul_epi32","_mm256_mul_epu32","_mm256_mul_pch","_mm256_mul_pd","_mm256_mul_ph","_mm256_mul_ps","_mm256_mulhi_epi16","_mm256_mulhi_epu16","_mm256_mulhrs_epi16","_mm256_mullo_epi16","_mm256_mullo_epi32","_mm256_mullo_epi64","_mm256_multishift_epi64_epi8","_mm256_or_epi32","_mm256_or_epi64","_mm256_or_pd","_mm256_or_ps","_mm256_or_si256","_mm256_packs_epi16","_mm256_packs_epi32","_mm256_packus_epi16","_mm256_packus_epi32","_mm256_permute2f128_pd","_mm256_permute2f128_ps","_mm256_permute2f128_si256","_mm256_permute2x128_si256","_mm256_permute4x64_epi64","_mm256_permute4x64_pd","_mm256_permute_pd","_mm256_permute_ps","_mm256_permutevar8x32_epi32","_mm256_permutevar8x32_ps","_mm256_permutevar_pd","_mm256_permutevar_ps","_mm256_permutex2var_epi16","_mm256_permutex2var_epi32","_mm256_permutex2var_epi64","_mm256_permutex2var_epi8","_mm256_permutex2var_pd","_mm256_permutex2var_ph","_mm256_permutex2var_ps","_mm256_permutex_epi64","_mm256_permutex_pd","_mm256_permutexvar_epi16","_mm256_permutexvar_epi32","_mm256_permutexvar_epi64","_mm256_permutexvar_epi8","_mm256_permutexvar_pd","_mm256_permutexvar_ph","_mm256_permutexvar_ps","_mm256_popcnt_epi16","_mm256_popcnt_epi32","_mm256_popcnt_epi64","_mm256_popcnt_epi8","_mm256_range_pd","_mm256_range_ps","_mm256_rcp14_pd","_mm256_rcp14_ps","_mm256_rcp_ph","_mm256_rcp_ps","_mm256_reduce_add_epi16","_mm256_reduce_add_epi8","_mm256_reduce_add_ph","_mm256_reduce_and_epi16","_mm256_reduce_and_epi8","_mm256_reduce_max_epi16","_mm256_reduce_max_epi8","_mm256_reduce_max_epu16","_mm256_reduce_max_epu8","_mm256_reduce_max_ph","_mm256_reduce_min_epi16","_mm256_reduce_min_epi8","_mm256_reduce_min_epu16","_mm256_reduce_min_epu8","_mm256_reduce_min_ph","_mm256_reduce_mul_epi16","_mm256_reduce_mul_epi8","_mm256_reduce_mul_ph","_mm256_reduce_or_epi16","_mm256_reduce_or_epi8","_mm256_reduce_pd","_mm256_reduce_ph","_mm256_reduce_ps","_mm256_rol_epi32","_mm256_rol_epi64","_mm256_rolv_epi32","_mm256_rolv_epi64","_mm256_ror_epi32","_mm256_ror_epi64","_mm256_rorv_epi32","_mm256_rorv_epi64","_mm256_round_pd","_mm256_round_ps","_mm256_roundscale_pd","_mm256_roundscale_ph","_mm256_roundscale_ps","_mm256_rsqrt14_pd","_mm256_rsqrt14_ps","_mm256_rsqrt_ph","_mm256_rsqrt_ps","_mm256_sad_epu8","_mm256_scalef_pd","_mm256_scalef_ph","_mm256_scalef_ps","_mm256_set1_epi16","_mm256_set1_epi32","_mm256_set1_epi64x","_mm256_set1_epi8","_mm256_set1_pd","_mm256_set1_ph","_mm256_set1_ps","_mm256_set_epi16","_mm256_set_epi32","_mm256_set_epi64x","_mm256_set_epi8","_mm256_set_m128","_mm256_set_m128d","_mm256_set_m128i","_mm256_set_pd","_mm256_set_ph","_mm256_set_ps","_mm256_setr_epi16","_mm256_setr_epi32","_mm256_setr_epi64x","_mm256_setr_epi8","_mm256_setr_m128","_mm256_setr_m128d","_mm256_setr_m128i","_mm256_setr_pd","_mm256_setr_ph","_mm256_setr_ps","_mm256_setzero_pd","_mm256_setzero_ph","_mm256_setzero_ps","_mm256_setzero_si256","_mm256_shldi_epi16","_mm256_shldi_epi32","_mm256_shldi_epi64","_mm256_shldv_epi16","_mm256_shldv_epi32","_mm256_shldv_epi64","_mm256_shrdi_epi16","_mm256_shrdi_epi32","_mm256_shrdi_epi64","_mm256_shrdv_epi16","_mm256_shrdv_epi32","_mm256_shrdv_epi64","_mm256_shuffle_epi32","_mm256_shuffle_epi8","_mm256_shuffle_f32x4","_mm256_shuffle_f64x2","_mm256_shuffle_i32x4","_mm256_shuffle_i64x2","_mm256_shuffle_pd","_mm256_shuffle_ps","_mm256_shufflehi_epi16","_mm256_shufflelo_epi16","_mm256_sign_epi16","_mm256_sign_epi32","_mm256_sign_epi8","_mm256_sll_epi16","_mm256_sll_epi32","_mm256_sll_epi64","_mm256_slli_epi16","_mm256_slli_epi32","_mm256_slli_epi64","_mm256_slli_si256","_mm256_sllv_epi16","_mm256_sllv_epi32","_mm256_sllv_epi64","_mm256_sqrt_pd","_mm256_sqrt_ph","_mm256_sqrt_ps","_mm256_sra_epi16","_mm256_sra_epi32","_mm256_sra_epi64","_mm256_srai_epi16","_mm256_srai_epi32","_mm256_srai_epi64","_mm256_srav_epi16","_mm256_srav_epi32","_mm256_srav_epi64","_mm256_srl_epi16","_mm256_srl_epi32","_mm256_srl_epi64","_mm256_srli_epi16","_mm256_srli_epi32","_mm256_srli_epi64","_mm256_srli_si256","_mm256_srlv_epi16","_mm256_srlv_epi32","_mm256_srlv_epi64","_mm256_store_epi32","_mm256_store_epi64","_mm256_store_pd","_mm256_store_ph","_mm256_store_ps","_mm256_store_si256","_mm256_storeu2_m128","_mm256_storeu2_m128d","_mm256_storeu2_m128i","_mm256_storeu_epi16","_mm256_storeu_epi32","_mm256_storeu_epi64","_mm256_storeu_epi8","_mm256_storeu_pd","_mm256_storeu_ph","_mm256_storeu_ps","_mm256_storeu_si256","_mm256_stream_load_si256","_mm256_stream_pd","_mm256_stream_ps","_mm256_stream_si256","_mm256_sub_epi16","_mm256_sub_epi32","_mm256_sub_epi64","_mm256_sub_epi8","_mm256_sub_pd","_mm256_sub_ph","_mm256_sub_ps","_mm256_subs_epi16","_mm256_subs_epi8","_mm256_subs_epu16","_mm256_subs_epu8","_mm256_ternarylogic_epi32","_mm256_ternarylogic_epi64","_mm256_test_epi16_mask","_mm256_test_epi32_mask","_mm256_test_epi64_mask","_mm256_test_epi8_mask","_mm256_testc_pd","_mm256_testc_ps","_mm256_testc_si256","_mm256_testn_epi16_mask","_mm256_testn_epi32_mask","_mm256_testn_epi64_mask","_mm256_testn_epi8_mask","_mm256_testnzc_pd","_mm256_testnzc_ps","_mm256_testnzc_si256","_mm256_testz_pd","_mm256_testz_ps","_mm256_testz_si256","_mm256_undefined_pd","_mm256_undefined_ph","_mm256_undefined_ps","_mm256_undefined_si256","_mm256_unpackhi_epi16","_mm256_unpackhi_epi32","_mm256_unpackhi_epi64","_mm256_unpackhi_epi8","_mm256_unpackhi_pd","_mm256_unpackhi_ps","_mm256_unpacklo_epi16","_mm256_unpacklo_epi32","_mm256_unpacklo_epi64","_mm256_unpacklo_epi8","_mm256_unpacklo_pd","_mm256_unpacklo_ps","_mm256_xor_epi32","_mm256_xor_epi64","_mm256_xor_pd","_mm256_xor_ps","_mm256_xor_si256","_mm256_zeroall","_mm256_zeroupper","_mm256_zextpd128_pd256","_mm256_zextph128_ph256","_mm256_zextps128_ps256","_mm256_zextsi128_si256","_mm512_abs_epi16","_mm512_abs_epi32","_mm512_abs_epi64","_mm512_abs_epi8","_mm512_abs_pd","_mm512_abs_ph","_mm512_abs_ps","_mm512_add_epi16","_mm512_add_epi32","_mm512_add_epi64","_mm512_add_epi8","_mm512_add_pd","_mm512_add_ph","_mm512_add_ps","_mm512_add_round_pd","_mm512_add_round_ph","_mm512_add_round_ps","_mm512_adds_epi16","_mm512_adds_epi8","_mm512_adds_epu16","_mm512_adds_epu8","_mm512_aesdec_epi128","_mm512_aesdeclast_epi128","_mm512_aesenc_epi128","_mm512_aesenclast_epi128","_mm512_alignr_epi32","_mm512_alignr_epi64","_mm512_alignr_epi8","_mm512_and_epi32","_mm512_and_epi64","_mm512_and_pd","_mm512_and_ps","_mm512_and_si512","_mm512_andnot_epi32","_mm512_andnot_epi64","_mm512_andnot_pd","_mm512_andnot_ps","_mm512_andnot_si512","_mm512_avg_epu16","_mm512_avg_epu8","_mm512_bitshuffle_epi64_mask","_mm512_broadcast_f32x2","_mm512_broadcast_f32x4","_mm512_broadcast_f32x8","_mm512_broadcast_f64x2","_mm512_broadcast_f64x4","_mm512_broadcast_i32x2","_mm512_broadcast_i32x4","_mm512_broadcast_i32x8","_mm512_broadcast_i64x2","_mm512_broadcast_i64x4","_mm512_broadcastb_epi8","_mm512_broadcastd_epi32","_mm512_broadcastmb_epi64","_mm512_broadcastmw_epi32","_mm512_broadcastq_epi64","_mm512_broadcastsd_pd","_mm512_broadcastss_ps","_mm512_broadcastw_epi16","_mm512_bslli_epi128","_mm512_bsrli_epi128","_mm512_castpd128_pd512","_mm512_castpd256_pd512","_mm512_castpd512_pd128","_mm512_castpd512_pd256","_mm512_castpd_ph","_mm512_castpd_ps","_mm512_castpd_si512","_mm512_castph128_ph512","_mm512_castph256_ph512","_mm512_castph512_ph128","_mm512_castph512_ph256","_mm512_castph_pd","_mm512_castph_ps","_mm512_castph_si512","_mm512_castps128_ps512","_mm512_castps256_ps512","_mm512_castps512_ps128","_mm512_castps512_ps256","_mm512_castps_pd","_mm512_castps_ph","_mm512_castps_si512","_mm512_castsi128_si512","_mm512_castsi256_si512","_mm512_castsi512_pd","_mm512_castsi512_ph","_mm512_castsi512_ps","_mm512_castsi512_si128","_mm512_castsi512_si256","_mm512_clmulepi64_epi128","_mm512_cmp_epi16_mask","_mm512_cmp_epi32_mask","_mm512_cmp_epi64_mask","_mm512_cmp_epi8_mask","_mm512_cmp_epu16_mask","_mm512_cmp_epu32_mask","_mm512_cmp_epu64_mask","_mm512_cmp_epu8_mask","_mm512_cmp_pd_mask","_mm512_cmp_ph_mask","_mm512_cmp_ps_mask","_mm512_cmp_round_pd_mask","_mm512_cmp_round_ph_mask","_mm512_cmp_round_ps_mask","_mm512_cmpeq_epi16_mask","_mm512_cmpeq_epi32_mask","_mm512_cmpeq_epi64_mask","_mm512_cmpeq_epi8_mask","_mm512_cmpeq_epu16_mask","_mm512_cmpeq_epu32_mask","_mm512_cmpeq_epu64_mask","_mm512_cmpeq_epu8_mask","_mm512_cmpeq_pd_mask","_mm512_cmpeq_ps_mask","_mm512_cmpge_epi16_mask","_mm512_cmpge_epi32_mask","_mm512_cmpge_epi64_mask","_mm512_cmpge_epi8_mask","_mm512_cmpge_epu16_mask","_mm512_cmpge_epu32_mask","_mm512_cmpge_epu64_mask","_mm512_cmpge_epu8_mask","_mm512_cmpgt_epi16_mask","_mm512_cmpgt_epi32_mask","_mm512_cmpgt_epi64_mask","_mm512_cmpgt_epi8_mask","_mm512_cmpgt_epu16_mask","_mm512_cmpgt_epu32_mask","_mm512_cmpgt_epu64_mask","_mm512_cmpgt_epu8_mask","_mm512_cmple_epi16_mask","_mm512_cmple_epi32_mask","_mm512_cmple_epi64_mask","_mm512_cmple_epi8_mask","_mm512_cmple_epu16_mask","_mm512_cmple_epu32_mask","_mm512_cmple_epu64_mask","_mm512_cmple_epu8_mask","_mm512_cmple_pd_mask","_mm512_cmple_ps_mask","_mm512_cmplt_epi16_mask","_mm512_cmplt_epi32_mask","_mm512_cmplt_epi64_mask","_mm512_cmplt_epi8_mask","_mm512_cmplt_epu16_mask","_mm512_cmplt_epu32_mask","_mm512_cmplt_epu64_mask","_mm512_cmplt_epu8_mask","_mm512_cmplt_pd_mask","_mm512_cmplt_ps_mask","_mm512_cmpneq_epi16_mask","_mm512_cmpneq_epi32_mask","_mm512_cmpneq_epi64_mask","_mm512_cmpneq_epi8_mask","_mm512_cmpneq_epu16_mask","_mm512_cmpneq_epu32_mask","_mm512_cmpneq_epu64_mask","_mm512_cmpneq_epu8_mask","_mm512_cmpneq_pd_mask","_mm512_cmpneq_ps_mask","_mm512_cmpnle_pd_mask","_mm512_cmpnle_ps_mask","_mm512_cmpnlt_pd_mask","_mm512_cmpnlt_ps_mask","_mm512_cmpord_pd_mask","_mm512_cmpord_ps_mask","_mm512_cmpunord_pd_mask","_mm512_cmpunord_ps_mask","_mm512_cmul_pch","_mm512_cmul_round_pch","_mm512_conflict_epi32","_mm512_conflict_epi64","_mm512_conj_pch","_mm512_cvt_roundepi16_ph","_mm512_cvt_roundepi32_ph","_mm512_cvt_roundepi32_ps","_mm512_cvt_roundepi64_pd","_mm512_cvt_roundepi64_ph","_mm512_cvt_roundepi64_ps","_mm512_cvt_roundepu16_ph","_mm512_cvt_roundepu32_ph","_mm512_cvt_roundepu32_ps","_mm512_cvt_roundepu64_pd","_mm512_cvt_roundepu64_ph","_mm512_cvt_roundepu64_ps","_mm512_cvt_roundpd_epi32","_mm512_cvt_roundpd_epi64","_mm512_cvt_roundpd_epu32","_mm512_cvt_roundpd_epu64","_mm512_cvt_roundpd_ph","_mm512_cvt_roundpd_ps","_mm512_cvt_roundph_epi16","_mm512_cvt_roundph_epi32","_mm512_cvt_roundph_epi64","_mm512_cvt_roundph_epu16","_mm512_cvt_roundph_epu32","_mm512_cvt_roundph_epu64","_mm512_cvt_roundph_pd","_mm512_cvt_roundph_ps","_mm512_cvt_roundps_epi32","_mm512_cvt_roundps_epi64","_mm512_cvt_roundps_epu32","_mm512_cvt_roundps_epu64","_mm512_cvt_roundps_pd","_mm512_cvt_roundps_ph","_mm512_cvtepi16_epi32","_mm512_cvtepi16_epi64","_mm512_cvtepi16_epi8","_mm512_cvtepi16_ph","_mm512_cvtepi32_epi16","_mm512_cvtepi32_epi64","_mm512_cvtepi32_epi8","_mm512_cvtepi32_pd","_mm512_cvtepi32_ph","_mm512_cvtepi32_ps","_mm512_cvtepi32lo_pd","_mm512_cvtepi64_epi16","_mm512_cvtepi64_epi32","_mm512_cvtepi64_epi8","_mm512_cvtepi64_pd","_mm512_cvtepi64_ph","_mm512_cvtepi64_ps","_mm512_cvtepi8_epi16","_mm512_cvtepi8_epi32","_mm512_cvtepi8_epi64","_mm512_cvtepu16_epi32","_mm512_cvtepu16_epi64","_mm512_cvtepu16_ph","_mm512_cvtepu32_epi64","_mm512_cvtepu32_pd","_mm512_cvtepu32_ph","_mm512_cvtepu32_ps","_mm512_cvtepu32lo_pd","_mm512_cvtepu64_pd","_mm512_cvtepu64_ph","_mm512_cvtepu64_ps","_mm512_cvtepu8_epi16","_mm512_cvtepu8_epi32","_mm512_cvtepu8_epi64","_mm512_cvtne2ps_pbh","_mm512_cvtneps_pbh","_mm512_cvtpbh_ps","_mm512_cvtpd_epi32","_mm512_cvtpd_epi64","_mm512_cvtpd_epu32","_mm512_cvtpd_epu64","_mm512_cvtpd_ph","_mm512_cvtpd_ps","_mm512_cvtpd_pslo","_mm512_cvtph_epi16","_mm512_cvtph_epi32","_mm512_cvtph_epi64","_mm512_cvtph_epu16","_mm512_cvtph_epu32","_mm512_cvtph_epu64","_mm512_cvtph_pd","_mm512_cvtph_ps","_mm512_cvtps_epi32","_mm512_cvtps_epi64","_mm512_cvtps_epu32","_mm512_cvtps_epu64","_mm512_cvtps_pd","_mm512_cvtps_ph","_mm512_cvtpslo_pd","_mm512_cvtsd_f64","_mm512_cvtsepi16_epi8","_mm512_cvtsepi32_epi16","_mm512_cvtsepi32_epi8","_mm512_cvtsepi64_epi16","_mm512_cvtsepi64_epi32","_mm512_cvtsepi64_epi8","_mm512_cvtsh_h","_mm512_cvtsi512_si32","_mm512_cvtss_f32","_mm512_cvtt_roundpd_epi32","_mm512_cvtt_roundpd_epi64","_mm512_cvtt_roundpd_epu32","_mm512_cvtt_roundpd_epu64","_mm512_cvtt_roundph_epi16","_mm512_cvtt_roundph_epi32","_mm512_cvtt_roundph_epi64","_mm512_cvtt_roundph_epu16","_mm512_cvtt_roundph_epu32","_mm512_cvtt_roundph_epu64","_mm512_cvtt_roundps_epi32","_mm512_cvtt_roundps_epi64","_mm512_cvtt_roundps_epu32","_mm512_cvtt_roundps_epu64","_mm512_cvttpd_epi32","_mm512_cvttpd_epi64","_mm512_cvttpd_epu32","_mm512_cvttpd_epu64","_mm512_cvttph_epi16","_mm512_cvttph_epi32","_mm512_cvttph_epi64","_mm512_cvttph_epu16","_mm512_cvttph_epu32","_mm512_cvttph_epu64","_mm512_cvttps_epi32","_mm512_cvttps_epi64","_mm512_cvttps_epu32","_mm512_cvttps_epu64","_mm512_cvtusepi16_epi8","_mm512_cvtusepi32_epi16","_mm512_cvtusepi32_epi8","_mm512_cvtusepi64_epi16","_mm512_cvtusepi64_epi32","_mm512_cvtusepi64_epi8","_mm512_cvtx_roundph_ps","_mm512_cvtx_roundps_ph","_mm512_cvtxph_ps","_mm512_cvtxps_ph","_mm512_dbsad_epu8","_mm512_div_pd","_mm512_div_ph","_mm512_div_ps","_mm512_div_round_pd","_mm512_div_round_ph","_mm512_div_round_ps","_mm512_dpbf16_ps","_mm512_dpbusd_epi32","_mm512_dpbusds_epi32","_mm512_dpwssd_epi32","_mm512_dpwssds_epi32","_mm512_extractf32x4_ps","_mm512_extractf32x8_ps","_mm512_extractf64x2_pd","_mm512_extractf64x4_pd","_mm512_extracti32x4_epi32","_mm512_extracti32x8_epi32","_mm512_extracti64x2_epi64","_mm512_extracti64x4_epi64","_mm512_fcmadd_pch","_mm512_fcmadd_round_pch","_mm512_fcmul_pch","_mm512_fcmul_round_pch","_mm512_fixupimm_pd","_mm512_fixupimm_ps","_mm512_fixupimm_round_pd","_mm512_fixupimm_round_ps","_mm512_fmadd_pch","_mm512_fmadd_pd","_mm512_fmadd_ph","_mm512_fmadd_ps","_mm512_fmadd_round_pch","_mm512_fmadd_round_pd","_mm512_fmadd_round_ph","_mm512_fmadd_round_ps","_mm512_fmaddsub_pd","_mm512_fmaddsub_ph","_mm512_fmaddsub_ps","_mm512_fmaddsub_round_pd","_mm512_fmaddsub_round_ph","_mm512_fmaddsub_round_ps","_mm512_fmsub_pd","_mm512_fmsub_ph","_mm512_fmsub_ps","_mm512_fmsub_round_pd","_mm512_fmsub_round_ph","_mm512_fmsub_round_ps","_mm512_fmsubadd_pd","_mm512_fmsubadd_ph","_mm512_fmsubadd_ps","_mm512_fmsubadd_round_pd","_mm512_fmsubadd_round_ph","_mm512_fmsubadd_round_ps","_mm512_fmul_pch","_mm512_fmul_round_pch","_mm512_fnmadd_pd","_mm512_fnmadd_ph","_mm512_fnmadd_ps","_mm512_fnmadd_round_pd","_mm512_fnmadd_round_ph","_mm512_fnmadd_round_ps","_mm512_fnmsub_pd","_mm512_fnmsub_ph","_mm512_fnmsub_ps","_mm512_fnmsub_round_pd","_mm512_fnmsub_round_ph","_mm512_fnmsub_round_ps","_mm512_fpclass_pd_mask","_mm512_fpclass_ph_mask","_mm512_fpclass_ps_mask","_mm512_getexp_pd","_mm512_getexp_ph","_mm512_getexp_ps","_mm512_getexp_round_pd","_mm512_getexp_round_ph","_mm512_getexp_round_ps","_mm512_getmant_pd","_mm512_getmant_ph","_mm512_getmant_ps","_mm512_getmant_round_pd","_mm512_getmant_round_ph","_mm512_getmant_round_ps","_mm512_gf2p8affine_epi64_epi8","_mm512_gf2p8affineinv_epi64_epi8","_mm512_gf2p8mul_epi8","_mm512_i32gather_epi32","_mm512_i32gather_epi64","_mm512_i32gather_pd","_mm512_i32gather_ps","_mm512_i32logather_epi64","_mm512_i32logather_pd","_mm512_i32loscatter_epi64","_mm512_i32loscatter_pd","_mm512_i32scatter_epi32","_mm512_i32scatter_epi64","_mm512_i32scatter_pd","_mm512_i32scatter_ps","_mm512_i64gather_epi32","_mm512_i64gather_epi64","_mm512_i64gather_pd","_mm512_i64gather_ps","_mm512_i64scatter_epi32","_mm512_i64scatter_epi64","_mm512_i64scatter_pd","_mm512_i64scatter_ps","_mm512_insertf32x4","_mm512_insertf32x8","_mm512_insertf64x2","_mm512_insertf64x4","_mm512_inserti32x4","_mm512_inserti32x8","_mm512_inserti64x2","_mm512_inserti64x4","_mm512_int2mask","_mm512_kand","_mm512_kandn","_mm512_kmov","_mm512_knot","_mm512_kor","_mm512_kortestc","_mm512_kortestz","_mm512_kunpackb","_mm512_kunpackd","_mm512_kunpackw","_mm512_kxnor","_mm512_kxor","_mm512_load_epi32","_mm512_load_epi64","_mm512_load_pd","_mm512_load_ph","_mm512_load_ps","_mm512_load_si512","_mm512_loadu_epi16","_mm512_loadu_epi32","_mm512_loadu_epi64","_mm512_loadu_epi8","_mm512_loadu_pd","_mm512_loadu_ph","_mm512_loadu_ps","_mm512_loadu_si512","_mm512_lzcnt_epi32","_mm512_lzcnt_epi64","_mm512_madd52hi_epu64","_mm512_madd52lo_epu64","_mm512_madd_epi16","_mm512_maddubs_epi16","_mm512_mask2_permutex2var_epi16","_mm512_mask2_permutex2var_epi32","_mm512_mask2_permutex2var_epi64","_mm512_mask2_permutex2var_epi8","_mm512_mask2_permutex2var_pd","_mm512_mask2_permutex2var_ps","_mm512_mask2int","_mm512_mask3_fcmadd_pch","_mm512_mask3_fcmadd_round_pch","_mm512_mask3_fmadd_pch","_mm512_mask3_fmadd_pd","_mm512_mask3_fmadd_ph","_mm512_mask3_fmadd_ps","_mm512_mask3_fmadd_round_pch","_mm512_mask3_fmadd_round_pd","_mm512_mask3_fmadd_round_ph","_mm512_mask3_fmadd_round_ps","_mm512_mask3_fmaddsub_pd","_mm512_mask3_fmaddsub_ph","_mm512_mask3_fmaddsub_ps","_mm512_mask3_fmaddsub_round_pd","_mm512_mask3_fmaddsub_round_ph","_mm512_mask3_fmaddsub_round_ps","_mm512_mask3_fmsub_pd","_mm512_mask3_fmsub_ph","_mm512_mask3_fmsub_ps","_mm512_mask3_fmsub_round_pd","_mm512_mask3_fmsub_round_ph","_mm512_mask3_fmsub_round_ps","_mm512_mask3_fmsubadd_pd","_mm512_mask3_fmsubadd_ph","_mm512_mask3_fmsubadd_ps","_mm512_mask3_fmsubadd_round_pd","_mm512_mask3_fmsubadd_round_ph","_mm512_mask3_fmsubadd_round_ps","_mm512_mask3_fnmadd_pd","_mm512_mask3_fnmadd_ph","_mm512_mask3_fnmadd_ps","_mm512_mask3_fnmadd_round_pd","_mm512_mask3_fnmadd_round_ph","_mm512_mask3_fnmadd_round_ps","_mm512_mask3_fnmsub_pd","_mm512_mask3_fnmsub_ph","_mm512_mask3_fnmsub_ps","_mm512_mask3_fnmsub_round_pd","_mm512_mask3_fnmsub_round_ph","_mm512_mask3_fnmsub_round_ps","_mm512_mask_abs_epi16","_mm512_mask_abs_epi32","_mm512_mask_abs_epi64","_mm512_mask_abs_epi8","_mm512_mask_abs_pd","_mm512_mask_abs_ps","_mm512_mask_add_epi16","_mm512_mask_add_epi32","_mm512_mask_add_epi64","_mm512_mask_add_epi8","_mm512_mask_add_pd","_mm512_mask_add_ph","_mm512_mask_add_ps","_mm512_mask_add_round_pd","_mm512_mask_add_round_ph","_mm512_mask_add_round_ps","_mm512_mask_adds_epi16","_mm512_mask_adds_epi8","_mm512_mask_adds_epu16","_mm512_mask_adds_epu8","_mm512_mask_alignr_epi32","_mm512_mask_alignr_epi64","_mm512_mask_alignr_epi8","_mm512_mask_and_epi32","_mm512_mask_and_epi64","_mm512_mask_and_pd","_mm512_mask_and_ps","_mm512_mask_andnot_epi32","_mm512_mask_andnot_epi64","_mm512_mask_andnot_pd","_mm512_mask_andnot_ps","_mm512_mask_avg_epu16","_mm512_mask_avg_epu8","_mm512_mask_bitshuffle_epi64_mask","_mm512_mask_blend_epi16","_mm512_mask_blend_epi32","_mm512_mask_blend_epi64","_mm512_mask_blend_epi8","_mm512_mask_blend_pd","_mm512_mask_blend_ph","_mm512_mask_blend_ps","_mm512_mask_broadcast_f32x2","_mm512_mask_broadcast_f32x4","_mm512_mask_broadcast_f32x8","_mm512_mask_broadcast_f64x2","_mm512_mask_broadcast_f64x4","_mm512_mask_broadcast_i32x2","_mm512_mask_broadcast_i32x4","_mm512_mask_broadcast_i32x8","_mm512_mask_broadcast_i64x2","_mm512_mask_broadcast_i64x4","_mm512_mask_broadcastb_epi8","_mm512_mask_broadcastd_epi32","_mm512_mask_broadcastq_epi64","_mm512_mask_broadcastsd_pd","_mm512_mask_broadcastss_ps","_mm512_mask_broadcastw_epi16","_mm512_mask_cmp_epi16_mask","_mm512_mask_cmp_epi32_mask","_mm512_mask_cmp_epi64_mask","_mm512_mask_cmp_epi8_mask","_mm512_mask_cmp_epu16_mask","_mm512_mask_cmp_epu32_mask","_mm512_mask_cmp_epu64_mask","_mm512_mask_cmp_epu8_mask","_mm512_mask_cmp_pd_mask","_mm512_mask_cmp_ph_mask","_mm512_mask_cmp_ps_mask","_mm512_mask_cmp_round_pd_mask","_mm512_mask_cmp_round_ph_mask","_mm512_mask_cmp_round_ps_mask","_mm512_mask_cmpeq_epi16_mask","_mm512_mask_cmpeq_epi32_mask","_mm512_mask_cmpeq_epi64_mask","_mm512_mask_cmpeq_epi8_mask","_mm512_mask_cmpeq_epu16_mask","_mm512_mask_cmpeq_epu32_mask","_mm512_mask_cmpeq_epu64_mask","_mm512_mask_cmpeq_epu8_mask","_mm512_mask_cmpeq_pd_mask","_mm512_mask_cmpeq_ps_mask","_mm512_mask_cmpge_epi16_mask","_mm512_mask_cmpge_epi32_mask","_mm512_mask_cmpge_epi64_mask","_mm512_mask_cmpge_epi8_mask","_mm512_mask_cmpge_epu16_mask","_mm512_mask_cmpge_epu32_mask","_mm512_mask_cmpge_epu64_mask","_mm512_mask_cmpge_epu8_mask","_mm512_mask_cmpgt_epi16_mask","_mm512_mask_cmpgt_epi32_mask","_mm512_mask_cmpgt_epi64_mask","_mm512_mask_cmpgt_epi8_mask","_mm512_mask_cmpgt_epu16_mask","_mm512_mask_cmpgt_epu32_mask","_mm512_mask_cmpgt_epu64_mask","_mm512_mask_cmpgt_epu8_mask","_mm512_mask_cmple_epi16_mask","_mm512_mask_cmple_epi32_mask","_mm512_mask_cmple_epi64_mask","_mm512_mask_cmple_epi8_mask","_mm512_mask_cmple_epu16_mask","_mm512_mask_cmple_epu32_mask","_mm512_mask_cmple_epu64_mask","_mm512_mask_cmple_epu8_mask","_mm512_mask_cmple_pd_mask","_mm512_mask_cmple_ps_mask","_mm512_mask_cmplt_epi16_mask","_mm512_mask_cmplt_epi32_mask","_mm512_mask_cmplt_epi64_mask","_mm512_mask_cmplt_epi8_mask","_mm512_mask_cmplt_epu16_mask","_mm512_mask_cmplt_epu32_mask","_mm512_mask_cmplt_epu64_mask","_mm512_mask_cmplt_epu8_mask","_mm512_mask_cmplt_pd_mask","_mm512_mask_cmplt_ps_mask","_mm512_mask_cmpneq_epi16_mask","_mm512_mask_cmpneq_epi32_mask","_mm512_mask_cmpneq_epi64_mask","_mm512_mask_cmpneq_epi8_mask","_mm512_mask_cmpneq_epu16_mask","_mm512_mask_cmpneq_epu32_mask","_mm512_mask_cmpneq_epu64_mask","_mm512_mask_cmpneq_epu8_mask","_mm512_mask_cmpneq_pd_mask","_mm512_mask_cmpneq_ps_mask","_mm512_mask_cmpnle_pd_mask","_mm512_mask_cmpnle_ps_mask","_mm512_mask_cmpnlt_pd_mask","_mm512_mask_cmpnlt_ps_mask","_mm512_mask_cmpord_pd_mask","_mm512_mask_cmpord_ps_mask","_mm512_mask_cmpunord_pd_mask","_mm512_mask_cmpunord_ps_mask","_mm512_mask_cmul_pch","_mm512_mask_cmul_round_pch","_mm512_mask_compress_epi16","_mm512_mask_compress_epi32","_mm512_mask_compress_epi64","_mm512_mask_compress_epi8","_mm512_mask_compress_pd","_mm512_mask_compress_ps","_mm512_mask_compressstoreu_epi16","_mm512_mask_compressstoreu_epi32","_mm512_mask_compressstoreu_epi64","_mm512_mask_compressstoreu_epi8","_mm512_mask_compressstoreu_pd","_mm512_mask_compressstoreu_ps","_mm512_mask_conflict_epi32","_mm512_mask_conflict_epi64","_mm512_mask_conj_pch","_mm512_mask_cvt_roundepi16_ph","_mm512_mask_cvt_roundepi32_ph","_mm512_mask_cvt_roundepi32_ps","_mm512_mask_cvt_roundepi64_pd","_mm512_mask_cvt_roundepi64_ph","_mm512_mask_cvt_roundepi64_ps","_mm512_mask_cvt_roundepu16_ph","_mm512_mask_cvt_roundepu32_ph","_mm512_mask_cvt_roundepu32_ps","_mm512_mask_cvt_roundepu64_pd","_mm512_mask_cvt_roundepu64_ph","_mm512_mask_cvt_roundepu64_ps","_mm512_mask_cvt_roundpd_epi32","_mm512_mask_cvt_roundpd_epi64","_mm512_mask_cvt_roundpd_epu32","_mm512_mask_cvt_roundpd_epu64","_mm512_mask_cvt_roundpd_ph","_mm512_mask_cvt_roundpd_ps","_mm512_mask_cvt_roundph_epi16","_mm512_mask_cvt_roundph_epi32","_mm512_mask_cvt_roundph_epi64","_mm512_mask_cvt_roundph_epu16","_mm512_mask_cvt_roundph_epu32","_mm512_mask_cvt_roundph_epu64","_mm512_mask_cvt_roundph_pd","_mm512_mask_cvt_roundph_ps","_mm512_mask_cvt_roundps_epi32","_mm512_mask_cvt_roundps_epi64","_mm512_mask_cvt_roundps_epu32","_mm512_mask_cvt_roundps_epu64","_mm512_mask_cvt_roundps_pd","_mm512_mask_cvt_roundps_ph","_mm512_mask_cvtepi16_epi32","_mm512_mask_cvtepi16_epi64","_mm512_mask_cvtepi16_epi8","_mm512_mask_cvtepi16_ph","_mm512_mask_cvtepi16_storeu_epi8","_mm512_mask_cvtepi32_epi16","_mm512_mask_cvtepi32_epi64","_mm512_mask_cvtepi32_epi8","_mm512_mask_cvtepi32_pd","_mm512_mask_cvtepi32_ph","_mm512_mask_cvtepi32_ps","_mm512_mask_cvtepi32_storeu_epi16","_mm512_mask_cvtepi32_storeu_epi8","_mm512_mask_cvtepi32lo_pd","_mm512_mask_cvtepi64_epi16","_mm512_mask_cvtepi64_epi32","_mm512_mask_cvtepi64_epi8","_mm512_mask_cvtepi64_pd","_mm512_mask_cvtepi64_ph","_mm512_mask_cvtepi64_ps","_mm512_mask_cvtepi64_storeu_epi16","_mm512_mask_cvtepi64_storeu_epi32","_mm512_mask_cvtepi64_storeu_epi8","_mm512_mask_cvtepi8_epi16","_mm512_mask_cvtepi8_epi32","_mm512_mask_cvtepi8_epi64","_mm512_mask_cvtepu16_epi32","_mm512_mask_cvtepu16_epi64","_mm512_mask_cvtepu16_ph","_mm512_mask_cvtepu32_epi64","_mm512_mask_cvtepu32_pd","_mm512_mask_cvtepu32_ph","_mm512_mask_cvtepu32_ps","_mm512_mask_cvtepu32lo_pd","_mm512_mask_cvtepu64_pd","_mm512_mask_cvtepu64_ph","_mm512_mask_cvtepu64_ps","_mm512_mask_cvtepu8_epi16","_mm512_mask_cvtepu8_epi32","_mm512_mask_cvtepu8_epi64","_mm512_mask_cvtne2ps_pbh","_mm512_mask_cvtneps_pbh","_mm512_mask_cvtpbh_ps","_mm512_mask_cvtpd_epi32","_mm512_mask_cvtpd_epi64","_mm512_mask_cvtpd_epu32","_mm512_mask_cvtpd_epu64","_mm512_mask_cvtpd_ph","_mm512_mask_cvtpd_ps","_mm512_mask_cvtpd_pslo","_mm512_mask_cvtph_epi16","_mm512_mask_cvtph_epi32","_mm512_mask_cvtph_epi64","_mm512_mask_cvtph_epu16","_mm512_mask_cvtph_epu32","_mm512_mask_cvtph_epu64","_mm512_mask_cvtph_pd","_mm512_mask_cvtph_ps","_mm512_mask_cvtps_epi32","_mm512_mask_cvtps_epi64","_mm512_mask_cvtps_epu32","_mm512_mask_cvtps_epu64","_mm512_mask_cvtps_pd","_mm512_mask_cvtps_ph","_mm512_mask_cvtpslo_pd","_mm512_mask_cvtsepi16_epi8","_mm512_mask_cvtsepi16_storeu_epi8","_mm512_mask_cvtsepi32_epi16","_mm512_mask_cvtsepi32_epi8","_mm512_mask_cvtsepi32_storeu_epi16","_mm512_mask_cvtsepi32_storeu_epi8","_mm512_mask_cvtsepi64_epi16","_mm512_mask_cvtsepi64_epi32","_mm512_mask_cvtsepi64_epi8","_mm512_mask_cvtsepi64_storeu_epi16","_mm512_mask_cvtsepi64_storeu_epi32","_mm512_mask_cvtsepi64_storeu_epi8","_mm512_mask_cvtt_roundpd_epi32","_mm512_mask_cvtt_roundpd_epi64","_mm512_mask_cvtt_roundpd_epu32","_mm512_mask_cvtt_roundpd_epu64","_mm512_mask_cvtt_roundph_epi16","_mm512_mask_cvtt_roundph_epi32","_mm512_mask_cvtt_roundph_epi64","_mm512_mask_cvtt_roundph_epu16","_mm512_mask_cvtt_roundph_epu32","_mm512_mask_cvtt_roundph_epu64","_mm512_mask_cvtt_roundps_epi32","_mm512_mask_cvtt_roundps_epi64","_mm512_mask_cvtt_roundps_epu32","_mm512_mask_cvtt_roundps_epu64","_mm512_mask_cvttpd_epi32","_mm512_mask_cvttpd_epi64","_mm512_mask_cvttpd_epu32","_mm512_mask_cvttpd_epu64","_mm512_mask_cvttph_epi16","_mm512_mask_cvttph_epi32","_mm512_mask_cvttph_epi64","_mm512_mask_cvttph_epu16","_mm512_mask_cvttph_epu32","_mm512_mask_cvttph_epu64","_mm512_mask_cvttps_epi32","_mm512_mask_cvttps_epi64","_mm512_mask_cvttps_epu32","_mm512_mask_cvttps_epu64","_mm512_mask_cvtusepi16_epi8","_mm512_mask_cvtusepi16_storeu_epi8","_mm512_mask_cvtusepi32_epi16","_mm512_mask_cvtusepi32_epi8","_mm512_mask_cvtusepi32_storeu_epi16","_mm512_mask_cvtusepi32_storeu_epi8","_mm512_mask_cvtusepi64_epi16","_mm512_mask_cvtusepi64_epi32","_mm512_mask_cvtusepi64_epi8","_mm512_mask_cvtusepi64_storeu_epi16","_mm512_mask_cvtusepi64_storeu_epi32","_mm512_mask_cvtusepi64_storeu_epi8","_mm512_mask_cvtx_roundph_ps","_mm512_mask_cvtx_roundps_ph","_mm512_mask_cvtxph_ps","_mm512_mask_cvtxps_ph","_mm512_mask_dbsad_epu8","_mm512_mask_div_pd","_mm512_mask_div_ph","_mm512_mask_div_ps","_mm512_mask_div_round_pd","_mm512_mask_div_round_ph","_mm512_mask_div_round_ps","_mm512_mask_dpbf16_ps","_mm512_mask_dpbusd_epi32","_mm512_mask_dpbusds_epi32","_mm512_mask_dpwssd_epi32","_mm512_mask_dpwssds_epi32","_mm512_mask_expand_epi16","_mm512_mask_expand_epi32","_mm512_mask_expand_epi64","_mm512_mask_expand_epi8","_mm512_mask_expand_pd","_mm512_mask_expand_ps","_mm512_mask_expandloadu_epi16","_mm512_mask_expandloadu_epi32","_mm512_mask_expandloadu_epi64","_mm512_mask_expandloadu_epi8","_mm512_mask_expandloadu_pd","_mm512_mask_expandloadu_ps","_mm512_mask_extractf32x4_ps","_mm512_mask_extractf32x8_ps","_mm512_mask_extractf64x2_pd","_mm512_mask_extractf64x4_pd","_mm512_mask_extracti32x4_epi32","_mm512_mask_extracti32x8_epi32","_mm512_mask_extracti64x2_epi64","_mm512_mask_extracti64x4_epi64","_mm512_mask_fcmadd_pch","_mm512_mask_fcmadd_round_pch","_mm512_mask_fcmul_pch","_mm512_mask_fcmul_round_pch","_mm512_mask_fixupimm_pd","_mm512_mask_fixupimm_ps","_mm512_mask_fixupimm_round_pd","_mm512_mask_fixupimm_round_ps","_mm512_mask_fmadd_pch","_mm512_mask_fmadd_pd","_mm512_mask_fmadd_ph","_mm512_mask_fmadd_ps","_mm512_mask_fmadd_round_pch","_mm512_mask_fmadd_round_pd","_mm512_mask_fmadd_round_ph","_mm512_mask_fmadd_round_ps","_mm512_mask_fmaddsub_pd","_mm512_mask_fmaddsub_ph","_mm512_mask_fmaddsub_ps","_mm512_mask_fmaddsub_round_pd","_mm512_mask_fmaddsub_round_ph","_mm512_mask_fmaddsub_round_ps","_mm512_mask_fmsub_pd","_mm512_mask_fmsub_ph","_mm512_mask_fmsub_ps","_mm512_mask_fmsub_round_pd","_mm512_mask_fmsub_round_ph","_mm512_mask_fmsub_round_ps","_mm512_mask_fmsubadd_pd","_mm512_mask_fmsubadd_ph","_mm512_mask_fmsubadd_ps","_mm512_mask_fmsubadd_round_pd","_mm512_mask_fmsubadd_round_ph","_mm512_mask_fmsubadd_round_ps","_mm512_mask_fmul_pch","_mm512_mask_fmul_round_pch","_mm512_mask_fnmadd_pd","_mm512_mask_fnmadd_ph","_mm512_mask_fnmadd_ps","_mm512_mask_fnmadd_round_pd","_mm512_mask_fnmadd_round_ph","_mm512_mask_fnmadd_round_ps","_mm512_mask_fnmsub_pd","_mm512_mask_fnmsub_ph","_mm512_mask_fnmsub_ps","_mm512_mask_fnmsub_round_pd","_mm512_mask_fnmsub_round_ph","_mm512_mask_fnmsub_round_ps","_mm512_mask_fpclass_pd_mask","_mm512_mask_fpclass_ph_mask","_mm512_mask_fpclass_ps_mask","_mm512_mask_getexp_pd","_mm512_mask_getexp_ph","_mm512_mask_getexp_ps","_mm512_mask_getexp_round_pd","_mm512_mask_getexp_round_ph","_mm512_mask_getexp_round_ps","_mm512_mask_getmant_pd","_mm512_mask_getmant_ph","_mm512_mask_getmant_ps","_mm512_mask_getmant_round_pd","_mm512_mask_getmant_round_ph","_mm512_mask_getmant_round_ps","_mm512_mask_gf2p8affine_epi64_epi8","_mm512_mask_gf2p8affineinv_epi64_epi8","_mm512_mask_gf2p8mul_epi8","_mm512_mask_i32gather_epi32","_mm512_mask_i32gather_epi64","_mm512_mask_i32gather_pd","_mm512_mask_i32gather_ps","_mm512_mask_i32logather_epi64","_mm512_mask_i32logather_pd","_mm512_mask_i32loscatter_epi64","_mm512_mask_i32loscatter_pd","_mm512_mask_i32scatter_epi32","_mm512_mask_i32scatter_epi64","_mm512_mask_i32scatter_pd","_mm512_mask_i32scatter_ps","_mm512_mask_i64gather_epi32","_mm512_mask_i64gather_epi64","_mm512_mask_i64gather_pd","_mm512_mask_i64gather_ps","_mm512_mask_i64scatter_epi32","_mm512_mask_i64scatter_epi64","_mm512_mask_i64scatter_pd","_mm512_mask_i64scatter_ps","_mm512_mask_insertf32x4","_mm512_mask_insertf32x8","_mm512_mask_insertf64x2","_mm512_mask_insertf64x4","_mm512_mask_inserti32x4","_mm512_mask_inserti32x8","_mm512_mask_inserti64x2","_mm512_mask_inserti64x4","_mm512_mask_load_epi32","_mm512_mask_load_epi64","_mm512_mask_load_pd","_mm512_mask_load_ps","_mm512_mask_loadu_epi16","_mm512_mask_loadu_epi32","_mm512_mask_loadu_epi64","_mm512_mask_loadu_epi8","_mm512_mask_loadu_pd","_mm512_mask_loadu_ps","_mm512_mask_lzcnt_epi32","_mm512_mask_lzcnt_epi64","_mm512_mask_madd52hi_epu64","_mm512_mask_madd52lo_epu64","_mm512_mask_madd_epi16","_mm512_mask_maddubs_epi16","_mm512_mask_max_epi16","_mm512_mask_max_epi32","_mm512_mask_max_epi64","_mm512_mask_max_epi8","_mm512_mask_max_epu16","_mm512_mask_max_epu32","_mm512_mask_max_epu64","_mm512_mask_max_epu8","_mm512_mask_max_pd","_mm512_mask_max_ph","_mm512_mask_max_ps","_mm512_mask_max_round_pd","_mm512_mask_max_round_ph","_mm512_mask_max_round_ps","_mm512_mask_min_epi16","_mm512_mask_min_epi32","_mm512_mask_min_epi64","_mm512_mask_min_epi8","_mm512_mask_min_epu16","_mm512_mask_min_epu32","_mm512_mask_min_epu64","_mm512_mask_min_epu8","_mm512_mask_min_pd","_mm512_mask_min_ph","_mm512_mask_min_ps","_mm512_mask_min_round_pd","_mm512_mask_min_round_ph","_mm512_mask_min_round_ps","_mm512_mask_mov_epi16","_mm512_mask_mov_epi32","_mm512_mask_mov_epi64","_mm512_mask_mov_epi8","_mm512_mask_mov_pd","_mm512_mask_mov_ps","_mm512_mask_movedup_pd","_mm512_mask_movehdup_ps","_mm512_mask_moveldup_ps","_mm512_mask_mul_epi32","_mm512_mask_mul_epu32","_mm512_mask_mul_pch","_mm512_mask_mul_pd","_mm512_mask_mul_ph","_mm512_mask_mul_ps","_mm512_mask_mul_round_pch","_mm512_mask_mul_round_pd","_mm512_mask_mul_round_ph","_mm512_mask_mul_round_ps","_mm512_mask_mulhi_epi16","_mm512_mask_mulhi_epu16","_mm512_mask_mulhrs_epi16","_mm512_mask_mullo_epi16","_mm512_mask_mullo_epi32","_mm512_mask_mullo_epi64","_mm512_mask_mullox_epi64","_mm512_mask_multishift_epi64_epi8","_mm512_mask_or_epi32","_mm512_mask_or_epi64","_mm512_mask_or_pd","_mm512_mask_or_ps","_mm512_mask_packs_epi16","_mm512_mask_packs_epi32","_mm512_mask_packus_epi16","_mm512_mask_packus_epi32","_mm512_mask_permute_pd","_mm512_mask_permute_ps","_mm512_mask_permutevar_epi32","_mm512_mask_permutevar_pd","_mm512_mask_permutevar_ps","_mm512_mask_permutex2var_epi16","_mm512_mask_permutex2var_epi32","_mm512_mask_permutex2var_epi64","_mm512_mask_permutex2var_epi8","_mm512_mask_permutex2var_pd","_mm512_mask_permutex2var_ps","_mm512_mask_permutex_epi64","_mm512_mask_permutex_pd","_mm512_mask_permutexvar_epi16","_mm512_mask_permutexvar_epi32","_mm512_mask_permutexvar_epi64","_mm512_mask_permutexvar_epi8","_mm512_mask_permutexvar_pd","_mm512_mask_permutexvar_ps","_mm512_mask_popcnt_epi16","_mm512_mask_popcnt_epi32","_mm512_mask_popcnt_epi64","_mm512_mask_popcnt_epi8","_mm512_mask_range_pd","_mm512_mask_range_ps","_mm512_mask_range_round_pd","_mm512_mask_range_round_ps","_mm512_mask_rcp14_pd","_mm512_mask_rcp14_ps","_mm512_mask_rcp_ph","_mm512_mask_reduce_add_epi32","_mm512_mask_reduce_add_epi64","_mm512_mask_reduce_add_pd","_mm512_mask_reduce_add_ps","_mm512_mask_reduce_and_epi32","_mm512_mask_reduce_and_epi64","_mm512_mask_reduce_max_epi32","_mm512_mask_reduce_max_epi64","_mm512_mask_reduce_max_epu32","_mm512_mask_reduce_max_epu64","_mm512_mask_reduce_max_pd","_mm512_mask_reduce_max_ps","_mm512_mask_reduce_min_epi32","_mm512_mask_reduce_min_epi64","_mm512_mask_reduce_min_epu32","_mm512_mask_reduce_min_epu64","_mm512_mask_reduce_min_pd","_mm512_mask_reduce_min_ps","_mm512_mask_reduce_mul_epi32","_mm512_mask_reduce_mul_epi64","_mm512_mask_reduce_mul_pd","_mm512_mask_reduce_mul_ps","_mm512_mask_reduce_or_epi32","_mm512_mask_reduce_or_epi64","_mm512_mask_reduce_pd","_mm512_mask_reduce_ph","_mm512_mask_reduce_ps","_mm512_mask_reduce_round_pd","_mm512_mask_reduce_round_ph","_mm512_mask_reduce_round_ps","_mm512_mask_rol_epi32","_mm512_mask_rol_epi64","_mm512_mask_rolv_epi32","_mm512_mask_rolv_epi64","_mm512_mask_ror_epi32","_mm512_mask_ror_epi64","_mm512_mask_rorv_epi32","_mm512_mask_rorv_epi64","_mm512_mask_roundscale_pd","_mm512_mask_roundscale_ph","_mm512_mask_roundscale_ps","_mm512_mask_roundscale_round_pd","_mm512_mask_roundscale_round_ph","_mm512_mask_roundscale_round_ps","_mm512_mask_rsqrt14_pd","_mm512_mask_rsqrt14_ps","_mm512_mask_rsqrt_ph","_mm512_mask_scalef_pd","_mm512_mask_scalef_ph","_mm512_mask_scalef_ps","_mm512_mask_scalef_round_pd","_mm512_mask_scalef_round_ph","_mm512_mask_scalef_round_ps","_mm512_mask_set1_epi16","_mm512_mask_set1_epi32","_mm512_mask_set1_epi64","_mm512_mask_set1_epi8","_mm512_mask_shldi_epi16","_mm512_mask_shldi_epi32","_mm512_mask_shldi_epi64","_mm512_mask_shldv_epi16","_mm512_mask_shldv_epi32","_mm512_mask_shldv_epi64","_mm512_mask_shrdi_epi16","_mm512_mask_shrdi_epi32","_mm512_mask_shrdi_epi64","_mm512_mask_shrdv_epi16","_mm512_mask_shrdv_epi32","_mm512_mask_shrdv_epi64","_mm512_mask_shuffle_epi32","_mm512_mask_shuffle_epi8","_mm512_mask_shuffle_f32x4","_mm512_mask_shuffle_f64x2","_mm512_mask_shuffle_i32x4","_mm512_mask_shuffle_i64x2","_mm512_mask_shuffle_pd","_mm512_mask_shuffle_ps","_mm512_mask_shufflehi_epi16","_mm512_mask_shufflelo_epi16","_mm512_mask_sll_epi16","_mm512_mask_sll_epi32","_mm512_mask_sll_epi64","_mm512_mask_slli_epi16","_mm512_mask_slli_epi32","_mm512_mask_slli_epi64","_mm512_mask_sllv_epi16","_mm512_mask_sllv_epi32","_mm512_mask_sllv_epi64","_mm512_mask_sqrt_pd","_mm512_mask_sqrt_ph","_mm512_mask_sqrt_ps","_mm512_mask_sqrt_round_pd","_mm512_mask_sqrt_round_ph","_mm512_mask_sqrt_round_ps","_mm512_mask_sra_epi16","_mm512_mask_sra_epi32","_mm512_mask_sra_epi64","_mm512_mask_srai_epi16","_mm512_mask_srai_epi32","_mm512_mask_srai_epi64","_mm512_mask_srav_epi16","_mm512_mask_srav_epi32","_mm512_mask_srav_epi64","_mm512_mask_srl_epi16","_mm512_mask_srl_epi32","_mm512_mask_srl_epi64","_mm512_mask_srli_epi16","_mm512_mask_srli_epi32","_mm512_mask_srli_epi64","_mm512_mask_srlv_epi16","_mm512_mask_srlv_epi32","_mm512_mask_srlv_epi64","_mm512_mask_store_epi32","_mm512_mask_store_epi64","_mm512_mask_store_pd","_mm512_mask_store_ps","_mm512_mask_storeu_epi16","_mm512_mask_storeu_epi32","_mm512_mask_storeu_epi64","_mm512_mask_storeu_epi8","_mm512_mask_storeu_pd","_mm512_mask_storeu_ps","_mm512_mask_sub_epi16","_mm512_mask_sub_epi32","_mm512_mask_sub_epi64","_mm512_mask_sub_epi8","_mm512_mask_sub_pd","_mm512_mask_sub_ph","_mm512_mask_sub_ps","_mm512_mask_sub_round_pd","_mm512_mask_sub_round_ph","_mm512_mask_sub_round_ps","_mm512_mask_subs_epi16","_mm512_mask_subs_epi8","_mm512_mask_subs_epu16","_mm512_mask_subs_epu8","_mm512_mask_ternarylogic_epi32","_mm512_mask_ternarylogic_epi64","_mm512_mask_test_epi16_mask","_mm512_mask_test_epi32_mask","_mm512_mask_test_epi64_mask","_mm512_mask_test_epi8_mask","_mm512_mask_testn_epi16_mask","_mm512_mask_testn_epi32_mask","_mm512_mask_testn_epi64_mask","_mm512_mask_testn_epi8_mask","_mm512_mask_unpackhi_epi16","_mm512_mask_unpackhi_epi32","_mm512_mask_unpackhi_epi64","_mm512_mask_unpackhi_epi8","_mm512_mask_unpackhi_pd","_mm512_mask_unpackhi_ps","_mm512_mask_unpacklo_epi16","_mm512_mask_unpacklo_epi32","_mm512_mask_unpacklo_epi64","_mm512_mask_unpacklo_epi8","_mm512_mask_unpacklo_pd","_mm512_mask_unpacklo_ps","_mm512_mask_xor_epi32","_mm512_mask_xor_epi64","_mm512_mask_xor_pd","_mm512_mask_xor_ps","_mm512_maskz_abs_epi16","_mm512_maskz_abs_epi32","_mm512_maskz_abs_epi64","_mm512_maskz_abs_epi8","_mm512_maskz_add_epi16","_mm512_maskz_add_epi32","_mm512_maskz_add_epi64","_mm512_maskz_add_epi8","_mm512_maskz_add_pd","_mm512_maskz_add_ph","_mm512_maskz_add_ps","_mm512_maskz_add_round_pd","_mm512_maskz_add_round_ph","_mm512_maskz_add_round_ps","_mm512_maskz_adds_epi16","_mm512_maskz_adds_epi8","_mm512_maskz_adds_epu16","_mm512_maskz_adds_epu8","_mm512_maskz_alignr_epi32","_mm512_maskz_alignr_epi64","_mm512_maskz_alignr_epi8","_mm512_maskz_and_epi32","_mm512_maskz_and_epi64","_mm512_maskz_and_pd","_mm512_maskz_and_ps","_mm512_maskz_andnot_epi32","_mm512_maskz_andnot_epi64","_mm512_maskz_andnot_pd","_mm512_maskz_andnot_ps","_mm512_maskz_avg_epu16","_mm512_maskz_avg_epu8","_mm512_maskz_broadcast_f32x2","_mm512_maskz_broadcast_f32x4","_mm512_maskz_broadcast_f32x8","_mm512_maskz_broadcast_f64x2","_mm512_maskz_broadcast_f64x4","_mm512_maskz_broadcast_i32x2","_mm512_maskz_broadcast_i32x4","_mm512_maskz_broadcast_i32x8","_mm512_maskz_broadcast_i64x2","_mm512_maskz_broadcast_i64x4","_mm512_maskz_broadcastb_epi8","_mm512_maskz_broadcastd_epi32","_mm512_maskz_broadcastq_epi64","_mm512_maskz_broadcastsd_pd","_mm512_maskz_broadcastss_ps","_mm512_maskz_broadcastw_epi16","_mm512_maskz_cmul_pch","_mm512_maskz_cmul_round_pch","_mm512_maskz_compress_epi16","_mm512_maskz_compress_epi32","_mm512_maskz_compress_epi64","_mm512_maskz_compress_epi8","_mm512_maskz_compress_pd","_mm512_maskz_compress_ps","_mm512_maskz_conflict_epi32","_mm512_maskz_conflict_epi64","_mm512_maskz_conj_pch","_mm512_maskz_cvt_roundepi16_ph","_mm512_maskz_cvt_roundepi32_ph","_mm512_maskz_cvt_roundepi32_ps","_mm512_maskz_cvt_roundepi64_pd","_mm512_maskz_cvt_roundepi64_ph","_mm512_maskz_cvt_roundepi64_ps","_mm512_maskz_cvt_roundepu16_ph","_mm512_maskz_cvt_roundepu32_ph","_mm512_maskz_cvt_roundepu32_ps","_mm512_maskz_cvt_roundepu64_pd","_mm512_maskz_cvt_roundepu64_ph","_mm512_maskz_cvt_roundepu64_ps","_mm512_maskz_cvt_roundpd_epi32","_mm512_maskz_cvt_roundpd_epi64","_mm512_maskz_cvt_roundpd_epu32","_mm512_maskz_cvt_roundpd_epu64","_mm512_maskz_cvt_roundpd_ph","_mm512_maskz_cvt_roundpd_ps","_mm512_maskz_cvt_roundph_epi16","_mm512_maskz_cvt_roundph_epi32","_mm512_maskz_cvt_roundph_epi64","_mm512_maskz_cvt_roundph_epu16","_mm512_maskz_cvt_roundph_epu32","_mm512_maskz_cvt_roundph_epu64","_mm512_maskz_cvt_roundph_pd","_mm512_maskz_cvt_roundph_ps","_mm512_maskz_cvt_roundps_epi32","_mm512_maskz_cvt_roundps_epi64","_mm512_maskz_cvt_roundps_epu32","_mm512_maskz_cvt_roundps_epu64","_mm512_maskz_cvt_roundps_pd","_mm512_maskz_cvt_roundps_ph","_mm512_maskz_cvtepi16_epi32","_mm512_maskz_cvtepi16_epi64","_mm512_maskz_cvtepi16_epi8","_mm512_maskz_cvtepi16_ph","_mm512_maskz_cvtepi32_epi16","_mm512_maskz_cvtepi32_epi64","_mm512_maskz_cvtepi32_epi8","_mm512_maskz_cvtepi32_pd","_mm512_maskz_cvtepi32_ph","_mm512_maskz_cvtepi32_ps","_mm512_maskz_cvtepi64_epi16","_mm512_maskz_cvtepi64_epi32","_mm512_maskz_cvtepi64_epi8","_mm512_maskz_cvtepi64_pd","_mm512_maskz_cvtepi64_ph","_mm512_maskz_cvtepi64_ps","_mm512_maskz_cvtepi8_epi16","_mm512_maskz_cvtepi8_epi32","_mm512_maskz_cvtepi8_epi64","_mm512_maskz_cvtepu16_epi32","_mm512_maskz_cvtepu16_epi64","_mm512_maskz_cvtepu16_ph","_mm512_maskz_cvtepu32_epi64","_mm512_maskz_cvtepu32_pd","_mm512_maskz_cvtepu32_ph","_mm512_maskz_cvtepu32_ps","_mm512_maskz_cvtepu64_pd","_mm512_maskz_cvtepu64_ph","_mm512_maskz_cvtepu64_ps","_mm512_maskz_cvtepu8_epi16","_mm512_maskz_cvtepu8_epi32","_mm512_maskz_cvtepu8_epi64","_mm512_maskz_cvtne2ps_pbh","_mm512_maskz_cvtneps_pbh","_mm512_maskz_cvtpbh_ps","_mm512_maskz_cvtpd_epi32","_mm512_maskz_cvtpd_epi64","_mm512_maskz_cvtpd_epu32","_mm512_maskz_cvtpd_epu64","_mm512_maskz_cvtpd_ph","_mm512_maskz_cvtpd_ps","_mm512_maskz_cvtph_epi16","_mm512_maskz_cvtph_epi32","_mm512_maskz_cvtph_epi64","_mm512_maskz_cvtph_epu16","_mm512_maskz_cvtph_epu32","_mm512_maskz_cvtph_epu64","_mm512_maskz_cvtph_pd","_mm512_maskz_cvtph_ps","_mm512_maskz_cvtps_epi32","_mm512_maskz_cvtps_epi64","_mm512_maskz_cvtps_epu32","_mm512_maskz_cvtps_epu64","_mm512_maskz_cvtps_pd","_mm512_maskz_cvtps_ph","_mm512_maskz_cvtsepi16_epi8","_mm512_maskz_cvtsepi32_epi16","_mm512_maskz_cvtsepi32_epi8","_mm512_maskz_cvtsepi64_epi16","_mm512_maskz_cvtsepi64_epi32","_mm512_maskz_cvtsepi64_epi8","_mm512_maskz_cvtt_roundpd_epi32","_mm512_maskz_cvtt_roundpd_epi64","_mm512_maskz_cvtt_roundpd_epu32","_mm512_maskz_cvtt_roundpd_epu64","_mm512_maskz_cvtt_roundph_epi16","_mm512_maskz_cvtt_roundph_epi32","_mm512_maskz_cvtt_roundph_epi64","_mm512_maskz_cvtt_roundph_epu16","_mm512_maskz_cvtt_roundph_epu32","_mm512_maskz_cvtt_roundph_epu64","_mm512_maskz_cvtt_roundps_epi32","_mm512_maskz_cvtt_roundps_epi64","_mm512_maskz_cvtt_roundps_epu32","_mm512_maskz_cvtt_roundps_epu64","_mm512_maskz_cvttpd_epi32","_mm512_maskz_cvttpd_epi64","_mm512_maskz_cvttpd_epu32","_mm512_maskz_cvttpd_epu64","_mm512_maskz_cvttph_epi16","_mm512_maskz_cvttph_epi32","_mm512_maskz_cvttph_epi64","_mm512_maskz_cvttph_epu16","_mm512_maskz_cvttph_epu32","_mm512_maskz_cvttph_epu64","_mm512_maskz_cvttps_epi32","_mm512_maskz_cvttps_epi64","_mm512_maskz_cvttps_epu32","_mm512_maskz_cvttps_epu64","_mm512_maskz_cvtusepi16_epi8","_mm512_maskz_cvtusepi32_epi16","_mm512_maskz_cvtusepi32_epi8","_mm512_maskz_cvtusepi64_epi16","_mm512_maskz_cvtusepi64_epi32","_mm512_maskz_cvtusepi64_epi8","_mm512_maskz_cvtx_roundph_ps","_mm512_maskz_cvtx_roundps_ph","_mm512_maskz_cvtxph_ps","_mm512_maskz_cvtxps_ph","_mm512_maskz_dbsad_epu8","_mm512_maskz_div_pd","_mm512_maskz_div_ph","_mm512_maskz_div_ps","_mm512_maskz_div_round_pd","_mm512_maskz_div_round_ph","_mm512_maskz_div_round_ps","_mm512_maskz_dpbf16_ps","_mm512_maskz_dpbusd_epi32","_mm512_maskz_dpbusds_epi32","_mm512_maskz_dpwssd_epi32","_mm512_maskz_dpwssds_epi32","_mm512_maskz_expand_epi16","_mm512_maskz_expand_epi32","_mm512_maskz_expand_epi64","_mm512_maskz_expand_epi8","_mm512_maskz_expand_pd","_mm512_maskz_expand_ps","_mm512_maskz_expandloadu_epi16","_mm512_maskz_expandloadu_epi32","_mm512_maskz_expandloadu_epi64","_mm512_maskz_expandloadu_epi8","_mm512_maskz_expandloadu_pd","_mm512_maskz_expandloadu_ps","_mm512_maskz_extractf32x4_ps","_mm512_maskz_extractf32x8_ps","_mm512_maskz_extractf64x2_pd","_mm512_maskz_extractf64x4_pd","_mm512_maskz_extracti32x4_epi32","_mm512_maskz_extracti32x8_epi32","_mm512_maskz_extracti64x2_epi64","_mm512_maskz_extracti64x4_epi64","_mm512_maskz_fcmadd_pch","_mm512_maskz_fcmadd_round_pch","_mm512_maskz_fcmul_pch","_mm512_maskz_fcmul_round_pch","_mm512_maskz_fixupimm_pd","_mm512_maskz_fixupimm_ps","_mm512_maskz_fixupimm_round_pd","_mm512_maskz_fixupimm_round_ps","_mm512_maskz_fmadd_pch","_mm512_maskz_fmadd_pd","_mm512_maskz_fmadd_ph","_mm512_maskz_fmadd_ps","_mm512_maskz_fmadd_round_pch","_mm512_maskz_fmadd_round_pd","_mm512_maskz_fmadd_round_ph","_mm512_maskz_fmadd_round_ps","_mm512_maskz_fmaddsub_pd","_mm512_maskz_fmaddsub_ph","_mm512_maskz_fmaddsub_ps","_mm512_maskz_fmaddsub_round_pd","_mm512_maskz_fmaddsub_round_ph","_mm512_maskz_fmaddsub_round_ps","_mm512_maskz_fmsub_pd","_mm512_maskz_fmsub_ph","_mm512_maskz_fmsub_ps","_mm512_maskz_fmsub_round_pd","_mm512_maskz_fmsub_round_ph","_mm512_maskz_fmsub_round_ps","_mm512_maskz_fmsubadd_pd","_mm512_maskz_fmsubadd_ph","_mm512_maskz_fmsubadd_ps","_mm512_maskz_fmsubadd_round_pd","_mm512_maskz_fmsubadd_round_ph","_mm512_maskz_fmsubadd_round_ps","_mm512_maskz_fmul_pch","_mm512_maskz_fmul_round_pch","_mm512_maskz_fnmadd_pd","_mm512_maskz_fnmadd_ph","_mm512_maskz_fnmadd_ps","_mm512_maskz_fnmadd_round_pd","_mm512_maskz_fnmadd_round_ph","_mm512_maskz_fnmadd_round_ps","_mm512_maskz_fnmsub_pd","_mm512_maskz_fnmsub_ph","_mm512_maskz_fnmsub_ps","_mm512_maskz_fnmsub_round_pd","_mm512_maskz_fnmsub_round_ph","_mm512_maskz_fnmsub_round_ps","_mm512_maskz_getexp_pd","_mm512_maskz_getexp_ph","_mm512_maskz_getexp_ps","_mm512_maskz_getexp_round_pd","_mm512_maskz_getexp_round_ph","_mm512_maskz_getexp_round_ps","_mm512_maskz_getmant_pd","_mm512_maskz_getmant_ph","_mm512_maskz_getmant_ps","_mm512_maskz_getmant_round_pd","_mm512_maskz_getmant_round_ph","_mm512_maskz_getmant_round_ps","_mm512_maskz_gf2p8affine_epi64_epi8","_mm512_maskz_gf2p8affineinv_epi64_epi8","_mm512_maskz_gf2p8mul_epi8","_mm512_maskz_insertf32x4","_mm512_maskz_insertf32x8","_mm512_maskz_insertf64x2","_mm512_maskz_insertf64x4","_mm512_maskz_inserti32x4","_mm512_maskz_inserti32x8","_mm512_maskz_inserti64x2","_mm512_maskz_inserti64x4","_mm512_maskz_load_epi32","_mm512_maskz_load_epi64","_mm512_maskz_load_pd","_mm512_maskz_load_ps","_mm512_maskz_loadu_epi16","_mm512_maskz_loadu_epi32","_mm512_maskz_loadu_epi64","_mm512_maskz_loadu_epi8","_mm512_maskz_loadu_pd","_mm512_maskz_loadu_ps","_mm512_maskz_lzcnt_epi32","_mm512_maskz_lzcnt_epi64","_mm512_maskz_madd52hi_epu64","_mm512_maskz_madd52lo_epu64","_mm512_maskz_madd_epi16","_mm512_maskz_maddubs_epi16","_mm512_maskz_max_epi16","_mm512_maskz_max_epi32","_mm512_maskz_max_epi64","_mm512_maskz_max_epi8","_mm512_maskz_max_epu16","_mm512_maskz_max_epu32","_mm512_maskz_max_epu64","_mm512_maskz_max_epu8","_mm512_maskz_max_pd","_mm512_maskz_max_ph","_mm512_maskz_max_ps","_mm512_maskz_max_round_pd","_mm512_maskz_max_round_ph","_mm512_maskz_max_round_ps","_mm512_maskz_min_epi16","_mm512_maskz_min_epi32","_mm512_maskz_min_epi64","_mm512_maskz_min_epi8","_mm512_maskz_min_epu16","_mm512_maskz_min_epu32","_mm512_maskz_min_epu64","_mm512_maskz_min_epu8","_mm512_maskz_min_pd","_mm512_maskz_min_ph","_mm512_maskz_min_ps","_mm512_maskz_min_round_pd","_mm512_maskz_min_round_ph","_mm512_maskz_min_round_ps","_mm512_maskz_mov_epi16","_mm512_maskz_mov_epi32","_mm512_maskz_mov_epi64","_mm512_maskz_mov_epi8","_mm512_maskz_mov_pd","_mm512_maskz_mov_ps","_mm512_maskz_movedup_pd","_mm512_maskz_movehdup_ps","_mm512_maskz_moveldup_ps","_mm512_maskz_mul_epi32","_mm512_maskz_mul_epu32","_mm512_maskz_mul_pch","_mm512_maskz_mul_pd","_mm512_maskz_mul_ph","_mm512_maskz_mul_ps","_mm512_maskz_mul_round_pch","_mm512_maskz_mul_round_pd","_mm512_maskz_mul_round_ph","_mm512_maskz_mul_round_ps","_mm512_maskz_mulhi_epi16","_mm512_maskz_mulhi_epu16","_mm512_maskz_mulhrs_epi16","_mm512_maskz_mullo_epi16","_mm512_maskz_mullo_epi32","_mm512_maskz_mullo_epi64","_mm512_maskz_multishift_epi64_epi8","_mm512_maskz_or_epi32","_mm512_maskz_or_epi64","_mm512_maskz_or_pd","_mm512_maskz_or_ps","_mm512_maskz_packs_epi16","_mm512_maskz_packs_epi32","_mm512_maskz_packus_epi16","_mm512_maskz_packus_epi32","_mm512_maskz_permute_pd","_mm512_maskz_permute_ps","_mm512_maskz_permutevar_pd","_mm512_maskz_permutevar_ps","_mm512_maskz_permutex2var_epi16","_mm512_maskz_permutex2var_epi32","_mm512_maskz_permutex2var_epi64","_mm512_maskz_permutex2var_epi8","_mm512_maskz_permutex2var_pd","_mm512_maskz_permutex2var_ps","_mm512_maskz_permutex_epi64","_mm512_maskz_permutex_pd","_mm512_maskz_permutexvar_epi16","_mm512_maskz_permutexvar_epi32","_mm512_maskz_permutexvar_epi64","_mm512_maskz_permutexvar_epi8","_mm512_maskz_permutexvar_pd","_mm512_maskz_permutexvar_ps","_mm512_maskz_popcnt_epi16","_mm512_maskz_popcnt_epi32","_mm512_maskz_popcnt_epi64","_mm512_maskz_popcnt_epi8","_mm512_maskz_range_pd","_mm512_maskz_range_ps","_mm512_maskz_range_round_pd","_mm512_maskz_range_round_ps","_mm512_maskz_rcp14_pd","_mm512_maskz_rcp14_ps","_mm512_maskz_rcp_ph","_mm512_maskz_reduce_pd","_mm512_maskz_reduce_ph","_mm512_maskz_reduce_ps","_mm512_maskz_reduce_round_pd","_mm512_maskz_reduce_round_ph","_mm512_maskz_reduce_round_ps","_mm512_maskz_rol_epi32","_mm512_maskz_rol_epi64","_mm512_maskz_rolv_epi32","_mm512_maskz_rolv_epi64","_mm512_maskz_ror_epi32","_mm512_maskz_ror_epi64","_mm512_maskz_rorv_epi32","_mm512_maskz_rorv_epi64","_mm512_maskz_roundscale_pd","_mm512_maskz_roundscale_ph","_mm512_maskz_roundscale_ps","_mm512_maskz_roundscale_round_pd","_mm512_maskz_roundscale_round_ph","_mm512_maskz_roundscale_round_ps","_mm512_maskz_rsqrt14_pd","_mm512_maskz_rsqrt14_ps","_mm512_maskz_rsqrt_ph","_mm512_maskz_scalef_pd","_mm512_maskz_scalef_ph","_mm512_maskz_scalef_ps","_mm512_maskz_scalef_round_pd","_mm512_maskz_scalef_round_ph","_mm512_maskz_scalef_round_ps","_mm512_maskz_set1_epi16","_mm512_maskz_set1_epi32","_mm512_maskz_set1_epi64","_mm512_maskz_set1_epi8","_mm512_maskz_shldi_epi16","_mm512_maskz_shldi_epi32","_mm512_maskz_shldi_epi64","_mm512_maskz_shldv_epi16","_mm512_maskz_shldv_epi32","_mm512_maskz_shldv_epi64","_mm512_maskz_shrdi_epi16","_mm512_maskz_shrdi_epi32","_mm512_maskz_shrdi_epi64","_mm512_maskz_shrdv_epi16","_mm512_maskz_shrdv_epi32","_mm512_maskz_shrdv_epi64","_mm512_maskz_shuffle_epi32","_mm512_maskz_shuffle_epi8","_mm512_maskz_shuffle_f32x4","_mm512_maskz_shuffle_f64x2","_mm512_maskz_shuffle_i32x4","_mm512_maskz_shuffle_i64x2","_mm512_maskz_shuffle_pd","_mm512_maskz_shuffle_ps","_mm512_maskz_shufflehi_epi16","_mm512_maskz_shufflelo_epi16","_mm512_maskz_sll_epi16","_mm512_maskz_sll_epi32","_mm512_maskz_sll_epi64","_mm512_maskz_slli_epi16","_mm512_maskz_slli_epi32","_mm512_maskz_slli_epi64","_mm512_maskz_sllv_epi16","_mm512_maskz_sllv_epi32","_mm512_maskz_sllv_epi64","_mm512_maskz_sqrt_pd","_mm512_maskz_sqrt_ph","_mm512_maskz_sqrt_ps","_mm512_maskz_sqrt_round_pd","_mm512_maskz_sqrt_round_ph","_mm512_maskz_sqrt_round_ps","_mm512_maskz_sra_epi16","_mm512_maskz_sra_epi32","_mm512_maskz_sra_epi64","_mm512_maskz_srai_epi16","_mm512_maskz_srai_epi32","_mm512_maskz_srai_epi64","_mm512_maskz_srav_epi16","_mm512_maskz_srav_epi32","_mm512_maskz_srav_epi64","_mm512_maskz_srl_epi16","_mm512_maskz_srl_epi32","_mm512_maskz_srl_epi64","_mm512_maskz_srli_epi16","_mm512_maskz_srli_epi32","_mm512_maskz_srli_epi64","_mm512_maskz_srlv_epi16","_mm512_maskz_srlv_epi32","_mm512_maskz_srlv_epi64","_mm512_maskz_sub_epi16","_mm512_maskz_sub_epi32","_mm512_maskz_sub_epi64","_mm512_maskz_sub_epi8","_mm512_maskz_sub_pd","_mm512_maskz_sub_ph","_mm512_maskz_sub_ps","_mm512_maskz_sub_round_pd","_mm512_maskz_sub_round_ph","_mm512_maskz_sub_round_ps","_mm512_maskz_subs_epi16","_mm512_maskz_subs_epi8","_mm512_maskz_subs_epu16","_mm512_maskz_subs_epu8","_mm512_maskz_ternarylogic_epi32","_mm512_maskz_ternarylogic_epi64","_mm512_maskz_unpackhi_epi16","_mm512_maskz_unpackhi_epi32","_mm512_maskz_unpackhi_epi64","_mm512_maskz_unpackhi_epi8","_mm512_maskz_unpackhi_pd","_mm512_maskz_unpackhi_ps","_mm512_maskz_unpacklo_epi16","_mm512_maskz_unpacklo_epi32","_mm512_maskz_unpacklo_epi64","_mm512_maskz_unpacklo_epi8","_mm512_maskz_unpacklo_pd","_mm512_maskz_unpacklo_ps","_mm512_maskz_xor_epi32","_mm512_maskz_xor_epi64","_mm512_maskz_xor_pd","_mm512_maskz_xor_ps","_mm512_max_epi16","_mm512_max_epi32","_mm512_max_epi64","_mm512_max_epi8","_mm512_max_epu16","_mm512_max_epu32","_mm512_max_epu64","_mm512_max_epu8","_mm512_max_pd","_mm512_max_ph","_mm512_max_ps","_mm512_max_round_pd","_mm512_max_round_ph","_mm512_max_round_ps","_mm512_min_epi16","_mm512_min_epi32","_mm512_min_epi64","_mm512_min_epi8","_mm512_min_epu16","_mm512_min_epu32","_mm512_min_epu64","_mm512_min_epu8","_mm512_min_pd","_mm512_min_ph","_mm512_min_ps","_mm512_min_round_pd","_mm512_min_round_ph","_mm512_min_round_ps","_mm512_movedup_pd","_mm512_movehdup_ps","_mm512_moveldup_ps","_mm512_movepi16_mask","_mm512_movepi32_mask","_mm512_movepi64_mask","_mm512_movepi8_mask","_mm512_movm_epi16","_mm512_movm_epi32","_mm512_movm_epi64","_mm512_movm_epi8","_mm512_mul_epi32","_mm512_mul_epu32","_mm512_mul_pch","_mm512_mul_pd","_mm512_mul_ph","_mm512_mul_ps","_mm512_mul_round_pch","_mm512_mul_round_pd","_mm512_mul_round_ph","_mm512_mul_round_ps","_mm512_mulhi_epi16","_mm512_mulhi_epu16","_mm512_mulhrs_epi16","_mm512_mullo_epi16","_mm512_mullo_epi32","_mm512_mullo_epi64","_mm512_mullox_epi64","_mm512_multishift_epi64_epi8","_mm512_or_epi32","_mm512_or_epi64","_mm512_or_pd","_mm512_or_ps","_mm512_or_si512","_mm512_packs_epi16","_mm512_packs_epi32","_mm512_packus_epi16","_mm512_packus_epi32","_mm512_permute_pd","_mm512_permute_ps","_mm512_permutevar_epi32","_mm512_permutevar_pd","_mm512_permutevar_ps","_mm512_permutex2var_epi16","_mm512_permutex2var_epi32","_mm512_permutex2var_epi64","_mm512_permutex2var_epi8","_mm512_permutex2var_pd","_mm512_permutex2var_ph","_mm512_permutex2var_ps","_mm512_permutex_epi64","_mm512_permutex_pd","_mm512_permutexvar_epi16","_mm512_permutexvar_epi32","_mm512_permutexvar_epi64","_mm512_permutexvar_epi8","_mm512_permutexvar_pd","_mm512_permutexvar_ph","_mm512_permutexvar_ps","_mm512_popcnt_epi16","_mm512_popcnt_epi32","_mm512_popcnt_epi64","_mm512_popcnt_epi8","_mm512_range_pd","_mm512_range_ps","_mm512_range_round_pd","_mm512_range_round_ps","_mm512_rcp14_pd","_mm512_rcp14_ps","_mm512_rcp_ph","_mm512_reduce_add_epi32","_mm512_reduce_add_epi64","_mm512_reduce_add_pd","_mm512_reduce_add_ph","_mm512_reduce_add_ps","_mm512_reduce_and_epi32","_mm512_reduce_and_epi64","_mm512_reduce_max_epi32","_mm512_reduce_max_epi64","_mm512_reduce_max_epu32","_mm512_reduce_max_epu64","_mm512_reduce_max_pd","_mm512_reduce_max_ph","_mm512_reduce_max_ps","_mm512_reduce_min_epi32","_mm512_reduce_min_epi64","_mm512_reduce_min_epu32","_mm512_reduce_min_epu64","_mm512_reduce_min_pd","_mm512_reduce_min_ph","_mm512_reduce_min_ps","_mm512_reduce_mul_epi32","_mm512_reduce_mul_epi64","_mm512_reduce_mul_pd","_mm512_reduce_mul_ph","_mm512_reduce_mul_ps","_mm512_reduce_or_epi32","_mm512_reduce_or_epi64","_mm512_reduce_pd","_mm512_reduce_ph","_mm512_reduce_ps","_mm512_reduce_round_pd","_mm512_reduce_round_ph","_mm512_reduce_round_ps","_mm512_rol_epi32","_mm512_rol_epi64","_mm512_rolv_epi32","_mm512_rolv_epi64","_mm512_ror_epi32","_mm512_ror_epi64","_mm512_rorv_epi32","_mm512_rorv_epi64","_mm512_roundscale_pd","_mm512_roundscale_ph","_mm512_roundscale_ps","_mm512_roundscale_round_pd","_mm512_roundscale_round_ph","_mm512_roundscale_round_ps","_mm512_rsqrt14_pd","_mm512_rsqrt14_ps","_mm512_rsqrt_ph","_mm512_sad_epu8","_mm512_scalef_pd","_mm512_scalef_ph","_mm512_scalef_ps","_mm512_scalef_round_pd","_mm512_scalef_round_ph","_mm512_scalef_round_ps","_mm512_set1_epi16","_mm512_set1_epi32","_mm512_set1_epi64","_mm512_set1_epi8","_mm512_set1_pd","_mm512_set1_ph","_mm512_set1_ps","_mm512_set4_epi32","_mm512_set4_epi64","_mm512_set4_pd","_mm512_set4_ps","_mm512_set_epi16","_mm512_set_epi32","_mm512_set_epi64","_mm512_set_epi8","_mm512_set_pd","_mm512_set_ph","_mm512_set_ps","_mm512_setr4_epi32","_mm512_setr4_epi64","_mm512_setr4_pd","_mm512_setr4_ps","_mm512_setr_epi32","_mm512_setr_epi64","_mm512_setr_pd","_mm512_setr_ph","_mm512_setr_ps","_mm512_setzero","_mm512_setzero_epi32","_mm512_setzero_pd","_mm512_setzero_ph","_mm512_setzero_ps","_mm512_setzero_si512","_mm512_shldi_epi16","_mm512_shldi_epi32","_mm512_shldi_epi64","_mm512_shldv_epi16","_mm512_shldv_epi32","_mm512_shldv_epi64","_mm512_shrdi_epi16","_mm512_shrdi_epi32","_mm512_shrdi_epi64","_mm512_shrdv_epi16","_mm512_shrdv_epi32","_mm512_shrdv_epi64","_mm512_shuffle_epi32","_mm512_shuffle_epi8","_mm512_shuffle_f32x4","_mm512_shuffle_f64x2","_mm512_shuffle_i32x4","_mm512_shuffle_i64x2","_mm512_shuffle_pd","_mm512_shuffle_ps","_mm512_shufflehi_epi16","_mm512_shufflelo_epi16","_mm512_sll_epi16","_mm512_sll_epi32","_mm512_sll_epi64","_mm512_slli_epi16","_mm512_slli_epi32","_mm512_slli_epi64","_mm512_sllv_epi16","_mm512_sllv_epi32","_mm512_sllv_epi64","_mm512_sqrt_pd","_mm512_sqrt_ph","_mm512_sqrt_ps","_mm512_sqrt_round_pd","_mm512_sqrt_round_ph","_mm512_sqrt_round_ps","_mm512_sra_epi16","_mm512_sra_epi32","_mm512_sra_epi64","_mm512_srai_epi16","_mm512_srai_epi32","_mm512_srai_epi64","_mm512_srav_epi16","_mm512_srav_epi32","_mm512_srav_epi64","_mm512_srl_epi16","_mm512_srl_epi32","_mm512_srl_epi64","_mm512_srli_epi16","_mm512_srli_epi32","_mm512_srli_epi64","_mm512_srlv_epi16","_mm512_srlv_epi32","_mm512_srlv_epi64","_mm512_store_epi32","_mm512_store_epi64","_mm512_store_pd","_mm512_store_ph","_mm512_store_ps","_mm512_store_si512","_mm512_storeu_epi16","_mm512_storeu_epi32","_mm512_storeu_epi64","_mm512_storeu_epi8","_mm512_storeu_pd","_mm512_storeu_ph","_mm512_storeu_ps","_mm512_storeu_si512","_mm512_stream_load_si512","_mm512_stream_pd","_mm512_stream_ps","_mm512_stream_si512","_mm512_sub_epi16","_mm512_sub_epi32","_mm512_sub_epi64","_mm512_sub_epi8","_mm512_sub_pd","_mm512_sub_ph","_mm512_sub_ps","_mm512_sub_round_pd","_mm512_sub_round_ph","_mm512_sub_round_ps","_mm512_subs_epi16","_mm512_subs_epi8","_mm512_subs_epu16","_mm512_subs_epu8","_mm512_ternarylogic_epi32","_mm512_ternarylogic_epi64","_mm512_test_epi16_mask","_mm512_test_epi32_mask","_mm512_test_epi64_mask","_mm512_test_epi8_mask","_mm512_testn_epi16_mask","_mm512_testn_epi32_mask","_mm512_testn_epi64_mask","_mm512_testn_epi8_mask","_mm512_undefined","_mm512_undefined_epi32","_mm512_undefined_pd","_mm512_undefined_ph","_mm512_undefined_ps","_mm512_unpackhi_epi16","_mm512_unpackhi_epi32","_mm512_unpackhi_epi64","_mm512_unpackhi_epi8","_mm512_unpackhi_pd","_mm512_unpackhi_ps","_mm512_unpacklo_epi16","_mm512_unpacklo_epi32","_mm512_unpacklo_epi64","_mm512_unpacklo_epi8","_mm512_unpacklo_pd","_mm512_unpacklo_ps","_mm512_xor_epi32","_mm512_xor_epi64","_mm512_xor_pd","_mm512_xor_ps","_mm512_xor_si512","_mm512_zextpd128_pd512","_mm512_zextpd256_pd512","_mm512_zextph128_ph512","_mm512_zextph256_ph512","_mm512_zextps128_ps512","_mm512_zextps256_ps512","_mm512_zextsi128_si512","_mm512_zextsi256_si512","_mm_abs_epi16","_mm_abs_epi32","_mm_abs_epi64","_mm_abs_epi8","_mm_abs_ph","_mm_add_epi16","_mm_add_epi32","_mm_add_epi64","_mm_add_epi8","_mm_add_pd","_mm_add_ph","_mm_add_ps","_mm_add_round_sd","_mm_add_round_sh","_mm_add_round_ss","_mm_add_sd","_mm_add_sh","_mm_add_ss","_mm_adds_epi16","_mm_adds_epi8","_mm_adds_epu16","_mm_adds_epu8","_mm_addsub_pd","_mm_addsub_ps","_mm_aesdec_si128","_mm_aesdeclast_si128","_mm_aesenc_si128","_mm_aesenclast_si128","_mm_aesimc_si128","_mm_aeskeygenassist_si128","_mm_alignr_epi32","_mm_alignr_epi64","_mm_alignr_epi8","_mm_and_pd","_mm_and_ps","_mm_and_si128","_mm_andnot_pd","_mm_andnot_ps","_mm_andnot_si128","_mm_avg_epu16","_mm_avg_epu8","_mm_bcstnebf16_ps","_mm_bcstnesh_ps","_mm_bitshuffle_epi64_mask","_mm_blend_epi16","_mm_blend_epi32","_mm_blend_pd","_mm_blend_ps","_mm_blendv_epi8","_mm_blendv_pd","_mm_blendv_ps","_mm_broadcast_i32x2","_mm_broadcast_ss","_mm_broadcastb_epi8","_mm_broadcastd_epi32","_mm_broadcastmb_epi64","_mm_broadcastmw_epi32","_mm_broadcastq_epi64","_mm_broadcastsd_pd","_mm_broadcastsi128_si256","_mm_broadcastss_ps","_mm_broadcastw_epi16","_mm_bslli_si128","_mm_bsrli_si128","_mm_castpd_ph","_mm_castpd_ps","_mm_castpd_si128","_mm_castph_pd","_mm_castph_ps","_mm_castph_si128","_mm_castps_pd","_mm_castps_ph","_mm_castps_si128","_mm_castsi128_pd","_mm_castsi128_ph","_mm_castsi128_ps","_mm_ceil_pd","_mm_ceil_ps","_mm_ceil_sd","_mm_ceil_ss","_mm_clflush","_mm_clmulepi64_si128","_mm_cmp_epi16_mask","_mm_cmp_epi32_mask","_mm_cmp_epi64_mask","_mm_cmp_epi8_mask","_mm_cmp_epu16_mask","_mm_cmp_epu32_mask","_mm_cmp_epu64_mask","_mm_cmp_epu8_mask","_mm_cmp_pd","_mm_cmp_pd_mask","_mm_cmp_ph_mask","_mm_cmp_ps","_mm_cmp_ps_mask","_mm_cmp_round_sd_mask","_mm_cmp_round_sh_mask","_mm_cmp_round_ss_mask","_mm_cmp_sd","_mm_cmp_sd_mask","_mm_cmp_sh_mask","_mm_cmp_ss","_mm_cmp_ss_mask","_mm_cmpeq_epi16","_mm_cmpeq_epi16_mask","_mm_cmpeq_epi32","_mm_cmpeq_epi32_mask","_mm_cmpeq_epi64","_mm_cmpeq_epi64_mask","_mm_cmpeq_epi8","_mm_cmpeq_epi8_mask","_mm_cmpeq_epu16_mask","_mm_cmpeq_epu32_mask","_mm_cmpeq_epu64_mask","_mm_cmpeq_epu8_mask","_mm_cmpeq_pd","_mm_cmpeq_ps","_mm_cmpeq_sd","_mm_cmpeq_ss","_mm_cmpestra","_mm_cmpestrc","_mm_cmpestri","_mm_cmpestrm","_mm_cmpestro","_mm_cmpestrs","_mm_cmpestrz","_mm_cmpge_epi16_mask","_mm_cmpge_epi32_mask","_mm_cmpge_epi64_mask","_mm_cmpge_epi8_mask","_mm_cmpge_epu16_mask","_mm_cmpge_epu32_mask","_mm_cmpge_epu64_mask","_mm_cmpge_epu8_mask","_mm_cmpge_pd","_mm_cmpge_ps","_mm_cmpge_sd","_mm_cmpge_ss","_mm_cmpgt_epi16","_mm_cmpgt_epi16_mask","_mm_cmpgt_epi32","_mm_cmpgt_epi32_mask","_mm_cmpgt_epi64","_mm_cmpgt_epi64_mask","_mm_cmpgt_epi8","_mm_cmpgt_epi8_mask","_mm_cmpgt_epu16_mask","_mm_cmpgt_epu32_mask","_mm_cmpgt_epu64_mask","_mm_cmpgt_epu8_mask","_mm_cmpgt_pd","_mm_cmpgt_ps","_mm_cmpgt_sd","_mm_cmpgt_ss","_mm_cmpistra","_mm_cmpistrc","_mm_cmpistri","_mm_cmpistrm","_mm_cmpistro","_mm_cmpistrs","_mm_cmpistrz","_mm_cmple_epi16_mask","_mm_cmple_epi32_mask","_mm_cmple_epi64_mask","_mm_cmple_epi8_mask","_mm_cmple_epu16_mask","_mm_cmple_epu32_mask","_mm_cmple_epu64_mask","_mm_cmple_epu8_mask","_mm_cmple_pd","_mm_cmple_ps","_mm_cmple_sd","_mm_cmple_ss","_mm_cmplt_epi16","_mm_cmplt_epi16_mask","_mm_cmplt_epi32","_mm_cmplt_epi32_mask","_mm_cmplt_epi64_mask","_mm_cmplt_epi8","_mm_cmplt_epi8_mask","_mm_cmplt_epu16_mask","_mm_cmplt_epu32_mask","_mm_cmplt_epu64_mask","_mm_cmplt_epu8_mask","_mm_cmplt_pd","_mm_cmplt_ps","_mm_cmplt_sd","_mm_cmplt_ss","_mm_cmpneq_epi16_mask","_mm_cmpneq_epi32_mask","_mm_cmpneq_epi64_mask","_mm_cmpneq_epi8_mask","_mm_cmpneq_epu16_mask","_mm_cmpneq_epu32_mask","_mm_cmpneq_epu64_mask","_mm_cmpneq_epu8_mask","_mm_cmpneq_pd","_mm_cmpneq_ps","_mm_cmpneq_sd","_mm_cmpneq_ss","_mm_cmpnge_pd","_mm_cmpnge_ps","_mm_cmpnge_sd","_mm_cmpnge_ss","_mm_cmpngt_pd","_mm_cmpngt_ps","_mm_cmpngt_sd","_mm_cmpngt_ss","_mm_cmpnle_pd","_mm_cmpnle_ps","_mm_cmpnle_sd","_mm_cmpnle_ss","_mm_cmpnlt_pd","_mm_cmpnlt_ps","_mm_cmpnlt_sd","_mm_cmpnlt_ss","_mm_cmpord_pd","_mm_cmpord_ps","_mm_cmpord_sd","_mm_cmpord_ss","_mm_cmpunord_pd","_mm_cmpunord_ps","_mm_cmpunord_sd","_mm_cmpunord_ss","_mm_cmul_pch","_mm_cmul_round_sch","_mm_cmul_sch","_mm_comi_round_sd","_mm_comi_round_sh","_mm_comi_round_ss","_mm_comi_sh","_mm_comieq_sd","_mm_comieq_sh","_mm_comieq_ss","_mm_comige_sd","_mm_comige_sh","_mm_comige_ss","_mm_comigt_sd","_mm_comigt_sh","_mm_comigt_ss","_mm_comile_sd","_mm_comile_sh","_mm_comile_ss","_mm_comilt_sd","_mm_comilt_sh","_mm_comilt_ss","_mm_comineq_sd","_mm_comineq_sh","_mm_comineq_ss","_mm_conflict_epi32","_mm_conflict_epi64","_mm_conj_pch","_mm_crc32_u16","_mm_crc32_u32","_mm_crc32_u64","_mm_crc32_u8","_mm_cvt_roundi32_sh","_mm_cvt_roundi32_ss","_mm_cvt_roundi64_sd","_mm_cvt_roundi64_sh","_mm_cvt_roundi64_ss","_mm_cvt_roundsd_i32","_mm_cvt_roundsd_i64","_mm_cvt_roundsd_sh","_mm_cvt_roundsd_si32","_mm_cvt_roundsd_si64","_mm_cvt_roundsd_ss","_mm_cvt_roundsd_u32","_mm_cvt_roundsd_u64","_mm_cvt_roundsh_i32","_mm_cvt_roundsh_i64","_mm_cvt_roundsh_sd","_mm_cvt_roundsh_ss","_mm_cvt_roundsh_u32","_mm_cvt_roundsh_u64","_mm_cvt_roundsi32_ss","_mm_cvt_roundsi64_sd","_mm_cvt_roundsi64_ss","_mm_cvt_roundss_i32","_mm_cvt_roundss_i64","_mm_cvt_roundss_sd","_mm_cvt_roundss_sh","_mm_cvt_roundss_si32","_mm_cvt_roundss_si64","_mm_cvt_roundss_u32","_mm_cvt_roundss_u64","_mm_cvt_roundu32_sh","_mm_cvt_roundu32_ss","_mm_cvt_roundu64_sd","_mm_cvt_roundu64_sh","_mm_cvt_roundu64_ss","_mm_cvt_si2ss","_mm_cvt_ss2si","_mm_cvtepi16_epi32","_mm_cvtepi16_epi64","_mm_cvtepi16_epi8","_mm_cvtepi16_ph","_mm_cvtepi32_epi16","_mm_cvtepi32_epi64","_mm_cvtepi32_epi8","_mm_cvtepi32_pd","_mm_cvtepi32_ph","_mm_cvtepi32_ps","_mm_cvtepi64_epi16","_mm_cvtepi64_epi32","_mm_cvtepi64_epi8","_mm_cvtepi64_pd","_mm_cvtepi64_ph","_mm_cvtepi64_ps","_mm_cvtepi8_epi16","_mm_cvtepi8_epi32","_mm_cvtepi8_epi64","_mm_cvtepu16_epi32","_mm_cvtepu16_epi64","_mm_cvtepu16_ph","_mm_cvtepu32_epi64","_mm_cvtepu32_pd","_mm_cvtepu32_ph","_mm_cvtepu64_pd","_mm_cvtepu64_ph","_mm_cvtepu64_ps","_mm_cvtepu8_epi16","_mm_cvtepu8_epi32","_mm_cvtepu8_epi64","_mm_cvti32_sd","_mm_cvti32_sh","_mm_cvti32_ss","_mm_cvti64_sd","_mm_cvti64_sh","_mm_cvti64_ss","_mm_cvtne2ps_pbh","_mm_cvtneebf16_ps","_mm_cvtneeph_ps","_mm_cvtneobf16_ps","_mm_cvtneoph_ps","_mm_cvtneps_avx_pbh","_mm_cvtneps_pbh","_mm_cvtness_sbh","_mm_cvtpbh_ps","_mm_cvtpd_epi32","_mm_cvtpd_epi64","_mm_cvtpd_epu32","_mm_cvtpd_epu64","_mm_cvtpd_ph","_mm_cvtpd_ps","_mm_cvtph_epi16","_mm_cvtph_epi32","_mm_cvtph_epi64","_mm_cvtph_epu16","_mm_cvtph_epu32","_mm_cvtph_epu64","_mm_cvtph_pd","_mm_cvtph_ps","_mm_cvtps_epi32","_mm_cvtps_epi64","_mm_cvtps_epu32","_mm_cvtps_epu64","_mm_cvtps_pd","_mm_cvtps_ph","_mm_cvtsbh_ss","_mm_cvtsd_f64","_mm_cvtsd_i32","_mm_cvtsd_i64","_mm_cvtsd_sh","_mm_cvtsd_si32","_mm_cvtsd_si64","_mm_cvtsd_si64x","_mm_cvtsd_ss","_mm_cvtsd_u32","_mm_cvtsd_u64","_mm_cvtsepi16_epi8","_mm_cvtsepi32_epi16","_mm_cvtsepi32_epi8","_mm_cvtsepi64_epi16","_mm_cvtsepi64_epi32","_mm_cvtsepi64_epi8","_mm_cvtsh_h","_mm_cvtsh_i32","_mm_cvtsh_i64","_mm_cvtsh_sd","_mm_cvtsh_ss","_mm_cvtsh_u32","_mm_cvtsh_u64","_mm_cvtsi128_si16","_mm_cvtsi128_si32","_mm_cvtsi128_si64","_mm_cvtsi128_si64x","_mm_cvtsi16_si128","_mm_cvtsi32_sd","_mm_cvtsi32_si128","_mm_cvtsi32_ss","_mm_cvtsi64_sd","_mm_cvtsi64_si128","_mm_cvtsi64_ss","_mm_cvtsi64x_sd","_mm_cvtsi64x_si128","_mm_cvtss_f32","_mm_cvtss_i32","_mm_cvtss_i64","_mm_cvtss_sd","_mm_cvtss_sh","_mm_cvtss_si32","_mm_cvtss_si64","_mm_cvtss_u32","_mm_cvtss_u64","_mm_cvtt_roundsd_i32","_mm_cvtt_roundsd_i64","_mm_cvtt_roundsd_si32","_mm_cvtt_roundsd_si64","_mm_cvtt_roundsd_u32","_mm_cvtt_roundsd_u64","_mm_cvtt_roundsh_i32","_mm_cvtt_roundsh_i64","_mm_cvtt_roundsh_u32","_mm_cvtt_roundsh_u64","_mm_cvtt_roundss_i32","_mm_cvtt_roundss_i64","_mm_cvtt_roundss_si32","_mm_cvtt_roundss_si64","_mm_cvtt_roundss_u32","_mm_cvtt_roundss_u64","_mm_cvtt_ss2si","_mm_cvttpd_epi32","_mm_cvttpd_epi64","_mm_cvttpd_epu32","_mm_cvttpd_epu64","_mm_cvttph_epi16","_mm_cvttph_epi32","_mm_cvttph_epi64","_mm_cvttph_epu16","_mm_cvttph_epu32","_mm_cvttph_epu64","_mm_cvttps_epi32","_mm_cvttps_epi64","_mm_cvttps_epu32","_mm_cvttps_epu64","_mm_cvttsd_i32","_mm_cvttsd_i64","_mm_cvttsd_si32","_mm_cvttsd_si64","_mm_cvttsd_si64x","_mm_cvttsd_u32","_mm_cvttsd_u64","_mm_cvttsh_i32","_mm_cvttsh_i64","_mm_cvttsh_u32","_mm_cvttsh_u64","_mm_cvttss_i32","_mm_cvttss_i64","_mm_cvttss_si32","_mm_cvttss_si64","_mm_cvttss_u32","_mm_cvttss_u64","_mm_cvtu32_sd","_mm_cvtu32_sh","_mm_cvtu32_ss","_mm_cvtu64_sd","_mm_cvtu64_sh","_mm_cvtu64_ss","_mm_cvtusepi16_epi8","_mm_cvtusepi32_epi16","_mm_cvtusepi32_epi8","_mm_cvtusepi64_epi16","_mm_cvtusepi64_epi32","_mm_cvtusepi64_epi8","_mm_cvtxph_ps","_mm_cvtxps_ph","_mm_dbsad_epu8","_mm_div_pd","_mm_div_ph","_mm_div_ps","_mm_div_round_sd","_mm_div_round_sh","_mm_div_round_ss","_mm_div_sd","_mm_div_sh","_mm_div_ss","_mm_dp_pd","_mm_dp_ps","_mm_dpbf16_ps","_mm_dpbssd_epi32","_mm_dpbssds_epi32","_mm_dpbsud_epi32","_mm_dpbsuds_epi32","_mm_dpbusd_avx_epi32","_mm_dpbusd_epi32","_mm_dpbusds_avx_epi32","_mm_dpbusds_epi32","_mm_dpbuud_epi32","_mm_dpbuuds_epi32","_mm_dpwssd_avx_epi32","_mm_dpwssd_epi32","_mm_dpwssds_avx_epi32","_mm_dpwssds_epi32","_mm_dpwsud_epi32","_mm_dpwsuds_epi32","_mm_dpwusd_epi32","_mm_dpwusds_epi32","_mm_dpwuud_epi32","_mm_dpwuuds_epi32","_mm_extract_epi16","_mm_extract_epi32","_mm_extract_epi64","_mm_extract_epi8","_mm_extract_ps","_mm_extract_si64","_mm_extracti_si64","_mm_fcmadd_pch","_mm_fcmadd_round_sch","_mm_fcmadd_sch","_mm_fcmul_pch","_mm_fcmul_round_sch","_mm_fcmul_sch","_mm_fixupimm_pd","_mm_fixupimm_ps","_mm_fixupimm_round_sd","_mm_fixupimm_round_ss","_mm_fixupimm_sd","_mm_fixupimm_ss","_mm_floor_pd","_mm_floor_ps","_mm_floor_sd","_mm_floor_ss","_mm_fmadd_pch","_mm_fmadd_pd","_mm_fmadd_ph","_mm_fmadd_ps","_mm_fmadd_round_sch","_mm_fmadd_round_sd","_mm_fmadd_round_sh","_mm_fmadd_round_ss","_mm_fmadd_sch","_mm_fmadd_sd","_mm_fmadd_sh","_mm_fmadd_ss","_mm_fmaddsub_pd","_mm_fmaddsub_ph","_mm_fmaddsub_ps","_mm_fmsub_pd","_mm_fmsub_ph","_mm_fmsub_ps","_mm_fmsub_round_sd","_mm_fmsub_round_sh","_mm_fmsub_round_ss","_mm_fmsub_sd","_mm_fmsub_sh","_mm_fmsub_ss","_mm_fmsubadd_pd","_mm_fmsubadd_ph","_mm_fmsubadd_ps","_mm_fmul_pch","_mm_fmul_round_sch","_mm_fmul_sch","_mm_fnmadd_pd","_mm_fnmadd_ph","_mm_fnmadd_ps","_mm_fnmadd_round_sd","_mm_fnmadd_round_sh","_mm_fnmadd_round_ss","_mm_fnmadd_sd","_mm_fnmadd_sh","_mm_fnmadd_ss","_mm_fnmsub_pd","_mm_fnmsub_ph","_mm_fnmsub_ps","_mm_fnmsub_round_sd","_mm_fnmsub_round_sh","_mm_fnmsub_round_ss","_mm_fnmsub_sd","_mm_fnmsub_sh","_mm_fnmsub_ss","_mm_fpclass_pd_mask","_mm_fpclass_ph_mask","_mm_fpclass_ps_mask","_mm_fpclass_sd_mask","_mm_fpclass_sh_mask","_mm_fpclass_ss_mask","_mm_getcsr","_mm_getexp_pd","_mm_getexp_ph","_mm_getexp_ps","_mm_getexp_round_sd","_mm_getexp_round_sh","_mm_getexp_round_ss","_mm_getexp_sd","_mm_getexp_sh","_mm_getexp_ss","_mm_getmant_pd","_mm_getmant_ph","_mm_getmant_ps","_mm_getmant_round_sd","_mm_getmant_round_sh","_mm_getmant_round_ss","_mm_getmant_sd","_mm_getmant_sh","_mm_getmant_ss","_mm_gf2p8affine_epi64_epi8","_mm_gf2p8affineinv_epi64_epi8","_mm_gf2p8mul_epi8","_mm_hadd_epi16","_mm_hadd_epi32","_mm_hadd_pd","_mm_hadd_ps","_mm_hadds_epi16","_mm_hsub_epi16","_mm_hsub_epi32","_mm_hsub_pd","_mm_hsub_ps","_mm_hsubs_epi16","_mm_i32gather_epi32","_mm_i32gather_epi64","_mm_i32gather_pd","_mm_i32gather_ps","_mm_i32scatter_epi32","_mm_i32scatter_epi64","_mm_i32scatter_pd","_mm_i32scatter_ps","_mm_i64gather_epi32","_mm_i64gather_epi64","_mm_i64gather_pd","_mm_i64gather_ps","_mm_i64scatter_epi32","_mm_i64scatter_epi64","_mm_i64scatter_pd","_mm_i64scatter_ps","_mm_insert_epi16","_mm_insert_epi32","_mm_insert_epi64","_mm_insert_epi8","_mm_insert_ps","_mm_insert_si64","_mm_inserti_si64","_mm_lddqu_si128","_mm_lfence","_mm_load1_pd","_mm_load1_ps","_mm_load_epi32","_mm_load_epi64","_mm_load_pd","_mm_load_pd1","_mm_load_ph","_mm_load_ps","_mm_load_ps1","_mm_load_sd","_mm_load_sh","_mm_load_si128","_mm_load_ss","_mm_loaddup_pd","_mm_loadh_pd","_mm_loadl_epi64","_mm_loadl_pd","_mm_loadr_pd","_mm_loadr_ps","_mm_loadu_epi16","_mm_loadu_epi32","_mm_loadu_epi64","_mm_loadu_epi8","_mm_loadu_pd","_mm_loadu_ph","_mm_loadu_ps","_mm_loadu_si128","_mm_loadu_si16","_mm_loadu_si32","_mm_loadu_si64","_mm_lzcnt_epi32","_mm_lzcnt_epi64","_mm_madd52hi_avx_epu64","_mm_madd52hi_epu64","_mm_madd52lo_avx_epu64","_mm_madd52lo_epu64","_mm_madd_epi16","_mm_maddubs_epi16","_mm_mask2_permutex2var_epi16","_mm_mask2_permutex2var_epi32","_mm_mask2_permutex2var_epi64","_mm_mask2_permutex2var_epi8","_mm_mask2_permutex2var_pd","_mm_mask2_permutex2var_ps","_mm_mask3_fcmadd_pch","_mm_mask3_fcmadd_round_sch","_mm_mask3_fcmadd_sch","_mm_mask3_fmadd_pch","_mm_mask3_fmadd_pd","_mm_mask3_fmadd_ph","_mm_mask3_fmadd_ps","_mm_mask3_fmadd_round_sch","_mm_mask3_fmadd_round_sd","_mm_mask3_fmadd_round_sh","_mm_mask3_fmadd_round_ss","_mm_mask3_fmadd_sch","_mm_mask3_fmadd_sd","_mm_mask3_fmadd_sh","_mm_mask3_fmadd_ss","_mm_mask3_fmaddsub_pd","_mm_mask3_fmaddsub_ph","_mm_mask3_fmaddsub_ps","_mm_mask3_fmsub_pd","_mm_mask3_fmsub_ph","_mm_mask3_fmsub_ps","_mm_mask3_fmsub_round_sd","_mm_mask3_fmsub_round_sh","_mm_mask3_fmsub_round_ss","_mm_mask3_fmsub_sd","_mm_mask3_fmsub_sh","_mm_mask3_fmsub_ss","_mm_mask3_fmsubadd_pd","_mm_mask3_fmsubadd_ph","_mm_mask3_fmsubadd_ps","_mm_mask3_fnmadd_pd","_mm_mask3_fnmadd_ph","_mm_mask3_fnmadd_ps","_mm_mask3_fnmadd_round_sd","_mm_mask3_fnmadd_round_sh","_mm_mask3_fnmadd_round_ss","_mm_mask3_fnmadd_sd","_mm_mask3_fnmadd_sh","_mm_mask3_fnmadd_ss","_mm_mask3_fnmsub_pd","_mm_mask3_fnmsub_ph","_mm_mask3_fnmsub_ps","_mm_mask3_fnmsub_round_sd","_mm_mask3_fnmsub_round_sh","_mm_mask3_fnmsub_round_ss","_mm_mask3_fnmsub_sd","_mm_mask3_fnmsub_sh","_mm_mask3_fnmsub_ss","_mm_mask_abs_epi16","_mm_mask_abs_epi32","_mm_mask_abs_epi64","_mm_mask_abs_epi8","_mm_mask_add_epi16","_mm_mask_add_epi32","_mm_mask_add_epi64","_mm_mask_add_epi8","_mm_mask_add_pd","_mm_mask_add_ph","_mm_mask_add_ps","_mm_mask_add_round_sd","_mm_mask_add_round_sh","_mm_mask_add_round_ss","_mm_mask_add_sd","_mm_mask_add_sh","_mm_mask_add_ss","_mm_mask_adds_epi16","_mm_mask_adds_epi8","_mm_mask_adds_epu16","_mm_mask_adds_epu8","_mm_mask_alignr_epi32","_mm_mask_alignr_epi64","_mm_mask_alignr_epi8","_mm_mask_and_epi32","_mm_mask_and_epi64","_mm_mask_and_pd","_mm_mask_and_ps","_mm_mask_andnot_epi32","_mm_mask_andnot_epi64","_mm_mask_andnot_pd","_mm_mask_andnot_ps","_mm_mask_avg_epu16","_mm_mask_avg_epu8","_mm_mask_bitshuffle_epi64_mask","_mm_mask_blend_epi16","_mm_mask_blend_epi32","_mm_mask_blend_epi64","_mm_mask_blend_epi8","_mm_mask_blend_pd","_mm_mask_blend_ph","_mm_mask_blend_ps","_mm_mask_broadcast_i32x2","_mm_mask_broadcastb_epi8","_mm_mask_broadcastd_epi32","_mm_mask_broadcastq_epi64","_mm_mask_broadcastss_ps","_mm_mask_broadcastw_epi16","_mm_mask_cmp_epi16_mask","_mm_mask_cmp_epi32_mask","_mm_mask_cmp_epi64_mask","_mm_mask_cmp_epi8_mask","_mm_mask_cmp_epu16_mask","_mm_mask_cmp_epu32_mask","_mm_mask_cmp_epu64_mask","_mm_mask_cmp_epu8_mask","_mm_mask_cmp_pd_mask","_mm_mask_cmp_ph_mask","_mm_mask_cmp_ps_mask","_mm_mask_cmp_round_sd_mask","_mm_mask_cmp_round_sh_mask","_mm_mask_cmp_round_ss_mask","_mm_mask_cmp_sd_mask","_mm_mask_cmp_sh_mask","_mm_mask_cmp_ss_mask","_mm_mask_cmpeq_epi16_mask","_mm_mask_cmpeq_epi32_mask","_mm_mask_cmpeq_epi64_mask","_mm_mask_cmpeq_epi8_mask","_mm_mask_cmpeq_epu16_mask","_mm_mask_cmpeq_epu32_mask","_mm_mask_cmpeq_epu64_mask","_mm_mask_cmpeq_epu8_mask","_mm_mask_cmpge_epi16_mask","_mm_mask_cmpge_epi32_mask","_mm_mask_cmpge_epi64_mask","_mm_mask_cmpge_epi8_mask","_mm_mask_cmpge_epu16_mask","_mm_mask_cmpge_epu32_mask","_mm_mask_cmpge_epu64_mask","_mm_mask_cmpge_epu8_mask","_mm_mask_cmpgt_epi16_mask","_mm_mask_cmpgt_epi32_mask","_mm_mask_cmpgt_epi64_mask","_mm_mask_cmpgt_epi8_mask","_mm_mask_cmpgt_epu16_mask","_mm_mask_cmpgt_epu32_mask","_mm_mask_cmpgt_epu64_mask","_mm_mask_cmpgt_epu8_mask","_mm_mask_cmple_epi16_mask","_mm_mask_cmple_epi32_mask","_mm_mask_cmple_epi64_mask","_mm_mask_cmple_epi8_mask","_mm_mask_cmple_epu16_mask","_mm_mask_cmple_epu32_mask","_mm_mask_cmple_epu64_mask","_mm_mask_cmple_epu8_mask","_mm_mask_cmplt_epi16_mask","_mm_mask_cmplt_epi32_mask","_mm_mask_cmplt_epi64_mask","_mm_mask_cmplt_epi8_mask","_mm_mask_cmplt_epu16_mask","_mm_mask_cmplt_epu32_mask","_mm_mask_cmplt_epu64_mask","_mm_mask_cmplt_epu8_mask","_mm_mask_cmpneq_epi16_mask","_mm_mask_cmpneq_epi32_mask","_mm_mask_cmpneq_epi64_mask","_mm_mask_cmpneq_epi8_mask","_mm_mask_cmpneq_epu16_mask","_mm_mask_cmpneq_epu32_mask","_mm_mask_cmpneq_epu64_mask","_mm_mask_cmpneq_epu8_mask","_mm_mask_cmul_pch","_mm_mask_cmul_round_sch","_mm_mask_cmul_sch","_mm_mask_compress_epi16","_mm_mask_compress_epi32","_mm_mask_compress_epi64","_mm_mask_compress_epi8","_mm_mask_compress_pd","_mm_mask_compress_ps","_mm_mask_compressstoreu_epi16","_mm_mask_compressstoreu_epi32","_mm_mask_compressstoreu_epi64","_mm_mask_compressstoreu_epi8","_mm_mask_compressstoreu_pd","_mm_mask_compressstoreu_ps","_mm_mask_conflict_epi32","_mm_mask_conflict_epi64","_mm_mask_conj_pch","_mm_mask_cvt_roundps_ph","_mm_mask_cvt_roundsd_sh","_mm_mask_cvt_roundsd_ss","_mm_mask_cvt_roundsh_sd","_mm_mask_cvt_roundsh_ss","_mm_mask_cvt_roundss_sd","_mm_mask_cvt_roundss_sh","_mm_mask_cvtepi16_epi32","_mm_mask_cvtepi16_epi64","_mm_mask_cvtepi16_epi8","_mm_mask_cvtepi16_ph","_mm_mask_cvtepi16_storeu_epi8","_mm_mask_cvtepi32_epi16","_mm_mask_cvtepi32_epi64","_mm_mask_cvtepi32_epi8","_mm_mask_cvtepi32_pd","_mm_mask_cvtepi32_ph","_mm_mask_cvtepi32_ps","_mm_mask_cvtepi32_storeu_epi16","_mm_mask_cvtepi32_storeu_epi8","_mm_mask_cvtepi64_epi16","_mm_mask_cvtepi64_epi32","_mm_mask_cvtepi64_epi8","_mm_mask_cvtepi64_pd","_mm_mask_cvtepi64_ph","_mm_mask_cvtepi64_ps","_mm_mask_cvtepi64_storeu_epi16","_mm_mask_cvtepi64_storeu_epi32","_mm_mask_cvtepi64_storeu_epi8","_mm_mask_cvtepi8_epi16","_mm_mask_cvtepi8_epi32","_mm_mask_cvtepi8_epi64","_mm_mask_cvtepu16_epi32","_mm_mask_cvtepu16_epi64","_mm_mask_cvtepu16_ph","_mm_mask_cvtepu32_epi64","_mm_mask_cvtepu32_pd","_mm_mask_cvtepu32_ph","_mm_mask_cvtepu64_pd","_mm_mask_cvtepu64_ph","_mm_mask_cvtepu64_ps","_mm_mask_cvtepu8_epi16","_mm_mask_cvtepu8_epi32","_mm_mask_cvtepu8_epi64","_mm_mask_cvtne2ps_pbh","_mm_mask_cvtneps_pbh","_mm_mask_cvtpbh_ps","_mm_mask_cvtpd_epi32","_mm_mask_cvtpd_epi64","_mm_mask_cvtpd_epu32","_mm_mask_cvtpd_epu64","_mm_mask_cvtpd_ph","_mm_mask_cvtpd_ps","_mm_mask_cvtph_epi16","_mm_mask_cvtph_epi32","_mm_mask_cvtph_epi64","_mm_mask_cvtph_epu16","_mm_mask_cvtph_epu32","_mm_mask_cvtph_epu64","_mm_mask_cvtph_pd","_mm_mask_cvtph_ps","_mm_mask_cvtps_epi32","_mm_mask_cvtps_epi64","_mm_mask_cvtps_epu32","_mm_mask_cvtps_epu64","_mm_mask_cvtps_ph","_mm_mask_cvtsd_sh","_mm_mask_cvtsd_ss","_mm_mask_cvtsepi16_epi8","_mm_mask_cvtsepi16_storeu_epi8","_mm_mask_cvtsepi32_epi16","_mm_mask_cvtsepi32_epi8","_mm_mask_cvtsepi32_storeu_epi16","_mm_mask_cvtsepi32_storeu_epi8","_mm_mask_cvtsepi64_epi16","_mm_mask_cvtsepi64_epi32","_mm_mask_cvtsepi64_epi8","_mm_mask_cvtsepi64_storeu_epi16","_mm_mask_cvtsepi64_storeu_epi32","_mm_mask_cvtsepi64_storeu_epi8","_mm_mask_cvtsh_sd","_mm_mask_cvtsh_ss","_mm_mask_cvtss_sd","_mm_mask_cvtss_sh","_mm_mask_cvttpd_epi32","_mm_mask_cvttpd_epi64","_mm_mask_cvttpd_epu32","_mm_mask_cvttpd_epu64","_mm_mask_cvttph_epi16","_mm_mask_cvttph_epi32","_mm_mask_cvttph_epi64","_mm_mask_cvttph_epu16","_mm_mask_cvttph_epu32","_mm_mask_cvttph_epu64","_mm_mask_cvttps_epi32","_mm_mask_cvttps_epi64","_mm_mask_cvttps_epu32","_mm_mask_cvttps_epu64","_mm_mask_cvtusepi16_epi8","_mm_mask_cvtusepi16_storeu_epi8","_mm_mask_cvtusepi32_epi16","_mm_mask_cvtusepi32_epi8","_mm_mask_cvtusepi32_storeu_epi16","_mm_mask_cvtusepi32_storeu_epi8","_mm_mask_cvtusepi64_epi16","_mm_mask_cvtusepi64_epi32","_mm_mask_cvtusepi64_epi8","_mm_mask_cvtusepi64_storeu_epi16","_mm_mask_cvtusepi64_storeu_epi32","_mm_mask_cvtusepi64_storeu_epi8","_mm_mask_cvtxph_ps","_mm_mask_cvtxps_ph","_mm_mask_dbsad_epu8","_mm_mask_div_pd","_mm_mask_div_ph","_mm_mask_div_ps","_mm_mask_div_round_sd","_mm_mask_div_round_sh","_mm_mask_div_round_ss","_mm_mask_div_sd","_mm_mask_div_sh","_mm_mask_div_ss","_mm_mask_dpbf16_ps","_mm_mask_dpbusd_epi32","_mm_mask_dpbusds_epi32","_mm_mask_dpwssd_epi32","_mm_mask_dpwssds_epi32","_mm_mask_expand_epi16","_mm_mask_expand_epi32","_mm_mask_expand_epi64","_mm_mask_expand_epi8","_mm_mask_expand_pd","_mm_mask_expand_ps","_mm_mask_expandloadu_epi16","_mm_mask_expandloadu_epi32","_mm_mask_expandloadu_epi64","_mm_mask_expandloadu_epi8","_mm_mask_expandloadu_pd","_mm_mask_expandloadu_ps","_mm_mask_fcmadd_pch","_mm_mask_fcmadd_round_sch","_mm_mask_fcmadd_sch","_mm_mask_fcmul_pch","_mm_mask_fcmul_round_sch","_mm_mask_fcmul_sch","_mm_mask_fixupimm_pd","_mm_mask_fixupimm_ps","_mm_mask_fixupimm_round_sd","_mm_mask_fixupimm_round_ss","_mm_mask_fixupimm_sd","_mm_mask_fixupimm_ss","_mm_mask_fmadd_pch","_mm_mask_fmadd_pd","_mm_mask_fmadd_ph","_mm_mask_fmadd_ps","_mm_mask_fmadd_round_sch","_mm_mask_fmadd_round_sd","_mm_mask_fmadd_round_sh","_mm_mask_fmadd_round_ss","_mm_mask_fmadd_sch","_mm_mask_fmadd_sd","_mm_mask_fmadd_sh","_mm_mask_fmadd_ss","_mm_mask_fmaddsub_pd","_mm_mask_fmaddsub_ph","_mm_mask_fmaddsub_ps","_mm_mask_fmsub_pd","_mm_mask_fmsub_ph","_mm_mask_fmsub_ps","_mm_mask_fmsub_round_sd","_mm_mask_fmsub_round_sh","_mm_mask_fmsub_round_ss","_mm_mask_fmsub_sd","_mm_mask_fmsub_sh","_mm_mask_fmsub_ss","_mm_mask_fmsubadd_pd","_mm_mask_fmsubadd_ph","_mm_mask_fmsubadd_ps","_mm_mask_fmul_pch","_mm_mask_fmul_round_sch","_mm_mask_fmul_sch","_mm_mask_fnmadd_pd","_mm_mask_fnmadd_ph","_mm_mask_fnmadd_ps","_mm_mask_fnmadd_round_sd","_mm_mask_fnmadd_round_sh","_mm_mask_fnmadd_round_ss","_mm_mask_fnmadd_sd","_mm_mask_fnmadd_sh","_mm_mask_fnmadd_ss","_mm_mask_fnmsub_pd","_mm_mask_fnmsub_ph","_mm_mask_fnmsub_ps","_mm_mask_fnmsub_round_sd","_mm_mask_fnmsub_round_sh","_mm_mask_fnmsub_round_ss","_mm_mask_fnmsub_sd","_mm_mask_fnmsub_sh","_mm_mask_fnmsub_ss","_mm_mask_fpclass_pd_mask","_mm_mask_fpclass_ph_mask","_mm_mask_fpclass_ps_mask","_mm_mask_fpclass_sd_mask","_mm_mask_fpclass_sh_mask","_mm_mask_fpclass_ss_mask","_mm_mask_getexp_pd","_mm_mask_getexp_ph","_mm_mask_getexp_ps","_mm_mask_getexp_round_sd","_mm_mask_getexp_round_sh","_mm_mask_getexp_round_ss","_mm_mask_getexp_sd","_mm_mask_getexp_sh","_mm_mask_getexp_ss","_mm_mask_getmant_pd","_mm_mask_getmant_ph","_mm_mask_getmant_ps","_mm_mask_getmant_round_sd","_mm_mask_getmant_round_sh","_mm_mask_getmant_round_ss","_mm_mask_getmant_sd","_mm_mask_getmant_sh","_mm_mask_getmant_ss","_mm_mask_gf2p8affine_epi64_epi8","_mm_mask_gf2p8affineinv_epi64_epi8","_mm_mask_gf2p8mul_epi8","_mm_mask_i32gather_epi32","_mm_mask_i32gather_epi64","_mm_mask_i32gather_pd","_mm_mask_i32gather_ps","_mm_mask_i32scatter_epi32","_mm_mask_i32scatter_epi64","_mm_mask_i32scatter_pd","_mm_mask_i32scatter_ps","_mm_mask_i64gather_epi32","_mm_mask_i64gather_epi64","_mm_mask_i64gather_pd","_mm_mask_i64gather_ps","_mm_mask_i64scatter_epi32","_mm_mask_i64scatter_epi64","_mm_mask_i64scatter_pd","_mm_mask_i64scatter_ps","_mm_mask_load_epi32","_mm_mask_load_epi64","_mm_mask_load_pd","_mm_mask_load_ps","_mm_mask_load_sd","_mm_mask_load_sh","_mm_mask_load_ss","_mm_mask_loadu_epi16","_mm_mask_loadu_epi32","_mm_mask_loadu_epi64","_mm_mask_loadu_epi8","_mm_mask_loadu_pd","_mm_mask_loadu_ps","_mm_mask_lzcnt_epi32","_mm_mask_lzcnt_epi64","_mm_mask_madd52hi_epu64","_mm_mask_madd52lo_epu64","_mm_mask_madd_epi16","_mm_mask_maddubs_epi16","_mm_mask_max_epi16","_mm_mask_max_epi32","_mm_mask_max_epi64","_mm_mask_max_epi8","_mm_mask_max_epu16","_mm_mask_max_epu32","_mm_mask_max_epu64","_mm_mask_max_epu8","_mm_mask_max_pd","_mm_mask_max_ph","_mm_mask_max_ps","_mm_mask_max_round_sd","_mm_mask_max_round_sh","_mm_mask_max_round_ss","_mm_mask_max_sd","_mm_mask_max_sh","_mm_mask_max_ss","_mm_mask_min_epi16","_mm_mask_min_epi32","_mm_mask_min_epi64","_mm_mask_min_epi8","_mm_mask_min_epu16","_mm_mask_min_epu32","_mm_mask_min_epu64","_mm_mask_min_epu8","_mm_mask_min_pd","_mm_mask_min_ph","_mm_mask_min_ps","_mm_mask_min_round_sd","_mm_mask_min_round_sh","_mm_mask_min_round_ss","_mm_mask_min_sd","_mm_mask_min_sh","_mm_mask_min_ss","_mm_mask_mov_epi16","_mm_mask_mov_epi32","_mm_mask_mov_epi64","_mm_mask_mov_epi8","_mm_mask_mov_pd","_mm_mask_mov_ps","_mm_mask_move_sd","_mm_mask_move_sh","_mm_mask_move_ss","_mm_mask_movedup_pd","_mm_mask_movehdup_ps","_mm_mask_moveldup_ps","_mm_mask_mul_epi32","_mm_mask_mul_epu32","_mm_mask_mul_pch","_mm_mask_mul_pd","_mm_mask_mul_ph","_mm_mask_mul_ps","_mm_mask_mul_round_sch","_mm_mask_mul_round_sd","_mm_mask_mul_round_sh","_mm_mask_mul_round_ss","_mm_mask_mul_sch","_mm_mask_mul_sd","_mm_mask_mul_sh","_mm_mask_mul_ss","_mm_mask_mulhi_epi16","_mm_mask_mulhi_epu16","_mm_mask_mulhrs_epi16","_mm_mask_mullo_epi16","_mm_mask_mullo_epi32","_mm_mask_mullo_epi64","_mm_mask_multishift_epi64_epi8","_mm_mask_or_epi32","_mm_mask_or_epi64","_mm_mask_or_pd","_mm_mask_or_ps","_mm_mask_packs_epi16","_mm_mask_packs_epi32","_mm_mask_packus_epi16","_mm_mask_packus_epi32","_mm_mask_permute_pd","_mm_mask_permute_ps","_mm_mask_permutevar_pd","_mm_mask_permutevar_ps","_mm_mask_permutex2var_epi16","_mm_mask_permutex2var_epi32","_mm_mask_permutex2var_epi64","_mm_mask_permutex2var_epi8","_mm_mask_permutex2var_pd","_mm_mask_permutex2var_ps","_mm_mask_permutexvar_epi16","_mm_mask_permutexvar_epi8","_mm_mask_popcnt_epi16","_mm_mask_popcnt_epi32","_mm_mask_popcnt_epi64","_mm_mask_popcnt_epi8","_mm_mask_range_pd","_mm_mask_range_ps","_mm_mask_range_round_sd","_mm_mask_range_round_ss","_mm_mask_range_sd","_mm_mask_range_ss","_mm_mask_rcp14_pd","_mm_mask_rcp14_ps","_mm_mask_rcp14_sd","_mm_mask_rcp14_ss","_mm_mask_rcp_ph","_mm_mask_rcp_sh","_mm_mask_reduce_add_epi16","_mm_mask_reduce_add_epi8","_mm_mask_reduce_and_epi16","_mm_mask_reduce_and_epi8","_mm_mask_reduce_max_epi16","_mm_mask_reduce_max_epi8","_mm_mask_reduce_max_epu16","_mm_mask_reduce_max_epu8","_mm_mask_reduce_min_epi16","_mm_mask_reduce_min_epi8","_mm_mask_reduce_min_epu16","_mm_mask_reduce_min_epu8","_mm_mask_reduce_mul_epi16","_mm_mask_reduce_mul_epi8","_mm_mask_reduce_or_epi16","_mm_mask_reduce_or_epi8","_mm_mask_reduce_pd","_mm_mask_reduce_ph","_mm_mask_reduce_ps","_mm_mask_reduce_round_sd","_mm_mask_reduce_round_sh","_mm_mask_reduce_round_ss","_mm_mask_reduce_sd","_mm_mask_reduce_sh","_mm_mask_reduce_ss","_mm_mask_rol_epi32","_mm_mask_rol_epi64","_mm_mask_rolv_epi32","_mm_mask_rolv_epi64","_mm_mask_ror_epi32","_mm_mask_ror_epi64","_mm_mask_rorv_epi32","_mm_mask_rorv_epi64","_mm_mask_roundscale_pd","_mm_mask_roundscale_ph","_mm_mask_roundscale_ps","_mm_mask_roundscale_round_sd","_mm_mask_roundscale_round_sh","_mm_mask_roundscale_round_ss","_mm_mask_roundscale_sd","_mm_mask_roundscale_sh","_mm_mask_roundscale_ss","_mm_mask_rsqrt14_pd","_mm_mask_rsqrt14_ps","_mm_mask_rsqrt14_sd","_mm_mask_rsqrt14_ss","_mm_mask_rsqrt_ph","_mm_mask_rsqrt_sh","_mm_mask_scalef_pd","_mm_mask_scalef_ph","_mm_mask_scalef_ps","_mm_mask_scalef_round_sd","_mm_mask_scalef_round_sh","_mm_mask_scalef_round_ss","_mm_mask_scalef_sd","_mm_mask_scalef_sh","_mm_mask_scalef_ss","_mm_mask_set1_epi16","_mm_mask_set1_epi32","_mm_mask_set1_epi64","_mm_mask_set1_epi8","_mm_mask_shldi_epi16","_mm_mask_shldi_epi32","_mm_mask_shldi_epi64","_mm_mask_shldv_epi16","_mm_mask_shldv_epi32","_mm_mask_shldv_epi64","_mm_mask_shrdi_epi16","_mm_mask_shrdi_epi32","_mm_mask_shrdi_epi64","_mm_mask_shrdv_epi16","_mm_mask_shrdv_epi32","_mm_mask_shrdv_epi64","_mm_mask_shuffle_epi32","_mm_mask_shuffle_epi8","_mm_mask_shuffle_pd","_mm_mask_shuffle_ps","_mm_mask_shufflehi_epi16","_mm_mask_shufflelo_epi16","_mm_mask_sll_epi16","_mm_mask_sll_epi32","_mm_mask_sll_epi64","_mm_mask_slli_epi16","_mm_mask_slli_epi32","_mm_mask_slli_epi64","_mm_mask_sllv_epi16","_mm_mask_sllv_epi32","_mm_mask_sllv_epi64","_mm_mask_sqrt_pd","_mm_mask_sqrt_ph","_mm_mask_sqrt_ps","_mm_mask_sqrt_round_sd","_mm_mask_sqrt_round_sh","_mm_mask_sqrt_round_ss","_mm_mask_sqrt_sd","_mm_mask_sqrt_sh","_mm_mask_sqrt_ss","_mm_mask_sra_epi16","_mm_mask_sra_epi32","_mm_mask_sra_epi64","_mm_mask_srai_epi16","_mm_mask_srai_epi32","_mm_mask_srai_epi64","_mm_mask_srav_epi16","_mm_mask_srav_epi32","_mm_mask_srav_epi64","_mm_mask_srl_epi16","_mm_mask_srl_epi32","_mm_mask_srl_epi64","_mm_mask_srli_epi16","_mm_mask_srli_epi32","_mm_mask_srli_epi64","_mm_mask_srlv_epi16","_mm_mask_srlv_epi32","_mm_mask_srlv_epi64","_mm_mask_store_epi32","_mm_mask_store_epi64","_mm_mask_store_pd","_mm_mask_store_ps","_mm_mask_store_sd","_mm_mask_store_sh","_mm_mask_store_ss","_mm_mask_storeu_epi16","_mm_mask_storeu_epi32","_mm_mask_storeu_epi64","_mm_mask_storeu_epi8","_mm_mask_storeu_pd","_mm_mask_storeu_ps","_mm_mask_sub_epi16","_mm_mask_sub_epi32","_mm_mask_sub_epi64","_mm_mask_sub_epi8","_mm_mask_sub_pd","_mm_mask_sub_ph","_mm_mask_sub_ps","_mm_mask_sub_round_sd","_mm_mask_sub_round_sh","_mm_mask_sub_round_ss","_mm_mask_sub_sd","_mm_mask_sub_sh","_mm_mask_sub_ss","_mm_mask_subs_epi16","_mm_mask_subs_epi8","_mm_mask_subs_epu16","_mm_mask_subs_epu8","_mm_mask_ternarylogic_epi32","_mm_mask_ternarylogic_epi64","_mm_mask_test_epi16_mask","_mm_mask_test_epi32_mask","_mm_mask_test_epi64_mask","_mm_mask_test_epi8_mask","_mm_mask_testn_epi16_mask","_mm_mask_testn_epi32_mask","_mm_mask_testn_epi64_mask","_mm_mask_testn_epi8_mask","_mm_mask_unpackhi_epi16","_mm_mask_unpackhi_epi32","_mm_mask_unpackhi_epi64","_mm_mask_unpackhi_epi8","_mm_mask_unpackhi_pd","_mm_mask_unpackhi_ps","_mm_mask_unpacklo_epi16","_mm_mask_unpacklo_epi32","_mm_mask_unpacklo_epi64","_mm_mask_unpacklo_epi8","_mm_mask_unpacklo_pd","_mm_mask_unpacklo_ps","_mm_mask_xor_epi32","_mm_mask_xor_epi64","_mm_mask_xor_pd","_mm_mask_xor_ps","_mm_maskload_epi32","_mm_maskload_epi64","_mm_maskload_pd","_mm_maskload_ps","_mm_maskmoveu_si128","_mm_maskstore_epi32","_mm_maskstore_epi64","_mm_maskstore_pd","_mm_maskstore_ps","_mm_maskz_abs_epi16","_mm_maskz_abs_epi32","_mm_maskz_abs_epi64","_mm_maskz_abs_epi8","_mm_maskz_add_epi16","_mm_maskz_add_epi32","_mm_maskz_add_epi64","_mm_maskz_add_epi8","_mm_maskz_add_pd","_mm_maskz_add_ph","_mm_maskz_add_ps","_mm_maskz_add_round_sd","_mm_maskz_add_round_sh","_mm_maskz_add_round_ss","_mm_maskz_add_sd","_mm_maskz_add_sh","_mm_maskz_add_ss","_mm_maskz_adds_epi16","_mm_maskz_adds_epi8","_mm_maskz_adds_epu16","_mm_maskz_adds_epu8","_mm_maskz_alignr_epi32","_mm_maskz_alignr_epi64","_mm_maskz_alignr_epi8","_mm_maskz_and_epi32","_mm_maskz_and_epi64","_mm_maskz_and_pd","_mm_maskz_and_ps","_mm_maskz_andnot_epi32","_mm_maskz_andnot_epi64","_mm_maskz_andnot_pd","_mm_maskz_andnot_ps","_mm_maskz_avg_epu16","_mm_maskz_avg_epu8","_mm_maskz_broadcast_i32x2","_mm_maskz_broadcastb_epi8","_mm_maskz_broadcastd_epi32","_mm_maskz_broadcastq_epi64","_mm_maskz_broadcastss_ps","_mm_maskz_broadcastw_epi16","_mm_maskz_cmul_pch","_mm_maskz_cmul_round_sch","_mm_maskz_cmul_sch","_mm_maskz_compress_epi16","_mm_maskz_compress_epi32","_mm_maskz_compress_epi64","_mm_maskz_compress_epi8","_mm_maskz_compress_pd","_mm_maskz_compress_ps","_mm_maskz_conflict_epi32","_mm_maskz_conflict_epi64","_mm_maskz_conj_pch","_mm_maskz_cvt_roundps_ph","_mm_maskz_cvt_roundsd_sh","_mm_maskz_cvt_roundsd_ss","_mm_maskz_cvt_roundsh_sd","_mm_maskz_cvt_roundsh_ss","_mm_maskz_cvt_roundss_sd","_mm_maskz_cvt_roundss_sh","_mm_maskz_cvtepi16_epi32","_mm_maskz_cvtepi16_epi64","_mm_maskz_cvtepi16_epi8","_mm_maskz_cvtepi16_ph","_mm_maskz_cvtepi32_epi16","_mm_maskz_cvtepi32_epi64","_mm_maskz_cvtepi32_epi8","_mm_maskz_cvtepi32_pd","_mm_maskz_cvtepi32_ph","_mm_maskz_cvtepi32_ps","_mm_maskz_cvtepi64_epi16","_mm_maskz_cvtepi64_epi32","_mm_maskz_cvtepi64_epi8","_mm_maskz_cvtepi64_pd","_mm_maskz_cvtepi64_ph","_mm_maskz_cvtepi64_ps","_mm_maskz_cvtepi8_epi16","_mm_maskz_cvtepi8_epi32","_mm_maskz_cvtepi8_epi64","_mm_maskz_cvtepu16_epi32","_mm_maskz_cvtepu16_epi64","_mm_maskz_cvtepu16_ph","_mm_maskz_cvtepu32_epi64","_mm_maskz_cvtepu32_pd","_mm_maskz_cvtepu32_ph","_mm_maskz_cvtepu64_pd","_mm_maskz_cvtepu64_ph","_mm_maskz_cvtepu64_ps","_mm_maskz_cvtepu8_epi16","_mm_maskz_cvtepu8_epi32","_mm_maskz_cvtepu8_epi64","_mm_maskz_cvtne2ps_pbh","_mm_maskz_cvtneps_pbh","_mm_maskz_cvtpbh_ps","_mm_maskz_cvtpd_epi32","_mm_maskz_cvtpd_epi64","_mm_maskz_cvtpd_epu32","_mm_maskz_cvtpd_epu64","_mm_maskz_cvtpd_ph","_mm_maskz_cvtpd_ps","_mm_maskz_cvtph_epi16","_mm_maskz_cvtph_epi32","_mm_maskz_cvtph_epi64","_mm_maskz_cvtph_epu16","_mm_maskz_cvtph_epu32","_mm_maskz_cvtph_epu64","_mm_maskz_cvtph_pd","_mm_maskz_cvtph_ps","_mm_maskz_cvtps_epi32","_mm_maskz_cvtps_epi64","_mm_maskz_cvtps_epu32","_mm_maskz_cvtps_epu64","_mm_maskz_cvtps_ph","_mm_maskz_cvtsd_sh","_mm_maskz_cvtsd_ss","_mm_maskz_cvtsepi16_epi8","_mm_maskz_cvtsepi32_epi16","_mm_maskz_cvtsepi32_epi8","_mm_maskz_cvtsepi64_epi16","_mm_maskz_cvtsepi64_epi32","_mm_maskz_cvtsepi64_epi8","_mm_maskz_cvtsh_sd","_mm_maskz_cvtsh_ss","_mm_maskz_cvtss_sd","_mm_maskz_cvtss_sh","_mm_maskz_cvttpd_epi32","_mm_maskz_cvttpd_epi64","_mm_maskz_cvttpd_epu32","_mm_maskz_cvttpd_epu64","_mm_maskz_cvttph_epi16","_mm_maskz_cvttph_epi32","_mm_maskz_cvttph_epi64","_mm_maskz_cvttph_epu16","_mm_maskz_cvttph_epu32","_mm_maskz_cvttph_epu64","_mm_maskz_cvttps_epi32","_mm_maskz_cvttps_epi64","_mm_maskz_cvttps_epu32","_mm_maskz_cvttps_epu64","_mm_maskz_cvtusepi16_epi8","_mm_maskz_cvtusepi32_epi16","_mm_maskz_cvtusepi32_epi8","_mm_maskz_cvtusepi64_epi16","_mm_maskz_cvtusepi64_epi32","_mm_maskz_cvtusepi64_epi8","_mm_maskz_cvtxph_ps","_mm_maskz_cvtxps_ph","_mm_maskz_dbsad_epu8","_mm_maskz_div_pd","_mm_maskz_div_ph","_mm_maskz_div_ps","_mm_maskz_div_round_sd","_mm_maskz_div_round_sh","_mm_maskz_div_round_ss","_mm_maskz_div_sd","_mm_maskz_div_sh","_mm_maskz_div_ss","_mm_maskz_dpbf16_ps","_mm_maskz_dpbusd_epi32","_mm_maskz_dpbusds_epi32","_mm_maskz_dpwssd_epi32","_mm_maskz_dpwssds_epi32","_mm_maskz_expand_epi16","_mm_maskz_expand_epi32","_mm_maskz_expand_epi64","_mm_maskz_expand_epi8","_mm_maskz_expand_pd","_mm_maskz_expand_ps","_mm_maskz_expandloadu_epi16","_mm_maskz_expandloadu_epi32","_mm_maskz_expandloadu_epi64","_mm_maskz_expandloadu_epi8","_mm_maskz_expandloadu_pd","_mm_maskz_expandloadu_ps","_mm_maskz_fcmadd_pch","_mm_maskz_fcmadd_round_sch","_mm_maskz_fcmadd_sch","_mm_maskz_fcmul_pch","_mm_maskz_fcmul_round_sch","_mm_maskz_fcmul_sch","_mm_maskz_fixupimm_pd","_mm_maskz_fixupimm_ps","_mm_maskz_fixupimm_round_sd","_mm_maskz_fixupimm_round_ss","_mm_maskz_fixupimm_sd","_mm_maskz_fixupimm_ss","_mm_maskz_fmadd_pch","_mm_maskz_fmadd_pd","_mm_maskz_fmadd_ph","_mm_maskz_fmadd_ps","_mm_maskz_fmadd_round_sch","_mm_maskz_fmadd_round_sd","_mm_maskz_fmadd_round_sh","_mm_maskz_fmadd_round_ss","_mm_maskz_fmadd_sch","_mm_maskz_fmadd_sd","_mm_maskz_fmadd_sh","_mm_maskz_fmadd_ss","_mm_maskz_fmaddsub_pd","_mm_maskz_fmaddsub_ph","_mm_maskz_fmaddsub_ps","_mm_maskz_fmsub_pd","_mm_maskz_fmsub_ph","_mm_maskz_fmsub_ps","_mm_maskz_fmsub_round_sd","_mm_maskz_fmsub_round_sh","_mm_maskz_fmsub_round_ss","_mm_maskz_fmsub_sd","_mm_maskz_fmsub_sh","_mm_maskz_fmsub_ss","_mm_maskz_fmsubadd_pd","_mm_maskz_fmsubadd_ph","_mm_maskz_fmsubadd_ps","_mm_maskz_fmul_pch","_mm_maskz_fmul_round_sch","_mm_maskz_fmul_sch","_mm_maskz_fnmadd_pd","_mm_maskz_fnmadd_ph","_mm_maskz_fnmadd_ps","_mm_maskz_fnmadd_round_sd","_mm_maskz_fnmadd_round_sh","_mm_maskz_fnmadd_round_ss","_mm_maskz_fnmadd_sd","_mm_maskz_fnmadd_sh","_mm_maskz_fnmadd_ss","_mm_maskz_fnmsub_pd","_mm_maskz_fnmsub_ph","_mm_maskz_fnmsub_ps","_mm_maskz_fnmsub_round_sd","_mm_maskz_fnmsub_round_sh","_mm_maskz_fnmsub_round_ss","_mm_maskz_fnmsub_sd","_mm_maskz_fnmsub_sh","_mm_maskz_fnmsub_ss","_mm_maskz_getexp_pd","_mm_maskz_getexp_ph","_mm_maskz_getexp_ps","_mm_maskz_getexp_round_sd","_mm_maskz_getexp_round_sh","_mm_maskz_getexp_round_ss","_mm_maskz_getexp_sd","_mm_maskz_getexp_sh","_mm_maskz_getexp_ss","_mm_maskz_getmant_pd","_mm_maskz_getmant_ph","_mm_maskz_getmant_ps","_mm_maskz_getmant_round_sd","_mm_maskz_getmant_round_sh","_mm_maskz_getmant_round_ss","_mm_maskz_getmant_sd","_mm_maskz_getmant_sh","_mm_maskz_getmant_ss","_mm_maskz_gf2p8affine_epi64_epi8","_mm_maskz_gf2p8affineinv_epi64_epi8","_mm_maskz_gf2p8mul_epi8","_mm_maskz_load_epi32","_mm_maskz_load_epi64","_mm_maskz_load_pd","_mm_maskz_load_ps","_mm_maskz_load_sd","_mm_maskz_load_sh","_mm_maskz_load_ss","_mm_maskz_loadu_epi16","_mm_maskz_loadu_epi32","_mm_maskz_loadu_epi64","_mm_maskz_loadu_epi8","_mm_maskz_loadu_pd","_mm_maskz_loadu_ps","_mm_maskz_lzcnt_epi32","_mm_maskz_lzcnt_epi64","_mm_maskz_madd52hi_epu64","_mm_maskz_madd52lo_epu64","_mm_maskz_madd_epi16","_mm_maskz_maddubs_epi16","_mm_maskz_max_epi16","_mm_maskz_max_epi32","_mm_maskz_max_epi64","_mm_maskz_max_epi8","_mm_maskz_max_epu16","_mm_maskz_max_epu32","_mm_maskz_max_epu64","_mm_maskz_max_epu8","_mm_maskz_max_pd","_mm_maskz_max_ph","_mm_maskz_max_ps","_mm_maskz_max_round_sd","_mm_maskz_max_round_sh","_mm_maskz_max_round_ss","_mm_maskz_max_sd","_mm_maskz_max_sh","_mm_maskz_max_ss","_mm_maskz_min_epi16","_mm_maskz_min_epi32","_mm_maskz_min_epi64","_mm_maskz_min_epi8","_mm_maskz_min_epu16","_mm_maskz_min_epu32","_mm_maskz_min_epu64","_mm_maskz_min_epu8","_mm_maskz_min_pd","_mm_maskz_min_ph","_mm_maskz_min_ps","_mm_maskz_min_round_sd","_mm_maskz_min_round_sh","_mm_maskz_min_round_ss","_mm_maskz_min_sd","_mm_maskz_min_sh","_mm_maskz_min_ss","_mm_maskz_mov_epi16","_mm_maskz_mov_epi32","_mm_maskz_mov_epi64","_mm_maskz_mov_epi8","_mm_maskz_mov_pd","_mm_maskz_mov_ps","_mm_maskz_move_sd","_mm_maskz_move_sh","_mm_maskz_move_ss","_mm_maskz_movedup_pd","_mm_maskz_movehdup_ps","_mm_maskz_moveldup_ps","_mm_maskz_mul_epi32","_mm_maskz_mul_epu32","_mm_maskz_mul_pch","_mm_maskz_mul_pd","_mm_maskz_mul_ph","_mm_maskz_mul_ps","_mm_maskz_mul_round_sch","_mm_maskz_mul_round_sd","_mm_maskz_mul_round_sh","_mm_maskz_mul_round_ss","_mm_maskz_mul_sch","_mm_maskz_mul_sd","_mm_maskz_mul_sh","_mm_maskz_mul_ss","_mm_maskz_mulhi_epi16","_mm_maskz_mulhi_epu16","_mm_maskz_mulhrs_epi16","_mm_maskz_mullo_epi16","_mm_maskz_mullo_epi32","_mm_maskz_mullo_epi64","_mm_maskz_multishift_epi64_epi8","_mm_maskz_or_epi32","_mm_maskz_or_epi64","_mm_maskz_or_pd","_mm_maskz_or_ps","_mm_maskz_packs_epi16","_mm_maskz_packs_epi32","_mm_maskz_packus_epi16","_mm_maskz_packus_epi32","_mm_maskz_permute_pd","_mm_maskz_permute_ps","_mm_maskz_permutevar_pd","_mm_maskz_permutevar_ps","_mm_maskz_permutex2var_epi16","_mm_maskz_permutex2var_epi32","_mm_maskz_permutex2var_epi64","_mm_maskz_permutex2var_epi8","_mm_maskz_permutex2var_pd","_mm_maskz_permutex2var_ps","_mm_maskz_permutexvar_epi16","_mm_maskz_permutexvar_epi8","_mm_maskz_popcnt_epi16","_mm_maskz_popcnt_epi32","_mm_maskz_popcnt_epi64","_mm_maskz_popcnt_epi8","_mm_maskz_range_pd","_mm_maskz_range_ps","_mm_maskz_range_round_sd","_mm_maskz_range_round_ss","_mm_maskz_range_sd","_mm_maskz_range_ss","_mm_maskz_rcp14_pd","_mm_maskz_rcp14_ps","_mm_maskz_rcp14_sd","_mm_maskz_rcp14_ss","_mm_maskz_rcp_ph","_mm_maskz_rcp_sh","_mm_maskz_reduce_pd","_mm_maskz_reduce_ph","_mm_maskz_reduce_ps","_mm_maskz_reduce_round_sd","_mm_maskz_reduce_round_sh","_mm_maskz_reduce_round_ss","_mm_maskz_reduce_sd","_mm_maskz_reduce_sh","_mm_maskz_reduce_ss","_mm_maskz_rol_epi32","_mm_maskz_rol_epi64","_mm_maskz_rolv_epi32","_mm_maskz_rolv_epi64","_mm_maskz_ror_epi32","_mm_maskz_ror_epi64","_mm_maskz_rorv_epi32","_mm_maskz_rorv_epi64","_mm_maskz_roundscale_pd","_mm_maskz_roundscale_ph","_mm_maskz_roundscale_ps","_mm_maskz_roundscale_round_sd","_mm_maskz_roundscale_round_sh","_mm_maskz_roundscale_round_ss","_mm_maskz_roundscale_sd","_mm_maskz_roundscale_sh","_mm_maskz_roundscale_ss","_mm_maskz_rsqrt14_pd","_mm_maskz_rsqrt14_ps","_mm_maskz_rsqrt14_sd","_mm_maskz_rsqrt14_ss","_mm_maskz_rsqrt_ph","_mm_maskz_rsqrt_sh","_mm_maskz_scalef_pd","_mm_maskz_scalef_ph","_mm_maskz_scalef_ps","_mm_maskz_scalef_round_sd","_mm_maskz_scalef_round_sh","_mm_maskz_scalef_round_ss","_mm_maskz_scalef_sd","_mm_maskz_scalef_sh","_mm_maskz_scalef_ss","_mm_maskz_set1_epi16","_mm_maskz_set1_epi32","_mm_maskz_set1_epi64","_mm_maskz_set1_epi8","_mm_maskz_shldi_epi16","_mm_maskz_shldi_epi32","_mm_maskz_shldi_epi64","_mm_maskz_shldv_epi16","_mm_maskz_shldv_epi32","_mm_maskz_shldv_epi64","_mm_maskz_shrdi_epi16","_mm_maskz_shrdi_epi32","_mm_maskz_shrdi_epi64","_mm_maskz_shrdv_epi16","_mm_maskz_shrdv_epi32","_mm_maskz_shrdv_epi64","_mm_maskz_shuffle_epi32","_mm_maskz_shuffle_epi8","_mm_maskz_shuffle_pd","_mm_maskz_shuffle_ps","_mm_maskz_shufflehi_epi16","_mm_maskz_shufflelo_epi16","_mm_maskz_sll_epi16","_mm_maskz_sll_epi32","_mm_maskz_sll_epi64","_mm_maskz_slli_epi16","_mm_maskz_slli_epi32","_mm_maskz_slli_epi64","_mm_maskz_sllv_epi16","_mm_maskz_sllv_epi32","_mm_maskz_sllv_epi64","_mm_maskz_sqrt_pd","_mm_maskz_sqrt_ph","_mm_maskz_sqrt_ps","_mm_maskz_sqrt_round_sd","_mm_maskz_sqrt_round_sh","_mm_maskz_sqrt_round_ss","_mm_maskz_sqrt_sd","_mm_maskz_sqrt_sh","_mm_maskz_sqrt_ss","_mm_maskz_sra_epi16","_mm_maskz_sra_epi32","_mm_maskz_sra_epi64","_mm_maskz_srai_epi16","_mm_maskz_srai_epi32","_mm_maskz_srai_epi64","_mm_maskz_srav_epi16","_mm_maskz_srav_epi32","_mm_maskz_srav_epi64","_mm_maskz_srl_epi16","_mm_maskz_srl_epi32","_mm_maskz_srl_epi64","_mm_maskz_srli_epi16","_mm_maskz_srli_epi32","_mm_maskz_srli_epi64","_mm_maskz_srlv_epi16","_mm_maskz_srlv_epi32","_mm_maskz_srlv_epi64","_mm_maskz_sub_epi16","_mm_maskz_sub_epi32","_mm_maskz_sub_epi64","_mm_maskz_sub_epi8","_mm_maskz_sub_pd","_mm_maskz_sub_ph","_mm_maskz_sub_ps","_mm_maskz_sub_round_sd","_mm_maskz_sub_round_sh","_mm_maskz_sub_round_ss","_mm_maskz_sub_sd","_mm_maskz_sub_sh","_mm_maskz_sub_ss","_mm_maskz_subs_epi16","_mm_maskz_subs_epi8","_mm_maskz_subs_epu16","_mm_maskz_subs_epu8","_mm_maskz_ternarylogic_epi32","_mm_maskz_ternarylogic_epi64","_mm_maskz_unpackhi_epi16","_mm_maskz_unpackhi_epi32","_mm_maskz_unpackhi_epi64","_mm_maskz_unpackhi_epi8","_mm_maskz_unpackhi_pd","_mm_maskz_unpackhi_ps","_mm_maskz_unpacklo_epi16","_mm_maskz_unpacklo_epi32","_mm_maskz_unpacklo_epi64","_mm_maskz_unpacklo_epi8","_mm_maskz_unpacklo_pd","_mm_maskz_unpacklo_ps","_mm_maskz_xor_epi32","_mm_maskz_xor_epi64","_mm_maskz_xor_pd","_mm_maskz_xor_ps","_mm_max_epi16","_mm_max_epi32","_mm_max_epi64","_mm_max_epi8","_mm_max_epu16","_mm_max_epu32","_mm_max_epu64","_mm_max_epu8","_mm_max_pd","_mm_max_ph","_mm_max_ps","_mm_max_round_sd","_mm_max_round_sh","_mm_max_round_ss","_mm_max_sd","_mm_max_sh","_mm_max_ss","_mm_mfence","_mm_min_epi16","_mm_min_epi32","_mm_min_epi64","_mm_min_epi8","_mm_min_epu16","_mm_min_epu32","_mm_min_epu64","_mm_min_epu8","_mm_min_pd","_mm_min_ph","_mm_min_ps","_mm_min_round_sd","_mm_min_round_sh","_mm_min_round_ss","_mm_min_sd","_mm_min_sh","_mm_min_ss","_mm_minpos_epu16","_mm_mmask_i32gather_epi32","_mm_mmask_i32gather_epi64","_mm_mmask_i32gather_pd","_mm_mmask_i32gather_ps","_mm_mmask_i64gather_epi32","_mm_mmask_i64gather_epi64","_mm_mmask_i64gather_pd","_mm_mmask_i64gather_ps","_mm_move_epi64","_mm_move_sd","_mm_move_sh","_mm_move_ss","_mm_movedup_pd","_mm_movehdup_ps","_mm_movehl_ps","_mm_moveldup_ps","_mm_movelh_ps","_mm_movemask_epi8","_mm_movemask_pd","_mm_movemask_ps","_mm_movepi16_mask","_mm_movepi32_mask","_mm_movepi64_mask","_mm_movepi8_mask","_mm_movm_epi16","_mm_movm_epi32","_mm_movm_epi64","_mm_movm_epi8","_mm_mpsadbw_epu8","_mm_mul_epi32","_mm_mul_epu32","_mm_mul_pch","_mm_mul_pd","_mm_mul_ph","_mm_mul_ps","_mm_mul_round_sch","_mm_mul_round_sd","_mm_mul_round_sh","_mm_mul_round_ss","_mm_mul_sch","_mm_mul_sd","_mm_mul_sh","_mm_mul_ss","_mm_mulhi_epi16","_mm_mulhi_epu16","_mm_mulhrs_epi16","_mm_mullo_epi16","_mm_mullo_epi32","_mm_mullo_epi64","_mm_multishift_epi64_epi8","_mm_or_epi32","_mm_or_epi64","_mm_or_pd","_mm_or_ps","_mm_or_si128","_mm_packs_epi16","_mm_packs_epi32","_mm_packus_epi16","_mm_packus_epi32","_mm_pause","_mm_permute_pd","_mm_permute_ps","_mm_permutevar_pd","_mm_permutevar_ps","_mm_permutex2var_epi16","_mm_permutex2var_epi32","_mm_permutex2var_epi64","_mm_permutex2var_epi8","_mm_permutex2var_pd","_mm_permutex2var_ph","_mm_permutex2var_ps","_mm_permutexvar_epi16","_mm_permutexvar_epi8","_mm_permutexvar_ph","_mm_popcnt_epi16","_mm_popcnt_epi32","_mm_popcnt_epi64","_mm_popcnt_epi8","_mm_prefetch","_mm_range_pd","_mm_range_ps","_mm_range_round_sd","_mm_range_round_ss","_mm_rcp14_pd","_mm_rcp14_ps","_mm_rcp14_sd","_mm_rcp14_ss","_mm_rcp_ph","_mm_rcp_ps","_mm_rcp_sh","_mm_rcp_ss","_mm_reduce_add_epi16","_mm_reduce_add_epi8","_mm_reduce_add_ph","_mm_reduce_and_epi16","_mm_reduce_and_epi8","_mm_reduce_max_epi16","_mm_reduce_max_epi8","_mm_reduce_max_epu16","_mm_reduce_max_epu8","_mm_reduce_max_ph","_mm_reduce_min_epi16","_mm_reduce_min_epi8","_mm_reduce_min_epu16","_mm_reduce_min_epu8","_mm_reduce_min_ph","_mm_reduce_mul_epi16","_mm_reduce_mul_epi8","_mm_reduce_mul_ph","_mm_reduce_or_epi16","_mm_reduce_or_epi8","_mm_reduce_pd","_mm_reduce_ph","_mm_reduce_ps","_mm_reduce_round_sd","_mm_reduce_round_sh","_mm_reduce_round_ss","_mm_reduce_sd","_mm_reduce_sh","_mm_reduce_ss","_mm_rol_epi32","_mm_rol_epi64","_mm_rolv_epi32","_mm_rolv_epi64","_mm_ror_epi32","_mm_ror_epi64","_mm_rorv_epi32","_mm_rorv_epi64","_mm_round_pd","_mm_round_ps","_mm_round_sd","_mm_round_ss","_mm_roundscale_pd","_mm_roundscale_ph","_mm_roundscale_ps","_mm_roundscale_round_sd","_mm_roundscale_round_sh","_mm_roundscale_round_ss","_mm_roundscale_sd","_mm_roundscale_sh","_mm_roundscale_ss","_mm_rsqrt14_pd","_mm_rsqrt14_ps","_mm_rsqrt14_sd","_mm_rsqrt14_ss","_mm_rsqrt_ph","_mm_rsqrt_ps","_mm_rsqrt_sh","_mm_rsqrt_ss","_mm_sad_epu8","_mm_scalef_pd","_mm_scalef_ph","_mm_scalef_ps","_mm_scalef_round_sd","_mm_scalef_round_sh","_mm_scalef_round_ss","_mm_scalef_sd","_mm_scalef_sh","_mm_scalef_ss","_mm_set1_epi16","_mm_set1_epi32","_mm_set1_epi64x","_mm_set1_epi8","_mm_set1_pd","_mm_set1_ph","_mm_set1_ps","_mm_set_epi16","_mm_set_epi32","_mm_set_epi64x","_mm_set_epi8","_mm_set_pd","_mm_set_pd1","_mm_set_ph","_mm_set_ps","_mm_set_ps1","_mm_set_sd","_mm_set_sh","_mm_set_ss","_mm_setcsr","_mm_setr_epi16","_mm_setr_epi32","_mm_setr_epi8","_mm_setr_pd","_mm_setr_ph","_mm_setr_ps","_mm_setzero_pd","_mm_setzero_ph","_mm_setzero_ps","_mm_setzero_si128","_mm_sfence","_mm_sha1msg1_epu32","_mm_sha1msg2_epu32","_mm_sha1nexte_epu32","_mm_sha1rnds4_epu32","_mm_sha256msg1_epu32","_mm_sha256msg2_epu32","_mm_sha256rnds2_epu32","_mm_shldi_epi16","_mm_shldi_epi32","_mm_shldi_epi64","_mm_shldv_epi16","_mm_shldv_epi32","_mm_shldv_epi64","_mm_shrdi_epi16","_mm_shrdi_epi32","_mm_shrdi_epi64","_mm_shrdv_epi16","_mm_shrdv_epi32","_mm_shrdv_epi64","_mm_shuffle_epi32","_mm_shuffle_epi8","_mm_shuffle_pd","_mm_shuffle_ps","_mm_shufflehi_epi16","_mm_shufflelo_epi16","_mm_sign_epi16","_mm_sign_epi32","_mm_sign_epi8","_mm_sll_epi16","_mm_sll_epi32","_mm_sll_epi64","_mm_slli_epi16","_mm_slli_epi32","_mm_slli_epi64","_mm_slli_si128","_mm_sllv_epi16","_mm_sllv_epi32","_mm_sllv_epi64","_mm_sqrt_pd","_mm_sqrt_ph","_mm_sqrt_ps","_mm_sqrt_round_sd","_mm_sqrt_round_sh","_mm_sqrt_round_ss","_mm_sqrt_sd","_mm_sqrt_sh","_mm_sqrt_ss","_mm_sra_epi16","_mm_sra_epi32","_mm_sra_epi64","_mm_srai_epi16","_mm_srai_epi32","_mm_srai_epi64","_mm_srav_epi16","_mm_srav_epi32","_mm_srav_epi64","_mm_srl_epi16","_mm_srl_epi32","_mm_srl_epi64","_mm_srli_epi16","_mm_srli_epi32","_mm_srli_epi64","_mm_srli_si128","_mm_srlv_epi16","_mm_srlv_epi32","_mm_srlv_epi64","_mm_store1_pd","_mm_store1_ps","_mm_store_epi32","_mm_store_epi64","_mm_store_pd","_mm_store_pd1","_mm_store_ph","_mm_store_ps","_mm_store_ps1","_mm_store_sd","_mm_store_sh","_mm_store_si128","_mm_store_ss","_mm_storeh_pd","_mm_storel_epi64","_mm_storel_pd","_mm_storer_pd","_mm_storer_ps","_mm_storeu_epi16","_mm_storeu_epi32","_mm_storeu_epi64","_mm_storeu_epi8","_mm_storeu_pd","_mm_storeu_ph","_mm_storeu_ps","_mm_storeu_si128","_mm_storeu_si16","_mm_storeu_si32","_mm_storeu_si64","_mm_stream_load_si128","_mm_stream_pd","_mm_stream_ps","_mm_stream_sd","_mm_stream_si128","_mm_stream_si32","_mm_stream_si64","_mm_stream_ss","_mm_sub_epi16","_mm_sub_epi32","_mm_sub_epi64","_mm_sub_epi8","_mm_sub_pd","_mm_sub_ph","_mm_sub_ps","_mm_sub_round_sd","_mm_sub_round_sh","_mm_sub_round_ss","_mm_sub_sd","_mm_sub_sh","_mm_sub_ss","_mm_subs_epi16","_mm_subs_epi8","_mm_subs_epu16","_mm_subs_epu8","_mm_ternarylogic_epi32","_mm_ternarylogic_epi64","_mm_test_all_ones","_mm_test_all_zeros","_mm_test_epi16_mask","_mm_test_epi32_mask","_mm_test_epi64_mask","_mm_test_epi8_mask","_mm_test_mix_ones_zeros","_mm_testc_pd","_mm_testc_ps","_mm_testc_si128","_mm_testn_epi16_mask","_mm_testn_epi32_mask","_mm_testn_epi64_mask","_mm_testn_epi8_mask","_mm_testnzc_pd","_mm_testnzc_ps","_mm_testnzc_si128","_mm_testz_pd","_mm_testz_ps","_mm_testz_si128","_mm_tzcnt_32","_mm_tzcnt_64","_mm_ucomieq_sd","_mm_ucomieq_sh","_mm_ucomieq_ss","_mm_ucomige_sd","_mm_ucomige_sh","_mm_ucomige_ss","_mm_ucomigt_sd","_mm_ucomigt_sh","_mm_ucomigt_ss","_mm_ucomile_sd","_mm_ucomile_sh","_mm_ucomile_ss","_mm_ucomilt_sd","_mm_ucomilt_sh","_mm_ucomilt_ss","_mm_ucomineq_sd","_mm_ucomineq_sh","_mm_ucomineq_ss","_mm_undefined_pd","_mm_undefined_ph","_mm_undefined_ps","_mm_undefined_si128","_mm_unpackhi_epi16","_mm_unpackhi_epi32","_mm_unpackhi_epi64","_mm_unpackhi_epi8","_mm_unpackhi_pd","_mm_unpackhi_ps","_mm_unpacklo_epi16","_mm_unpacklo_epi32","_mm_unpacklo_epi64","_mm_unpacklo_epi8","_mm_unpacklo_pd","_mm_unpacklo_ps","_mm_xor_epi32","_mm_xor_epi64","_mm_xor_pd","_mm_xor_ps","_mm_xor_si128","_mulx_u32","_mulx_u64","_pdep_u32","_pdep_u64","_pext_u32","_pext_u64","_popcnt32","_popcnt64","_rdrand16_step","_rdrand32_step","_rdrand64_step","_rdseed16_step","_rdseed32_step","_rdseed64_step","_rdtsc","_store_mask16","_store_mask32","_store_mask64","_store_mask8","_subborrow_u32","_subborrow_u64","_t1mskc_u32","_t1mskc_u64","_tile_cmmimfp16ps","_tile_cmmrlfp16ps","_tile_dpbf16ps","_tile_dpbssd","_tile_dpbsud","_tile_dpbusd","_tile_dpbuud","_tile_dpfp16ps","_tile_loadconfig","_tile_loadd","_tile_release","_tile_storeconfig","_tile_stored","_tile_stream_loadd","_tile_zero","_tzcnt_u16","_tzcnt_u32","_tzcnt_u64","_tzmsk_u32","_tzmsk_u64","_xabort","_xabort_code","_xbegin","_xend","_xgetbv","_xrstor","_xrstor64","_xrstors","_xrstors64","_xsave","_xsave64","_xsavec","_xsavec64","_xsaveopt","_xsaveopt64","_xsaves","_xsaves64","_xsetbv","_xtest","bf16","borrow","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","clone","","","","","","","","","","","","","","","","","clone_into","","","","","","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","","","","","","cmp","cmpxchg16b","eax","ebx","ecx","edx","eq","fmt","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_bits","into","","","","","","","","","","","","","","","","","partial_cmp","to_bits","to_owned","","","","","","","","","","","","","","","","","try_from","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","IntoIter","TryFromSliceError","advance_back_by","advance_by","as_mut_slice","as_slice","borrow","","borrow_mut","","clone","","clone_into","","clone_to_uninit","","count","description","drop","empty","fmt","","","fold","from","","","from_fn","from_mut","from_ref","into","","into_iter","is_empty","last","len","new","new_unchecked","next","next_back","repeat","rfold","size_hint","to_owned","","to_string","try_from","","try_from_fn","try_into","","type_id","","Acknowledge","Ampersand","Apostrophe","AsciiExt","Asterisk","Backspace","Bell","Cancel","CapitalA","CapitalB","CapitalC","CapitalD","CapitalE","CapitalF","CapitalG","CapitalH","CapitalI","CapitalJ","CapitalK","CapitalL","CapitalM","CapitalN","CapitalO","CapitalP","CapitalQ","CapitalR","CapitalS","CapitalT","CapitalU","CapitalV","CapitalW","CapitalX","CapitalY","CapitalZ","CarriageReturn","Char","CharacterTabulation","CircumflexAccent","Colon","Comma","CommercialAt","DataLinkEscape","Delete","DeviceControlFour","DeviceControlOne","DeviceControlThree","DeviceControlTwo","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DollarSign","EndOfMedium","EndOfText","EndOfTransmission","EndOfTransmissionBlock","Enquiry","EqualsSign","Escape","EscapeDefault","ExclamationMark","FormFeed","FullStop","GraveAccent","GreaterThanSign","HyphenMinus","InformationSeparatorFour","InformationSeparatorOne","InformationSeparatorThree","InformationSeparatorTwo","LeftCurlyBracket","LeftParenthesis","LeftSquareBracket","LessThanSign","LineFeed","LineTabulation","LowLine","NegativeAcknowledge","Null","NumberSign","Owned","PercentSign","PlusSign","QuestionMark","QuotationMark","ReverseSolidus","RightCurlyBracket","RightParenthesis","RightSquareBracket","Semicolon","ShiftIn","ShiftOut","SmallA","SmallB","SmallC","SmallD","SmallE","SmallF","SmallG","SmallH","SmallI","SmallJ","SmallK","SmallL","SmallM","SmallN","SmallO","SmallP","SmallQ","SmallR","SmallS","SmallT","SmallU","SmallV","SmallW","SmallX","SmallY","SmallZ","Solidus","Space","StartOfHeading","StartOfText","Substitute","SynchronousIdle","Tilde","VerticalLine","advance_back_by","advance_by","as_str","backward_checked","backward_unchecked","borrow","","borrow_mut","","clone","","clone_into","","clone_to_uninit","","cmp","count","default","digit","digit_unchecked","eq","eq_ignore_ascii_case","escape_default","fmt","","","","forward_checked","forward_unchecked","from","","from_u8","from_u8_unchecked","hash","into","","into_iter","is_ascii","last","len","make_ascii_lowercase","make_ascii_uppercase","next","next_back","partial_cmp","size_hint","steps_between","to_ascii_lowercase","to_ascii_uppercase","to_char","to_owned","","to_string","","to_u8","try_from","","try_into","","type_id","","assert_matches","debug_assert_matches","AsyncIterator","FromIter","IntoAsyncIter","IntoAsyncIterator","Item","","borrow","borrow_mut","clone","clone_into","clone_to_uninit","fmt","from","from_iter","into","into_async_iter","","poll_next","","size_hint","","to_owned","try_from","try_into","type_id","Backtrace","BacktraceFrame","BacktraceStatus","Captured","Disabled","Unsupported","borrow","","","borrow_mut","","","capture","disabled","eq","fmt","","","","force_capture","frames","from","","","into","","","status","to_string","try_from","","","try_into","","","type_id","","","Borrow","BorrowMut","Borrowed","Cow","Owned","","ToOwned","add","","add_assign","","as_ref","","borrow","","","borrow_mut","","clone","clone_from","clone_into","","clone_to_uninit","cmp","default","deref","eq","","","","","","","","","","","","","","","","","","","fmt","","from","","","","","","","","","","","","","","","","","from_iter","","","","hash","into","into_owned","is_borrowed","is_owned","ne","","","","","","partial_cmp","","","","","","","","","","","","","to_mut","to_owned","","to_string","try_from","try_into","type_id","Box","ThinBox","allocator","as_fd","as_mut","as_mut_ptr","as_ptr","as_raw_fd","as_ref","assume_init","","async_call","async_call_mut","async_call_once","borrow","","","borrow_mut","","","call","call_mut","call_once","cause","clone","","","","","","clone_from","","clone_into","clone_to_uninit","cmp","consume","default","","","","","deref","","deref_mut","","description","downcast","","","downcast_unchecked","","","drop","","eq","fill_buf","finish","flush","fmt","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_iter","","","","","","","from_raw","from_raw_in","ge","gt","hash","into","","into_async_iter","into_boxed_slice","into_future","into_inner","into_iter","","","","into_pin","into_raw","into_raw_with_allocator","into_searcher","is_contained_in","is_empty","is_prefix_of","is_read_vectored","is_suffix_of","is_write_vectored","last","le","leak","len","lt","ne","new","","new_in","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_unsize","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","next","next_back","nth","nth_back","partial_cmp","pin","pin_in","poll","poll_next","provide","read","read_buf","read_buf_exact","read_exact","read_line","read_to_end","read_to_string","read_until","read_vectored","resume","seek","size_hint","","source","","stream_position","strip_prefix_of","strip_suffix_of","to_owned","to_string","","try_from","","","","try_into","","try_new","","try_new_in","try_new_uninit","try_new_uninit_in","try_new_uninit_slice","try_new_uninit_slice_in","try_new_zeroed","try_new_zeroed_in","try_new_zeroed_slice","try_new_zeroed_slice_in","type_id","","write","","","write_all","write_fmt","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_length_prefix","write_str","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","write_vectored","BorrowError","BorrowMutError","Cell","LazyCell","OnceCell","Ref","RefCell","RefMut","SyncUnsafeCell","UnsafeCell","as_array_of_cells","as_ptr","","as_slice_of_cells","borrow","","","","","","","","","","","borrow_mut","","","","","","","","","","","clone","","","","clone_from","clone_into","","","clone_to_uninit","","","cmp","","default","","","","","","deref","","","deref_mut","description","","eq","","","filter_map","","fmt","","","","","","","","","","","","","","force","from","","","","","","","","","","","","","","","","","","","","from_mut","","ge","","get","","","","get_mut","","","","","get_mut_or_init","get_mut_or_try_init","get_or_init","get_or_try_init","gt","","into","","","","","","","","","","into_inner","","","","","","le","","leak","","lt","","map","","map_split","","new","","","","","","partial_cmp","","raw_get","","replace","","replace_with","set","","swap","","take","","","to_owned","","","to_string","","","","try_borrow","try_borrow_mut","try_borrow_unguarded","try_from","","","","","","","","","","try_insert","try_into","","","","","","","","","","type_id","","","","","","","","","","undo_leak","update","CharTryFromError","DecodeUtf16","DecodeUtf16Error","EscapeDebug","EscapeDefault","EscapeUnicode","MAX","ParseCharError","REPLACEMENT_CHARACTER","ToLowercase","ToUppercase","TryFromCharError","UNICODE_VERSION","advance_back_by","","advance_by","","","","borrow","","","","","","","","","","borrow_mut","","","","","","","","","","clone","","","","","","","","","","clone_into","","","","","","","","","","clone_to_uninit","","","","","","","","","","count","","","","","decode_utf16","description","","","eq","","","","fmt","","","","","","","","","","","","","","","","","","","fold","","from","","","","","","","","","","from_digit","from_u32","from_u32_unchecked","into","","","","","","","","","","into_iter","","","","","","is_empty","","last","","","","len","","","","","next","","","","","","next_back","","rfold","","size_hint","","","","","","to_owned","","","","","","","","","","to_string","","","","","","","","","try_from","","","","","","","","","","try_into","","","","","","","","","","type_id","","","","","","","","","","unpaired_surrogate","Clone","","CloneToUninit","clone","clone_from","clone_to_uninit","Eq","","Equal","Greater","Less","Ord","","Ordering","PartialEq","","PartialOrd","","Reverse","borrow","","borrow_mut","","clamp","clone","","clone_from","clone_into","","clone_to_uninit","","cmp","","","default","eq","","","fmt","","from","","ge","","gt","","hash","","into","","is_eq","is_ge","is_gt","is_le","is_lt","is_ne","le","","lt","","max","","max_by","max_by_key","min","","min_by","min_by_key","minmax","minmax_by","minmax_by_key","ne","partial_cmp","","","reverse","then","then_with","to_owned","","try_from","","try_into","","type_id","","AllocError","BTreeMap","BTreeSet","BinaryHeap","Bound","CapacityOverflow","Excluded","HashMap","HashSet","Included","LinkedList","TryReserveError","TryReserveErrorKind","Unbounded","VecDeque","allocator","","append","","","","","as_mut_slices","as_slice","as_slices","back","","back_mut","","binary_heap","binary_search","binary_search_by","binary_search_by_key","bitand","","bitor","","bitxor","","borrow","","","","","","","","","borrow_mut","","","","","","","","","btree_map","btree_set","capacity","","","","clear","","","","","","","clone","","","","","","","","","clone_from","","","","","","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cmp","","","","consume","contains","","","","contains_key","","cursor_back","cursor_back_mut","cursor_front","cursor_front_mut","default","","","","","","","difference","","drain","","","","drain_sorted","drop","","","entry","","eq","","","","","","","","","","","","","","extend","","","","","","","","","","","","","","extend_one","","","","","","","","","","","","","","extend_reserve","","","","","","","","extract_if","","","","","fill_buf","first","first_entry","first_key_value","flush","fmt","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","from_iter","","","","","","","front","","front_mut","","get","","","","","get_key_value","","get_many_mut","get_many_unchecked_mut","get_mut","","","get_or_insert","get_or_insert_owned","get_or_insert_with","hash","","","","hash_map","hash_set","hasher","","index","","","index_mut","insert","","","","","intersection","","into","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","into_iter_sorted","into_keys","","into_sorted_vec","into_values","","into_vec","is_disjoint","","is_empty","","","","","","","is_subset","","is_superset","","is_write_vectored","iter","","","","","","","iter_mut","","","","keys","","kind","last","last_entry","last_key_value","len","","","","","","","linked_list","lower_bound","","lower_bound_mut","","make_contiguous","ne","new","","","","","","","new_in","","","","","partial_cmp","","","","partition_point","peek","peek_mut","pop","pop_back","","pop_first","","pop_front","","pop_last","","push","push_back","","push_front","","range","","","range_mut","","raw_entry","raw_entry_mut","read","read_buf","read_to_end","read_to_string","remove","","","","","","remove_entry","","replace","","reserve","","","","reserve_exact","","resize","resize_with","retain","","","","","","","retain_mut","","rotate_left","rotate_right","shrink_to","","","","shrink_to_fit","","","","split_off","","","","sub","","swap","swap_remove_back","swap_remove_front","symmetric_difference","","take","","to_owned","","","","","","","","","to_string","truncate","try_from","","","","","","","","","try_insert","","try_into","","","","","","","","","try_reserve","","","","try_reserve_exact","","try_with_capacity","type_id","","","","","","","","","union","","upper_bound","","upper_bound_mut","","values","","values_mut","","vec_deque","with_capacity","","","","with_capacity_and_hasher","","with_capacity_in","","with_hasher","","write","write_all","write_vectored","layout","BinaryHeap","Drain","DrainSorted","IntoIter","IntoIterSorted","Iter","PeekMut","allocator","","","","borrow","","","","","","borrow_mut","","","","","","clone","","","clone_into","","","clone_to_uninit","","","default","","deref","deref_mut","drop","","fmt","","","","","","from","","","","","","into","","","","","","into_iter","","","","","is_empty","","","last","next","","","","","next_back","","","pop","size_hint","","","","","to_owned","","","try_from","","","","","","try_into","","","","","","type_id","","","","","","BTreeMap","Cursor","CursorMut","CursorMutKey","Entry","ExtractIf","IntoIter","IntoKeys","IntoValues","Iter","IterMut","Keys","Occupied","OccupiedEntry","OccupiedError","Range","RangeMut","UnorderedKeyError","Vacant","VacantEntry","Values","ValuesMut","and_modify","as_cursor","","borrow","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","default","","","","","","","","","","description","drop","entry","fmt","","","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","get","get_mut","insert","","insert_after","","insert_after_unchecked","","insert_before","","insert_before_unchecked","","into","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","into_key","into_mut","key","","","last","","","","","","","","","len","","","","","","","","max","","","","","","min","","","","","","next","","","","","","","","","","","","","","next_back","","","","","","","","","","or_default","or_insert","or_insert_with","or_insert_with_key","peek_next","","","peek_prev","","","prev","","","remove","remove_entry","remove_next","","remove_prev","","size_hint","","","","","","","","","to_owned","","","","","to_string","try_from","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","value","with_mutable_key","BTreeSet","Cursor","CursorMut","CursorMutKey","Difference","ExtractIf","Intersection","IntoIter","Iter","Range","SymmetricDifference","Union","UnorderedKeyError","as_cursor","","borrow","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","clone","","","","","","","","clone_into","","","","","","","","clone_to_uninit","","","","","","","","default","","","eq","fmt","","","","","","","","","","","","","from","","","","","","","","","","","","insert_after","","insert_after_unchecked","","insert_before","","insert_before_unchecked","","into","","","","","","","","","","","","into_iter","","","","","","","","last","","len","","max","","min","","","","","","next","","","","","","","","","","","next_back","","","peek_next","","","peek_prev","","","prev","","","remove_next","","remove_prev","","size_hint","","","","","","","to_owned","","","","","","","","to_string","try_from","","","","","","","","","","","","try_into","","","","","","","","","","","","type_id","","","","","","","","","","","","with_mutable_key","DefaultHasher","Drain","Entry","ExtractIf","HashMap","IntoIter","IntoKeys","IntoValues","Iter","IterMut","Keys","Occupied","","OccupiedEntry","OccupiedError","RandomState","RawEntryBuilder","RawEntryBuilderMut","RawEntryMut","RawOccupiedEntryMut","RawVacantEntryMut","Vacant","","VacantEntry","Values","ValuesMut","and_modify","","borrow","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","clone","","","clone_into","","","clone_to_uninit","","","count","","","","","","","","description","entry","fmt","","","","","","","","","","","","","","","","","","","","fold","","","","","","","","","from","","","","","","","","","","","","","","","","","","","from_hash","","from_key","","from_key_hashed_nocheck","","get","","get_key_value","get_key_value_mut","get_mut","","insert","","","","insert_entry","","insert_hashed_nocheck","insert_key","into","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","into_key","","into_key_value","into_mut","","key","","","","key_mut","len","","","","","","","","","next","","","","","","","","","","or_default","or_insert","","or_insert_with","","or_insert_with_key","remove","","remove_entry","","replace_entry","replace_key","size_hint","","","","","","","","","","to_owned","","","to_string","try_from","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","value","Difference","Drain","ExtractIf","HashSet","Intersection","IntoIter","Iter","SymmetricDifference","Union","borrow","","","","","","","","borrow_mut","","","","","","","","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","count","","","fmt","","","","","","","","fold","","","","","","","from","","","","","","","","into","","","","","","","","into_iter","","","","","","","","len","","","next","","","","","","","","size_hint","","","","","","","","to_owned","","","","","try_from","","","","","","","","try_into","","","","","","","","type_id","","","","","","","","Cursor","CursorMut","ExtractIf","IntoIter","Iter","IterMut","LinkedList","as_cursor","as_list","","back","","back_mut","borrow","","","","","","borrow_mut","","","","","","clone","","","clone_into","","","clone_to_uninit","","","current","","default","","","fmt","","","","","","from","","","","","","front","","front_mut","index","","insert_after","insert_before","into","","","","","","into_iter","","","","last","","move_next","","move_prev","","next","","","","next_back","","","peek_next","","peek_prev","","pop_back","pop_front","push_back","push_front","remove_current","remove_current_as_list","size_hint","","","","splice_after","splice_before","split_after","split_before","to_owned","","","try_from","","","","","","try_into","","","","","","type_id","","","","","","Drain","IntoIter","Iter","IterMut","VecDeque","advance_back_by","","","advance_by","","","borrow","","","","borrow_mut","","","","clone","","clone_into","","clone_to_uninit","","count","default","","drop","fmt","","","","fold","","","from","","","","into","","","","into_iter","","","","is_empty","","","last","","","len","","next","","","","next_back","","","","next_chunk","rfold","","","size_hint","","","","to_owned","","try_fold","","","try_from","","","","try_into","","","","try_rfold","","","type_id","","","","AsMut","AsRef","Error","","FloatToInt","From","Infallible","Into","TryFrom","TryInto","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","clone_to_uninit","cmp","description","eq","fmt","","from","","","","hash","identity","into","","partial_cmp","report","to_owned","to_string","try_from","","try_into","","type_id","Default","","default","Args","ArgsOs","JoinPathsError","NotPresent","NotUnicode","SplitPaths","VarError","Vars","VarsOs","args","args_os","borrow","","","","","","","borrow_mut","","","","","","","clone","clone_into","clone_to_uninit","consts","current_dir","current_exe","description","","eq","fmt","","","","","","","","","from","","","","","","","home_dir","into","","","","","","","into_iter","","","","","is_empty","","join_paths","len","","next","","","","","next_back","","remove_var","set_current_dir","set_var","size_hint","","","","","split_paths","temp_dir","to_owned","to_string","","try_from","","","","","","","try_into","","","","","","","type_id","","","","","","","var","var_os","vars","vars_os","ARCH","DLL_EXTENSION","DLL_PREFIX","DLL_SUFFIX","EXE_EXTENSION","EXE_SUFFIX","FAMILY","OS","Error","Report","Request","borrow","","borrow_mut","","cause","description","downcast","","","downcast_mut","","","downcast_ref","","","fmt","","","from","","","into","is","","","new","pretty","provide","provide_ref","provide_ref_with","provide_value","provide_value_with","request_ref","request_value","show_backtrace","source","sources","to_string","try_from","try_into","type_id","","would_be_satisfied_by_ref_of","would_be_satisfied_by_value_of","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","CStr","CString","FromBytesUntilNulError","FromBytesWithNulError","FromVecWithNulError","IntoStringError","NulError","OsStr","OsString","VaList","VaListImpl","arg","as_bytes","","","as_bytes_with_nul","as_c_str","as_encoded_bytes","as_os_str","as_ptr","as_ref","","","","","","as_va_list","borrow","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","bytes","c_char","c_double","c_float","c_int","c_long","c_longlong","c_schar","c_short","c_str","c_uchar","c_uint","c_ulong","c_ulonglong","c_ushort","c_void","capacity","clear","clone","","","","","","","","clone_from","clone_into","","","","","","","","","","clone_to_uninit","","","","","","","","","","cmp","","","","count_bytes","default","","","","deref","","","deref_mut","","description","","","display","drop","","eq","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eq_ignore_ascii_case","extend","","","fmt","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","from_bytes","from_bytes_until_nul","from_bytes_with_nul","from_bytes_with_nul_unchecked","from_encoded_bytes_unchecked","","from_iter","","","from_ptr","from_raw","from_str","from_vec","from_vec_unchecked","from_vec_with_nul","from_vec_with_nul_unchecked","ge","","gt","","hash","","","","index","","","index_mut","into","","","","","","","","","","into_boxed_c_str","into_boxed_os_str","into_bytes","","into_bytes_with_nul","into_c_string","into_cstring","into_encoded_bytes","into_os_string","into_raw","into_string","","into_vec","","is_ascii","is_empty","","le","","leak","len","lt","","make_ascii_lowercase","make_ascii_uppercase","new","","","nul_position","os_str","partial_cmp","","","","","","","","","","","","","","","","","","","","","","","","push","reserve","reserve_exact","shrink_to","shrink_to_fit","slice_encoded_bytes","source","to_ascii_lowercase","to_ascii_uppercase","to_bytes","to_bytes_with_nul","to_os_string","to_owned","","","","","","","","","","to_str","","to_string","","","","","to_string_lossy","","try_from","","","","","","","","","","try_into","","","","","","","","","","try_reserve","try_reserve_exact","type_id","","","","","","","","","","","","utf8_error","with_capacity","with_copy","write_str","CStr","CString","FromBytesUntilNulError","FromBytesWithNulError","FromVecWithNulError","IntoStringError","NulError","Display","OsStr","OsString","borrow","borrow_mut","fmt","","from","into","to_string","try_from","try_into","type_id","Alignment","Arguments","Binary","Center","Debug","","DebugList","DebugMap","DebugSet","DebugStruct","DebugTuple","Display","Err","Error","Formatter","FromFn","Left","LowerExp","LowerHex","Octal","Ok","Pointer","Result","Right","UpperExp","UpperHex","Write","align","alternate","as_str","borrow","","","","","","","","","","borrow_mut","","","","","","","","","","clone","","","clone_into","","","clone_to_uninit","","","cmp","debug_list","debug_map","debug_set","debug_struct","debug_tuple","default","description","entries","","","entry","","","entry_with","","eq","","field","","field_with","","fill","finish","","","","","finish_non_exhaustive","","","","","flags","fmt","","","","","","","","","","","","","","","","format","from","","","","","","","","","","from_fn","hash","into","","","","","","","","","","key","key_with","pad","pad_integral","partial_cmp","precision","sign_aware_zero_pad","sign_minus","sign_plus","to_owned","","","to_string","","","try_from","","","","","","","","","","try_into","","","","","","","","","","type_id","","","","","","","","","","value","value_with","width","write","write_char","","write_fmt","","","write_str","","","DirBuilder","DirEntry","File","FileTimes","FileType","Metadata","OpenOptions","Permissions","ReadDir","accessed","append","as_fd","as_raw_fd","as_raw_stat","atime","atime_nsec","blksize","blocks","borrow","","","","","","","","","borrow_mut","","","","","","","","","canonicalize","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","copy","create","","","create_dir","create_dir_all","create_new","","created","ctime","ctime_nsec","custom_flags","default","dev","eq","","exists","file_name","file_name_ref","file_type","","flush","","fmt","","","","","","","","","from","","","","","","","","","","from_mode","from_raw_fd","gid","hard_link","hash","ino","","into","","","","","","","","","into_iter","into_raw_fd","is_block_device","is_char_device","is_dir","","is_fifo","is_file","","is_read_vectored","","is_socket","is_symlink","","is_terminal","is_write_vectored","","len","metadata","","","mode","","","","modified","mtime","mtime_nsec","new","","","next","nlink","open","","options","path","permissions","rdev","read","","","","read_at","read_buf","","read_dir","read_link","read_to_end","","read_to_string","","","read_vectored","","read_vectored_at","readonly","recursive","remove_dir","remove_dir_all","remove_file","rename","seek","","set_accessed","set_len","set_mode","set_modified","","set_permissions","","set_readonly","set_times","size","soft_link","st_atime","st_atime_nsec","st_blksize","st_blocks","st_ctime","st_ctime_nsec","st_dev","st_gid","st_ino","st_mode","st_mtime","st_mtime_nsec","st_nlink","st_rdev","st_size","st_uid","symlink_metadata","sync_all","sync_data","to_owned","","","","","truncate","try_clone","try_from","","","","","","","","","try_into","","","","","","","","","type_id","","","","","","","","","uid","write","","","","write_at","write_vectored","","write_vectored_at","AsyncDrop","AsyncDropInPlace","Dropper","Future","IntoFuture","","Output","","Pending","PollFn","Ready","async_drop","","async_drop_in_place","borrow","","","","borrow_mut","","","","clone","","clone_into","","clone_to_uninit","","fmt","","","","from","","","","into","","","","into_future","","","","","into_inner","join","pending","poll","","","","","poll_fn","ready","to_owned","","try_from","","","","try_into","","","","type_id","","","","BuildHasher","BuildHasherDefault","DefaultHasher","Hash","","Hasher","","RandomState","SipHasher","borrow","","","","borrow_mut","","","","build_hasher","","","clone","","","","clone_into","","","","clone_to_uninit","","","","default","","","","eq","finish","","","fmt","","","","from","","","","hash","hash_one","hash_slice","into","","","","new","","","","new_with_keys","to_owned","","","","try_from","","","","try_into","","","","type_id","","","","write","","","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_length_prefix","write_str","","","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","assert_unchecked","black_box","must_use","spin_loop","unreachable_unchecked","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","AggregateRawPtr","Metadata","abort","add_with_overflow","aggregate_raw_ptr","arith_offset","assert_inhabited","assert_mem_uninitialized_valid","assert_zero_valid","assume","atomic_and_acqrel","atomic_and_acquire","atomic_and_relaxed","atomic_and_release","atomic_and_seqcst","atomic_cxchg_acqrel_acquire","atomic_cxchg_acqrel_relaxed","atomic_cxchg_acqrel_seqcst","atomic_cxchg_acquire_acquire","atomic_cxchg_acquire_relaxed","atomic_cxchg_acquire_seqcst","atomic_cxchg_relaxed_acquire","atomic_cxchg_relaxed_relaxed","atomic_cxchg_relaxed_seqcst","atomic_cxchg_release_acquire","atomic_cxchg_release_relaxed","atomic_cxchg_release_seqcst","atomic_cxchg_seqcst_acquire","atomic_cxchg_seqcst_relaxed","atomic_cxchg_seqcst_seqcst","atomic_cxchgweak_acqrel_acquire","atomic_cxchgweak_acqrel_relaxed","atomic_cxchgweak_acqrel_seqcst","atomic_cxchgweak_acquire_acquire","atomic_cxchgweak_acquire_relaxed","atomic_cxchgweak_acquire_seqcst","atomic_cxchgweak_relaxed_acquire","atomic_cxchgweak_relaxed_relaxed","atomic_cxchgweak_relaxed_seqcst","atomic_cxchgweak_release_acquire","atomic_cxchgweak_release_relaxed","atomic_cxchgweak_release_seqcst","atomic_cxchgweak_seqcst_acquire","atomic_cxchgweak_seqcst_relaxed","atomic_cxchgweak_seqcst_seqcst","atomic_fence_acqrel","atomic_fence_acquire","atomic_fence_release","atomic_fence_seqcst","atomic_load_acquire","atomic_load_relaxed","atomic_load_seqcst","atomic_load_unordered","atomic_max_acqrel","atomic_max_acquire","atomic_max_relaxed","atomic_max_release","atomic_max_seqcst","atomic_min_acqrel","atomic_min_acquire","atomic_min_relaxed","atomic_min_release","atomic_min_seqcst","atomic_nand_acqrel","atomic_nand_acquire","atomic_nand_relaxed","atomic_nand_release","atomic_nand_seqcst","atomic_or_acqrel","atomic_or_acquire","atomic_or_relaxed","atomic_or_release","atomic_or_seqcst","atomic_singlethreadfence_acqrel","atomic_singlethreadfence_acquire","atomic_singlethreadfence_release","atomic_singlethreadfence_seqcst","atomic_store_relaxed","atomic_store_release","atomic_store_seqcst","atomic_store_unordered","atomic_umax_acqrel","atomic_umax_acquire","atomic_umax_relaxed","atomic_umax_release","atomic_umax_seqcst","atomic_umin_acqrel","atomic_umin_acquire","atomic_umin_relaxed","atomic_umin_release","atomic_umin_seqcst","atomic_xadd_acqrel","atomic_xadd_acquire","atomic_xadd_relaxed","atomic_xadd_release","atomic_xadd_seqcst","atomic_xchg_acqrel","atomic_xchg_acquire","atomic_xchg_relaxed","atomic_xchg_release","atomic_xchg_seqcst","atomic_xor_acqrel","atomic_xor_acquire","atomic_xor_relaxed","atomic_xor_release","atomic_xor_seqcst","atomic_xsub_acqrel","atomic_xsub_acquire","atomic_xsub_relaxed","atomic_xsub_release","atomic_xsub_seqcst","bitreverse","black_box","breakpoint","bswap","caller_location","catch_unwind","ceilf128","ceilf16","ceilf32","ceilf64","compare_bytes","const_allocate","const_deallocate","const_eval_select","copy","copy_nonoverlapping","copysignf128","copysignf16","copysignf32","copysignf64","cosf128","cosf16","cosf32","cosf64","ctlz","ctlz_nonzero","ctpop","cttz","cttz_nonzero","discriminant_value","drop_in_place","exact_div","exp2f128","exp2f16","exp2f32","exp2f64","expf128","expf16","expf32","expf64","fabsf128","fabsf16","fabsf32","fabsf64","fadd_algebraic","fadd_fast","fdiv_algebraic","fdiv_fast","float_to_int_unchecked","floorf128","floorf16","floorf32","floorf64","fmaf128","fmaf16","fmaf32","fmaf64","fmul_algebraic","fmul_fast","forget","frem_algebraic","frem_fast","fsub_algebraic","fsub_fast","is_val_statically_known","likely","log10f128","log10f16","log10f32","log10f64","log2f128","log2f16","log2f32","log2f64","logf128","logf16","logf32","logf64","maxnumf128","maxnumf16","maxnumf32","maxnumf64","min_align_of","min_align_of_val","minnumf128","minnumf16","minnumf32","minnumf64","mir","mul_with_overflow","nearbyintf128","nearbyintf16","nearbyintf32","nearbyintf64","needs_drop","nontemporal_store","offset","powf128","powf16","powf32","powf64","powif128","powif16","powif32","powif64","pref_align_of","prefetch_read_data","prefetch_read_instruction","prefetch_write_data","prefetch_write_instruction","ptr_guaranteed_cmp","ptr_mask","ptr_metadata","ptr_offset_from","ptr_offset_from_unsigned","raw_eq","read_via_copy","rintf128","rintf16","rintf32","rintf64","rotate_left","rotate_right","roundevenf128","roundevenf16","roundevenf32","roundevenf64","roundf128","roundf16","roundf32","roundf64","rustc_peek","saturating_add","saturating_sub","select_unpredictable","simd","sinf128","sinf16","sinf32","sinf64","size_of","size_of_val","sqrtf128","sqrtf16","sqrtf32","sqrtf64","sub_with_overflow","three_way_compare","transmute","transmute_unchecked","truncf128","truncf16","truncf32","truncf64","type_id","type_name","typed_swap","ub_checks","unaligned_volatile_load","unaligned_volatile_store","unchecked_add","unchecked_div","unchecked_mul","unchecked_rem","unchecked_shl","unchecked_shr","unchecked_sub","unlikely","unreachable","variant_count","volatile_copy_memory","volatile_copy_nonoverlapping_memory","volatile_load","volatile_set_memory","volatile_store","vtable_align","vtable_size","wrapping_add","wrapping_mul","wrapping_sub","write_bytes","write_via_move","Abi","Assume","BasicBlock","Call","CastPtrToPtr","CastTransmute","Checked","Cleanup","CopyForDeref","Deinit","Discriminant","Drop","Field","Goto","InCleanup","Len","Move","Normal","Offset","PtrMetadata","Retag","Return","ReturnTo","ReturnToArg","SetDiscriminant","Static","StaticMut","StorageDead","StorageLive","TailCall","Unreachable","UnwindActionArg","UnwindCleanup","UnwindContinue","UnwindResume","UnwindTerminate","UnwindTerminateReason","UnwindUnreachable","Variant","borrow","","","","borrow_mut","","","","from","","","","into","","","","mir","place","try_from","","","","try_into","","","","type_id","","","","simd_add","simd_and","simd_arith_offset","simd_as","simd_bitmask","simd_bitreverse","simd_bswap","simd_cast","simd_cast_ptr","simd_ceil","simd_ctlz","simd_ctpop","simd_cttz","simd_div","simd_eq","simd_expose_provenance","simd_extract","simd_fabs","simd_fcos","simd_fexp","simd_fexp2","simd_flog","simd_flog10","simd_flog2","simd_floor","simd_fma","simd_fmax","simd_fmin","simd_fsin","simd_fsqrt","simd_gather","simd_ge","simd_gt","simd_insert","simd_le","simd_lt","simd_masked_load","simd_masked_store","simd_mul","simd_ne","simd_neg","simd_or","simd_reduce_add_ordered","simd_reduce_add_unordered","simd_reduce_all","simd_reduce_and","simd_reduce_any","simd_reduce_max","simd_reduce_min","simd_reduce_mul_ordered","simd_reduce_mul_unordered","simd_reduce_or","simd_reduce_xor","simd_rem","simd_round","simd_saturating_add","simd_saturating_sub","simd_scatter","simd_select","simd_select_bitmask","simd_shl","simd_shr","simd_shuffle","simd_sub","simd_trunc","simd_with_exposed_provenance","simd_xor","AddrInUse","AddrNotAvailable","AlreadyExists","ArgumentListTooLong","BorrowedBuf","BorrowedCursor","BrokenPipe","BufRead","BufReader","BufWriter","Bytes","Chain","ConnectionAborted","ConnectionRefused","ConnectionReset","CrossesDevices","Current","Cursor","Deadlock","DirectoryNotEmpty","Empty","End","Err","Error","ErrorKind","ExecutableFileBusy","FileTooLarge","FilesystemLoop","FilesystemQuotaExceeded","HostUnreachable","Interrupted","IntoInnerError","InvalidData","InvalidFilename","InvalidInput","IoSlice","IoSliceMut","IsADirectory","IsTerminal","LineWriter","Lines","NetworkDown","NetworkUnreachable","NotADirectory","NotConnected","NotFound","NotSeekable","Ok","Other","OutOfMemory","PermissionDenied","RawOsError","Read","ReadOnlyFilesystem","Repeat","ResourceBusy","Result","Seek","SeekFrom","Sink","Split","StaleNetworkFileHandle","Start","Stderr","StderrLock","Stdin","StdinLock","Stdout","StdoutLock","StorageFull","Take","TimedOut","TooManyLinks","UnexpectedEof","Unsupported","WouldBlock","Write","WriteZero","WriterPanicked","advance","","","advance_slices","","advance_unchecked","append","as_fd","","","","","","as_mut","as_raw_fd","","","","","","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","","buffer","","by_ref","","bytes","capacity","","","","cause","chain","clear","clone","","","","","","clone_from","clone_into","","","","","","clone_to_uninit","","","","","","cmp","consume","","","","","","","copy","default","","","deref","","deref_mut","description","","","downcast","drop","empty","ensure_init","eq","","","error","fill_buf","","","","","","","filled","filled_mut","flush","","","","","","","","","","","","","","","","","","","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_raw_os_error","get_mut","","","","","","","get_ref","","","","","","","has_data_left","hash","init_len","init_mut","init_ref","into","","","","","","","","","","","","","","","","","","","","","","","","","","","into_error","into_inner","","","","","","","","","into_iter","","","into_parts","","is_read_vectored","","","","","","","","is_terminal","","","","","","","is_write_vectored","","","","","","","","","","","","","","","","","","kind","last_os_error","len","limit","lines","","lock","","","new","","","","","","","next","","","other","partial_cmp","peek","position","prelude","raw_os_error","read","","","","","","","","","","read_buf","","","","","","","","","","read_buf_exact","","","","","","read_exact","","","","","","read_line","","","read_to_end","","","","","","","","read_to_string","","","","","","","","read_until","","","read_vectored","","","","","","","","reborrow","repeat","rewind","seek","","","","","seek_relative","","","set_init","","set_limit","set_position","sink","size_hint","skip_until","source","split","","split_mut","stderr","stdin","stdout","stream_len","","","stream_position","","","","take","to_owned","","","","","","to_string","","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","","unfilled","uninit_mut","with_capacity","","","write","","","","","","","","","","","","","","","","","","","write_all","","","","","","","","","write_all_vectored","","","","","","","","write_fmt","","","","","","write_vectored","","","","","","","","","","","","","","","","","","written","BufRead","Read","Seek","Write","by_ref","","bytes","chain","consume","fill_buf","flush","has_data_left","is_read_vectored","is_write_vectored","lines","read","read_buf","read_buf_exact","read_exact","read_line","read_to_end","read_to_string","read_until","read_vectored","rewind","seek","seek_relative","skip_until","split","stream_len","stream_position","take","write","write_all","write_all_vectored","write_fmt","write_vectored","MAX","MIN","ArrayChunks","ByRefSized","Chain","Cloned","Copied","Cycle","DoubleEndedIterator","Empty","Enumerate","ExactSizeIterator","Extend","Filter","FilterMap","FlatMap","Flatten","FromFn","FromIterator","Fuse","FusedIterator","Inspect","Intersperse","IntersperseWith","IntoIter","IntoIterator","Item","","Iterator","Map","MapWhile","MapWindows","Once","OnceWith","Peekable","Product","Repeat","RepeatN","RepeatWith","Rev","Scan","Skip","SkipWhile","Step","StepBy","Successors","Sum","Take","TakeWhile","TrustedLen","TrustedStep","Zip","advance_back_by","","","","","","","","","","","","","advance_by","","","","","","","","","","","","","all","any","array_chunks","backward","backward_checked","backward_unchecked","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","by_ref","chain","","clone","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","clone_into","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","cloned","cmp","cmp_by","collect","collect_into","copied","count","","","","","","","","","","","","","cycle","default","","","","","","","","drop","empty","enumerate","eq","eq_by","extend","extend_one","extend_reserve","filter","filter_map","find","","","","find_map","flat_map","flatten","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","fold","","","","","","","","","","","","","","","","","","","","","","","","","","for_each","","forward","forward_checked","forward_unchecked","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_coroutine","from_fn","from_iter","fuse","ge","gt","inspect","intersperse","intersperse_with","into","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","into_remainder","is_empty","","","","","","","","","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","","","","","","","","","","le","len","","","","","","","","","","","","","","","lt","map","map_while","map_windows","max","max_by","max_by_key","min","min_by","min_by_key","ne","next","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","next_back","","","","","","","","","","","","","","","","","","","","","","","","","","next_chunk","","","","next_if","next_if_eq","nth","","","","","","","","","","","","","nth_back","","","","","","","","","","","","once","once_with","partial_cmp","partial_cmp_by","partition","partition_in_place","peek","peek_mut","peekable","position","product","","reduce","repeat","repeat_n","repeat_with","rev","rfind","","","","rfold","","","","","","","","","","","","","","","","","","","","rposition","scan","size_hint","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","skip","skip_while","step_by","steps_between","successors","sum","","take","take_while","to_owned","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_collect","try_find","try_fold","","","","","","","","","","","","","","","","","","","","","","","","","try_for_each","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_reduce","try_rfold","","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","unzip","zip","","ConstParamTy","ConstParamTy_","Copy","","Destruct","Discriminant","DiscriminantKind","FnPtr","Freeze","PhantomData","PhantomPinned","PointerLike","Send","Sized","SmartPointer","StructuralPartialEq","Sync","Tuple","Unpin","Unsize","UnsizedConstParamTy","","addr","borrow","","borrow_mut","","clone","","clone_into","","clone_to_uninit","","cmp","","default","","eq","","fmt","","from","","hash","","into","","partial_cmp","","to_owned","","try_from","","try_into","","type_id","","ALIGNMENT","Assume","Discriminant","LIFETIMES","ManuallyDrop","MaybeUninit","NOTHING","SAFETY","TransmuteFrom","VALIDITY","add","align_of","align_of_val","align_of_val_raw","alignment","and","array_assume_init","as_bytes","as_bytes_mut","as_mut_ptr","as_ptr","assume_init","assume_init_drop","assume_init_mut","assume_init_read","assume_init_ref","borrow","","","","borrow_mut","","","","but_not","clone","","","","clone_from_slice","clone_into","","","","clone_to_uninit","","","","cmp","copy","copy_from_slice","default","deref","deref_mut","discriminant","drop","","eq","","","fill","fill_from","fill_with","fmt","","","","forget","forget_unsized","from","","","","hash","","into","","","","into_inner","lifetimes","min_align_of","min_align_of_val","needs_drop","new","","offset_of","partial_cmp","replace","safety","size_of","size_of_val","size_of_val_raw","slice_as_bytes","slice_as_bytes_mut","slice_as_mut_ptr","slice_as_ptr","slice_assume_init_mut","slice_assume_init_ref","sub","swap","take","","to_owned","","","","transmute","","transmute_copy","transpose","try_from","","","","try_into","","","","type_id","","","","uninit","uninit_array","uninitialized","validity","variant_count","write","zeroed","","AddrParseError","AdminLocal","BITS","","BROADCAST","Both","Global","Incoming","InterfaceLocal","IntoIncoming","IpAddr","Ipv4Addr","Ipv6Addr","Ipv6MulticastScope","Iter","LOCALHOST","","LinkLocal","OrganizationLocal","Read","RealmLocal","Shutdown","SiteLocal","SocketAddr","SocketAddrV4","SocketAddrV6","TcpListener","TcpStream","ToSocketAddrs","UNSPECIFIED","","UdpSocket","V4","","V6","","Write","accept","as_fd","","","as_raw_fd","","","backward_checked","","backward_unchecked","","bind","","bitand","","","","","","","","bitand_assign","","","","bitor","","","","","","","","bitor_assign","","","","borrow","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","broadcast","clone","","","","","","","","","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cmp","","","","","","connect","","connect_timeout","deferaccept","description","eq","","","","","","","","","","","","","flowinfo","flush","","fmt","","","","","","","","","","","","","","","","","","","","","forward_checked","","forward_unchecked","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_bits","","from_raw_fd","","","from_str","","","","","","hash","","","","","","","incoming","into","","","","","","","","","","","","","","into_incoming","into_iter","","into_raw_fd","","","ip","","","is_benchmarking","","","is_broadcast","is_documentation","","","is_global","","","is_ipv4","","is_ipv4_mapped","is_ipv6","","is_link_local","is_loopback","","","is_multicast","","","is_private","is_read_vectored","","is_reserved","is_shared","is_unicast","is_unicast_global","is_unicast_link_local","is_unique_local","is_unspecified","","","is_write_vectored","","join_multicast_v4","join_multicast_v6","leave_multicast_v4","leave_multicast_v6","linger","local_addr","","","multicast_loop_v4","multicast_loop_v6","multicast_scope","multicast_ttl_v4","new","","","","","next","","nodelay","not","","","","octets","","only_v6","parse_ascii","","","","","","partial_cmp","","","","","","","","","","peek","","peek_from","peer_addr","","port","","","quickack","read","","read_buf","","read_timeout","","read_vectored","","recv","recv_from","scope_id","segments","send","send_to","set_broadcast","set_deferaccept","set_flowinfo","set_ip","","","set_linger","set_multicast_loop_v4","set_multicast_loop_v6","set_multicast_ttl_v4","set_nodelay","set_nonblocking","","","set_only_v6","set_port","","","set_quickack","set_read_timeout","","set_scope_id","set_ttl","","","set_write_timeout","","shutdown","steps_between","","take_error","","","to_bits","","to_canonical","","to_ipv4","to_ipv4_mapped","to_ipv6_compatible","to_ipv6_mapped","to_owned","","","","","","","","","to_socket_addrs","","","","to_string","","","","","","","try_clone","","","try_from","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","ttl","","","type_id","","","","","","","","","","","","","","write","","write_timeout","","write_vectored","","BITS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Empty","FpCategory","Infinite","IntErrorKind","InvalidDigit","MAX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","MIN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Nan","NegOverflow","NonZero","NonZeroI128","NonZeroI16","NonZeroI32","NonZeroI64","NonZeroI8","NonZeroIsize","NonZeroU128","NonZeroU16","NonZeroU32","NonZeroU64","NonZeroU8","NonZeroUsize","Normal","ParseFloatError","ParseIntError","PosOverflow","Saturating","Subnormal","TryFromIntError","Wrapping","Zero","","ZeroablePrimitive","abs","","","","","","","","","","","","","","","","","","add","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","add_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitand","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitand_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitor","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitor_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitxor","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitxor_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow","","","","","","","","borrow_mut","","","","","","","","checked_abs","","","","","","checked_add","","","","","","checked_mul","","","","","","","","","","","","checked_neg","","","","","","checked_next_power_of_two","","","","","","checked_pow","","","","","","","","","","","","clamp","clone","","","","","","","","clone_into","","","","","","","","clone_to_uninit","","","","","","","","cmp","","","count_ones","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","count_zeros","","","","","","","","","","","","","","","","","","","","","","","","default","","description","","","div","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","div_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eq","","","","","","","","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_be","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_le","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_mut","from_mut_unchecked","from_str","","","","","","","","","","","","ge","get","gt","hash","","","ilog10","","","","","","ilog2","","","","","","into","","","","","","","","is_negative","","","","","","","","","","","","","","","","","","is_positive","","","","","","","","","","","","","","","","","","is_power_of_two","","","","","","","","","","","","","","","","","","isqrt","","","","","","kind","le","leading_zeros","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lt","max","midpoint","","","","","","min","mul","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","mul_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ne","neg","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","new","new_unchecked","next_power_of_two","","","","","","not","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","overflowing_abs","","","","","","overflowing_neg","","","","","","partial_cmp","","","pow","","","","","","","","","","","","","","","","","","","","","","","","product","","","","","","","","","","","","","","","","","","","","","","","","rem","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rem_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","reverse_bits","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rotate_left","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rotate_right","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","saturating_abs","","","","","","saturating_add","","","","","","saturating_mul","","","","","","","","","","","","saturating_neg","","","","","","saturating_pow","","","","","","","","","","","","shl","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shl_assign","","","","","","","","","","","","","","","","","","","","","","","","shr","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shr_assign","","","","","","","","","","","","","","","","","","","","","","","","signum","","","","","","","","","","","","sub","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","sub_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","sum","","","","","","","","","","","","","","","","","","","","","","","","swap_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_be","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_le","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_owned","","","","","","","","to_string","","","","","","trailing_zeros","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","type_id","","","","","","","","unchecked_add","","","","","","unchecked_mul","","","","","","","","","","","","unsigned_abs","","","","","","wrapping_abs","","","","","","wrapping_neg","","","","","","Add","AddAssign","AsyncFn","AsyncFnMut","AsyncFnOnce","BitAnd","BitAndAssign","BitOr","BitOrAssign","BitXor","BitXorAssign","Bound","Break","CallOnceFuture","CallRefFuture","CoerceUnsized","Complete","Continue","ControlFlow","Coroutine","CoroutineState","Deref","DerefMut","DerefPure","DispatchFromDyn","Div","DivAssign","Drop","Excluded","Fn","FnMut","FnOnce","FromResidual","Included","Index","IndexMut","Mul","MulAssign","Neg","Not","OneSidedRange","Output","","","","","","","","","","","","","","","","Range","RangeBounds","RangeFrom","RangeFull","RangeInclusive","RangeTo","RangeToInclusive","Rem","RemAssign","Residual","","Return","Shl","ShlAssign","Shr","ShrAssign","Sub","SubAssign","Target","Try","TryType","Unbounded","Yeet","Yield","Yielded","add","add_assign","advance_back_by","advance_by","as_mut","as_ref","async_call","async_call_mut","async_call_once","bitand","bitand_assign","bitor","bitor_assign","bitxor","bitxor_assign","borrow","","","","","","","","","","borrow_mut","","","","","","","","","","branch","","break_value","call","call_mut","call_once","clone","","","","","","","","","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cloned","cmp","contains","","","","","","continue_value","count","","default","","deref","deref_mut","div","div_assign","drop","end","","","","end_bound","","","","","","","","","","","","eq","","","","","","","","","fmt","","","","","","","","","","fold","from","","","","","","","","","","","","","from_output","","from_residual","","get","","","","","","","","","","","","get_mut","","","","","","","","","","","","get_unchecked","","","","","","","","","","","","get_unchecked_mut","","","","","","","","","","","","hash","","","","","","","","","index","","","","","","","","","","","","","index_mut","","","","","","","","","","","","","into","","","","","","","","","","into_inner","into_iter","","","is_break","is_continue","is_empty","","is_sorted","","last","","map","map_break","map_continue","max","","min","","mul","mul_assign","neg","new","next","","","next_back","","not","nth","","","nth_back","","partial_cmp","rem","rem_assign","resume","rfold","shl","shl_assign","shr","shr_assign","size_hint","","","start","","","start_bound","","","","","","","","","","","","sub","sub_assign","to_owned","","","","","","","","","try_fold","try_from","","","","","","","","","","try_into","","","","","","","","","","try_rfold","type_id","","","","","","","","","","IntoIter","Iter","IterMut","None","Option","Some","and","and_then","as_deref","as_deref_mut","as_mut","as_mut_slice","as_pin_mut","as_pin_ref","as_ref","as_slice","borrow","","","","borrow_mut","","","","branch","clone","","","clone_from","clone_into","","","clone_to_uninit","","","cloned","","cmp","copied","","default","eq","expect","filter","flatten","fmt","","","","from","","","","","","","","from_iter","from_output","from_residual","","get_or_insert","get_or_insert_default","get_or_insert_with","hash","insert","inspect","into","","","","into_iter","","","","","","is_none","is_none_or","is_some","is_some_and","iter","iter_mut","map","map_or","map_or_else","next","","","next_back","","","ok_or","ok_or_else","or","or_else","partial_cmp","product","replace","size_hint","","","sum","take","take_if","to_owned","","","transpose","try_from","","","","try_into","","","","type_id","","","","unwrap","unwrap_or","unwrap_or_default","unwrap_or_else","unwrap_unchecked","unzip","xor","zip","zip_with","fd","linux","raw","unix","AsFd","AsRawFd","BorrowedFd","FromRawFd","IntoRawFd","OwnedFd","RawFd","as_fd","","","as_raw_fd","","","borrow","","borrow_mut","","borrow_raw","clone","clone_into","clone_to_uninit","drop","fmt","","from","","","","","","","","","","","","","","","from_raw_fd","","into","","into_raw_fd","","is_terminal","","to_owned","try_clone","try_clone_to_owned","try_from","","try_into","","type_id","","fs","net","process","raw","MetadataExt","as_raw_stat","st_atime","st_atime_nsec","st_blksize","st_blocks","st_ctime","st_ctime_nsec","st_dev","st_gid","st_ino","st_mode","st_mtime","st_mtime_nsec","st_nlink","st_rdev","st_size","st_uid","SocketAddrExt","TcpStreamExt","UnixSocketExt","as_abstract_name","deferaccept","from_abstract_name","passcred","quickack","set_deferaccept","set_passcred","set_quickack","ChildExt","CommandExt","PidFd","as_fd","as_raw_fd","borrow","borrow_mut","create_pidfd","fmt","from","","from_raw_fd","into","into_pidfd","into_raw_fd","kill","pidfd","try_from","try_into","try_wait","type_id","wait","__pad0","__unused","blkcnt_t","blksize_t","borrow","borrow_mut","clone","clone_into","clone_to_uninit","dev_t","from","ino_t","into","mode_t","nlink_t","off_t","pthread_t","st_atime","st_atime_nsec","st_blksize","st_blocks","st_ctime","st_ctime_nsec","st_dev","st_gid","st_ino","st_mode","st_mtime","st_mtime_nsec","st_nlink","st_rdev","st_size","st_uid","stat","time_t","to_owned","try_from","try_into","type_id","c_char","c_double","c_float","c_int","c_long","c_longlong","c_schar","c_short","c_uchar","c_uint","c_ulong","c_ulonglong","c_ushort","c_void","ffi","fs","io","net","prelude","process","raw","thread","OsStrExt","OsStringExt","as_bytes","from_bytes","from_vec","into_vec","DirBuilderExt","DirEntryExt","DirEntryExt2","FileExt","FileTypeExt","MetadataExt","OpenOptionsExt","PermissionsExt","atime","atime_nsec","blksize","blocks","chown","chroot","ctime","ctime_nsec","custom_flags","dev","fchown","file_name_ref","from_mode","gid","ino","","is_block_device","is_char_device","is_fifo","is_socket","lchown","mode","","","","mtime","mtime_nsec","nlink","rdev","read_at","read_exact_at","read_vectored_at","set_mode","size","symlink","uid","write_all_at","write_at","write_vectored_at","AsFd","AsRawFd","BorrowedFd","FromRawFd","IntoRawFd","OwnedFd","RawFd","as_fd","as_raw_fd","from_raw_fd","into_raw_fd","AncillaryData","AncillaryError","Incoming","Messages","ScmCredentials","","ScmRights","","SocketAddr","SocketAncillary","SocketCred","UCred","UnixDatagram","UnixListener","UnixStream","Unknown","accept","add_creds","add_fds","as_abstract_name","as_fd","","","as_pathname","as_raw_fd","","","bind","","bind_addr","","borrow","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","capacity","clear","clone","","","clone_into","","","clone_to_uninit","","","connect","","connect_addr","","eq","flush","","fmt","","","","","","","","from","","","","","","","","","","","","","","","","from_abstract_name","from_pathname","from_raw_fd","","","get_gid","get_pid","get_uid","gid","hash","incoming","into","","","","","","","","","","","","","into_iter","","","","","into_raw_fd","","","is_empty","is_read_vectored","","is_unnamed","is_write_vectored","","len","local_addr","","","messages","new","","next","","","","pair","","passcred","","peek","","peek_from","peer_addr","","peer_cred","pid","read","","read_buf","","read_timeout","","read_vectored","","recv","recv_from","recv_vectored_with_ancillary","","recv_vectored_with_ancillary_from","send","send_to","send_to_addr","send_vectored_with_ancillary","","send_vectored_with_ancillary_to","set_gid","set_mark","","set_nonblocking","","","set_passcred","","set_pid","set_read_timeout","","set_uid","set_write_timeout","","shutdown","","size_hint","take_error","","","to_owned","","","truncated","try_clone","","","try_from","","","","","","","","","","","","","try_into","","","","","","","","","","","","","type_id","","","","","","","","","","","","","uid","unbound","write","","write_timeout","","write_vectored","","cmsg_level","cmsg_type","AsFd","AsRawFd","BorrowedFd","CommandExt","DirEntryExt","ExitStatusExt","FileExt","FileTypeExt","FromRawFd","IntoRawFd","JoinHandleExt","MetadataExt","OpenOptionsExt","OsStrExt","OsStringExt","OwnedFd","PermissionsExt","RawFd","arg0","as_bytes","as_fd","as_pthread_t","as_raw_fd","atime","atime_nsec","before_exec","blksize","blocks","continued","core_dumped","ctime","ctime_nsec","custom_flags","dev","exec","from_bytes","from_mode","from_raw","from_raw_fd","from_vec","gid","","groups","ino","","into_pthread_t","into_raw","into_raw_fd","into_vec","is_block_device","is_char_device","is_fifo","is_socket","mode","","","mtime","mtime_nsec","nlink","pre_exec","process_group","rdev","read_at","read_exact_at","read_vectored_at","set_mode","signal","size","stopped_signal","uid","","write_all_at","write_at","write_vectored_at","CommandExt","ExitStatusExt","arg0","before_exec","continued","core_dumped","exec","from_raw","gid","groups","into_raw","parent_id","pre_exec","process_group","signal","stopped_signal","uid","blkcnt_t","blksize_t","dev_t","gid_t","ino_t","mode_t","nlink_t","off_t","pid_t","pthread_t","time_t","uid_t","JoinHandleExt","RawPthread","as_pthread_t","into_pthread_t","AssertUnwindSafe","BacktraceStyle","Full","Location","Off","PanicHookInfo","PanicInfo","RefUnwindSafe","Short","UnwindSafe","always_abort","borrow","","","","borrow_mut","","","","call_once","caller","can_unwind","catch_unwind","clone","","clone_into","","clone_to_uninit","","cmp","column","default","deref","deref_mut","eq","","file","fmt","","","","","","from","","","","get_backtrace_style","hash","into","","","","into_async_iter","into_future","line","location","panic_any","partial_cmp","payload","payload_as_str","poll","poll_next","resume_unwind","set_backtrace_style","set_hook","size_hint","take_hook","to_owned","","to_string","","try_from","","","","try_into","","","","type_id","","","","update_hook","pattern_type","Ancestors","Component","Components","CurDir","DeviceNS","Disk","Display","Iter","MAIN_SEPARATOR","MAIN_SEPARATOR_STR","Normal","ParentDir","Path","PathBuf","Prefix","","PrefixComponent","RootDir","StripPrefixError","UNC","Verbatim","VerbatimDisk","VerbatimUNC","absolute","add_extension","ancestors","as_mut_os_str","as_mut_os_string","as_os_str","","","as_path","","","as_ref","","","","","","","","","","borrow","","","","","","","","","","","borrow_mut","","","","","","","","","","canonicalize","capacity","clear","clone","","","","","","","","clone_from","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cmp","","","","","","components","default","deref","deref_mut","description","display","ends_with","eq","","","","","","","","","","","","","","","","","","","","","","","","","exists","extend","extend_one","extension","file_name","file_prefix","file_stem","fmt","","","","","","","","","","","","from","","","","","","","","","","","","","","from_iter","from_str","has_root","hash","","","","","into","","","","","","","","","into_boxed_path","into_iter","","","","","into_os_string","into_path_buf","is_absolute","is_dir","is_file","is_relative","is_separator","is_symlink","is_verbatim","iter","join","kind","leak","metadata","new","","next","","","next_back","","parent","partial_cmp","","","","","","","","","","","","","","","","","","","","","","","","pop","push","read_dir","read_link","reserve","reserve_exact","set_extension","set_file_name","shrink_to","shrink_to_fit","starts_with","strip_prefix","symlink_metadata","to_owned","","","","","","","","","to_path_buf","to_str","to_string","","to_string_lossy","try_exists","try_from","","","","","","","","","try_into","","","","","","","","","try_reserve","try_reserve_exact","type_id","","","","","","","","","","with_added_extension","with_capacity","with_extension","with_file_name","Pin","PinCoerceUnsized","as_deref_mut","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","clone_to_uninit","cmp","deref","deref_mut","eq","fmt","","","from","","ge","get_mut","get_ref","get_unchecked_mut","gt","hash","into","into_async_iter","into_future","into_inner","into_inner_unchecked","into_ref","le","lt","map_unchecked","map_unchecked_mut","ne","new","new_unchecked","partial_cmp","pin","poll","poll_next","resume","","set","size_hint","static_mut","static_ref","to_owned","to_string","try_from","try_into","type_id","PipeReader","PipeWriter","as_fd","","as_raw_fd","","borrow","","borrow_mut","","flush","","fmt","","from","","","","from_raw_fd","","into","","into_raw_fd","","is_read_vectored","","is_write_vectored","","pipe","read","","read_buf","","read_to_end","","read_vectored","","try_clone","","try_from","","try_into","","type_id","","write","","write_vectored","","rust_2015","rust_2018","rust_2021","rust_2024","v1","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","TryFrom","TryInto","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Future","Hash","Into","IntoFuture","","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","","","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","TryFrom","TryInto","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_future","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","poll","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","bool","char","f32","f64","i128","i16","i32","i64","i8","isize","str","u128","u16","u32","u64","u8","usize","Child","ChildStderr","ChildStdin","ChildStdout","Command","CommandArgs","CommandEnvs","ExitCode","ExitStatus","ExitStatusError","FAILURE","Output","SUCCESS","Stdio","Termination","abort","arg","arg0","args","as_fd","","","as_raw_fd","","","borrow","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","clone","","","","clone_into","","","","clone_to_uninit","","","","code","","code_nonzero","continued","","core_dumped","","create_pidfd","current_dir","default","","env","env_clear","env_remove","envs","eq","","","exec","exit","exit_ok","exit_process","flush","","fmt","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","from_raw","","from_raw_fd","get_args","get_current_dir","get_envs","get_program","gid","groups","id","","inherit","into","","","","","","","","","","","","into_iter","","into_pidfd","into_raw","","into_raw_fd","","","into_status","is_empty","","is_read_vectored","","is_write_vectored","","kill","len","","makes_pipe","new","next","","null","output","pidfd","piped","pre_exec","process_group","read","","read_buf","","read_to_end","","read_vectored","","report","","signal","","size_hint","","spawn","status","","stderr","","","stdin","","stdout","","","stopped_signal","","success","to_owned","","","","to_string","","try_from","","","","","","","","","","","","try_into","","","","","","","","","","","","try_wait","type_id","","","","","","","","","","","","uid","wait","wait_with_output","write","","write_vectored","","Alignment","DynMetadata","MIN","Metadata","NonNull","Pointee","add","addr","addr_eq","addr_of","addr_of_mut","align_of","align_offset","as_mut","as_mut_ptr","as_non_null_ptr","as_nonzero","as_ptr","as_ref","as_uninit_mut","as_uninit_ref","as_uninit_slice","as_uninit_slice_mut","as_usize","borrow","","","borrow_mut","","","byte_add","byte_offset","byte_offset_from","byte_sub","cast","clone","","","clone_into","","","clone_to_uninit","","","cmp","","","copy","copy_from","copy_from_nonoverlapping","copy_nonoverlapping","copy_to","copy_to_nonoverlapping","dangling","","dangling_mut","default","drop_in_place","","eq","","","","fmt","","","","fn_addr_eq","from","","","","","from_mut","from_raw_parts","","from_raw_parts_mut","from_ref","get_unchecked_mut","hash","","","","into","","","is_aligned","is_aligned_to","is_empty","layout","len","log2","map_addr","mask","metadata","new","","new_unchecked","","null","null_mut","of","offset","offset_from","partial_cmp","","","read","","read_unaligned","","read_volatile","","replace","","size_of","slice_from_raw_parts","","slice_from_raw_parts_mut","sub","sub_ptr","swap","","swap_nonoverlapping","to_owned","","","to_raw_parts","try_from","","","","","try_into","","","type_id","","","with_addr","with_exposed_provenance","with_exposed_provenance_mut","without_provenance","without_provenance_mut","write","","write_bytes","","write_unaligned","","write_volatile","","Rc","UniqueRc","Weak","allocator","","as_fd","as_ptr","","as_raw_fd","as_ref","assume_init","","borrow","","","","borrow_mut","","","clone","","clone_into","","clone_to_uninit","","cmp","decrement_strong_count","decrement_strong_count_in","default","","","","","deref","","deref_mut","downcast","downcast_unchecked","downgrade","","drop","","","eq","fmt","","","","","from","","","","","","","","","","","","","","","","","","","from_iter","from_raw","","from_raw_in","","ge","get_mut","get_mut_unchecked","gt","hash","increment_strong_count","increment_strong_count_in","into","","","into_inner","into_raw","","into_raw_with_allocator","","into_rc","le","lt","make_mut","ne","new","","","new_cyclic","new_in","","","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","partial_cmp","pin","pin_in","ptr_eq","","strong_count","","to_owned","","to_string","try_from","","","","try_into","","","try_new","try_new_in","try_new_uninit","try_new_uninit_in","try_new_zeroed","try_new_zeroed_in","try_unwrap","type_id","","","unwrap_or_clone","upgrade","weak_count","","Err","IntoIter","Iter","IterMut","Ok","Result","and","and_then","as_deref","as_deref_mut","as_mut","as_ref","borrow","","","","borrow_mut","","","","branch","clone","","","clone_from","clone_into","","","clone_to_uninit","","","cloned","","cmp","copied","","eq","err","expect","expect_err","flatten","fmt","","","","from","","","","","","from_iter","from_output","from_residual","","hash","inspect","inspect_err","into","","","","into_err","into_iter","","","","","","into_ok","is_err","is_err_and","is_ok","is_ok_and","iter","iter_mut","map","map_err","map_or","map_or_else","next","","","next_back","","","ok","or","or_else","partial_cmp","product","report","size_hint","","","sum","to_owned","","","transpose","try_from","","","","try_into","","","","type_id","","","","unwrap","unwrap_err","unwrap_err_unchecked","unwrap_or","unwrap_or_default","unwrap_or_else","unwrap_unchecked","BITMASK_LEN","Bytes","INDEX","LaneCount","Mask","","MaskElement","Simd","SimdCast","SimdElement","StdFloat","SupportedLaneCount","Swizzle","ToBytes","borrow","borrow_mut","ceil","cmp","concat_swizzle","concat_swizzle_mask","cos","exp","exp2","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","floor","fract","from","from_be_bytes","from_le_bytes","from_ne_bytes","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","into","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","ln","log","log10","log2","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","mul_add","num","prelude","ptr","round","simd_swizzle","sin","sqrt","swizzle","swizzle_mask","to_be_bytes","to_le_bytes","to_ne_bytes","trunc","try_from","try_into","type_id","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","Mask","SimdOrd","SimdPartialEq","SimdPartialOrd","simd_clamp","simd_eq","simd_ge","simd_gt","simd_le","simd_lt","simd_max","simd_min","simd_ne","Bits","Cast","","","Mask","","Scalar","","","SimdFloat","SimdInt","SimdUint","Unsigned","abs","","cast","","","copysign","from_bits","is_finite","is_infinite","is_nan","is_negative","is_normal","is_positive","is_sign_negative","is_sign_positive","is_subnormal","leading_ones","","leading_zeros","","recip","reduce_and","","reduce_max","","","reduce_min","","","reduce_or","","reduce_product","","","reduce_sum","","","reduce_xor","","reverse_bits","","saturating_abs","saturating_add","","saturating_neg","saturating_sub","","signum","","simd_clamp","simd_max","simd_min","swap_bytes","","to_bits","to_degrees","to_int_unchecked","to_radians","trailing_ones","","trailing_zeros","","wrapping_neg","Bits","Cast","","","CastPtr","","ConstPtr","Isize","","LEN","Mask","","","","","","MutPtr","Scalar","","","Simd","SimdConstPtr","SimdFloat","SimdInt","SimdMutPtr","SimdOrd","SimdPartialEq","SimdPartialOrd","SimdUint","Unsigned","Usize","","abs","","","","","","","","","add","","","","","","","","","","","","","","","add_assign","addr","","","","all","any","as_array","as_mut","","as_mut_array","as_ref","","bitand","","","","","","","","","","","","","","","bitand_assign","","","bitor","","","","","","","","","","","","","","","bitor_assign","","","bitxor","","","","","","","","","","","","","","","bitxor_assign","","","borrow","","borrow_mut","","cast","","","","","","","","","","","","","","","","","","","","cast_const","","cast_mut","","clone","","clone_into","","clone_to_uninit","","cmp","copy_to_slice","copysign","","","cos","","default","","deinterleave","div","","","","","","","","","","","","","","","div_assign","eq","","exp","","exp2","","expose_provenance","","","","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","first_set","fmt","","fract","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_array","","from_be_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_bitmask","from_bitmask_vector","from_bits","","","from_int","from_int_unchecked","from_le_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_ne_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_slice","gather_or","gather_or_default","gather_ptr","gather_select","gather_select_ptr","gather_select_unchecked","hash","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","index","index_mut","interleave","into","","is_finite","","","is_infinite","","","is_nan","","","is_negative","","","","","","is_normal","","","is_null","","","","is_positive","","","","","","is_sign_negative","","","is_sign_positive","","","is_subnormal","","","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","leading_ones","","","","","","","","","","","","leading_zeros","","","","","","","","","","","","len","ln","","load_or","load_or_default","load_select","load_select_or_default","load_select_ptr","load_select_unchecked","log10","","log2","","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","mul","","","","","","","","","","","","","","","mul_assign","ne","neg","","","","","","","not","","","","","","","","","","","partial_cmp","","product","","","","","","","","","","","","","","","","","","","","","","","","recip","","","reduce_and","","","","","","","","","","","","reduce_max","","","","","","","","","","","","","","","reduce_min","","","","","","","","","","","","","","","reduce_or","","","","","","","","","","","","reduce_product","","","","","","","","","","","","","","","reduce_sum","","","","","","","","","","","","","","","reduce_xor","","","","","","","","","","","","rem","","","","","","","","","","","","","","","rem_assign","resize","reverse","reverse_bits","","","","","","","","","","","","rotate_elements_left","rotate_elements_right","saturating_abs","","","","","","saturating_add","","","","","","","","","","","","saturating_neg","","","","","","saturating_sub","","","","","","","","","","","","scatter","scatter_ptr","scatter_select","scatter_select_ptr","scatter_select_unchecked","select","select_mask","set","set_unchecked","shl","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shl_assign","shr","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shr_assign","signum","","","","","","","","","simd_clamp","","","","","","","","","","","","","","","","","","","","","simd_eq","","","","","","","","","","","","","","","","","","","","simd_ge","","","","","","","","","","","","","","","","","","","","simd_gt","","","","","","","","","","","","","","","","","","","","simd_le","","","","","","","","","","","","","","","","","","","","simd_lt","","","","","","","","","","","","","","","","","","","","simd_max","","","","","","","","","","","","","","","","","","","","","simd_min","","","","","","","","","","","","","","","","","","","","","simd_ne","","","","","","","","","","","","","","","","","","","","simd_swizzle","sin","","splat","","store_select","store_select_ptr","store_select_unchecked","sub","","","","","","","","","","","","","","","sub_assign","sum","","","","","","","","","","","","","","","","","","","","","","","","swap_bytes","","","","","","","","","","","","swizzle_dyn","test","test_unchecked","to_array","","to_be_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_bitmask","to_bitmask_vector","to_bits","","","to_degrees","","","to_int","to_int_unchecked","","","to_le_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_ne_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_owned","","to_radians","","","trailing_ones","","","","","","","","","","","","trailing_zeros","","","","","","","","","","","","try_from","","","","try_into","","type_id","","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","with_addr","","","","with_exposed_provenance","","","","wrapping_add","","","","wrapping_neg","","","","","","wrapping_offset","","","","wrapping_sub","","","","CastPtr","","ConstPtr","Isize","","Mask","","MutPtr","SimdConstPtr","SimdMutPtr","Usize","","addr","","cast","","cast_const","cast_mut","expose_provenance","","is_null","","with_addr","","with_exposed_provenance","","wrapping_add","","wrapping_offset","","wrapping_sub","","ArrayChunks","ArrayChunksMut","ArrayWindows","ChunkBy","ChunkByMut","Chunks","ChunksExact","ChunksExactMut","ChunksMut","Concat","EscapeAscii","Iter","IterMut","Join","Output","","","RChunks","RChunksExact","RChunksExactMut","RChunksMut","RSplit","RSplitMut","RSplitN","RSplitNMut","SliceIndex","Split","SplitInclusive","SplitInclusiveMut","SplitMut","SplitN","SplitNMut","Windows","advance_back_by","","advance_by","","all","","any","","as_mut_slice","as_ref","","as_slice","","","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","","clone","","","","","","","","","","","","clone_into","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","concat","count","","","","","","","","","","","","","","default","","find","","find_map","","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","fold","","","for_each","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","from_mut","from_mut_ptr_range","from_ptr_range","from_raw_parts","from_raw_parts_mut","from_ref","get","get_mut","get_unchecked","get_unchecked_mut","index","index_mut","into","","","","","","","","","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","","","","","","","","","","into_remainder","","","into_slice","is_empty","","","","","","","","","is_sorted_by","join","last","","","","","","","","","","","","","","","","","len","","next","","","","","","","","","","","","","","","","","","","","","","","","","","","next_back","","","","","","","","","","","","","","","","","","","","","","","nth","","","","","","","","","","","","","","nth_back","","","","","","","","","","","","","","position","","range","remainder","","","rposition","","size_hint","","","","","","","","","","","","","","","","","","","","","","","","","","","to_owned","","","","","","","","","","","","to_string","try_fold","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","","try_range","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","","Bytes","CharIndices","Chars","EncodeUtf16","Err","EscapeDebug","EscapeDefault","EscapeUnicode","FromStr","Lines","LinesAny","MatchIndices","Matches","ParseBoolError","RMatchIndices","RMatches","RSplit","RSplitN","RSplitTerminator","Split","SplitAsciiWhitespace","SplitInclusive","SplitN","SplitTerminator","SplitWhitespace","Utf8Chunk","Utf8Chunks","Utf8Error","advance_by","all","any","as_str","","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","clone","","","","","","","","","","","","","","","","","","","","","","","","","","clone_into","","","","","","","","","","","","","","","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","","","","","","","","","","","","","","","count","","","description","","eq","","","error_len","find","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","fold","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","from_boxed_utf8_unchecked","from_raw_parts","from_raw_parts_mut","from_str","from_utf8","from_utf8_mut","from_utf8_unchecked","from_utf8_unchecked_mut","into","","","","","","","","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","","","","","","invalid","is_empty","last","","","","","","len","next","","","","","","","","","","","","","","","","","","","","","","","next_back","","","","","","","","","","","","","","","","nth","nth_back","offset","pattern","position","remainder","","","","","","","","","","rfind","rposition","size_hint","","","","","","","","","","","to_owned","","","","","","","","","","","","","","","","","","","","","","","","","","to_string","","","","","try_fold","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","valid","valid_up_to","CharArrayRefSearcher","CharArraySearcher","CharPredicateSearcher","CharSearcher","CharSliceSearcher","Done","DoubleEndedSearcher","Match","Pattern","Reject","ReverseSearcher","SearchStep","Searcher","","StrSearcher","borrow","","","","","","","borrow_mut","","","","","","","clone","","","","","","","clone_into","","","","","","","clone_to_uninit","","","","","","","eq","fmt","","","","","","","from","","","","","","","haystack","","","","","","","into","","","","","","","into_searcher","is_contained_in","is_prefix_of","is_suffix_of","next","","","","","","","next_back","","","","","","","next_match","","","","","","","next_match_back","","","","","","","next_reject","","","","","next_reject_back","","","","","strip_prefix_of","strip_suffix_of","to_owned","","","","","","","try_from","","","","","","","try_into","","","","","","","type_id","","","","","","","Drain","FromUtf16Error","FromUtf8Error","ParseError","String","ToString","add","add_assign","as_bytes","","as_mut","as_mut_str","as_mut_vec","as_ref","","","","","","as_str","","borrow","","","","","borrow_mut","","","","","capacity","clear","clone","","clone_from","clone_into","","clone_to_uninit","","cmp","default","deref","deref_mut","description","","drain","drop","eq","","","","","extend","","","","","","extend_from_within","extend_one","","","","","extend_reserve","","fmt","","","","","","","from","","","","","","","","","","from_iter","","","","","","from_raw_parts","from_str","from_utf16","from_utf16_lossy","from_utf16be","from_utf16be_lossy","from_utf16le","from_utf16le_lossy","from_utf8","from_utf8_lossy","from_utf8_unchecked","hash","index","index_mut","insert","insert_str","into","","","","into_boxed_str","into_bytes","","into_iter","into_raw_parts","into_searcher","is_contained_in","is_empty","is_prefix_of","is_suffix_of","last","leak","len","ne","","","new","next","next_back","partial_cmp","pop","push","push_str","remove","remove_matches","replace_range","reserve","reserve_exact","retain","shrink_to","shrink_to_fit","size_hint","split_off","strip_prefix_of","strip_suffix_of","to_owned","","to_socket_addrs","to_string","","","","truncate","try_from","","","","try_into","","","","try_reserve","try_reserve_exact","try_with_capacity","type_id","","","","utf8_error","with_capacity","write_char","write_str","Arc","Barrier","BarrierWaitResult","Condvar","Err","","Exclusive","LazyLock","LockResult","MappedMutexGuard","MappedRwLockReadGuard","MappedRwLockWriteGuard","Mutex","MutexGuard","ONCE_INIT","Ok","","Once","OnceLock","OnceState","PoisonError","Poisoned","ReentrantLock","ReentrantLockGuard","RwLock","RwLockReadGuard","RwLockWriteGuard","TryLockError","TryLockResult","WaitTimeoutResult","Weak","WouldBlock","allocator","","as_fd","as_ptr","","as_raw_fd","as_ref","assume_init","","atomic","borrow","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","call_mut","call_once","","call_once_force","cause","","clear_poison","","clone","","","","clone_into","","","","clone_to_uninit","","","","cmp","decrement_strong_count","decrement_strong_count_in","default","","","","","","","","","","","","deref","","","","","","","","","deref_mut","","","","description","","","downcast","downcast_unchecked","downgrade","drop","","","","","","","","","","","eq","","","flush","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","force","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_iter","from_mut","from_pin_mut","from_raw","","from_raw_in","","ge","get","get_mut","","","","","","","get_mut_or_init","get_mut_or_try_init","get_mut_unchecked","get_or_init","get_or_try_init","get_pin_mut","get_ref","gt","hash","increment_strong_count","increment_strong_count_in","into","","","","","","","","","","","","","","","","","","","","","","","into_future","into_inner","","","","","","","","into_raw","","into_raw_with_allocator","","into_searcher","is_completed","is_contained_in","is_leader","is_poisoned","","","is_prefix_of","is_read_vectored","is_suffix_of","is_write_vectored","le","lock","","lt","make_mut","map","","","","","","mpsc","ne","new","","","","","","","","","","","","new_cyclic","new_in","","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","notify_all","notify_one","partial_cmp","pin","pin_in","poll","provide","ptr_eq","","read","","read_buf","read_to_end","read_to_string","read_vectored","resume","seek","set","source","strip_prefix_of","strip_suffix_of","strong_count","","take","timed_out","to_owned","","","","to_string","","","","","","","","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","try_insert","try_into","","","","","","","","","","","","","","","","","","","","","","","try_lock","try_map","","","","","","try_new","try_new_in","try_new_uninit","try_new_uninit_in","try_new_zeroed","try_new_zeroed_in","try_pin","try_pin_in","try_read","try_unwrap","try_write","type_id","","","","","","","","","","","","","","","","","","","","","","","unwrap_or_clone","upgrade","wait","","","","wait_force","wait_timeout","wait_timeout_ms","wait_timeout_while","wait_while","weak_count","","write","","write_vectored","ATOMIC_BOOL_INIT","ATOMIC_ISIZE_INIT","ATOMIC_USIZE_INIT","AcqRel","Acquire","AtomicBool","AtomicI16","AtomicI32","AtomicI64","AtomicI8","AtomicIsize","AtomicPtr","AtomicU16","AtomicU32","AtomicU64","AtomicU8","AtomicUsize","Ordering","Relaxed","Release","SeqCst","as_ptr","","","","","","","","","","","","borrow","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","clone","clone_into","clone_to_uninit","compare_and_swap","","","","","","","","","","","","compare_exchange","","","","","","","","","","","","compare_exchange_weak","","","","","","","","","","","","compiler_fence","default","","","","","","","","","","","","eq","fence","fetch_add","","","","","","","","","","fetch_and","","","","","","","","","","","","fetch_byte_add","fetch_byte_sub","fetch_max","","","","","","","","","","fetch_min","","","","","","","","","","fetch_nand","","","","","","","","","","","fetch_not","fetch_or","","","","","","","","","","","","fetch_ptr_add","fetch_ptr_sub","fetch_sub","","","","","","","","","","fetch_update","","","","","","","","","","","","fetch_xor","","","","","","","","","","","","fmt","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","from_mut","","","","","","","","","","","","from_mut_slice","","","","","","","","","","","","from_ptr","","","","","","","","","","","","get_mut","","","","","","","","","","","","get_mut_slice","","","","","","","","","","","","hash","into","","","","","","","","","","","","","into_inner","","","","","","","","","","","","load","","","","","","","","","","","","new","","","","","","","","","","","","spin_loop_hint","store","","","","","","","","","","","","swap","","","","","","","","","","","","to_owned","try_from","","","","","","","","","","","","","try_into","","","","","","","","","","","","","type_id","","","","","","","","","","","","","Disconnected","","","Empty","Full","IntoIter","Iter","Receiver","RecvError","RecvTimeoutError","SendError","Sender","SyncSender","Timeout","TryIter","TryRecvError","TrySendError","borrow","","","","","","","","","","","borrow_mut","","","","","","","","","","","channel","clone","","","","","","","clone_into","","","","","","","clone_to_uninit","","","","","","","description","","","","","eq","","","","","fmt","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","into","","","","","","","","","","","into_iter","","","","","iter","next","","","recv","recv_deadline","recv_timeout","send","","sync_channel","to_owned","","","","","","","to_string","","","","","try_from","","","","","","","","","","","try_into","","","","","","","","","","","try_iter","try_recv","try_send","type_id","","","","","","","","","","","Context","ContextBuilder","LocalWake","LocalWaker","Pending","Poll","RawWaker","RawWakerVTable","Ready","Wake","Waker","as_raw","","as_ref","borrow","","","","","","","borrow_mut","","","","","","","branch","","build","clone","","","","clone_from","","clone_into","","","","clone_to_uninit","","","","cmp","data","drop","","eq","","","ext","","fmt","","","","","","","from","","","","","","","","","","","","","","from_output","","from_raw","","from_residual","","from_waker","","hash","into","","","","","","","is_pending","is_ready","local_waker","","map","map_err","","map_ok","","new","","noop","","partial_cmp","ready","to_owned","","","","try_from","","","","","","","try_into","","","","","","","type_id","","","","","","","vtable","wake","","","","wake_by_ref","","","","waker","","will_wake","","AccessError","Builder","Err","JoinHandle","LocalKey","Ok","Result","Scope","ScopedJoinHandle","Thread","ThreadId","as_pthread_t","as_u64","available_parallelism","borrow","","","","","","","","borrow_mut","","","","","","","","clone","","","clone_into","","","clone_to_uninit","","","current","eq","","fmt","","","","","","","","","from","","","","","","","","get","hash","id","into","","","","","","","","into_pthread_t","is_finished","","join","","name","","new","panicking","park","park_timeout","park_timeout_ms","replace","","scope","set","","sleep","sleep_ms","sleep_until","spawn","","","spawn_scoped","spawn_unchecked","stack_size","take","","thread","","to_owned","","","to_string","try_from","","","","","","","","try_into","","","","","","","","try_with","type_id","","","","","","","","unpark","with","with_borrow","with_borrow_mut","yield_now","Duration","Instant","MAX","MICROSECOND","MILLISECOND","NANOSECOND","SECOND","SystemTime","SystemTimeError","TryFromFloatSecsError","UNIX_EPOCH","","ZERO","abs_diff","add","","","add_assign","","","as_micros","as_millis","as_millis_f32","as_millis_f64","as_nanos","as_secs","as_secs_f32","as_secs_f64","borrow","","","","","borrow_mut","","","","","checked_add","","","checked_div","checked_duration_since","checked_mul","checked_sub","","","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","cmp","","","default","description","div","div_assign","div_duration_f32","div_duration_f64","div_f32","div_f64","duration","duration_since","","elapsed","","eq","","","","fmt","","","","","","","from","","","","","from_days","from_hours","from_micros","from_millis","from_mins","from_nanos","from_secs","from_secs_f32","from_secs_f64","from_weeks","hash","","","into","","","","","is_zero","mul","mul_assign","mul_f32","mul_f64","new","now","","partial_cmp","","","saturating_add","saturating_duration_since","saturating_mul","saturating_sub","sub","","","","sub_assign","","","subsec_micros","subsec_millis","subsec_nanos","sum","","to_owned","","","","","to_string","","try_from","","","","","try_from_secs_f32","try_from_secs_f64","try_into","","","","","type_id","","","","","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","Drain","ExtractIf","IntoIter","Splice","Vec","advance_back_by","advance_by","allocator","","","","append","as_mut","","as_mut_ptr","as_mut_slice","","as_ptr","as_ref","","","","as_slice","","","borrow","","","","","","borrow_mut","","","","","","capacity","clear","clone","","clone_from","clone_into","","clone_to_uninit","","cmp","count","dedup","dedup_by","dedup_by_key","default","","deref","deref_mut","drain","drop","","","","","eq","","","","","","extend","","extend_from_slice","extend_from_within","extend_one","","extend_reserve","","extract_if","flush","fmt","","","","","fold","from","","","","","","","","","","","","","","","","","from_iter","from_raw_parts","from_raw_parts_in","hash","index","index_mut","insert","into","","","","","into_boxed_slice","into_flattened","into_iter","","","","","","","into_raw_parts","into_raw_parts_with_alloc","is_empty","","","is_write_vectored","keep_rest","leak","len","ne","","","","","","new","new_in","next","","","","next_back","","","next_chunk","partial_cmp","pop","pop_if","push","push_within_capacity","remove","reserve","reserve_exact","resize","resize_with","retain","retain_mut","set_len","shrink_to","shrink_to_fit","size_hint","","","","spare_capacity_mut","splice","split_at_spare_mut","split_off","swap_remove","to_owned","","truncate","try_fold","try_from","","","","","try_into","","","","","try_reserve","try_reserve_exact","try_with_capacity","try_with_capacity_in","type_id","","","","","with_capacity","with_capacity_in","write","write_all","write_vectored"],"q":[[0,"wiwi"],[6,"wiwi::prelude"],[196,"wiwi::rust_alloc"],[211,"wiwi::rust_alloc::alloc"],[234,"wiwi::rust_alloc::borrow"],[245,"wiwi::rust_alloc::boxed"],[247,"wiwi::rust_alloc::collections"],[261,"wiwi::rust_alloc::collections::TryReserveErrorKind"],[262,"wiwi::rust_alloc::collections::binary_heap"],[269,"wiwi::rust_alloc::collections::btree_map"],[293,"wiwi::rust_alloc::collections::btree_set"],[306,"wiwi::rust_alloc::collections::linked_list"],[313,"wiwi::rust_alloc::collections::vec_deque"],[318,"wiwi::rust_alloc::ffi"],[323,"wiwi::rust_alloc::ffi::c_str"],[327,"wiwi::rust_alloc::fmt"],[369,"wiwi::rust_alloc::rc"],[372,"wiwi::rust_alloc::slice"],[421,"wiwi::rust_alloc::str"],[458,"wiwi::rust_alloc::str::pattern"],[486,"wiwi::rust_alloc::string"],[493,"wiwi::rust_alloc::sync"],[495,"wiwi::rust_alloc::task"],[501,"wiwi::rust_alloc::vec"],[506,"wiwi::rust_core"],[605,"wiwi::rust_core::alloc"],[622,"wiwi::rust_core::any"],[627,"wiwi::rust_core::arch"],[630,"wiwi::rust_core::arch::x86_64"],[7261,"wiwi::rust_core::array"],[7268,"wiwi::rust_core::ascii"],[7399,"wiwi::rust_core::assert_matches"],[7401,"wiwi::rust_core::async_iter"],[7411,"wiwi::rust_core::borrow"],[7415,"wiwi::rust_core::cell"],[7425,"wiwi::rust_core::char"],[7442,"wiwi::rust_core::clone"],[7448,"wiwi::rust_core::cmp"],[7481,"wiwi::rust_core::convert"],[7498,"wiwi::rust_core::default"],[7501,"wiwi::rust_core::error"],[7525,"wiwi::rust_core::f128"],[7526,"wiwi::rust_core::f128::consts"],[7551,"wiwi::rust_core::f16"],[7552,"wiwi::rust_core::f16::consts"],[7577,"wiwi::rust_core::f32"],[7592,"wiwi::rust_core::f32::consts"],[7617,"wiwi::rust_core::f64"],[7632,"wiwi::rust_core::f64::consts"],[7657,"wiwi::rust_core::ffi"],[7681,"wiwi::rust_core::ffi::c_str"],[7701,"wiwi::rust_core::ffi::va_list"],[7703,"wiwi::rust_core::fmt"],[7744,"wiwi::rust_core::future"],[7764,"wiwi::rust_core::hash"],[7791,"wiwi::rust_core::hint"],[7796,"wiwi::rust_core::i128"],[7798,"wiwi::rust_core::i16"],[7800,"wiwi::rust_core::i32"],[7802,"wiwi::rust_core::i64"],[7804,"wiwi::rust_core::i8"],[7806,"wiwi::rust_core::intrinsics"],[8099,"wiwi::rust_core::intrinsics::mir"],[8140,"wiwi::rust_core::intrinsics::simd"],[8207,"wiwi::rust_core::io"],[8209,"wiwi::rust_core::isize"],[8211,"wiwi::rust_core::iter"],[8370,"wiwi::rust_core::marker"],[8393,"wiwi::rust_core::mem"],[8426,"wiwi::rust_core::net"],[8445,"wiwi::rust_core::num"],[8476,"wiwi::rust_core::ops"],[8603,"wiwi::rust_core::option"],[8609,"wiwi::rust_core::panic"],[8640,"wiwi::rust_core::panicking"],[8651,"wiwi::rust_core::panicking::panic_const"],[8669,"wiwi::rust_core::pin"],[8672,"wiwi::rust_core::prelude"],[8677,"wiwi::rust_core::prelude::rust_2015"],[8866,"wiwi::rust_core::prelude::rust_2018"],[9055,"wiwi::rust_core::prelude::rust_2021"],[9252,"wiwi::rust_core::prelude::rust_2024"],[9456,"wiwi::rust_core::prelude::v1"],[9645,"wiwi::rust_core::primitive"],[9662,"wiwi::rust_core::ptr"],[9701,"wiwi::rust_core::range"],[9909,"wiwi::rust_core::range::legacy"],[9915,"wiwi::rust_core::result"],[9921,"wiwi::rust_core::simd"],[10067,"wiwi::rust_core::simd::cmp"],[10080,"wiwi::rust_core::simd::num"],[10156,"wiwi::rust_core::simd::prelude"],[10399,"wiwi::rust_core::simd::ptr"],[10431,"wiwi::rust_core::slice"],[10489,"wiwi::rust_core::slice::memchr"],[10491,"wiwi::rust_core::str"],[10529,"wiwi::rust_core::str::pattern"],[10557,"wiwi::rust_core::sync"],[10559,"wiwi::rust_core::sync::atomic"],[10583,"wiwi::rust_core::task"],[10593,"wiwi::rust_core::time"],[10595,"wiwi::rust_core::u128"],[10597,"wiwi::rust_core::u16"],[10599,"wiwi::rust_core::u32"],[10601,"wiwi::rust_core::u64"],[10603,"wiwi::rust_core::u8"],[10605,"wiwi::rust_core::ub_checks"],[10607,"wiwi::rust_core::unicode"],[10611,"wiwi::rust_core::unicode::conversions"],[10613,"wiwi::rust_core::usize"],[10615,"wiwi::rust_std"],[10730,"wiwi::rust_std::alloc"],[10858,"wiwi::rust_std::any"],[10898,"wiwi::rust_std::arch"],[10909,"wiwi::rust_std::arch::x86_64"],[17785,"wiwi::rust_std::array"],[17838,"wiwi::rust_std::ascii"],[18031,"wiwi::rust_std::assert_matches"],[18033,"wiwi::rust_std::async_iter"],[18058,"wiwi::rust_std::backtrace"],[18096,"wiwi::rust_std::borrow"],[18195,"wiwi::rust_std::boxed"],[18407,"wiwi::rust_std::cell"],[18616,"wiwi::rust_std::char"],[18825,"wiwi::rust_std::clone"],[18831,"wiwi::rust_std::cmp"],[18911,"wiwi::rust_std::collections"],[19427,"wiwi::rust_std::collections::TryReserveErrorKind"],[19428,"wiwi::rust_std::collections::binary_heap"],[19528,"wiwi::rust_std::collections::btree_map"],[19843,"wiwi::rust_std::collections::btree_set"],[20055,"wiwi::rust_std::collections::hash_map"],[20350,"wiwi::rust_std::collections::hash_set"],[20480,"wiwi::rust_std::collections::linked_list"],[20600,"wiwi::rust_std::collections::vec_deque"],[20692,"wiwi::rust_std::convert"],[20731,"wiwi::rust_std::default"],[20734,"wiwi::rust_std::env"],[20847,"wiwi::rust_std::env::consts"],[20855,"wiwi::rust_std::error"],[20902,"wiwi::rust_std::f128"],[20903,"wiwi::rust_std::f128::consts"],[20928,"wiwi::rust_std::f16"],[20929,"wiwi::rust_std::f16::consts"],[20954,"wiwi::rust_std::f32"],[20969,"wiwi::rust_std::f32::consts"],[20994,"wiwi::rust_std::f64"],[21009,"wiwi::rust_std::f64::consts"],[21034,"wiwi::rust_std::ffi"],[21385,"wiwi::rust_std::ffi::c_str"],[21392,"wiwi::rust_std::ffi::os_str"],[21405,"wiwi::rust_std::fmt"],[21594,"wiwi::rust_std::fs"],[21841,"wiwi::rust_std::future"],[21910,"wiwi::rust_std::hash"],[22005,"wiwi::rust_std::hint"],[22010,"wiwi::rust_std::i128"],[22012,"wiwi::rust_std::i16"],[22014,"wiwi::rust_std::i32"],[22016,"wiwi::rust_std::i64"],[22018,"wiwi::rust_std::i8"],[22020,"wiwi::rust_std::intrinsics"],[22313,"wiwi::rust_std::intrinsics::mir"],[22382,"wiwi::rust_std::intrinsics::simd"],[22449,"wiwi::rust_std::io"],[23123,"wiwi::rust_std::io::prelude"],[23160,"wiwi::rust_std::isize"],[23162,"wiwi::rust_std::iter"],[24067,"wiwi::rust_std::marker"],[24124,"wiwi::rust_std::mem"],[24255,"wiwi::rust_std::net"],[24726,"wiwi::rust_std::num"],[27705,"wiwi::rust_std::ops"],[28123,"wiwi::rust_std::option"],[28253,"wiwi::rust_std::os"],[28257,"wiwi::rust_std::os::fd"],[28313,"wiwi::rust_std::os::linux"],[28317,"wiwi::rust_std::os::linux::fs"],[28335,"wiwi::rust_std::os::linux::net"],[28346,"wiwi::rust_std::os::linux::process"],[28368,"wiwi::rust_std::os::linux::raw"],[28407,"wiwi::rust_std::os::raw"],[28421,"wiwi::rust_std::os::unix"],[28429,"wiwi::rust_std::os::unix::ffi"],[28435,"wiwi::rust_std::os::unix::fs"],[28482,"wiwi::rust_std::os::unix::io"],[28493,"wiwi::rust_std::os::unix::net"],[28745,"wiwi::rust_std::os::unix::net::AncillaryError"],[28747,"wiwi::rust_std::os::unix::prelude"],[28821,"wiwi::rust_std::os::unix::process"],[28838,"wiwi::rust_std::os::unix::raw"],[28850,"wiwi::rust_std::os::unix::thread"],[28854,"wiwi::rust_std::panic"],[28939,"wiwi::rust_std::pat"],[28940,"wiwi::rust_std::path"],[29237,"wiwi::rust_std::pin"],[29290,"wiwi::rust_std::pipe"],[29339,"wiwi::rust_std::prelude"],[29344,"wiwi::rust_std::prelude::rust_2015"],[29542,"wiwi::rust_std::prelude::rust_2018"],[29740,"wiwi::rust_std::prelude::rust_2021"],[29946,"wiwi::rust_std::prelude::rust_2024"],[30159,"wiwi::rust_std::prelude::v1"],[30357,"wiwi::rust_std::primitive"],[30374,"wiwi::rust_std::process"],[30629,"wiwi::rust_std::ptr"],[30781,"wiwi::rust_std::rc"],[30920,"wiwi::rust_std::result"],[31039,"wiwi::rust_std::simd"],[31209,"wiwi::rust_std::simd::cmp"],[31222,"wiwi::rust_std::simd::num"],[31298,"wiwi::rust_std::simd::prelude"],[32815,"wiwi::rust_std::simd::ptr"],[32847,"wiwi::rust_std::slice"],[33374,"wiwi::rust_std::str"],[33854,"wiwi::rust_std::str::pattern"],[34005,"wiwi::rust_std::string"],[34177,"wiwi::rust_std::sync"],[34674,"wiwi::rust_std::sync::atomic"],[35105,"wiwi::rust_std::sync::mpsc"],[35280,"wiwi::rust_std::task"],[35424,"wiwi::rust_std::thread"],[35558,"wiwi::rust_std::time"],[35721,"wiwi::rust_std::u128"],[35723,"wiwi::rust_std::u16"],[35725,"wiwi::rust_std::u32"],[35727,"wiwi::rust_std::u64"],[35729,"wiwi::rust_std::u8"],[35731,"wiwi::rust_std::usize"],[35733,"wiwi::rust_std::vec"],[35931,"core::iter::traits::double_ended"],[35932,"core::num::nonzero"],[35933,"core::result"],[35934,"core::iter::traits::iterator"],[35935,"core::marker"],[35936,"core::ops::function"],[35937,"core::iter::adapters::array_chunks"],[35938,"core::convert"],[35939,"core::iter::adapters::chain"],[35940,"core::iter::traits::collect"],[35941,"alloc::borrow"],[35942,"core::borrow"],[35943,"core::iter::adapters::cloned"],[35944,"core::cmp"],[35945,"core::iter::adapters::copied"],[35946,"core::iter::adapters::cycle"],[35947,"core::ops::drop"],[35948,"core::iter::adapters::enumerate"],[35949,"core::iter::adapters::filter"],[35950,"core::iter::adapters::filter_map"],[35951,"core::option"],[35952,"core::iter::adapters::flatten"],[35953,"core::iter::adapters::fuse"],[35954,"core::iter::adapters::inspect"],[35955,"core::iter::adapters::intersperse"],[35956,"core::future::into_future"],[35957,"core::future::future"],[35958,"core::iter::traits::exact_size"],[35959,"core::iter::adapters::map"],[35960,"core::iter::adapters::map_while"],[35961,"core::iter::adapters::map_windows"],[35962,"core::array::iter"],[35963,"core::default"],[35964,"core::iter::adapters::peekable"],[35965,"core::pin"],[35966,"core::task::wake"],[35967,"core::task::poll"],[35968,"core::iter::traits::accum"],[35969,"core::iter::adapters::rev"],[35970,"core::iter::adapters::scan"],[35971,"core::iter::adapters::skip"],[35972,"core::iter::adapters::skip_while"],[35973,"core::iter::adapters::step_by"],[35974,"core::iter::adapters::take"],[35975,"core::iter::adapters::take_while"],[35976,"alloc::string"],[35977,"core::ops::try_trait"],[35978,"core::iter::adapters::zip"],[35979,"core::alloc::layout"],[35980,"core::alloc::global"],[35981,"core::alloc"],[35982,"core::ptr::non_null"],[35983,"core::fmt"],[35984,"core::fmt::builders"],[35985,"alloc::slice"],[35986,"core::ops::range"],[35987,"core::slice::index"],[35988,"alloc::boxed"],[35989,"core::str::traits"],[35990,"core::str::error"],[35991,"core::str::pattern"],[35992,"alloc::task"],[35993,"alloc::sync"],[35994,"alloc::rc"],[35995,"core::any"],[35996,"core::core_arch::x86"],[35997,"core::core_arch::x86::cpuid"],[35998,"core::sync::atomic"],[35999,"core::clone"],[36000,"core::ascii"],[36001,"core::async_iter::from_iter"],[36002,"core::async_iter::async_iter"],[36003,"core::char::decode"],[36004,"core::error"],[36005,"core::ffi::c_str"],[36006,"core::future::async_drop"],[36007,"core::future::pending"],[36008,"core::future::poll_fn"],[36009,"core::future::ready"],[36010,"core::hash"],[36011,"core::intrinsics"],[36012,"core::panic::location"],[36013,"core::intrinsics::mir"],[36014,"core::iter::range"],[36015,"core::iter::sources::empty"],[36016,"core::iter::sources::from_coroutine"],[36017,"core::ops::coroutine"],[36018,"core::iter::sources::from_fn"],[36019,"core::iter::sources::once"],[36020,"core::iter::sources::once_with"],[36021,"core::iter::sources::repeat"],[36022,"core::iter::sources::repeat_n"],[36023,"core::iter::sources::repeat_with"],[36024,"core::iter::sources::successors"],[36025,"core::mem"],[36026,"core::mem::transmutability"],[36027,"core::ops::arith"],[36028,"core::ops::async_function"],[36029,"core::ops::bit"],[36030,"core::ops::control_flow"],[36031,"core::ops::deref"],[36032,"core::ops::index"],[36033,"core::panic::panic_info"],[36034,"core::range::iter"],[36035,"core::range"],[36036,"core::core_simd::vector"],[36037,"core::core_simd::masks"],[36038,"core::core_simd::to_bytes"],[36039,"core::core_simd::simd::num::uint"],[36040,"core::core_simd::simd::cmp::ord"],[36041,"core::core_simd::simd::cmp::eq"],[36042,"core::core_simd::simd::num::float"],[36043,"core::core_simd::simd::num::int"],[36044,"core::core_simd::simd::ptr::const_ptr"],[36045,"core::core_simd::simd::ptr::mut_ptr"],[36046,"core::slice"],[36047,"std::alloc"],[36048,"alloc::alloc"],[36049,"core::array"],[36050,"core::mem::maybe_uninit"],[36051,"std::ascii"],[36052,"std::backtrace"],[36053,"std::ffi::os_str"],[36054,"std::path"],[36055,"alloc::vec"],[36056,"alloc::ffi::c_str"],[36057,"std::os::fd::owned"],[36058,"std::os::fd::raw"],[36059,"std::io"],[36060,"alloc::boxed::thin"],[36061,"std::io::error"],[36062,"core::slice::iter"],[36063,"alloc::vec::into_iter"],[36064,"core::io::borrowed_buf"],[36065,"core::cell"],[36066,"core::cell::once"],[36067,"core::cell::lazy"],[36068,"core::char"],[36069,"core::char::convert"],[36070,"alloc::collections::binary_heap"],[36071,"alloc::collections::vec_deque"],[36072,"alloc::collections::btree::map"],[36073,"alloc::collections::btree::set"],[36074,"alloc::collections::linked_list"],[36075,"std::collections::hash::set"],[36076,"std::collections::hash::map"],[36077,"alloc::collections"],[36078,"alloc::collections::vec_deque::drain"],[36079,"alloc::collections::btree::map::entry"],[36080,"alloc::collections::vec_deque::into_iter"],[36081,"alloc::collections::vec_deque::iter"],[36082,"alloc::collections::vec_deque::iter_mut"],[36083,"std::process"],[36084,"std::env"],[36085,"std::error"],[36086,"core::ffi::va_list"],[36087,"core::ffi::va_list::sealed_trait"],[36088,"core::ffi"],[36089,"std::fs"],[36090,"std::time"],[36091,"std::os::linux::raw::arch"],[36092,"std::hash::random"],[36093,"core::hash::sip"],[36094,"std::io::stdio"],[36095,"std::io::buffered::bufreader"],[36096,"std::io::buffered::bufwriter"],[36097,"std::io::cursor"],[36098,"std::io::util"],[36099,"std::io::buffered"],[36100,"std::io::buffered::linewriter"],[36101,"core::iter::adapters::by_ref_sized"],[36102,"core::mem::manually_drop"],[36103,"std::net::tcp"],[36104,"core::net::socket_addr"],[36105,"std::net::udp"],[36106,"core::net::ip_addr"],[36107,"std::net::socket_addr"],[36108,"std::net"],[36109,"core::net::parser"],[36110,"core::time"],[36111,"core::num::saturating"],[36112,"core::num::wrapping"],[36113,"core::num::dec2flt"],[36114,"core::num::error"],[36115,"core::num"],[36116,"core::ptr::alignment"],[36117,"std::os::unix::net::stream"],[36118,"std::os::unix::net::listener"],[36119,"std::os::unix::net::datagram"],[36120,"std::pipe"],[36121,"std::os::linux::process"],[36122,"std::os::linux::fs"],[36123,"std::os::net::linux_ext::addr"],[36124,"std::os::net::linux_ext::tcp"],[36125,"std::os::unix::net::addr"],[36126,"std::os::net::linux_ext::socket"],[36127,"std::os::unix::ffi::os_str"],[36128,"std::os::unix::fs"],[36129,"std::os::unix::net::ancillary"],[36130,"std::os::unix::net::ucred"],[36131,"std::os::unix::process"],[36132,"std::os::unix::thread"],[36133,"core::panic::unwind_safe"],[36134,"std::panic"],[36135,"std::sys_common::process"],[36136,"core::ptr::metadata"],[36137,"miniz_oxide"],[36138,"std::std_float"],[36139,"core::core_simd::masks::mask_impl"],[36140,"core::slice::ascii"],[36141,"core::str::iter"],[36142,"core::str::lossy"],[36143,"core::sync::exclusive"],[36144,"std::sync::once"],[36145,"std::sync::poison"],[36146,"std::sync::mutex"],[36147,"std::sync::rwlock"],[36148,"std::sync::once_lock"],[36149,"std::sync::condvar"],[36150,"std::sync::lazy_lock"],[36151,"std::sync::reentrant_lock"],[36152,"std::sync::barrier"],[36153,"std::sync::mpsc"],[36154,"std::thread"],[36155,"std::thread::local"],[36156,"std::thread::scoped"],[36157,"alloc::vec::drain"],[36158,"alloc::vec::extract_if"],[36159,"alloc::vec::splice"],[36160,"core::result::Result"],[36161,"core::option::Option"],[36162,"core"],[36163,"std"],[36164,"alloc"],[36165,"alloc::ffi"],[36166,"core::fmt::macros"],[36167,"alloc::fmt"],[36168,"core::slice::raw"],[36169,"alloc::str"],[36170,"core::str::converts"],[36171,"core::str"],[36172,"core::macros"],[36173,"core::arch"],[36174,"core::core_arch::arch"],[36175,"core::core_arch::x86::avx"],[36176,"core::core_arch::x86::avx512f"],[36177,"core::core_arch::x86::sse"],[36178,"core::core_arch::x86::sse41"],[36179,"core::core_arch::x86::sse42"],[36180,"core::core_arch::x86::rtm"],[36181,"core::core_arch::x86::xsave"],[36182,"core::core_arch::x86::rdtsc"],[36183,"core::core_arch::x86::adx"],[36184,"core::core_arch::x86_64::adx"],[36185,"core::core_arch::x86::bmi1"],[36186,"core::core_arch::x86_64::bmi"],[36187,"core::core_arch::x86::tbm"],[36188,"core::core_arch::x86_64::tbm"],[36189,"core::core_arch::x86::bt"],[36190,"core::core_arch::x86_64::bt"],[36191,"core::core_arch::x86::bswap"],[36192,"core::core_arch::x86_64::bswap"],[36193,"core::core_arch::x86::bmi2"],[36194,"core::core_arch::x86_64::bmi2"],[36195,"core::core_arch::x86::avx512bw"],[36196,"core::core_arch::x86_64::avx512bw"],[36197,"core::core_arch::x86::avx512dq"],[36198,"core::core_arch::x86::fxsr"],[36199,"core::core_arch::x86_64::fxsr"],[36200,"core::core_arch::x86::abm"],[36201,"core::core_arch::x86_64::abm"],[36202,"core::core_arch::x86::avx2"],[36203,"core::core_arch::x86::avx512fp16"],[36204,"core::core_arch::x86::vaes"],[36205,"core::core_arch::x86::avxneconvert"],[36206,"core::core_arch::x86::avx512bitalg"],[36207,"core::core_arch::x86::avx512cd"],[36208,"core::core_arch::x86::vpclmulqdq"],[36209,"core::core_arch::x86::avx512bf16"],[36210,"core::core_arch::x86::f16c"],[36211,"core::core_arch::x86::avx512vnni"],[36212,"core::core_arch::x86_64::avx"],[36213,"core::core_arch::x86::fma"],[36214,"core::core_arch::x86::gfni"],[36215,"core::core_arch::x86::avx512ifma"],[36216,"core::core_arch::x86::avx512vbmi"],[36217,"core::core_arch::x86::avx512vbmi2"],[36218,"core::core_arch::x86::avx512vpopcntdq"],[36219,"core::core_arch::x86::ssse3"],[36220,"core::core_arch::x86::sse2"],[36221,"core::core_arch::x86::sse3"],[36222,"core::core_arch::x86::aes"],[36223,"core::core_arch::x86::pclmulqdq"],[36224,"core::core_arch::x86_64::sse42"],[36225,"core::core_arch::x86_64::avx512f"],[36226,"core::core_arch::x86_64::avx512fp16"],[36227,"core::core_arch::x86_64::sse2"],[36228,"core::core_arch::x86_64::sse"],[36229,"core::core_arch::x86_64::sse41"],[36230,"core::core_arch::x86::sse4a"],[36231,"core::core_arch::x86::sha"],[36232,"core::core_arch::x86::rdrand"],[36233,"core::core_arch::x86_64::rdrand"],[36234,"core::core_arch::x86_64::amx"],[36235,"core::core_arch::x86_64::xsave"],[36236,"core::core_arch::x86_64::cmpxchg16b"],[36237,"core::convert::num"],[36238,"core::f128"],[36239,"core::f128::consts"],[36240,"core::f16"],[36241,"core::f16::consts"],[36242,"core::f32"],[36243,"core::f32::consts"],[36244,"core::f64"],[36245,"core::f64::consts"],[36246,"core::future::join"],[36247,"core::hash::macros"],[36248,"core::hint"],[36249,"core::i128"],[36250,"core::i16"],[36251,"core::i32"],[36252,"core::i64"],[36253,"core::i8"],[36254,"core::intrinsics::simd"],[36255,"core::isize"],[36256,"core::iter::traits::marker"],[36257,"core::ops::unsize"],[36258,"core::panicking"],[36259,"core::panicking::panic_const"],[36260,"core::prelude"],[36261,"core::macros::builtin"],[36262,"core::ptr"],[36263,"core::core_simd::lane_count"],[36264,"core::core_simd::cast"],[36265,"core::core_simd::swizzle"],[36266,"core::core_simd::simd"],[36267,"core::core_simd::alias"],[36268,"core::slice::memchr"],[36269,"core::str::validations"],[36270,"core::sync"],[36271,"core::task::ready"],[36272,"core::u128"],[36273,"core::u16"],[36274,"core::u32"],[36275,"core::u64"],[36276,"core::u8"],[36277,"core::unicode"],[36278,"core::unicode::unicode_data"],[36279,"core::unicode::unicode_data::conversions"],[36280,"core::usize"],[36281,"std_detect"],[36282,"std::collections"],[36283,"std::env::consts"],[36284,"std::ffi"],[36285,"std::io::copy"],[36286,"std::os"],[36287,"std::os::linux"],[36288,"std::os::linux::raw"],[36289,"std::os::raw"],[36290,"std::os::unix"],[36291,"std::os::unix::raw"],[36292,"std::panicking"],[36293,"std::prelude"],[36294,"std::sync"]],"i":"````````BDh````nIhIf``````````EjBj`0Ab``Df`6`BfEl59Bn``````3````````d5``555AnB````7BbAj7`9599999```999`````Cn:``::Ch00`;;;;;;;;```DlCf===`===EfEjBjF`Ab000001`000000000000=00=`00000?0``00`0==000``000`0``00>Hn``1111IfIh3d`4`4```````````````````````J``0Jb00`1000``10``BDh`0Bn`C`Jl22``BKf```0`````````EIf```````````````````BLl`````0```CBj0`````````````````````````````````````CGb````````EIh```1```0``1```JnKdKfKhKjKlKnL`Lb```Lh00`````````````````LnMdMb````````````````2``````0000001``````Mn``````````````````````````0``````````Nh`0`0```Nf`Nb11110Nj101022``````Hn````NlO`10``````````````````````````````````````````````````````````````````````````````````````````````````````````````J`0Jb00100010``Od````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````On000```````BCn000000000000000000000000000000000`00000000000000000000000000000`00000000000000000000000000000000000000000000000000000000000000000`````ACj`ACl1`100``C`Jl``````````````````````````````ACb0AD```Cd00````````Fl0ADbFb000`2```2`````10``IhIf``````AnB`Dl`Ef45``Gb```ADf0ADd1110111110``101111````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````ADj000000000000000`````CGb````````EIh```1```0``1```JnKdKfKhKjKlKnL`Lb``Lh00``AE```EjEl1````2`1``0```````AEl`0AEnAF`20111111111111111````````````````AFj```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````AGh``````AGf``````1``0````````````````````````````````````````````````````````````````````````````````````````````````````````````````````Bj`0Ab````````````````````````d1111AGj002`222222222`222Ch0033333333111``Cf4444445F`55555505555555555554554``555555Gl66```6556666664`Hh7777777767`7`````EIj````````````````AId````````CMb`````0`````0``````AIh``1```CNh00````0000```CNfCMj10D@f`D@h`101`````````````0``1`0``10`````````````AKfAJfAJb`AMh3``````````ALb````0```````AIjANbALn6AM`BfIbALjAKnAMbAJhAJlAK`AMjAMnALf``````````9AHb``````AKj`EIlALb`3AMhAIjAIlAInAJbAJf?AJj?AJn?AKbIbBbAjBfMhAKjAKlAKnAL`CnM`MfD@l8`0>```>>>EfBjF`Ab0000401``40000;000;000`700d110`511111111100111``111`111```111110`11`````````````n````````4`42`Df1```Bf```````1``34``4`44AnB```6BbAj4```8FlACb0:1::::`````:::Gb````Cn<`ADb==Ch00`>>>>>>>>``Dl?FbAb`10```000EfBjF`33333430``43333;333;333`733d440`544444444400444``444`444```444440`44`````````````nIhIf`````````5`57`Df3```Bf```````1````59``9`99AnB```;BbAj4```=FlACb0?1????`````???Gb````CnAb`ADb11Ch00`22222222``DlCf4Fb5`05```555EfBjF`88888380``38888<888<888`788d990`499999999900999``999`999```9999IfIh;2`;;`````````````n12```````````Ej6`6=`Df2```BfEl3```````2````7Ab``0`00AnB```2BbAj6```4FlACb0616666`````666Gb````Cn8`ADb99Ch00`::::::::``DlCf;>BLlCCjBMhCBj0BNjBNhBNlC@nCCbCCfC@fC@jCAjCAnBM`CA`CAdCChBLlCCjBMhCBjBNjBNhBNlC@nCCbCCfC@fC@jCAjCAnBM`CA`CAdCCh??CCjBMh32323232BLl21CBjBNjBNhBNlC@nCCbCCfC@fC@jCAjCAnBM`CA`CAdCCh=<;:9876543CCjBMhBLl21BNjBNh?>=<;:910BNlC@nCCbCCfC@fC@j7641CAjCAn9863109876543210BM`CA`CAdCCh=<;:987654>>>>210210210??1010=<;:98763=:952CBj?CCjBMh2BNjBNhBNlC@nCCbCCfC@fC@jCAjCAnBM`CA`CAdCChBLlCCjBMhCBjBNjBNhBNlC@nCCbCCfC@fC@jCAjCAnBM`CA`CAdCChBLlCCjBMhCBjBNjBNhBNlC@nCCbCCfC@fC@jCAjCAnBM`CA`CAdCCh>1`````````````CAfCCnBOdBKnCBfBMlCBnBMd76CClBObCAlCAb987654;:32109876531098765310987653109213987654;:33210987654;:3210;:;:;:;:987654;:321098765421919291987651987654;:210921;:0;:0;:0;:;:9876542987653103987654;:3210987654;:3210987654;:3210;```````````CD`BLj````````10```10BN`BMnBNbC@lCC`BL`BLnCCdC@dC@hCBbCDfCDhCBhBN`BMnBNbC@lCC`BL`BLnCCdC@dC@hCBbCD`CDbCDdCB`BLjCDfCDhCBhBN`C@lCC`2102102BMnBNb32CCdC@dC@h8874365BL`BLn432CBbCD`CDbCDdCB`BLjCDfCDhCBh0BN`BMnBNbC@lCC`?CCdC@dC@h76543BL`BLn432CBbCD`CDbCDdCB`BLjCDfCDhCBh84848462666265213156BN`BMnBNbC@lCC`?>CCdC@dC@hCBbCD`CDbCDdCB`BLjCDfCDhCBhBN`BMnBNbC@lCC`BL`BLnCCdC@dC@hCDb<00=0>=<0:98765321:987654321>CD`?0??1>1>>>;:98765432;87<;:98765432CBb12CDdCB`BLjCDfCDhCBhBN`BMnBNbC@lCC`BL`BLnCCdC@dC@hCBbCD`CDbCDdCB`BLjCDfCDhCBhBN`BMnBNbC@lCC`BL`BLnCCdC@dC@hCBbCD`CDbCDdCB`BLjCDfCDhCBh0`````````BNnBO`BLdBMbBMjBKlCBdCBl76543210732107321073210760765432107653210765432107654321076543210765765432107654321073210765432107654321076543210```````BKjBKh1011BOhBOj23BMfBOf32451034034034045320324510324510455455532451032103245453210320454555555532105555340324510324510324510`````C@`BOnBOl210BLf32103212121211320032132103210321032132132132032103211321032121321032103213210321``IhIf``````AnB`BCj000000000Dl1111`Ef2222252622``Gb```CE`0``````CEdCEfCEhCDlCDn5CEb5432160666```6065432166005432160`54321605432121`215432121```54321``660543216054321605432160```````````````CEjADh10ADd000000000022122220002201111``2002222111```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````CElBDjBEdCF`112BE`BEf1144305114CFn44CFd4CFf3CFhCFj:CFb7:59483621;06```````````````777948321;77:9483621;7:9483621;7:9667:9679070432:9;7777777777:::::::::::::9483621:7777:5944883362211;077777759999948321;0:6667:77769779997:7:7:96796775948321;097989637:97974::67:7:7:::7:94`777777777:::::::::::::9677777:3::66:7:9483621;:648321:675948321;075948321;0777:59483621;037;7``````````CFl000000000```CGb````````EIh```1```0``1```K`0LdCGjCGlCGhCGdCGfLf79Kb76543218:07:07:07:070888880043243243:06565865432654328JnKdKfKhKjKlKnL`Lb::CGb::Ld0`CGjCGlCGhCGdCGfLfK`8Kb8`07654321908331101111908208765432190876543219087654321908331`Lh2022022`````````CGnCHbCHd0222220CI`3CIb3CHhCHjCHlCHn658473210`873218732187321`670``6788873821`5558666584732106658473210268`158658473210461181181661816668`65872088873048676588`667666``66`6666620````6636263`6268`8888888888888888`6687321766584732106584732106584732108`6676666``AE```EjEl1````2`AEbAEdAEfAEh3210202020321032103210532100``43210``20321032103210``````AEl``CIfCIhCIjCIl321043132103210321032101AEn3143214321AF`6054325432254325432543254321421111111412111111````````````````AFj```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````AGh``````AGf``````1``0`````````````````````01AGdAGb231023102310``231023102310```````````````````````````````````````````````````````````````````CKf000``0`````0000BGf`11`0EJb``222222`222``2```2222220222``2`2`````21``````2`22222`2`BGdBGjBGb2100CInCJ`CJbCJdCJfCJh6543210CJjCJlCKnCLbBFb:98765CLd>CK`CL`CKdCKfCKhCKjBGjBGfCKbCKlCJnCLfCLhBGbCJjCJlCKnCLbBFbCInCJ`CJbCJdCJfCJhCLdBGdCK`CL`CKdCKfCKhCKjBGjBGfCKbCKlCJnCLfCLhBGbCJjCJlBFnBFd132CK`5BFb31CKdCKfCKhCKjBGjBGf55432105432104BEn=928CJj8?=76CK`0BFd4CLbCJb0CJdCJf0CJhCKd0000CKh0CKj0;:<>>7BFb0CInCJ`9876CLdBGd>CL`08CKf087BGjBGfCKbCKlCJnCLfCLhBGbCJjCJlCKnCLbBFb0000CInCJ`CJbCJdCJfCJhCLdBGdCK`00CL`CKdCKfCKhCKjBGjBGfCKbCKlCJnCLfCLhBGbBFbCJjCJlCLb3?982103?98BEn?CK`6643CKn36CInCJ`CJbCJdCJfCJhCLdBGd9CL`CKdCKfCKhCKjBGjBGfCKbCKlCJnCLfCLhBGbBEn?97CJjCJlCLbBFbBGdCKdBGjCJnCLfCLh6CKf:5`7BFn;CIn0CJ`CLd9CKhCKbCKlCJj66547=32106657=06657=65BEn177658>3`177658>603177658>3BGb`BGh03CJlCKd8552CK`471`CJn6BFb733```53;853;?3CKf:1CLb7CInCJ`CJbCJdCJfCJhCLdBGdCK`:CKdCKfCKhCKjBGjBGfCKbCKlCJnCLfCLhBGbCJjCJlCKnCLbBFbCInCJ`CJbCJdCJfCJhCLdBGdCK`CL`CKdCKfCKhCKjBGjBGfCKbCKlCJnCLfCLhBGbCJjCJlCKnCLbBFbCInCJ`CJbCJdCJfCJhCLdBGdCK`CL`CKdCKfCKhCKjBGjBGfCKbCKlCJnCLfCLhBGb=0CJjCJlCLbBFd21CJb0CJdCJf0CJhCKd0000CKh0CKj0;98665443786654437866447986654437222221100;````BFn800BEn090190111101101BGh0011002:::::````````````````````````Bj`0Ab````````````````````````DhDjdCLlBhCjD`GnHbHj0AHlAHn;:<876Cl654321===AGj00==Cb=6=:8AGl7Cb764GnAHn`>>>Ch00???;72???>=EdFh6>CLl>6=Cl=28105;9=<>2810;9=<>2810;9=<>28109=<81065662;999==<<>281006667543;99==<<>22881100=<=<66775543;999999===<<<<>2888810=<6759=<8109=<>810767543;9=<>28107436758109=<=9=<9=<98<98=9=<9=<=66==<<<<9=<665555667555<5=<810436==<<=<79=<810999==<<81065565810666666566550<555608106555667578106650675656=<675=<9<<<==;9=<>2810:8109=<281067567543;9=<>281067543;9=<>281067567543;9=<>2810666566l00000000000COj00000000000COl00000000000D@f`D@h`144444444444433333333333322222222222244444444444433333333333322222222222201`````````````0``1`0``10`44444433333322222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222244333333333333333333333333333333333333333333333333222222222222222222222222222222222222222222222222443333333333333333333333333333333333333333333333332222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333332222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333332222222222222222222222222222222222222222222222224D@`D@bD@d465372104653777777777777777777777777777777777777777777777777772104653721046537210465376577777777777766666666666655555555555566666666666655555555555565210666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555721046537777772211004666666555555377777777777777777777777777777777777772111104653777777777777666666666666555555555555777777777777666666666666555555555555777777777777777777657777777777777210465377777766666655555577777766666655555577777766666655555577777707777777777777666666666666555555555555777777777666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555777777777777766666666666655555555555555555555555577555555666666666666666666666666555555555555555555555555777777777777765666666666666555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555777777777777666666666666555555555555777777777777666666666666555555555555777777777777666666666666555555555555777777777777777777777777777777777777777777555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555666666555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555555555555555555555555555777777777777666666666666555555555555777777777777666666666666555555555555777777777777666666666666555555555555721046537210657777777777776666666666665555555555557777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777721046537210465372104653777777777777777777777777777777777777````````````AKfAJfAJb`AMh3``````````ALb````0```````AIjANbALn6AM`BfIbALjAKnAMbAJhAJlAK`AMjAMnALf``````````9AHb``````AKj`EIlALb`3AMhAIjAIlM`044AInAJbAJfAJhAJjAJlAJnAK`AKbAKf=CG`;AOhMfAOfD@lALbD@n7AMh7M`765432Ib::BbAjBf=5<4;:987=5<4;:987=5<4;:98775Mh5<;:9>5:=5AKjAKlAKnAL`Cn?:Mf?6CG`<=9=AM`:?>:>;AMbAMdAHbAOfAMjAMlAMnAN`M`AOh6610MhCG`3322Mf099D@l0ANbANdAKfAMh6985>4ALb?217:96?50D@n328;:7AOf7210439<;80721```Df`000000000000DA`DAbCOh32103320332032033333333333210333332103333333333321033321033333333321021033333332103333203321032103210333333333```````````BEjCIdBEhBEl2121211111221222222222222221DBf332DBh443343434343`````DBj0000000000000000```DBlDBn1DCb1101```DBd000DCd11111DCh22022222CHf0``00000`0`0````0000000000000000``0000````````````````````````DCl0DCn0````````DD`000``00DDb1`DDdDDf33DDhDDj000`245DDl6666DDn0047`7000```````BEjBElDBfDBh`````EJd`0```````DEfDAhDE`0DC`DAn3DAd21401414DElDEn8DEj4735DEb97DEhDEd54<37:682;9109982082082076760667:68;91054<377::6682;910887:622200:54<37:682;910543:17:696686697:692954317676767766066667666777677777672767:6762762767617:682097:654<37:682;91054<37:682;91054<37:682;91007667666EJf0``````````````````DF`DClBEjDFbBElDD`0500DFd011DDb276DDf2DBfDCn5::5DDh85DBh2DDj000568888==8DDn0068989>000``>>88>8>>8`>>88>``````````````;;``DFl`0```0``DFh1DFfAFl2310102`303030001113002231002310`023101102`02211```1`3020231023102310`````DGbDGh0````11```1`1`0000`BDnBDl010DG`42DGdDGf4433661100443DGl63721DFnDGj76285943106777859431077685943107685943107685946777066777777776666666666668594067766667622859431007777772859431077676859728594310776431766666`68665767643143677777777666666666666859477667777776667685943106620667285943107285943107776285943106766``Gf000000000000000000000000000000000000`0000000000000``DBbDB`101010001011001010101100`11111111101010100000```````````````````n````````Bj`0Ab`Df3```BfBn```````2``````d4``4`44AnB```6BbAj6```8FlACb07:1::::`````:::Gb````Cn<`ADb==Ch00`>>>>>>>>``Dl?FbAb`10```000EfBjF`33333430``43333;333;333`733d440`544444444400444``444`444``BnHn`666662`66``````````````n````````5`57`Df1```Bf4```````1``````59``9`99AnB```;BbAj4```=FlACb0:?1????`````???Gb````CnAb`ADb11Ch00`22222222``Dl3Fb4`04```444EfBjF`77777370``37777;777;777`677d880`488888888800888``888`888``BnHn`:::::2`::``````````````nIhIf`````````7`7=`Df3```Bf6```````1````````7?``?`??AnB```AbBbAj5```2FlACb0=414444`````444Gb````Cn6`ADb77Ch00`88888888``DlCf:Fb;`0;```;;;EfBjF`>>>>>3>0``3>>>>;>>>;>>>`7>>d??0`4?????????00???``???`???``BnHn`Ab000IfIh25`22``````````````n12```````````Ej9`94`Df2```BfEl39```````2````````:7``7`77AnB```9BbAj5```;FlACb0?=1====`````===Gb````Cn?`ADbAb0Ch00`11111111``DlCf3Fb4`04```444EfEjBjF`88888480``48888=888=888`988d990`599999El::::11:::``:::`:::``BnHn`<<<5`>>``````````````n````````8`8?`Df1```Bf6```````1``````8Ab``0`00AnB```2BbAj5```4FlACb0=616666`````666Gb````Cn8`ADb99Ch00`::::::::``Dl;Fb<`0<```<<1010DJbDJdDLbDLdDJfDLfDLhDLjDLlDLnDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL```````Mb00000BFhBFfDJbDJdDLbDLdDJfDLfDLhDLjDLlDLnDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL`BFhBFfDJbDJdDLbDLdDJfDLfDLhDLjDLlDLnDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL`740BFfBFh1:9876320Md12DM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL`BFhBFf10DJbDJdDLbDLdDJfDLfDLhDLjDLlDLnDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL`BFhBFfDJbDJdDLbDLdDJfDLfDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL`BFhBFf=<;:9876543210=<;:9876543210`:731010DJbDJdDLbDLdDJfDLfDLhDLjDLlDLnDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL`BFhDJbDJdDJfDJhDJjDJl?=<:8226BFf65DLbDLd6DLfDLhDLjDLlDLnDM`DMb<;:DKhDJnDKjDK`DKbDKlDKdDKnDKfDL`BFhBFfDJbDJdDLbDLdDJfDLfDLhDLjDLlDLnDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL``BFhBFfDJbDJdDLbDLdDJfDLfDLhDLjDLlDLnDM`DMbDJhDJjDJlDKhDJnDKjDK`DKbDKlDKdDKnDKfDL`````Mn```````````````````````DMdDMf01DMhDMjN`DMl534DMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMdDMhDMfN`DMl10612DMj2211543DMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOl0DOn0E@`0E@bE@d432DMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@d```Mn````DMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMjDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@dE@bDMfDMdDMh2<:92DMj213DMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@dDMjDMdDMhDMfDMnDN`DNbDNdDNjDNlDNnDO`DObDOdDOfDOh<<=`>DMdDMhDMf8765DOjDOlDOnE@`DMjN`DMl987DMnDN`DNbDNd?>DNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dN`DMl654654DMj21DMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@dDMjN`DMlDMdDMhDMfDMnDN`DNbDNdDNfDNhDNjDNlDNnDO`DObDOdDOfDOhDOjDOlDOnE@`E@bE@d1N``````Nh`0`0```Nf`1E@fE@hE@jE@lBFlE@n7543210754321075432107543210775432107543210Nb654321865432177770654321Nj765432176543207654321654306543889765432976543297654329765432``````I`00EA`111EAb02222020221EAd13320333233232333320313333233333333333333133220013333333203333333333333333333333132033213333331333333113333333333331333323Hn43142431243144424313444````EJjEJl`````````10````EAn`````````0NnEAf1101111`ECnED`EBhEBj554EB`EAjEAlEBdECl;EBlEBnEBbEBfEC`ECbECdECfEChECjEAhECnED`EBhEBjNnEAfEB`EAjEAlEBdEClEAnEBlEBnEBbEBfEC`ECbECdECfEChECjEAh0?0?Nn=<;:9>=;97EClEAn99949762EC`ECbECdECfEChECj?222EAfEB`EAjEAlEBdECl0EAn0EBlEBn0EBb=EC`0ECb0ECd0ECf0ECh0ECj0EAhEBjECnED`EBh3Nn0000000000000000EAfEB`00EAjEAlEBd00EClEAn0EBl00EBnEBb00EBfEC`ECbECdECfEChECjEAh00Nn110EAf101?1EB`EBdECl?=511411504444ECnED`EBhEBj876EAjEAl76EAnEBlEBnEBbEBfEC`ECbECdECfEChECjEAh0>NnEB`EBdECl><43EAf405EAj6ED`5EAlEBb989887EBl99EC`ECbECdECfEChECj`?ECnEBhEBjNn?EB`?EBdECl=>EAh44EAf555555557755515505EBb6666264622614EBf725074EAnEBnEC`ECbECdECfEChECjECnED`EBhEBjNn0?EB`EAjEAlEBdEClEAnEBlEBnEBbEBfEC`ECbECdECfEChECjEAh=ECnED`EBhEBjNnEAfEB`EAjEAlEBdEClEAnEBlEBnEBbEBfEC`ECbECdECfEChECjEAhEB`765432Nn0000000:0:ECnED`EBhEBj4EAf6EAjEAlEBdEClEAnEBlEBnEBbEBfEC`ECbECdECfEChECjEAhNnEAfECnEBhEAjEBd12222545>5```AC`0`````````````000EDbEDdEDfEDhEDjEDlEDnEE`EEbEEdEEfEEh;:<9876543210;:<9876543210<<<;:9876543210;:9876543210;:9876543210`;:9876543210<`9876543210;:9876543210::98765432109876543210;9876543210;;:9876543210::9876543210;:9876543210;:9876543210;::<9876543210;;::<99887766554433221100;:9876543210;:9876543210;:9876543210;:9876543210;:9876543210<;:<9876543210;:9876543210;:9876543210;:9876543210`;:9876543210;:9876543210<;:<9876543210;:<9876543210;:<9876543210EFdEFfEFh20````````1```EElEEjEEnEFjEFlEFnEF`EFb:9876543210:98`6510:986510:986510:9810:9810:987654321100::998876543210::998876543210:9877432743277765`6510:9810:9876543210:9876543210:9877576543210:98````Gj```0``EGbEGf1Gh213EGdEGjEGh354621066054615454615461625462130354621035544666222100665466306354621066306666621546`54613546210354621035462102NlO`7610765276``EJn``0`````EGlEGn`EHdEHfEHh4EH`EHj5EHb54372160260260260`26543722160543721603605437216074747101````33`33````511113347260254372160543721603543721600333```CO`0000````CH`11EG`120122222222201EHl3EHn2314023442423423140231402314023441444444123232340231140023140444444444423423140444444232344244223423444444231401023140442314023140`````````````````BFj0EI`1BEbEIb1111311231123123110EId34221022422424224222422223421022222222222222223421043422222222222221022222223421022342221022342232222222222341034042222222222222223410222224224342103421022223421022222","f":"`````````````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}```{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}`{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}```{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}````{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}``{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}?``{cDl{}}{eCf{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}??{cc{}}{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Ej{}{{Ah{c}}{Eh{e}}}}}e{}{{El{}{{Ah{c}}}}}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{F`}}}h}`1{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}5{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}7106{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{Gf{{f{b{El{}{{Ah{c}}}}}}}}{f{bGh}}}{{Gj{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}``{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{f{bc}}c}c{}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}6{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{f{bc}}{f{bc}}}j{}}{{{f{bc}}}cGb}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}{{{f{Hn}}}I`}{ce{}{}}{{{f{c}}}e{}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{{If{}{{Id{e}}}}e}}}{}{}}{{{Ih{}{{Id{c}}}}}{{n{ec}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{}c{}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}``````````````````````{IlIn}{{{f{J`}}Il}In}10{{{f{Jb}}Il}{{n{{Jf{{Jd{In}}}}Jh}}}}0{{{f{Jb}}}{{f{Jb}}}}{{InIl}j}{{{f{J`}}InIl}j}{{{f{Jb}}{Jf{In}}Il}j}{{{f{Jb}}{Jf{In}}IlIl}{{n{{Jf{{Jd{In}}}}Jh}}}}0{IlJj}{{InIlh}In}{{{f{J`}}InIlh}In}3```````{{{f{C`}}}{{f{c}}}Ad}{{{f{bJl}}}{{f{bc}}}Ad}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}`````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{f{Jn}}{f{bK`}}}{{n{jKb}}}}{{{f{Kd}}{f{bK`}}}{{n{jKb}}}}{{{f{Kf}}{f{bK`}}}{{n{jKb}}}}{{{f{Kh}}{f{bK`}}}{{n{jKb}}}}{{{f{Kj}}{f{bK`}}}{{n{jKb}}}}{{{f{Kl}}{f{bK`}}}{{n{jKb}}}}{{{f{Kn}}{f{bK`}}}{{n{jKb}}}}{{{f{L`}}{f{bK`}}}{{n{jKb}}}}{{{f{Lb}}{f{bK`}}}{{n{jKb}}}}{LdI`}{c{{Lf{c}}}{{Bb{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{bLh}}Ld}{{n{jKb}}}}{{{f{bLh}}Lj}{{n{jKb}}}}1{{{f{bLh}}{f{Ll}}}{{n{jKb}}}}````````````````````````````````````{{{f{{Ln{}{{Ah{c}}}}}}}c{}}{{{f{bc}}}{{f{b{Jd{c}}}}}{}}{M`{{f{b{Jd{c}}}}}{}}{M`{{f{{Jd{c}}}}}{}}{h{{f{{Jd{c}}}}}{}}{h{{f{b{Jd{c}}}}}{}}{{{f{c}}}{{f{{Jd{c}}}}}{}}{{{Mb{}{{Ah{c}}}}{f{e}}}{{Df{{f{c}}}}}AdAd}{{{Mb{}{{Ah{c}}}}{f{be}}}{{Df{{f{bc}}}}}AdAd}{{{Mb{}{{Ah{c}}}}}cAd}0{{{Mb{}{{Ah{c}}}}{f{e}}}{{f{c}}}AdAd}{{{Mb{}{{Ah{c}}}}{f{be}}}{{f{bc}}}AdAd}{{{f{{Md{}{{Ah{c}}}}}}e}c{}{}}{{c{Mf{h}}}{{M`{h}}}{{Mh{h}}}}{{c{Mf{h}}}{{Df{{M`{h}}}}}{{Mh{h}}}}````````````````````````````{{{Mj{{Jd{In}}}}}{{Mj{Ll}}}}{{Inh}{{f{Ll}}}}{{Inh}{{f{bLl}}}}{{{f{Ll}}}{{n{{Mn{}{{Ml{c}}}}c}}}{}}{{{f{{Jd{In}}}}}{{n{{f{Ll}}N`}}}}{{{f{b{Jd{In}}}}}{{n{{f{bLl}}N`}}}}{{{f{{Jd{In}}}}}{{f{Ll}}}}{{{f{b{Jd{In}}}}}{{f{bLl}}}}````````````````{{{f{Nb}}}{{f{Ll}}}}{{{Nf{}{{Nd{c}}}}{f{Ll}}}cNb}{{{Nf{}{{Nd{c}}}}{f{Ll}}}AfNb}00{{{f{bNb}}}Nh}{{{f{bNj}}}Nh}{{{f{bNb}}}{{Df{{G`{hh}}}}}}{{{f{bNj}}}{{Df{{G`{hh}}}}}}10{{{Nf{}{{Nd{c}}}}{f{Ll}}}{{Df{{f{Ll}}}}}Nb}0``````{{{f{Hn}}}I`}````{{{Nn{Nl}}}j}{{{Ob{O`}}}j}{{{f{{Nn{Nl}}}}}j}{{{f{{Ob{O`}}}}}j}``````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{f{J`}}Il}In}0{{{f{Jb}}Il}{{n{{Jf{{Jd{In}}}}Jh}}}}0{{{f{Jb}}}{{f{Jb}}}}{{{f{J`}}InIl}j}{{{f{Jb}}{Jf{In}}Il}j}{{{f{Jb}}{Jf{In}}IlIl}{{n{{Jf{{Jd{In}}}}Jh}}}}0{{{f{J`}}InIlh}In}1``{{{f{Od}}}Of}{{}{{f{Ll}}}}{{{f{c}}}{{f{Ll}}}Ad}````````````````````````````````````````````````````````````````````{{}Oh}000````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{Ohj}000{{OhOhOhOh}Oj}{{{f{bOl}}{f{bOl}}{f{bOl}}{f{bOl}}}j}````````````````````````{OhOn}{{OhOh}On}{Oh{{G`{OhOh}}}}```````````````````{OhA@`}{{InOhOh{f{bOh}}}In}{{InA@`A@`{f{bA@`}}}In}10{{OhOh}Oh}{{A@`A@`}A@`}10{{OhOhOh}Oh}{{A@`OhOh}A@`}{OhOh}{A@`A@`}{{OjOj}In}{{A@bA@b}In}10101032323232323232323232{OjOj}{A@bA@b}9{{A@`Oh}A@`}{A@dOh}76{InOh}{OhA@d}9{OhIn}9{Inj}000{{A@dA@d}A@d}{{OhOh}Oh}{{A@`A@`}A@`}{{InIn}In}32103210{A@dA@d}{OhOh}{A@`A@`}{InIn}7654{{A@dA@dIn}In}{{OhOhIn}In}{{A@`A@`In}In}{{InInIn}In}{{A@dA@d}In}{{OhOh}In}{{A@`A@`}In};210;:987:9876543210;210;>=<;>=<;:98798{A@fA@f}000{A@hA@h}{{A@fA@f}A@f}000{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}333320333333320320333{A@nA@l}{AA`A@l}{{A@fA@f}Oh}6653{{A@fA@fA@f}A@f}{{A@jA@jA@j}A@j}{{A@lA@lA@l}A@l}{OlA@l}0{AAbA@j}{AAdA@f}00{{{f{AAb}}}A@j}{{{f{Ol}}}A@l}{{{f{AAf}}}A@j}{{{f{AAh}}}A@l}44{InA@f}{A@dA@f}67686{A@fA@f}08{A@jAAb}{A@jA@h}{A@jA@l}{A@jA@f}{AAjA@h}{A@hAAj}{A@hA@j}{A@hA@l}{A@hA@f}{OlA@l}{A@lOl}{A@lA@j}{A@lA@h}{A@lA@f}{AAdA@f}{A@fA@j}{A@fA@h}{A@fA@l}{A@fAAd}{A@jA@j}{A@lA@l}{{A@fA@f}A@f}{{A@fA@f}A@d}{{A@fA@f}In}0{{A@fA@f}Oh}2110{{A@jA@j}A@j}{{A@jA@j}In}{{A@hA@h}A@d}{{A@lA@l}A@l}{{A@lA@l}In}87868685766576657665878686857665766576657665766576657665{{A@hA@h}A@h}{A@fA@f}0{A@hA@h}{AAdA@f}0?{A@fA@h}{A@fAAd}20{AAdA@j}{A@fAAj}{A@fA@l}333{A@fA@j}2{A@fOl}777776743130777{{A@lA@l}AAl}{AAlA@l}{A@hA@l}10{A@lAAn}0{AAnA@l}{A@jAAd}{A@jA@f}10{A@jAAj}{A@jOl}{A@hA@f}{AAjA@f}0100{AAjA@j}{AAdA@l}{A@lA@f}{OlA@f}10{OlA@j}{A@lAAd}{A@jAAf}{A@fAAd}00000{A@hAA`}{A@fOj}{A@lAAh}{A@jAAd}{A@jA@f}10>==>==:9:9555555{AAjA@l}{A@lAAj}{{A@fA@f}A@f}{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}0{{A@lAAlAAl}A@l}{{A@fA@fA@f}A@f}0000000000000000000;;{A@fA@b}<{A@jAAb}{A@lOl}{A@fAAd}12000{{A@hA@hA@h}A@h}8{{A@jA@jA@f}A@j}{{A@lA@lA@f}A@l}{A@jA@j}{A@lA@l}4{{A@jA@jA@j}A@j}5{{A@lA@lA@l}A@l}160160160>160160{A@jIn}{A@hA@d}{A@lIn}6{A@hA@h}6706{{A@fA@f}A@f}0000{{A@jA@j}A@j}{{A@lA@l}A@l}222102{{OjA@f}A@f}{{A@bAAd}A@f}{{AAfAAd}A@j}{{AAhA@f}A@l}{{InA@fA@f}j}{{InAAdA@f}j}{{InAAdA@j}j}{{InA@fA@l}j}{{OjA@f}AAd}{{A@bA@f}A@f}{{AAfA@f}A@j}{{AAhA@f}Ol}{{InA@fAAd}j}8{{InA@fA@j}j}{{InA@fOl}j}{{A@fAB`}A@f}{{A@fOj}A@f}{{A@fA@b}A@f}{{A@fABb}A@f}{{A@jAAb}A@j}{{A@lOl}A@l}{{A@fAAd}A@f}12000{A@fA@f}{OjA@f}{A@bA@f}{AAfA@j}{AA`A@h}{AAhA@l}5{{AAhAAh}A@l}{{AAfAAf}A@j}{{AAdAAd}A@f}{AB`A@f}87{ABbA@f}765:::{{A@fA@fA@f}A@f}000{{A@fA@f}A@f}0{{A@fA@fA@dA@f}A@f}{{A@fA@fInA@f}A@f}0{{A@fA@fOhA@f}A@f}{{A@jA@fInA@j}A@j}{{A@lA@fInA@l}A@l}{{A@hA@hA@hIn}A@h}0{{A@jA@jA@jIn}A@j}{{A@hA@hA@hA@d}A@h}{{A@lA@lA@lIn}A@l}210210210210210{{A@fA@dA@f}A@f}{{A@fInA@f}A@f}0{{A@fOhA@f}A@f}{{A@fA@dA@fA@f}A@f}{{A@fInA@fA@f}A@f}0{{A@fOhA@fA@f}A@f}{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}53534434420442053{{OhA@fA@f}Oh}{{A@dA@fA@f}A@f}{{InA@fA@f}A@f}0{{OhA@fA@f}A@f}{{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}{{A@lInOl}A@l}0{{A@jInAAb}A@j}{{A@fInAAd}A@f}00{{A@fOhAAd}A@f}1123{{A@fA@dAAd}A@f}{{A@dA@fA@f}A@d}{{InA@fA@f}In}0=100={{InA@jA@j}In}{{A@dA@hA@h}A@d}{{InA@lA@l}In}433{{OhA@fA@f}Oh}54405440544054405440544054405440544054405440{{A@hInA@hA@h}A@h}{{A@fA@dA@f}A@f}{{A@fInA@f}A@f}0{{A@fOhA@f}A@f}{{A@jInA@j}A@j}{{A@lInA@l}A@l}{{InA@dA@f}j}{{InInA@f}j}0{{InOhA@f}j}{{InInA@j}j}{{InInA@l}j}88{{A@hInA@h}A@h}{{AAdInA@l}AAd}{{A@fInAAd}A@f}0{{AAdA@dA@f}AAd}{{A@hA@dA@f}A@h}{{ABbA@dA@f}j}{{AAdInA@f}AAd}40{{A@jInAAd}A@j}{{AAjInA@f}AAj}{{A@lInA@f}A@l}{{ABbInA@f}j}0444{{A@jInA@f}A@j}3{{OlInA@f}Ol}222{{A@fA@dAAd}A@f};;;;9;652510;;{{AAlA@dA@lA@l}AAl}{{AAnInA@l}AAn}{{A@lInAAn}A@l}{{AAdInA@j}AAd}{{A@fInA@j}A@f}10{{AAjInA@j}AAj}{{OlInA@j}Ol}{{A@fA@dA@h}A@f}{{A@fInAAj}A@f}0100{{A@jInAAj}A@j}{{A@lInAAd}A@l}{{A@fInA@l}A@f}{{A@fInOl}A@f}10{{AAdInA@l}AAd}{{AAdA@dA@f}AAd}{{ABbA@dA@f}j}{{AAdInA@f}AAd}0{{ABbInA@f}j}0111000>=>=:99:996565321100111000{{A@lInAAj}A@l}{{AAjInA@l}AAj}{{A@fA@dA@fA@f}A@f}{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}{{A@lInAAlAAl}A@l}{{A@fInA@fA@f}A@f}000{{A@fA@dA@f}A@f}{{A@fInA@f}A@f}0{{A@fOhA@f}A@f}{{A@jInA@j}A@j}{{A@lInA@l}A@l}{{A@fA@dAB`}A@f}{{A@fInOj}A@f}{{A@fInA@b}A@f}{{A@fOhABb}A@f}{{A@jInAAf}A@j}{{A@lInAAh}A@l}{{OlInA@l}Ol}{{AAbInA@j}AAb}{{AAdInA@f}AAd}0{{A@hInA@hA@h}A@h}0{{A@jInA@jA@f}A@j}{{A@lInA@lA@f}A@l}2{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}2102102105210210{{InA@j}In}{{A@dA@h}A@d}{{InA@l}In}{{A@jInA@j}A@j}{{A@hA@dA@h}A@h}{{A@lInA@l}A@l}210{{A@fOhA@fA@f}A@f}00{{A@fOjA@fA@f}A@f}{{A@fA@bAAdA@f}A@f}{{A@jAAfAAdA@j}A@j}{{A@lAAhA@fA@l}A@l}{{InInA@fA@f}j}{{InInAAdA@f}j}{{InInAAdA@j}j}{{InInA@fA@l}j}{{AAdOjA@fAAd}AAd}{{A@fA@bA@fA@f}A@f}{{A@jAAfA@fA@j}A@j}{{OlAAhA@fOl}Ol}{{InInA@fAAd}j}8{{InInA@fA@j}j}{{InInA@fOl}j}{{A@lInA@lOl}A@l}{{A@jInA@jAAb}A@j}{{A@fInA@fAAd}A@f}0{{A@fInOj}A@f}{{A@fInA@b}A@f}{{A@jInAAf}A@j}{{A@lInAAh}A@l}{{A@fA@dAB`}A@f}43{{A@fOhABb}A@f}32{{A@fInA@f}A@f}0{{A@fInA@fA@f}A@f}00{{A@fA@dA@fA@f}A@f}011{{A@fOhA@fA@f}A@f}1220{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}45534553210{{A@fA@dA@f}A@f}77{{A@fOhA@f}A@f}{{A@jInA@j}A@j}{{A@lInA@l}A@l}10099{{A@hInA@hA@h}A@h}7659999::8::75898921{{A@jInA@jA@f}A@j}{{A@lInA@lA@f}A@l};<<:{{A@jInA@fA@j}A@j}{{A@lInA@fA@l}A@l}?6=>><108??7;965{{A@hA@dA@h}A@h}{{A@dA@f}AB`}{{OhA@f}ABb}1010{{A@dA@f}A@d}{{OhA@f}In}32103232;4:{{A@fInA@f}A@f}0{{A@fInA@fA@f}A@f}01100=6<=<6{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}{{A@fA@dAB`}A@f}{{A@fInOj}A@f}{{A@fInA@b}A@f}{{A@fOhABb}A@f}{{A@fA@dA@fA@f}A@f}880880880889{{A@fOhA@fA@f}A@f}689986{{A@fA@dA@f}A@f}0{{A@fA@dA@fAAd}A@f}{{A@fInA@fAAd}A@f}02==4<<{{A@jInA@j}A@j}{{A@hA@dA@h}A@h}{{A@lInA@l}A@l}4335{{A@fInA@f}A@f}08{{A@fInA@fA@f}A@f}0655711900{{OjInA@f}j}{{A@bInA@f}j}{{AAfInA@j}j}{{AAhInA@l}j}{{AB`A@dA@f}j}43{{ABbOhA@f}j}32?66>{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}{{A@fA@dA@fA@f}A@f}{{A@fOhA@fA@f}A@f}10;;{{A@dA@fA@f}A@d}{{InA@fA@f}In}0{{OhA@fA@f}Oh}21104>>3754>>375>>75{{OjA@f}A@f}{{A@bA@f}A@f}{{AAfA@f}A@j}{{AAhA@f}A@l}{{OjA@fA@f}j}{{A@bA@fA@f}j}{{AAfA@fA@j}j}{{AAhA@fA@l}j}{{A@dA@f}A@f}{{InA@f}A@f}0{{OhA@f}A@f}{{A@dA@fA@f}A@f}{{InA@fA@f}A@f}0{{OhA@fA@f}A@f}{{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}53534434420442053{{InOl}A@l}0{{InAAb}A@j}{{InAAd}A@f}00{{OhAAd}A@f}1123{{A@dAAd}A@f}{{InA@hA@h}A@h}>==<{{InA@j}A@j}{{InA@l}A@l}??{{InA@h}A@h}{{InA@l}AAd}77{{A@dA@f}AAd}{{A@dA@f}A@h}{{InA@f}AAd}:0{{InAAd}A@j}{{InA@f}AAj}{{InA@f}A@l}333{{InA@f}A@j}2{{InA@f}Ol}=????6?43130=??{{A@dA@lA@l}AAl}{{InA@l}AAn}{{InAAn}A@l}{{InA@j}AAd}{{InA@j}A@f}10{{InA@j}AAj}{{InA@j}Ol}{{A@dA@h}A@f}{{InAAj}A@f}0100{{InAAj}A@j}{{InAAd}A@l}{{InA@l}A@f}{{InOl}A@f}10{{InA@l}AAd}{{A@dA@f}AAd}{{InA@f}AAd}0000<;<;8778774343100000{{InAAj}A@l}{{InA@l}AAj}{{A@dA@fA@f}A@f}{{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}{{InA@lAAlAAl}A@l}{{InA@fA@fA@f}A@f}000{{A@dA@f}A@f}{{InA@f}A@f}0{{OhA@f}A@f}{{InA@j}A@j}{{InA@l}A@l}{{A@dAB`}A@f}{{InOj}A@f}{{InA@b}A@f}{{OhABb}A@f}{{InAAf}A@j}{{InAAh}A@l}{{InA@l}Ol}{{InA@j}AAb}{{InA@f}AAd}0{{InA@hA@hA@h}A@h}{{InA@hA@h}A@h}{{InA@jA@jA@f}A@j}{{InA@lA@lA@f}A@l}3{{InA@jA@jA@j}A@j}{{A@dA@hA@hA@h}A@h}{{InA@lA@lA@l}A@l}2102102105210210{{InA@j}A@j}{{A@dA@h}A@h}{{InA@l}A@l}210{{OhA@fA@f}A@f}00{{InA@lOl}A@l}{{InA@jAAb}A@j}{{InA@fAAd}A@f}0{{InOj}A@f}{{InA@b}A@f}{{InAAf}A@j}{{InAAh}A@l}{{A@dAB`}A@f}43{{OhABb}A@f}32{{InA@f}A@f}0{{InA@fA@fA@f}A@f}0{{InA@fA@f}A@f}{{A@dA@fA@f}A@f}011=011={{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}344{{OhA@fA@f}A@f}4550321{{A@dA@f}A@f}88{{OhA@f}A@f}{{InA@j}A@j}{{InA@l}A@l}10099{{InA@hA@h}A@h}8769999::5::86595921{{InA@jA@f}A@j}{{InA@lA@f}A@l}{{A@dA@fA@fA@f}A@f}>>{{OhA@fA@fA@f}A@f}{{InA@jA@fA@j}A@j}{{InA@lA@fA@l}A@l}{{InA@f}A@f}9{{A@dA@fA@f}A@f}{{InA@fA@f}A@f}0>{{InA@fA@j}A@j}{{InA@fA@l}A@l}?44>{{InA@jA@j}A@j}{{InA@lA@l}A@l}?>{{A@dA@h}A@h}{{InA@j}A@j}1{{InA@l}A@l}997799771201024{{A@dA@hA@h}A@h}4{{A@dAB`}A@f}{{InOj}A@f}{{InA@b}A@f}{{OhABb}A@f}=<<{{A@dA@fA@fA@f}A@f}{{InA@fA@fA@f}A@f}0?>>100{{InA@f}A@f}{{OhA@fA@f}A@f}<={{InA@fA@f}A@f}0>={{A@dA@f}A@f}0{{A@dA@fAAd}A@f}{{InA@fAAd}A@f}0255{{A@dA@fA@f}A@f}44?{{A@dA@h}A@h}?3224771553224771551556{{InA@jA@j}A@j}?{{InA@lA@l}A@l}3838::3778103778107710{{A@fA@f}A@f}0000000{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}33333333210{{A@fInA@fIn}A@f}{{A@fInAAdIn}A@f}{{A@jInAAdIn}A@j}{{A@lInA@fIn}A@l}{{AAdInA@fIn}AAd}4{{A@jInA@fIn}A@j}{{OlInA@fIn}Ol}{A@jA@j}{A@lA@l}0{A@fOj}{A@jOj}{A@lOj}{A@fA@d}{A@fIn}0{A@fOh}{A@dA@f}{InA@f}0{OhA@f}{{A@fA@f}A@f}00{{A@hA@h}A@h}{{A@jA@j}A@j}1{{A@lA@l}A@l}33333333310333331033{A@fA@f}??>4{{A@lA@f}A@l}{{A@jA@f}A@j}1{{A@fA@fA@f}A@f}000{{A@jA@fA@j}A@j}{{A@hA@fA@h}A@h}{{A@lA@fA@l}A@l}6{A@jA@j};;;;{{A@fA@j}A@j}{{A@fA@h}A@h}{{A@fA@l}A@l}::::<;3{A@lA@l}{A@hA@h}1{A@fAB`}{A@fABb}{A@hAA`}2121{A@fA@d}{A@fIn}24310243243:56{A@fA@f}0{{A@fA@f}A@f}01100<8<78<8780{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}{AB`A@f}{OjA@f}{A@bA@f}{ABbA@f}{AAfA@j}{AA`A@h}{AAhA@l}{{AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`}A@f}{{OjOjOjOjOjOjOjOj}A@f}{{A@bA@bA@bA@b}A@f}{{ABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABb}A@f}{{OlOl}A@l}{{AAbAAb}A@j}{{AAdAAd}A@f}{{AAfAAfAAfAAf}A@j}{{AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`}A@h}{{AAhAAhAAhAAhAAhAAhAAhAAh}A@l}9876543210{{}A@j}{{}A@h}{{}A@l}{{}A@f}{{A@fA@f}A@f}00{{A@fA@fA@f}A@f}00111000{A@fA@f}2{{A@lA@l}A@l}{{A@jA@j}A@j}440122444{{A@fAAd}A@f}003333555{A@jA@j}{A@hA@h}{A@lA@l}3336668883336666888{{OjA@f}j}{{A@bA@f}j}{{AAfA@j}j}{{AA`A@h}j}{{AAhA@l}j}{{A@fA@f}j}{{AAhAAhA@l}j}{{AAfAAfA@j}j}{{AAdAAdA@f}j}{{AB`A@f}j}98{{ABbA@f}j}8765{A@fA@f}976{{A@fA@f}A@f}000{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}3333{{A@fA@fA@f}A@f}0{{A@fA@f}A@d}{{A@fA@f}In}0{{A@fA@f}Oh}{{A@jA@j}Oj}{{A@lA@l}Oj}{{A@fA@f}Oj}5443210210{{}A@j}{{}A@h}{{}A@l}{{}A@f}>>>>=;>>>>=;>>=;>{{}j}0{AAbA@j}{AAjA@h}{OlA@l}{AAdA@f}{ABdABd}000{ABfABf}{ABhABh}{ABjABj}{{ABdABd}ABd}000{{ABfABf}ABf}{{ABhABh}ABh}{{ABjABj}ABj}21033333333333332033320333{{ABdABd}A@`}{OlABj}0{A@lABj}{AAbABf}{A@jABf}{AAdABd}0{A@fABd}1011{InABd}{A@dABd}3573{ABdABd}065{ABfAAb}{ABfA@j}{ABfABh}{ABfABj}{ABfABd}{AAjABh}{A@hABh}{ABhAAj}{ABhA@h}{ABhABf}{ABhABj}{ABhABd}{OlABj}{A@lABj}{ABjOl}{ABjA@l}{ABjABf}{ABjABh}{ABjABd}{AAdABd}{A@fABd}{ABdABf}{ABdABh}{ABdABj}{ABdAAd}{ABdA@f}{{ABdABd}ABd}{{ABdABd}Oh}{{ABdABd}A@d}{{ABdABd}In}{{ABdABd}A@`}3210{{ABfABf}In}{{ABhABh}Oh}{{ABjABj}A@d}2106543654320654365436543654365436543206543654320654365432020202020{{ABhABh}ABh}0{ABdABd}0{ABhABh}>{ABdA@h}>{ABdABf}{ABdAAj}{ABdA@l}{ABdABh}4{ABdABj}432{ABfA@f}{ABfABd}10{ABfAAj}{ABfA@l}{ABhABd}{A@hABd}{AAjABd}210{AAjABf}{A@fABj}{ABjABd}{A@lABd}10{A@lABf}{ABjA@f}{A@fABd}{AAdABd}{ABdA@f}{ABdABh}13{ABdAAd}{A@fABf}{ABdA@h}{ABdABj}{ABdABf}4640{ABdAAj}{ABdA@l}:99:97:5432210:99{{ABjABj}ABl}{ABjAAl}{AAlABj}{ABfA@f}{ABfABd}10{ABfAAj}{ABfA@l}{ABfABj}{ABhABd}{A@hABd}{AAjABd}210{AAjABf}{A@fABj}{ABjABd}{A@lABd}10{A@lABf}{ABjA@f}{ABjABf}{ABfAAf}{ABdA@f}0{ABdAAd}010{ABhAA`}{ABdOj}{ABjAAh}{ABfA@f}{ABfABd}10{ABhABd}{A@hABd}{AAjABd}210?>?>4343210210?>?>998898{A@hABj}{ABjA@h}10{{ABdABd}ABd}{{ABfABf}ABf}{{ABhABh}ABh}{{ABjABj}ABj}210{{ABjABlABl}ABj}{{ABdABdABd}ABd}000{ABjOl}{ABjA@l}{ABfAAb}{ABfA@j}{ABdAAd}{ABdA@f}10{{ABhABhABh}ABh}0::{{ABfABfABd}ABf}{{ABjABjABd}ABj}102{{ABfABfABf}ABf}3{{ABjABjABj}ABj}4140140140140140140140>>140140140140{ABfIn}{ABhOh}{ABjA@d}{ABfABf}{ABhABh}{ABjABj}210210210{{ABdABd}ABd}00{{ABdIn}ABd}{{A@fIn}ABd}{{A@fIn}ABf}{{ABdIn}ABj}3{{ABdIn}ABf}{{InABdABd}j}{{InABdABf}j}1{{InA@fABd}j}{{InA@fABf}j}{{InABdABj}j}{{ABdIn}A@f}:6{{ABdIn}A@l}{{InABdA@f}j}76{{InABdA@l}j}{{ABjOl}ABj}{{ABjA@l}ABj}{{ABfAAb}ABf}{{ABfA@j}ABf}{{ABdAAd}ABd}{{ABdA@f}ABd}10{OjA@d}{{A@dA@d}A@d}0{A@dA@d}01{{A@dA@d}Oj}02{{A@`A@`}A@`}{{OhOh}Oh}44{OjABd}{A@bABd}{AAfABf}{AA`ABh}{AAhABj}4{AB`ABd}54{ABbABd}4326{ABdABd}0{{ABdABdABd}ABd}0{{ABdABd}ABd}0{{ABdABdOhABd}ABd}{{ABdABdA@dABd}ABd}{{ABdABdInABd}ABd}{{ABdABdA@`ABd}ABd}{{ABfABdInABf}ABf}{{ABjABdA@dABj}ABj}{A@dOj}{{ABhABhABhA@d}ABh}00{{ABfABfABfIn}ABf}{{ABhABhABhOh}ABh}{{ABjABjABjA@d}ABj}3210210210210210210210210210210210{{ABdOhABd}ABd}{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}{{ABdOhABdABd}ABd}{{ABdA@dABdABd}ABd}{{ABdInABdABd}ABd}{{ABdA@`ABdABd}ABd}{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}21063635435420542063{{A@`ABdABd}A@`}{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{A@`ABdABd}ABd}{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}{{ABjA@dOl}ABj}0{{ABjA@dA@l}ABj}{{ABfInAAb}ABf}{{ABfInA@j}ABf}{{ABdA@dAAd}ABd}0{{ABdA@dA@f}ABd}{{ABdInAAd}ABd}{{ABdInA@f}ABd}{{ABdA@`AAd}ABd}4268{{ABdOhAAd}ABd}{{OhABdABd}Oh}{{A@dABdABd}A@d}{{InABdABd}In}{{A@`ABdABd}A@`}3210{{InABfABf}In}{{OhABhABh}Oh}{{A@dABjABj}A@d}2106543654320654365436543654365436543206543654320654365432020202020{{ABhA@dABhABh}ABh}0{{ABdOhABd}ABd}{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}{{InOhABd}j}{{InA@dABd}j}{{InInABd}j}{{InA@`ABd}j}{{InInABf}j}{{InA@dABj}j}:9{{ABhA@dABh}ABh}{{ABhOhABd}ABh}{{A@hA@dABd}A@h}{{ABjA@dABd}ABj}{{ABfInABd}ABf}{{AAjInABd}AAj}{{A@lInABd}A@l}543210{{A@fInABf}A@f}{{ABdInABf}ABd}10{{AAjInABf}AAj}{{A@lInABf}A@l}{{ABdOhABh}ABd}{{ABdA@dA@h}ABd}{{ABdInAAj}ABd}210{{ABfInAAj}ABf}{{ABjA@dA@f}ABj}{{ABdA@dABj}ABd}{{ABdInA@l}ABd}10{{ABfInA@l}ABf}{{A@fA@dABj}A@f}{{ABdA@dA@f}ABd}{{ABdInAAd}ABd}{{A@fOhABd}A@f}{{ABhOhABd}ABh}{{ABbOhABd}j}{{A@fA@dABd}A@f}{{ABdInA@f}ABd}{{AAdA@dABd}AAd}{{ABfInA@f}ABf}{{A@hA@dABd}A@h}{{ABjA@dABd}ABj}{{ABbA@dABd}j}0{{ABfInABd}ABf}{{AAdInABd}AAd}{{A@fInABd}A@f}12{{AAjInABd}AAj}{{A@lInABd}A@l}{{ABbInABd}j}00{{ABdOhA@f}ABd}{{ABdA@dAAd}ABd}{{ABdInAAd}ABd}{{ABdA@dA@f}ABd}1{{ABhOhABd}ABh}{{ABdInA@f}ABd}?>=;;87543{{ABlOhABjABj}ABl}{{AAlA@dABj}AAl}{{ABjA@dAAl}ABj}{{A@fInABf}A@f}{{ABdInABf}ABd}10{{AAjInABf}AAj}{{A@lInABf}A@l}{{ABjInABf}ABj}{{ABdOhABh}ABd}{{ABdA@dA@h}ABd}{{ABdInAAj}ABd}210{{ABfInAAj}ABf}{{ABjA@dA@f}ABj}{{ABdA@dABj}ABd}{{ABdInA@l}ABd}10{{ABfInA@l}ABf}{{A@fA@dABj}A@f}{{ABfInABj}ABf}{{A@fOhABd}A@f}{{ABbOhABd}j}{{A@fA@dABd}A@f}{{AAdA@dABd}AAd}{{ABbA@dABd}j}0{{AAdInABd}AAd}{{A@fInABd}A@f}1{{ABbInABd}j}00{{A@fInABf}A@f}{{ABdInABf}ABd}10{{ABdOhABh}ABd}{{ABdA@dA@h}ABd}{{ABdInAAj}ABd}210{{ABdA@dABj}ABd}{{ABdInA@l}ABd}1065654324321010>=<;::989777{{ABjA@dA@h}ABj}{{A@hA@dABj}A@h}10{{ABdOhABdABd}ABd}{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}210{{ABjA@dABlABl}ABj}{{ABdA@dABdABd}ABd}000{{ABdOhABd}ABd}{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}{{ABdOhAB`}ABd}{{ABdA@dOj}ABd}{{ABdInA@b}ABd}{{ABdA@`ABb}ABd}{{ABfInAAf}ABf}{{ABjA@dAAh}ABj}{{OlInABj}Ol}{{A@lInABj}A@l}{{AAbInABf}AAb}{{A@jInABf}A@j}{{AAdInABd}AAd}{{A@fInABd}A@f}10{{ABhA@dABhABh}ABh}000{{ABfInABfABd}ABf}{{ABjA@dABjABd}ABj}102{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}521021021021021021021055210210210210{{InABf}In}{{OhABh}Oh}{{A@dABj}A@d}{{ABfInABf}ABf}{{ABhOhABh}ABh}{{ABjA@dABj}ABj}210210210{{ABdA@`ABdABd}ABd}00{{ABdA@dABdIn}ABd}{{ABdInA@fIn}ABd}{{ABfInA@fIn}ABf}{{ABjA@dABdIn}ABj}{{ABdInABdIn}ABd}{{ABfInABdIn}ABf}{{InInABdABd}j}{{InInABdABf}j}{{InA@dABdABd}j}{{InInA@fABd}j}{{InInA@fABf}j}{{InA@dABdABj}j}{{A@fInABdIn}A@f}87{{A@lInABdIn}A@l}{{InInABdA@f}j}87{{InInABdA@l}j}{{ABjA@dABjOl}ABj}{{ABjA@dABjA@l}ABj}{{ABfInABfAAb}ABf}{{ABfInABfA@j}ABf}{{ABdA@dABdAAd}ABd}{{ABdA@dABdA@f}ABd}{{ABdInABdAAd}ABd}{{ABdInABdA@f}ABd}{{ABdA@dOj}ABd}{{ABdInA@b}ABd}{{ABfInAAf}ABf}{{ABjA@dAAh}ABj}{{ABdOhAB`}ABd}43{{ABdA@`ABb}ABd}32{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdInABdABd}ABd}0{{ABdA@dABdABd}ABd}{{ABdOhABdABd}ABd}012{{ABdA@`ABdABd}ABd}1230{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}21045634563210210{{ABdOhABd}ABd}98{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}100::{{ABhA@dABhABh}ABh}76507659999:;;8:;75898921:{{ABfInABfABd}ABf}{{ABjA@dABjABd}ABj};<=:{{ABfInABdABf}ABf}{{ABjA@dABdABj}ABj}{{ABdInABd}ABd}7>?{{ABdInABdABd}ABd}>32:{{ABdA@dABd}ABd}2:><><98{{ABhOhABh}ABh}{{A@dABd}Oj}{{InABd}A@b}{{InABf}AAf}{{A@dABj}AAh}3232{{A@dABd}Oh}{{InABd}A@`}32541032543254{{ABfInABf}ABf}7{{ABjA@dABj}ABj}1809;{{ABdA@dABdABd}ABd};:<0;291291219{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}210{{ABdOhAB`}ABd}{{ABdA@dOj}ABd}{{ABdInA@b}ABd}{{ABdA@`ABb}ABd}{{ABdOhABdABd}ABd}8{{ABdInABdABd}ABd}190190190{{ABdA@dABd}ABd}{{ABdA@`ABdABd}ABd}8:;2:8{{ABdOhABd}ABd}0{{ABdOhABdAAd}ABd}{{ABdA@dABdAAd}ABd}{{ABdInABdAAd}ABd}35{{ABdInABd}ABd}8{{ABdA@dABdABd}ABd}8{{ABfInABf}ABf}{{ABhOhABh}ABh}{{ABjA@dABj}ABj}2107658:4<3;7658:4<3;{{OjA@dABd}j}{{A@bInABd}j}{{AAfInABf}j}{{AAhA@dABj}j}{{AB`OhABd}j}43{{ABbA@`ABd}j}32{{ABdOhABdABd}ABd}:{{ABdInABdABd}ABd}{{ABdA@`ABdABd}ABd}{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}2105353?4{{OhABdABd}Oh}{{A@dABdABd}A@d}{{InABdABd}In}{{A@`ABdABd}A@`}32109{{ABdA@dABdABd}ABd}9875:098750975{{OhABd}ABd}{{A@dABd}ABd}{{InABd}ABd}{{A@`ABd}ABd}{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{A@`ABdABd}ABd}{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}21063635435420542063{{A@dOl}ABj}0{{A@dA@l}ABj}{{InAAb}ABf}{{InA@j}ABf}{{A@dAAd}ABd}0{{A@dA@f}ABd}{{InAAd}ABd}{{InA@f}ABd}{{A@`AAd}ABd}4268{{OhAAd}ABd}{{A@dABhABh}ABh}0{{OhABd}ABd}{{A@dABd}ABd}{{InABd}ABd}{{A@`ABd}ABd}{{InABf}ABf}{{A@dABj}ABj}43{{A@dABh}ABh}{{OhABd}ABh}{{A@dABd}A@h}{{A@dABd}ABj}{{InABd}ABf}{{InABd}AAj}{{InABd}A@l}543210{{InABf}A@f}{{InABf}ABd}10{{InABf}AAj}{{InABf}A@l}{{OhABh}ABd}{{A@dA@h}ABd}{{InAAj}ABd}210{{InAAj}ABf}{{A@dA@f}ABj}{{A@dABj}ABd}{{InA@l}ABd}10{{InA@l}ABf}{{A@dABj}A@f}{{A@dA@f}ABd}{{InAAd}ABd}{{OhABd}A@f}{{OhABd}ABh}{{A@dABd}A@f}{{InA@f}ABd}{{A@dABd}AAd}{{InA@f}ABf}{{A@dABd}A@h}{{A@dABd}ABj}{{InABd}AAd}{{InABd}A@f}1{{InABd}ABf}{{InABd}AAj}{{InABd}A@l}{{OhA@f}ABd}{{A@dAAd}ABd}?{{A@dA@f}ABd}{{InAAd}ABd}?=;:9654320{{OhABjABj}ABl}{{A@dABj}AAl}{{A@dAAl}ABj}{{InABf}A@f}{{InABf}ABd}10{{InABf}AAj}{{InABf}A@l}{{OhABh}ABd}{{A@dA@h}ABd}{{InAAj}ABd}210{{InAAj}ABf}{{A@dA@f}ABj}{{A@dABj}ABd}{{InA@l}ABd}10{{InA@l}ABf}{{A@dABj}A@f}{{OhABd}A@f}{{A@dABd}A@f}{{A@dABd}AAd}{{InABd}AAd}{{InABd}A@f}1{{InABf}A@f}{{InABf}ABd}10?>=?>=:9:91010?>=?>=:9:9654323{{A@dA@h}ABj}{{A@dABj}A@h}10{{OhABdABd}ABd}{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}210{{A@dABjABlABl}ABj}{{A@dABdABdABd}ABd}000{{OhABd}ABd}{{A@dABd}ABd}{{InABd}ABd}{{A@`ABd}ABd}{{InABf}ABf}{{A@dABj}ABj}{{OhAB`}ABd}{{A@dOj}ABd}{{InA@b}ABd}{{A@`ABb}ABd}{{InAAf}ABf}{{A@dAAh}ABj}{{InABj}Ol}{{InABj}A@l}{{InABf}AAb}{{InABf}A@j}{{InABd}AAd}{{InABd}A@f}10{{A@dABhABhABh}ABh}0{{A@dABhABh}ABh}0{{InABfABfABd}ABf}{{A@dABjABjABd}ABj}103{{InABfABfABf}ABf}{{OhABhABhABh}ABh}{{A@dABjABjABj}ABj}621021021021021021021055210210210210{{InABf}ABf}{{OhABh}ABh}{{A@dABj}ABj}210210210{{A@`ABdABd}ABd}00{{A@dABjOl}ABj}{{A@dABjA@l}ABj}{{InABfAAb}ABf}{{InABfA@j}ABf}{{A@dABdAAd}ABd}{{A@dABdA@f}ABd}{{InABdAAd}ABd}{{InABdA@f}ABd}{{A@dOj}ABd}{{InA@b}ABd}{{InAAf}ABf}{{A@dAAh}ABj}{{OhAB`}ABd}43{{A@`ABb}ABd}32{{A@dABd}ABd}{{InABd}ABd}{{InABdABdABd}ABd}0{{A@dABdABd}ABd}{{OhABdABd}ABd}01{{InABdABd}ABd}{{A@`ABdABd}ABd}2310{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}21056435643210210{{OhABd}ABd}:9{{A@`ABd}ABd}{{InABf}ABf}{{A@dABj}ABj}10088{{A@dABhABh}ABh}7650765::::;98;9758:8:21{{InABfABd}ABf}{{A@dABjABd}ABj}{{OhABdABdABd}ABd}{{A@dABdABdABd}ABd}{{InABdABdABd}ABd}{{A@`ABdABdABd}ABd}{{InABfABdABf}ABf}{{A@dABjABdABj}ABj}{{InABd}ABd};{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{A@`ABdABd}ABd}{{InABdABf}ABf}{{A@dABdABj}ABj}{{OhABd}ABd}{{A@dABd}ABd}8{{A@`ABd}ABd}{{InABfABf}ABf}{{A@dABjABj}ABj}10{{InABf}ABf}{{A@dABj}ABj}{{OhABh}ABh}2012016><;6><;2012012104{{OhABhABh}ABh}4504{{OhAB`}ABd}{{A@dOj}ABd}{{InA@b}ABd}{{A@`ABb}ABd}{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{OhABdABdABd}ABd}{{A@dABdABdABd}ABd}{{InABdABdABd}ABd}543210{{A@dABd}ABd}{{A@`ABdABd}ABd}{{A@dABjABj}ABj}{{InABfABf}ABf}8701{{OhABd}ABd}0{{OhABdAAd}ABd}{{A@dABdAAd}ABd}{{InABdAAd}ABd}37{{InABd}ABd}>=<{{InABf}ABf}{{OhABh}ABh}{{A@dABj}ABj}2106547;3{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}987:>6210210=;{{OhABhABh}ABh}=<0=3>3>{{A@dABdABdABd}ABd}{{InABdABdABd}ABd}543{{A@`ABdABd}ABd}?{{A@dABjABj}ABj}7651{{InABfABf}ABf}17601{{ABdABd}ABd}0000000{{ABfABf}ABf}{{ABhABh}ABh}{{ABjABj}ABj}21033333333210210{ABfABf}{ABjABj}0{ABdOh}{ABdA@d}{ABdIn}{ABdA@`}{OhABd}{A@dABd}{InABd}{A@`ABd}==;<;:;<;:==========<:=====98={{ABfABd}ABf}{{ABjABd}ABj}{{ABdABdABd}ABd}000{{ABfABdABf}ABf}{{ABhABdABh}ABh}{{ABjABdABj}ABj}{ABdABd}{ABfABf}{{ABdABd}ABd}000{{ABdABf}ABf}{{ABdABh}ABh}{{ABdABj}ABj}5555{{ABfABf}ABf}{{ABjABj}ABj}106{ABjABj}{ABhABh}{ABdOj}{ABdA@b}{ABfAAf}{ABhAA`}{ABjAAh}4343{ABdOh}{ABdA@`}43265104326543265?78?78{ABdABd}0??00??{ABfABf}9:09:0:9{{ABdABd}ABd}={{ABhABh}ABh}=>0={AB`ABd}{OjABd}{A@bABd}{ABbABd}{AAfABf}{AA`ABh}{AAhABj}{{OjOjOjOj}ABd}{{A@bA@bA@bA@b}ABd}{{AAfAAfAAfAAf}ABf}{{AAhAAhAAhAAh}ABj}{{AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`}ABd}{{OjOjOjOjOjOjOjOjOjOjOjOjOjOjOjOj}ABd}{{A@bA@bA@bA@bA@bA@bA@bA@b}ABd}{{ABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABb}ABd}{{AAfAAfAAfAAfAAfAAfAAfAAf}ABf}{{AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`}ABh}{{AAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAh}ABj}:98754210{{}ABj}{{}ABd}{{}ABf}{{}ABh}32{{ABdABd}ABd}00{{ABdABdABd}ABd}00111000{ABdABd}2{{ABjABj}ABj}{{ABfABf}ABf}440122{{ABdAAd}ABd}00333555{ABfABf}{ABhABh}{ABjABj}210333666888333666888{{OjABd}j}{{A@bABd}j}{{AAfABf}j}{{AA`ABh}j}{{AAhABj}j}4{{AB`ABd}j}54{{ABbABd}j}4326=426????;{{ABhABh}ABh}=<0={{ABdABd}ABd}000{{ABdABdABd}ABd}0{{ABdABd}Oh}{{ABdABd}A@d}{{ABdABd}In}{{ABdABd}A@`}3210{{}ABj}{{}ABd}{{}ABf}{{}ABh}39999{{ABfABf}ABf}{{ABjABj}ABj};;;;10;;10;{AAbABf}{A@jABf}{AAjABh}{A@hABh}{OlABj}{A@lABj}{AAdABd}{A@fABd}{AAdAAd}000{AAjAAj}{{AAdAAd}AAd}000{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}21021033332033335533320320333{A@nOl}{AA`Ol}{{AAdAAd}A@d}6653{{AAdAAdAAd}AAd}{{AAbAAbAAb}AAb}{{OlOlOl}Ol};{{{f{AAh}}}Ol}<<{InAAd}{A@dAAd}>{AAbAAb}{AAdA@f}{OlOl}{AAdAAd}00{AAbAAj}{AAbOl}{AAbAAd}{AAjAAb}{AAjOl}{AAjAAd}{OlAAb}{OlAAj}{OlAAd}{AAdAAb}{AAdAAj}{AAdOl}?={{AAbAAb}AAb}{{OlOl}Ol}{Inj}{{AAdAAd}AAd}{{AAdAAd}In}00{{AAdAAd}A@d}11105{{AAbAAb}In}{{AAjAAj}In}6{{OlOl}In}210821705454545344438787{{AAdOjAAdOj}Oj}00{{AAdOjAAdOj}AAd}11166656665:9:9767676756665:9:9{{AAdAAd}Oj}00800077767776;:;:87877867776;:;:77767776;:;:;:;:;:;:;:;:;:;:;:;:;:;:{{AAjAAj}AAj}00{{AAbAAb}Oj}{{AAjAAj}Oj}{{OlOl}Oj}1210210210210210210{AAdAAd}0{AAjAAj}{{OhA@d}Oh}{{OhOh}Oh}{{A@`A@`}A@`}{{OhIn}Oh}{{AAjOj}AAj}{{OlOj}Ol}{{AAbA@b}AAb}{{AAjA@b}AAj}{{OlA@b}Ol}{AAbOj}{AAbA@b}{{AAjAAb}AAj}21{{OlAAb}Ol}{AAbOh}{AAbA@`}{AAjOj}{AAjA@b}{{AAbAAj}AAb}{{OlAAj}Ol}{AAjOh}{AAjA@`}?><{OlOj}{OlA@b}{{AAbOl}AAb}{{AAjOl}AAj}32{OlOh}{OlA@`}{{AAjOh}AAj}{{OlOh}Ol}{{AAbA@`}AAb}{{AAjA@`}AAj}{{OlA@`}Ol}{{OlOj}Ol};{AAdAAd}00{AAdAAj}111{AAdAAb}1{AAdOl}333120333332312120333{{AAbOj}AAb}{{AAjOj}AAj}6{{AAbA@b}AAb}{{AAjA@b}AAj}{{OlA@b}Ol}{{OlOl}AAn}{AAnOl}{AAjOl}10{OlAAn}0{AAhA@n}3{AAbAAd}000{AAbAAj}{AAbOl}{AAjAAd}00000{AAjAAb}?{OlAAd}000{OlAAb}1{A@nAAh}{AAbAAf}{AAbOj}{AAbA@b}{{AAjAAb}AAj}211{{OlAAb}Ol}{AAbOh}{AAbA@`}{AAdAAd}00000{AAjAA`}{AAjOj}{AAjA@b}{{AAbAAj}AAb}{{OlAAj}Ol}{AAjOh}{AAjA@`}{AAdAB`}{AAdOj}{AAdA@b}0{AB`AAd}{{AAbOj}AAb}{OjAAd}{{OlOj}Ol}{{AAbA@b}AAb}{A@bAAd}{{OlA@b}Ol}21{OlAAh}{OlOj}{OlA@b}{{AAbOl}AAb}{{AAjOl}AAj}32{OlOh}{OlA@`}{AAbOj}{AAbA@b}10{AAbOh}{AAbA@`}{AAjOj}{AAjA@b}{AAjOh}{AAjA@`}=<=<98={AAbAAd}000{AAjAAd}00000{OlAAd}000:9:99876543{OlOj}{OlA@b}10>={{AAbOh}AAb}{{AAjOh}AAj}{{OlOh}Ol}{{AAbA@`}AAb}{{AAjA@`}AAj}{{OlA@`}Ol}{AAdAAd}00000{AAjOl}{OlAAj}{{AAdAAd}AAd}{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}21021020{{OlAAnAAn}Ol}{{AAdAAdAAd}AAd}0000000000000000000{AAdOj}0{AAdA@b}1{OlOj}8;{{AAjAAjAAj}AAj}00777{{AAbAAbAAd}AAb}{{OlOlAAd}Ol}1010{AAbAAb}{OlOl}<:4{{AAbAAbAAb}AAb}5{{OlOlOl}Ol}61606160160160160160160===160160160160160160{AAbIn}{AAjIn}{OlIn}210{{}Oh}7{AAjAAj}7{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}210;3:210210{{AAdAAd}AAd}000031000310{{OjAAd}AAd}{{A@bAAd}AAd}{{AAfAAd}AAb}{{AAhAAd}Ol}{{InAAdAAd}j}0{{InAAdAAb}j}{{InAAdOl}j}65432210{{AAdOj}AAd}0{{AAdA@b}AAd}1:99{AAdAAd}{{}j}{AAfAAb}{AAhOl}{OjAAd}{A@bAAd}33{AA`AAj}3340634{{AAbAAf}AAb}7054{AB`AAd}43{ABbAAd}7369{InAAd}00::{{AAdAAdAAd}AAd}000{{AAdAAd}AAd}0{{AAdAAdInAAd}AAd}00{{AAdAAdA@dAAd}AAd}{{AAbAAdInAAb}AAb}{{OlAAdInOl}Ol}{{AAjAAjAAjIn}AAj}000{{AAbAAbAAbIn}AAb}1{{OlOlOlIn}Ol}21202120120120120120120120120120120120120{{AAdInAAd}AAd}00{{AAdA@dAAd}AAd}{{AAdInAAdAAd}AAd}00{{AAdA@dAAdAAd}AAd}{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}21021043434434420442043{{A@dAAdAAd}A@d}{{InAAdAAd}AAd}00{{A@dAAdAAd}AAd}{{InAAbAAb}AAb}{{InAAjAAj}AAj}{{InOlOl}Ol}<;<<{{OlInOl}Ol}={{InAAdAAd}In}0070007{{InAAbAAb}In}{{InAAjAAj}In}{{InOlOl}In}210210333:333:333:333:333:333:333:333:333:333:333:333:<<<{{AAdInAAd}AAd}00{{AAdA@dAAd}AAd}{{AAbInAAb}AAb}7{{InInAAd}j}00{{InA@dAAd}j}{{InInAAb}j}{{InInOl}j}66{{AAjInAAj}AAj}{{AAdInOl}AAd}{{AAjInAAjAAb}AAj}{{OlInOlAAb}Ol}{{AAbInAAbAAj}AAb}{{OlInOlAAj}Ol}{{AAbInAAbOl}AAb}{{AAjInAAjOl}AAj}>>>{{AAjInAAd}AAj}{{ABbInAAd}j}{{AAdInAAd}AAd}00{{AAbInAAd}AAb}3{{OlInAAd}Ol}33222140333222224214140222{{AAnInOlOl}AAn}{{AAnInOl}AAn}{{OlInAAn}Ol}{{AAdInAAb}AAd}000{{AAjInAAb}AAj}{{OlInAAb}Ol}{{AAdInAAj}AAd}00000{{AAbInAAj}AAb}8{{AAdInOl}AAd}0000{{AAjInAAjAAb}AAj}{{OlInOlAAb}Ol}=>==>>===>>>{{AAbInAAbAAj}AAb}{{OlInOlAAj}Ol}{{AAbInAAbOl}AAb}{{AAjInAAjOl}AAj};;;;8888886666{{AAdInAAd}AAd}{{ABbInAAd}j}1100111000{{OlInAAj}Ol}{{AAjInOl}AAj}{{AAdInAAdAAd}AAd}{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}210210{{OlInAAnAAn}Ol}4444888{{AAdA@dAAd}AAd}{{AAbInAAb}AAb}{{OlInOl}Ol}{{AAdInAB`}AAd}{{AAdInOj}AAd}{{AAdInA@b}AAd}{{AAdA@dABb}AAd}{{AAbInAAf}AAb}{{OlInAAh}Ol};;;;;;{{AAbInAAbAAd}AAb}{{OlInOlAAd}Ol}1010=>=<=>=<=>=<>=<>=<>=<>=<>=<===>=<>=<>=<>=<>=<>=<{{InAAb}In}{{InAAj}In}{{InOl}In}210<{{AAjInAAj}AAj}<{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}210{{AAbInAAb}AAb}4{{OlInOl}Ol}432432{{AAdA@dAAdAAd}AAd}00{{AAdOjAAdAAd}AAd}{{AAdA@bAAdAAd}AAd}{{AAbAAfAAdAAb}AAb}{{OlAAhAAdOl}Ol}{{InInAAdAAd}j}0{{InInAAdAAb}j}{{InInAAdOl}j}65432210{{AAdInOj}AAd}{{AAdInA@b}AAd}{{AAbInAAf}AAb}{{OlInAAh}Ol}1{{AAjInAA`}AAj}1{{AAdInAB`}AAd}54{{AAdA@dABb}AAd}43{{AAdInAAd}AAd}0{{AAdInAAdAAd}AAd}000000{{AAdA@dAAdAAd}AAd}1110{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}21021044434443210210210555{{AAdA@dAAd}AAd}{{AAbInAAb}AAb}{{OlInOl}Ol}5431007745434543454377777767753676710{{AAbInAAbAAd}AAb}{{OlInOlAAd}Ol}9998{{AAbInAAdAAb}AAb}{{OlInAAdOl}Ol};:<<<69797975497{{AAjInAAj}AAj}9{{InAAd}AB`}{{A@dAAd}ABb}1010{{InAAd}A@d}{{A@dAAd}In}32103232:49>=<>=<{{AAdInAAd}AAd}0{{AAdInAAdAAd}AAd}01100<6;{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}210?>2091210210210{{AAdInAB`}AAd}{{AAdInOj}AAd}{{AAdInA@b}AAd}{{AAdA@dABb}AAd}7777777777778{{AAdA@dAAdAAd}AAd}7599888999888{{AAbInAAb}AAb}?{{OlInOl}Ol}987987:::;;;::::::;;;:::{{OjInAAd}j}{{A@bInAAd}j}{{AAfInAAb}j}{{AAhInOl}j}1{{AA`InAAj}j}1{{AB`InAAd}j}54{{ABbA@dAAd}j}43{{AAdInAAdAAd}AAd}00:{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}2102103=3=33{{InAAdAAd}In}00{{A@dAAdAAd}A@d}1110555?42555?425542{{OjAAd}AAd}{{A@bAAd}AAd}{{AAfAAd}AAb}{{AAhAAd}Ol}{{AAdAAdABb}j}{{OjAAdAAd}j}{{A@bAAdAAd}j}{{AAfAAdAAb}j}{{AAhAAdOl}j}{{InAAd}AAd}00{{A@dAAd}AAd}{{InAAdAAd}AAd}00{{A@dAAdAAd}AAd}{{InAAbAAb}AAb}{{InAAjAAj}AAj}{{InOlOl}Ol}210210434344344204420436566{{InOl}Ol}72227776{{InAAb}AAb}188{{InAAj}AAj}{{InOl}AAd}{{InAAjAAb}AAj}{{InOlAAb}Ol}{{InAAbAAj}AAb}{{InOlAAj}Ol}{{InAAbOl}AAb}{{InAAjOl}AAj}{{InAAd}AAd}00{{InAAd}AAj}111{{InAAd}AAb}1{{InAAd}Ol}333120333332312120333{{InOlOl}AAn}{{InOl}AAn}{{InAAn}Ol}{{InAAb}AAd}000{{InAAb}AAj}{{InAAb}Ol}{{InAAj}AAd}00000{{InAAj}AAb}8{{InOl}AAd}0000{{InAAjAAb}AAj}{{InOlAAb}Ol}>>>>>>{{InAAbAAj}AAb}{{InOlAAj}Ol}{{InAAbOl}AAb}{{InAAjOl}AAj};;;;8888886666{{InAAd}AAd}00000{{InAAj}Ol}{{InOl}AAj}{{InAAdAAd}AAd}{{InAAbAAb}AAb}{{InAAjAAj}AAj}{{InOlOl}Ol}210210{{InOlAAnAAn}Ol}{{InAAdAAdAAd}AAd}000888{{A@dAAd}AAd}{{InAAb}AAb}{{InOl}Ol}{{InAB`}AAd}{{InOj}AAd}{{InA@b}AAd}{{A@dABb}AAd}{{InAAf}AAb}{{InAAh}Ol}{{InAAjAAjAAj}AAj}00==={{InAAbAAbAAd}AAb}{{InOlOlAAd}Ol}10102{{InAAbAAbAAb}AAb}3{{InOlOlOl}Ol}41404140140140140140140{{InAAjAAj}AAj}00251251251251251251={{InAAj}AAj}={{InAAbAAb}AAb}2{{InOlOl}Ol}130{{InAAb}AAb}3{{InOl}Ol}352352{{A@dAAdAAd}AAd}00{{InOj}AAd}{{InA@b}AAd}?>?{{InAA`}AAj}?{{InAB`}AAd}32{{A@dABb}AAd}{{InAAf}AAb}{{InAAh}Ol}{{InAAd}AAd}0{{InAAdAAdAAd}AAd}0{{InAAdAAd}AAd}0000:000:>{{InAAjAAj}AAj}>?0>?0>111;111;?0>?0>?0>333{{A@dAAd}AAd}>={{InAAbAAb}AAb}2{{InOlOl}Ol}{{InAAb}AAb}{{InOl}Ol}066535253525352666666{{A@dAAdAAd}AAd}7743070721{{InAAbAAd}AAb}{{InOlAAd}Ol}:::{{A@dAAdAAdAAd}AAd}{{InAAbAAdAAb}AAb}{{InOlAAdOl}Ol}<5>>>:9898987698{{InAAj}AAj}<807:<9:<9??==??==807:<9:<987:90<:<9:<9:<9{{InAB`}AAd}{{InOj}AAd}{{InA@b}AAd}{{A@dABb}AAd}{{InAAdAAd}AAd}00{{InAAdAAdAAd}AAd}00111000{{InAAd}AAd}={{InAAbAAb}AAb}{{InOlOl}Ol}22444222444{{InAAb}AAb}:{{InOl}Ol}3{{InAAjAAj}AAj}3403777555777777555777777{{A@dAAdAAd}AAd}5145145148080778880548880548854{{AAdAAd}AAd}0000000{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}210210{{}j}44444444321321321{AAdAAd}{{AAdInAAdIn}AAd}0{{AAbInAAdIn}AAb}{{OlInAAdIn}Ol}22103765{AAbAAb}{OlOl}707{AAdOj}{AAbOj}{OlOj}{AAdIn}00{AAdA@d}{InAAd}00{A@dAAd}{{AAdAAd}AAd}00{{AAjAAj}AAj}{{AAbAAb}AAb}1{{OlOl}Ol}212021203333333331033333{{}j}=<{{AAbAAd}AAb}{{OlAAd}Ol}{{AAdAAdAAd}AAd}000{{AAbAAdAAb}AAb}{{AAjAAdAAj}AAj}{{OlAAdOl}Ol}::{{AAdAAj}AAj}{AAdAAd}000{ABbj};:;:{AAbAAb}{OlOl}=<{AAjAAj}1?1{AAdAB`}{AAdABb}{AAjAA`}2121{AAdA@d}{AAdIn}24310243243756{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}210<<{{AAdAAd}AAd}0==00;:31;9:321321;:319:2:0321321321{AB`AAd}{OjAAd}{A@bAAd}{ABbAAd}{AAfAAb}{AA`AAj}{AAhOl}{{AB`AB`AB`AB`AB`AB`AB`AB`}AAd}{{OjOjOjOj}AAd}{{A@bA@b}AAd}{{ABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABb}AAd}{{AAfAAf}AAb}7{{AA`AA`AA`AA`AA`AA`AA`AA`}AAj}{{AAhAAhAAhAAh}Ol}7987{Ohj}764321{{}AAb}{{}AAj}{{}Ol}{{}AAd}{{}j}{{AAdAAd}AAd}00000{{AAdAAdAAd}AAd}111000111000{AAdAAd}2{{AAbAAb}AAb}{{OlOl}Ol}224444442222444{AAbAAb}{AAjAAj}{OlOl}4{{AAjAAj}AAj}45018886668888886666888{{AAfAAb}j}{{AAhOl}j}{{OjAAd}j}{{A@bAAd}j}33{{AA`AAj}j}3340{{AAdAAd}j}450554{{AB`AAd}j}43{{ABbAAd}j}7362{{InAAd}j}00?8783{{OjOj}j}{{A@bA@b}j}9{{AAdAAd}AAd}000{{AAbAAb}AAb}={{OlOl}Ol}1>01>02222{{AAdAAdAAd}AAd}0{AAdOj}{{AAdAAd}Oj}{{AAdAAd}In}00{{AAdAAd}A@d}2{{AAbAAb}Oj}{{OlOl}Oj}43332104104{OhOj}{A@`A@b}3{{AAjAAj}Oj}3403403403403403{{}AAb}{{}AAj}{{}Ol}{{}AAd}{{AAdAAd}AAd}000{{AAbAAb}AAb}{{OlOl}Ol}22221022102{{OhOh{f{bOh}}}Oh}{{A@`A@`{f{bA@`}}}A@`}{{OhOh}Oh}{{A@`A@`}A@`}10{OjOj}{A@bOj}{{{f{bA@d}}}Oj}{{{f{bOh}}}Oj}{{{f{bA@`}}}Oj}210{{}A@`}{{A@dA@d}j}{{OhOh}j}{{A@`A@`}j}{{InIn}j}{{InOhOh{f{bOh}}}In}{{InA@`A@`{f{bA@`}}}In}{OhOh}{A@`A@`}{{}j}0000000{Inj}{{Inh}j}21002{A@dA@d}545435{{}Oh}4{OhA@`}{{InA@`}j}00000000000{{OhA@`}j}{{}In}`{{ABnABnABnAC`AC`}ABn}``````{e{{Fj{c}}}{}{{Aj{h}{{Ah{c}}}}}}{{{f{bc}}}{{f{b{Fj{c}}}}}{}}{{{f{c}}}{{f{{Fj{c}}}}}{}}{c{{Fj{c}}}ACb}{e{}Ib{{Aj{h}{{Ah{c}}}}}}``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{InACd}````````{cACfBj}{{{ACj{}{{A`{c}}{ACh{e}}}}}e{}{{ACl{}{{A`{c}}}}}}{{{Gf{{f{b{ACl{}{{A`{c}}}}}}}}{f{bGh}}}{{Gj{{Df{c}}}}}{}}{{{f{{ACl{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}``{{{f{C`}}}{{f{c}}}Ad}{{{f{bJl}}}{{f{bc}}}Ad}```````````````````````{cACn{{Bj{}{{A`{A@d}}}}}}{{OhOh}{{Df{Lj}}}}{Oh{{Df{Lj}}}}{OhLj}```{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{f{AD`}}}j}`````````````{{FlFlFl}Fl}{{{f{Fl}}{f{Fl}}}Cd}{{{f{ADb}}{f{c}}}AfAd}{{{f{Fb}}{f{c}}}AfAd}000{{cc}cFl}{{FlFl}Fl}{{cce}c{}{{Bf{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{ccg}c{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}3210{{cc}{{Fj{c}}}Fl}{{cce}{{Fj{c}}}{}{{Bf{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{ccg}{{Fj{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}8{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}``````````{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}{cDl{}}{cc{}}{Efc{}}{c{{n{{If{}{{Id{e}}}}e}}}{}{}}{{{Ih{}{{Id{c}}}}}{{n{ec}}}{}{}}``{{}Gb}```{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{ADd}}}{{Df{{f{ADd}}}}}}{{{f{ADf}}}ADf}{{f{f{bc}}}j{}}{fj}{{{f{ADd}}}{{f{Ll}}}}{{{f{ADf}}{f{bK`}}}{{n{jKb}}}}<{{}c{}}0{{{f{bADf}}}Df}{{{f{ADd}}{f{bADh}}}j}{{{f{c}}}{{Df{{f{e}}}}}{ADdAd}Ad}{{{f{c}}}{{Df{e}}}{ADdAd}{}}{{{f{ADf}}}{{G`{h{Df{h}}}}}};{fc{}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{fOf}````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{ADj}}}ADj}{{f{f{bc}}}j{}}{fj}{ADjh}{{{f{ADj}}{f{bK`}}}{{n{jKb}}}}{cc{}}{{}c{}}0{{{f{bADj}}}{{Df{In}}}}{{{f{ADj}}}{{G`{h{Df{h}}}}}}>=<;`````````````````````````````{{{f{Jn}}{f{bK`}}}{{n{jKb}}}}{{{f{Kd}}{f{bK`}}}{{n{jKb}}}}{{{f{Kf}}{f{bK`}}}{{n{jKb}}}}{{{f{Kh}}{f{bK`}}}{{n{jKb}}}}{{{f{Kj}}{f{bK`}}}{{n{jKb}}}}{{{f{Kl}}{f{bK`}}}{{n{jKb}}}}{{{f{Kn}}{f{bK`}}}{{n{jKb}}}}{{{f{L`}}{f{bK`}}}{{n{jKb}}}}{{{f{Lb}}{f{bK`}}}{{n{jKb}}}}{c{{Lf{c}}}{{Bb{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{bLh}}Ld}{{n{jKb}}}}{{{f{bLh}}Lj}{{n{jKb}}}}1{{{f{bLh}}{f{Ll}}}{{n{jKb}}}}```````````{c{{ADl{c}}}{}}{{{Gf{{f{b{AE`{}{{ADn{c}}}}}}}}}c{{El{}{{Ah{j}}}}}}{{}{{AEb{c}}}Ad}{{{Ej{}{{Ah{c}}{Eh{e}}}}}e{}{{El{}{{Ah{c}}}}}}`{{}{{AEd{c}}}{}}{{{Gf{{f{b{El{}{{Ah{c}}}}}}}}{f{bGh}}}{{Gj{c}}}{}}{e{{AEf{e}}}{}{{Aj{{f{bGh}}}{{Ah{{Gj{c}}}}}}}}{c{{AEh{c}}}{}}```````{{{f{{AEl{}{{AEj{c}}}}}}}cAEn}{{{f{AEn}}}A@`}{{{f{AF`}}{f{bc}}}jAEn}{{{f{{AEl{}{{AEj{c}}}}}}e}A@`AEnAF`}{{{f{{Jd{AF`}}}}{f{bc}}}jAEn}{{{f{bAEn}}{f{{Jd{In}}}}}j}{{{f{bAEn}}AFb}j}{{{f{bAEn}}AB`}j}{{{f{bAEn}}Oj}j}{{{f{bAEn}}A@b}j}{{{f{bAEn}}ABb}j}{{{f{bAEn}}AFd}j}{{{f{bAEn}}h}j}{{{f{bAEn}}{f{Ll}}}j}{{{f{bAEn}}ABn}j}{{{f{bAEn}}A@d}j}{{{f{bAEn}}Oh}j}{{{f{bAEn}}A@`}j}{{{f{bAEn}}In}j}6{Afj}{cc{}}0{{}j}{{}Jj}````````````0{{cc}{{G`{cAf}}}AFf}{{ce}g{}{}{{AFj{c}{{AFh{e}}}}}}{AFd}4446{ccAFf}00003333333333333333333333333333335555{{}cAFf}000111111111111111111116666{cjAFf}0002222222222222222222222222222222872{{}{{f{AFl}}}}{{{AFn{In}{{Ah{j}}}}In{AFn{InIn}{{Ah{j}}}}}Oj}{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}{{InInh}Oj}{{hh}In}{{Inhh}j}{{cgi}eBd{}{{Bf{c}{{Ah{e}}}}}{{Bf{c}{{Ah{e}}}}}}{hj}0{{AG`AG`}AG`}{{AA`AA`}AA`}{{AAhAAh}AAh}{{AAfAAf}AAf}<;:9{cOhAFf}0000{{{f{c}}}{}{}}{{}j}{{cc}cAFf}{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}321032104444{ceAFfAFf}4321{{AG`AG`AG`}AG`}{{AA`AA`AA`}AA`}{{AAhAAhAAh}AAh}{{AAfAAfAAf}AAf}99{cjAd}::::{cAfAFf}{AfAf};:98;:98;:98{{AG`AG`}AG`}{{AA`AA`}AA`}{{AAhAAh}AAh}{{AAfAAf}AAf}{{}h}04321`{{cc}{{G`{cAf}}}AFf}{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}{{}Af}{cj{}}{{ce}c{}{}}<;:9{{AG`Oj}AG`}{{AA`Oj}AA`}{{AAhOj}AAh}{{AAfOj}AAf}<{Ojj}000{{}In}{h}{{}c{}}{{}AFd}{{}h}{{{f{c}}{f{c}}}Af{}}3{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}{{cOh}cAFf}043214321{cc{}}{{cc}cAFf}0{{Afcc}c{}}`7654997654{{cc}{{G`{cAf}}}AFf}{{cc}CdAFf}{ce{}{}}0:987{{}ABn}{{}{{f{Ll}}}}{{}j}{{}Af}{{}c{}}{cj{}}::::{{ce}cAFfAFf}0;{AfAf}{{}Jj}{{}h}{hj}06{{Inh}j}6{jh}0{{cc}cAFf}0028`{Afj}`{{jAGbAGd}j}{ce{}{}}0{c{{G`{cAf}}}{}}`{cc{}}={c{}{}}{{cAGbAGd}j{}}{{jOh}c{}}{AGfAGf}`{ch{}}5`{{ce}c{}{}}{{}}{cj{}}{{}AGf}{AGfAGb}`{{cOh}j{}}{c{{f{c}}}{}};4443`{AGfAGd}{{}AGd}{{}j}{AGhAGd}`25``{{cc}c{}}0;{ce{}{}}0{cc{}}01100002{{cc}e{}{}}2{{cOh}e{}{}}22222222{{ccc}c{}}5533{{ceg}c{}{}{}}33{{cOhe}c{}{}}44{{ceg}g{}{}{}}{{ceg}j{}{}{}}9679{{ce}e{}{}}9{cAf{}}:0::1:::;9;;2{{cee}e{}{}}0<<{{cce}g{}{}{}}=;<=``````````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{AGjh}AGj}{{AGjh}{{Df{AGj}}}}1{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{ce}BhBj{{Bj{}{{A`{}}}}}}{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}{{AGl{c}}}{}}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}{{AGjh}AGj}{{AGjh}{{Df{AGj}}}}1{c{{AGn{c}}}{{AHb{}{{AH`{j}}}}AHd}}{e{{AHf{e}}}{}{{Aj{}{{Ah{{Df{c}}}}}}}}{eCf{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}Af{}Bj}0{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}:{{{f{F`}}}h};{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}4{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}610{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}{c{{AHh{c}}}{}}{e{{AHj{e}}}{}{{Bf{}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{eGl{}{{Ab{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{c{{AHl{c}}}ACb}{{ch}{{AHn{c}}}ACb}{e{{AI`{e}}}{}{{Aj{}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}9{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}{{{f{AGj}}{f{AGj}}}{{Df{h}}}}{{{Df{c}}e}{{AIb{ce}}}{}{{Aj{{f{c}}}{{Ah{{Df{c}}}}}}}}{eHh{}{{Ab{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{ce}IjBjBj}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}``````````````````````{AIdj}`````{{}h}{{{f{c}}}hAd}1`{{{f{c}}}cAFf}{{{f{c}}}{{AIf{c}}}{}}{cj{}}0{cjAd}`54{{}Af}`{{{f{bc}}c}c{}}`767{{{f{bc}}{f{bc}}}j{}}{{{f{bc}}}cGb}{ce{}{}}{cAIhAd}{{{f{c}}}e{}{}}{{}c{}}`=0````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{AIj{}{{Ah{c}}}}e}c{}{}}{{{f{bAIl}}c}j{}}{{{f{AIn}}c}eBd{}}{{{f{b{AJb{}{{AJ`{c}}}}}}g}c{{El{}{{Ah{e}}}}}{}Bd}{{{AJf{}{{AJd{c}}{Ah{e}}}}g}c{{El{}{{Ah{e}}}}}{}Bd}{{{AJh{}{{Ah{c}}}}e}c{}{}}{{{f{bAJj}}c}j{}}{{{AJl{}{{Ah{c}}}}e}c{}{}}{{{f{bAJn}}c}j{}}{{{AK`{}{{Ah{c}}}}e}c{}{}}{{{f{bAKb}}c}j{}}{{{Ib{}{{Ah{c}}{AKd{e}}}}}{{AKf{ec}}}{}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}{{{f{Mh}}{f{c}}}Af{}{{Fb{c}}Ad}}{{{f{{AKj{}{{AKh{c}}}}}}}{{f{c}}}Ad}{{{f{bAKl}}}{{f{bc}}}{}}{{{AKn{}{{Ah{c}}}}e}c{}{}}{{{f{bAL`}}c}j{}}{{{f{bCn}}}j}```{{{f{Mh}}}{{ALb{{f{c}}}}}Ad}{c{{Ib{}{{Ah{c}}{AKd{e}}}}}{}{}}{cALd{}}{{{f{{ALf{}{{Ah{c}}}}}}e}{{f{c}}}AdAd}{{{f{bALh}}c}{{f{be}}}Ad{}}{{{ALj{}{{Ah{c}}}}e}c{}{}}{{{f{bALl}}c}j{}}{{{ALn{}{{Ah{c}}}}}c{}}{{{AM`{}{{Ah{c}}}}}c{}}{{{AMb{}{{Ah{c}}}}e}c{}{}}{{{f{bAMd}}c}j{}}{{{Gf{{f{b{AHb{}{{AMf{c}}{AH`{e}}}}}}}}g}{{AMh{ce}}}{}{}{}}{{{AMj{}{{Ah{c}}}}e}c{}{}}{{{f{bAMl}}c}j{}}{{{AMn{}{{Ah{c}}}}e}c{}{}}{{{f{bAN`}}c}j{}}``?{{{ANb{}{{Ah{c}}}}e}c{}{}}{{{f{bANd}}c}j{}}````````````{{{f{ANf}}}{{Df{{f{Ll}}}}}}{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{{f{ANh}}}Af}{{{f{ANf}}{f{bK`}}}{{n{jKb}}}}0{{{f{ANh}}{f{bK`}}}{{n{jKb}}}}0{cc{}}0{{}c{}}0{{{f{ANh}}}{{Df{{f{AFl}}}}}}{{{f{ANh}}}ANf}{{{f{ANh}}}{{f{Od}}}}{fI`}0{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{fOf}0{LdJj}{{{f{Ll}}}Jj}`{{{f{c}}}JjKd}{{}Jj}32{{LdAf}Jj}332111111111111111111```````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}?`0?```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}};{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{F`}}}h}``=1{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}6{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2810`{{{f{ADb}}{f{c}}}AfAd}8{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}```{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}```````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}?`0?```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}};{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{F`}}}h}``=1{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}6{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2810`{{{f{ADb}}{f{c}}}AfAd}8{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}```{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{eCf{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}`10```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}<;{{{f{F`}}}h}``=<{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}5{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2710`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}```{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{{If{}{{Id{e}}}}e}}}{}{}}{{{Ih{}{{Id{c}}}}}{{n{ec}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}`````````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{eCf{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}`10```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Ej{}{{Ah{c}}{Eh{e}}}}}e{}{{El{}{{Ah{c}}}}}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}=<{{{f{F`}}}h}``>={{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}5{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2710`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{Gf{{f{b{El{}{{Ah{c}}}}}}}}{f{bGh}}}{{Gj{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}```{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{{If{}{{Id{e}}}}e}}}{}{}}{{{Ih{}{{Id{c}}}}}{{n{ec}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}```````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}?`0?```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}};{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{F`}}}h}``=1{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}6{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2810`{{{f{ADb}}{f{c}}}AfAd}8{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}```{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}``````````````````````{{}Af}``{hj}0{{}}0{{}j}3{{ce}AfAIdAId}{{{f{bc}}}{}Ad}33{{{f{c}}}{}Ad}{{{f{bc}}}jAEn}555{{}c{}}00{cc{}}{hJd}079{h}000{cj{}}{{Inh}j}11````````````````{{{f{b{ANj{c}}}}h}{{n{j{l{h}}}}}AGj}{{{f{b{ANl{c}}}}h}{{n{j{l{h}}}}}AGj}10{{AGjh}AGj}{{AGjh}{{Df{AGj}}}}1{f{{f{c}}}{}}00000{{{f{b}}}{{f{bc}}}{}}00000{{{f{{ANj{c}}}}}{{ANj{c}}}ACb}{{{f{{ANl{c}}}}}{{ANl{c}}}ACb}{{{f{{ANn{c}}}}}{{ANn{c}}}ACb}{{{f{{AO`{c}}}}}{{AO`{c}}}ACb}{{{f{{AOb{c}}}}}{{AOb{c}}}ACb}{{{f{{AOd{c}}}}}{{AOd{c}}}ACb}{{f{f{bc}}}j{}}00000{fj}00000{{{f{Mh}}{f{c}}}Af{}{{Fb{c}}Ad}}{{{f{{AO`{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{f{{AOb{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{f{{AOd{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{ANj{c}}}hAGj}{{{ANl{c}}}hAGj}{{}{{AO`{c}}}Gb}````{{{f{Mh}}}{{ALb{{f{c}}}}}Ad}{{{f{{AO`{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AO`{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOb{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOb{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOd{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOd{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AO`{c}}}}{f{{AO`{c}}}}}AfADb}{{{f{{AOb{c}}}}{f{{AOb{c}}}}}AfADb}{{{f{{AOd{c}}}}{f{{AOd{c}}}}}AfADb}{{{f{{ANj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{ANl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{ANn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AO`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AOb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AOd{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{AGjh}AGj}{{AGjh}{{Df{AGj}}}}1{cc{}}00{{{M`{c}}}{{AO`{c}}}{}}11{{{AOf{c}}}{{AOb{c}}}{}}2{{{AOh{c}}}{{AOd{c}}}{}}{{{AO`{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{AO`{h}}{f{Ll}}}{{Df{f}}}}{{{AOb{h}}{f{Ll}}}{{Df{f}}}}{{{AOb{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{AOd{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{AOd{h}}{f{Ll}}}{{Df{f}}}}{{{AO`{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{AO`{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{AOb{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{AOb{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{AOd{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{AOd{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{AO`{h}}Ll}}{{{AO`{h}}Jd}Jd}{{{AOb{h}}Ll}}{{{AOb{h}}Jd}Jd}{{{AOd{h}}Jd}Jd}{{{AOd{h}}Ll}}452301{{{f{{AO`{c}}}}{f{be}}}jAF`AEn}{{{f{{AOb{c}}}}{f{be}}}jAF`AEn}{{{f{{AOd{c}}}}{f{be}}}jAF`AEn}{{{AO`{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{AO`{h}}{f{Ll}}}f}{{{AOb{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{AOb{h}}{f{Ll}}}f}{{{AOd{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{AOd{h}}{f{Ll}}}f}{{{AO`{h}}{f{bLl}}}{{f{b}}}}{{{AO`{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{{AOb{h}}{f{bLl}}}{{f{b}}}}{{{AOb{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{{AOd{h}}{f{bLl}}}{{f{b}}}}{{{AOd{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{}c{}}00000000{{{AO`{c}}}{}AGj}{{{AOb{c}}}{}AGj}{{{AOd{c}}}{}AGj}{{{f{{AO`{c}}}}}AfFb}{{{f{{AOb{c}}}}}AfFb}{{{ANj{c}}}AfAGj}{{{ANl{c}}}AfAGj}{{{f{{AO`{c}}}}}{{ANj{c}}}AGj}{{{f{{AOb{c}}}}}{{ANl{c}}}AGj}{{{f{{AOd{c}}}}}{{ANn{c}}}AGj}{{{ANj{c}}}{{Df{c}}}AGj}{{{ANl{c}}}{{Df{c}}}AGj}`{{{ANj{c}}}{{Df{c}}}{FlAGj}}{{{ANl{c}}}{{Df{c}}}{FlAGj}}10{{{f{b{ANj{c}}}}}{{Df{c}}}AGj}{{{f{b{ANl{c}}}}}{{Df{c}}}AGj}{{{f{b{ANn{c}}}}}{{Df{c}}}AGj}21{{{f{b{ANj{c}}}}h}{{Df{c}}}AGj}{{{f{b{ANl{c}}}}h}{{Df{c}}}AGj}{{{f{b{ANn{c}}}}h}{{Df{c}}}AGj}21{{{ANj{c}}}{{AO`{c}}}{}}{{{ANl{c}}}{{Df{{AOb{c}}}}}AGj}{{{ANn{c}}}{{AOd{c}}}{}}{{{f{{ANj{c}}}}}{{G`{h{Df{h}}}}}AGj}{{{f{{ANl{c}}}}}{{G`{h{Df{h}}}}}AGj}{{{f{{ANn{c}}}}}{{G`{h{Df{h}}}}}AGj}```{{{f{Mh}}}{{ALb{{f{c}}}}}Ad}{{{f{{AO`{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AO`{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOb{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOb{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOd{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOd{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{AGj}}{f{AGj}}}{{Df{h}}}}{fc{}}00000{c{{n{e}}}{}{}}00000{{}{{n{c}}}{}}00000{fOf}00000`````````````````````````{{{AOj{c}}{AOj{c}}}{{AOj{c}}}AOl}{{{AOn{c}}{AOn{c}}}{{AOn{c}}}B@`}``````````````{c{{B@d{}{{B@b{c}}}}}{AFfAHdB@fB@h{B`{{Jd{In}}}}{An{{Jd{In}}}}{B@l{}{{B@j{In}}}}}}00``````````````````````````````````````````````````````````````````````````{{{AOj{c}}}{{AOj{c}}}AOl}{{{AOn{c}}}{{AOn{c}}}B@`}{{{B@d{}{{B@b{c}}}}}c{AFfAHdB@fB@h{B`{{Jd{In}}}}{An{{Jd{In}}}}{B@l{}{{B@j{In}}}}}}00```````````````````````````````````````{{B@nB@nB@n}B@n}{{{BAb{}{{BA`{c}}}}{BAb{}{{BA`{c}}}}}c{}}{{BAdBAd}c{}}000{{B@nB@n}B@n}02`````````````{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}i{}{}{}{}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}i{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}e{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{c{{BAj{}{{BA`{e}}{B@j{g}}{BAf{c}}{BAh{i}}}}}{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}c{}{}{}{}}00{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}c{}{}{}{}}10111{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}g{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}10:{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}e{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}c{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}e{}{}{}{}}210212102102121<3<{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}>10?>{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}};;?6{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}g{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}i{}{}{}{}}1:9:99```````````````````````````````1{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}c{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}c{}{}{}{}{}}3{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}i{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}e{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}i{}{}{}{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}i{}{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}87``````````````{c{{BAj{}{{BA`{e}}{B@j{g}}{BAf{c}}{BAh{i}}}}}{}{}{}{}}````````````````````````````{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}c{}{}{}{}}00{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}c{}{}{}{}}1{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}k{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}k{}{}{}{}{}}2333```````{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}g{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}10```````````````````````````````````{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}e{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}c{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}e{}{}{}{}}210212102102121{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}50{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}21062{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{B@nB@nB@n}B@n}{{{BAb{}{{BA`{c}}}}{BAb{}{{BA`{c}}}}}c{}}{{BAdBAd}c{}}000{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{B@nB@n}B@n}103`8={{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}g{}{}{}{}}={{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}i{}{}{}{}}>{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}g{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}10```````````````````````````````````{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}c}{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}c}{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}}{c{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{c{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}}324{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}e}{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}e}{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}}54````````````{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}c{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}c{}{}{}{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}i{}{}{}{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}i{}{}{}{}{}}54{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}k{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}k{}{}{}{}{}}=<;:=<98=<````````````````````````````````{{{f{{BBn{}{{A`{c}}}}}}}{{f{{Jd{c}}}}}{}}{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{BC`}}{f{bK`}}}{{n{jKb}}}}0{cc{}}{{{f{bc}}}{{f{b{Jd{c}}}}}{}}{M`{{f{b{Jd{c}}}}}{}}{M`{{f{{Jd{c}}}}}{}}{h{{f{{Jd{c}}}}}{}}{h{{f{b{Jd{c}}}}}{}}{{{f{c}}}{{f{{Jd{c}}}}}{}}{{{Mb{}{{Ah{c}}}}{f{e}}}{{Df{{f{c}}}}}AdAd}{{{Mb{}{{Ah{c}}}}{f{be}}}{{Df{{f{bc}}}}}AdAd}{{{Mb{}{{Ah{c}}}}}cAd}0{{{Mb{}{{Ah{c}}}}{f{e}}}{{f{c}}}AdAd}{{{Mb{}{{Ah{c}}}}{f{be}}}{{f{bc}}}AdAd}{{}c{}}`{{c{Mf{h}}}{{M`{h}}}{{Mh{h}}}}{fI`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{{c{Mf{h}}}{{Df{{M`{h}}}}}{{Mh{h}}}}{fOf}{{In{f{{Jd{In}}}}}{{Df{h}}}}0````````````````````````````{{Inh}{{f{Ll}}}}{{Inh}{{f{bLl}}}}{{{f{Ll}}}{{n{{Mn{}{{Ml{c}}}}c}}}{}}{{{f{{Jd{In}}}}}{{n{{f{Ll}}N`}}}}{{{f{b{Jd{In}}}}}{{n{{f{bLl}}N`}}}}{{{f{{Jd{In}}}}}{{f{Ll}}}}{{{f{b{Jd{In}}}}}{{f{bLl}}}}{{{f{bc}}}{{Df{Oh}}}{{Ab{}{{A`{{f{In}}}}}}}}`{Inh}```````````````{{{f{Nb}}}{{f{Ll}}}}{{{Nf{}{{Nd{c}}}}{f{Ll}}}cNb}{{{Nf{}{{Nd{c}}}}{f{Ll}}}AfNb}00{{{f{bNb}}}Nh}{{{f{bNj}}}Nh}{{{f{bNb}}}{{Df{{G`{hh}}}}}}{{{f{bNj}}}{{Df{{G`{hh}}}}}}10{{{Nf{}{{Nd{c}}}}{f{Ll}}}{{Df{{f{Ll}}}}}Nb}0```````````````````````{AC`j}0{{}j}```````````````````````{{}Af}{LjAf}0``{Lj{{Fj{Lj}}}}0`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{f{Il}}}h}{{{f{Il}}h}{{n{IlBCb}}}}{IlIn}{{{f{J`}}Il}In}{{{f{BCd}}Il}In}201{{{f{Jb}}Il}{{n{{Jf{{Jd{In}}}}Jh}}}}{{{f{BCf}}Il}{{n{{Jf{{Jd{In}}}}Jh}}}}{{{f{BCd}}Il}{{n{{Jf{{Jd{In}}}}Jh}}}}102{h{{n{IlBCb}}}}{f{{f{c}}}{}}0000{{{f{b}}}{{f{bc}}}{}}0000{{{f{Jb}}}{{f{Jb}}}}{{{f{BCf}}}BCf}{{{f{BCd}}}BCd}{{{f{Il}}}Il}{{{f{BCb}}}BCb}{{{f{Jh}}}Jh}{{f{f{bc}}}j{}}0000{fj}0000{{{f{Il}}}{{Jf{In}}}}{{InIl}j}{{{f{J`}}InIl}j}{{{f{BCd}}InIl}j}{{{f{Jb}}{Jf{In}}Il}j}{{{f{BCf}}{Jf{In}}Il}j}{{{f{BCd}}{Jf{In}}Il}j}{{}BCf}{{}BCd}{{{f{Il}}{f{Il}}}Af}{{{f{BCb}}{f{BCb}}}Af}{{{f{Jh}}{f{Jh}}}Af}{{{f{Il}}Il}{{n{{G`{Ilh}}BCb}}}}{{{f{Il}}Il}{{n{IlBCb}}}}{{{f{BCf}}{f{bK`}}}{{n{jKb}}}}{{{f{BCd}}{f{bK`}}}{{n{jKb}}}}{{{f{Il}}{f{bK`}}}{{n{jKb}}}}{{{f{BCb}}{f{bK`}}}{{n{jKb}}}}0{{{f{Jh}}{f{bK`}}}{{n{jKb}}}}0{{{f{c}}}IlAd}{{}Il}{cc{}}0000{{hh}{{n{IlBCb}}}}{{hh}Il}{{{f{BCf}}{Jf{In}}IlIl}{{n{{Jf{{Jd{In}}}}Jh}}}}{{{f{BCd}}{Jf{In}}IlIl}{{n{{Jf{{Jd{In}}}}Jh}}}}{{{f{Jb}}{Jf{In}}IlIl}{{n{{Jf{{Jd{In}}}}Jh}}}}210{IlJj}{{{f{Il}}{f{bc}}}jAEn}{{}c{}}00009{{{f{Il}}}Il}{{{f{Il}}h}h}{{InIlh}In}{{{f{BCd}}InIlh}In}{{{f{J`}}InIlh}In}{{{f{Il}}h}{{n{{G`{Ilh}}BCb}}}}{{{f{Il}}h}{{n{IlBCb}}}}{{{AFn{Il}{{Ah{j}}}}}j}=<;{{{f{Il}}}h}{{}{{AFn{Il}{{Ah{j}}}}}}{fc{}}0000{fI`}0{c{{n{e}}}{}{}}0000{{}{{n{c}}}{}}0000{fOf}0000``{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{Of}}}Of}{{f{f{bc}}}j{}}{fj}{{{f{Of}}{f{Of}}}Cd}{{{f{bOd}}}{{Df{{f{bc}}}}}Od}00{{{f{bOd}}}{{f{bc}}}Od}00{{{f{Od}}}{{Df{{f{c}}}}}Od}00{{{f{Od}}}{{f{c}}}Od}00{{{f{Of}}{f{Of}}}Af}{{{f{Od}}{f{bK`}}}{{n{jKb}}}}00{{{f{Of}}{f{bK`}}}{{n{jKb}}}}{cc{}}{{{f{Of}}{f{bc}}}jAEn}{{}c{}}{{{f{Od}}}Af}00{{}Of}{{{f{Of}}{f{Of}}}{{Df{Cd}}}}{fc{}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{{{f{Od}}}Of}{fOf}{{}{{f{Ll}}}}{{{f{c}}}{{f{Ll}}}Ad}````````````````````````````````````````````````````````````````````````````{{}Oh}000````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{Ohj}000{{OhOhOhOh}Oj}{{{f{bOl}}{f{bOl}}{f{bOl}}{f{bOl}}}j}````````````````````````{OhOn}{{OhOh}On}{Oh{{G`{OhOh}}}}```````````````````{OhA@`}{{InOhOh{f{bOh}}}In}{{InA@`A@`{f{bA@`}}}In}10{{OhOh}Oh}{{A@`A@`}A@`}10{{OhOhOh}Oh}{{A@`OhOh}A@`}{OhOh}{A@`A@`}{{OjOj}In}{{A@bA@b}In}10101032323232323232323232{OjOj}{A@bA@b}9{{A@`Oh}A@`}{A@dOh}76{InOh}{OhA@d}9{OhIn}9{Inj}000{{A@dA@d}A@d}{{OhOh}Oh}{{A@`A@`}A@`}{{InIn}In}32103210{A@dA@d}{OhOh}{A@`A@`}{InIn}7654{{A@dA@dIn}In}{{OhOhIn}In}{{A@`A@`In}In}{{InInIn}In}{{A@dA@d}In}{{OhOh}In}{{A@`A@`}In};210;:987:9876543210;210;>=<;>=<;:98798{A@fA@f}000{A@hA@h}{{A@fA@f}A@f}000{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}333320333333320320333{A@nA@l}{AA`A@l}{{A@fA@f}Oh}6653{{A@fA@fA@f}A@f}{{A@jA@jA@j}A@j}{{A@lA@lA@l}A@l}{OlA@l}0{AAbA@j}{AAdA@f}00{{{f{AAb}}}A@j}{{{f{Ol}}}A@l}{{{f{AAf}}}A@j}{{{f{AAh}}}A@l}44{InA@f}{A@dA@f}67686{A@fA@f}08{A@jAAb}{A@jA@h}{A@jA@l}{A@jA@f}{AAjA@h}{A@hAAj}{A@hA@j}{A@hA@l}{A@hA@f}{OlA@l}{A@lOl}{A@lA@j}{A@lA@h}{A@lA@f}{AAdA@f}{A@fA@j}{A@fA@h}{A@fA@l}{A@fAAd}{A@jA@j}{A@lA@l}{{A@fA@f}A@f}{{A@fA@f}A@d}{{A@fA@f}In}0{{A@fA@f}Oh}2110{{A@jA@j}A@j}{{A@jA@j}In}{{A@hA@h}A@d}{{A@lA@l}A@l}{{A@lA@l}In}87868685766576657665878686857665766576657665766576657665{{A@hA@h}A@h}{A@fA@f}0{A@hA@h}{AAdA@f}0?{A@fA@h}{A@fAAd}20{AAdA@j}{A@fAAj}{A@fA@l}333{A@fA@j}2{A@fOl}777776743130777{{A@lA@l}AAl}{AAlA@l}{A@hA@l}10{A@lAAn}0{AAnA@l}{A@jAAd}{A@jA@f}10{A@jAAj}{A@jOl}{A@hA@f}{AAjA@f}0100{AAjA@j}{AAdA@l}{A@lA@f}{OlA@f}10{OlA@j}{A@lAAd}{A@jAAf}{A@fAAd}00000{A@hAA`}{A@fOj}{A@lAAh}{A@jAAd}{A@jA@f}10>==>==:9:9555555{AAjA@l}{A@lAAj}{{A@fA@f}A@f}{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}0{{A@lAAlAAl}A@l}{{A@fA@fA@f}A@f}0000000000000000000;;{A@fA@b}<{A@jAAb}{A@lOl}{A@fAAd}12000{{A@hA@hA@h}A@h}8{{A@jA@jA@f}A@j}{{A@lA@lA@f}A@l}{A@jA@j}{A@lA@l}4{{A@jA@jA@j}A@j}5{{A@lA@lA@l}A@l}160160160>160160{A@jIn}{A@hA@d}{A@lIn}6{A@hA@h}6706{{A@fA@f}A@f}0000{{A@jA@j}A@j}{{A@lA@l}A@l}222102{{OjA@f}A@f}{{A@bAAd}A@f}{{AAfAAd}A@j}{{AAhA@f}A@l}{{InA@fA@f}j}{{InAAdA@f}j}{{InAAdA@j}j}{{InA@fA@l}j}{{OjA@f}AAd}{{A@bA@f}A@f}{{AAfA@f}A@j}{{AAhA@f}Ol}{{InA@fAAd}j}8{{InA@fA@j}j}{{InA@fOl}j}{{A@fAB`}A@f}{{A@fOj}A@f}{{A@fA@b}A@f}{{A@fABb}A@f}{{A@jAAb}A@j}{{A@lOl}A@l}{{A@fAAd}A@f}12000{A@fA@f}{OjA@f}{A@bA@f}{AAfA@j}{AA`A@h}{AAhA@l}5{{AAhAAh}A@l}{{AAfAAf}A@j}{{AAdAAd}A@f}{AB`A@f}87{ABbA@f}765:::{{A@fA@fA@f}A@f}000{{A@fA@f}A@f}0{{A@fA@fA@dA@f}A@f}{{A@fA@fInA@f}A@f}0{{A@fA@fOhA@f}A@f}{{A@jA@fInA@j}A@j}{{A@lA@fInA@l}A@l}{{A@hA@hA@hIn}A@h}0{{A@jA@jA@jIn}A@j}{{A@hA@hA@hA@d}A@h}{{A@lA@lA@lIn}A@l}210210210210210{{A@fA@dA@f}A@f}{{A@fInA@f}A@f}0{{A@fOhA@f}A@f}{{A@fA@dA@fA@f}A@f}{{A@fInA@fA@f}A@f}0{{A@fOhA@fA@f}A@f}{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}53534434420442053{{OhA@fA@f}Oh}{{A@dA@fA@f}A@f}{{InA@fA@f}A@f}0{{OhA@fA@f}A@f}{{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}{{A@lInOl}A@l}0{{A@jInAAb}A@j}{{A@fInAAd}A@f}00{{A@fOhAAd}A@f}1123{{A@fA@dAAd}A@f}{{A@dA@fA@f}A@d}{{InA@fA@f}In}0=100={{InA@jA@j}In}{{A@dA@hA@h}A@d}{{InA@lA@l}In}433{{OhA@fA@f}Oh}54405440544054405440544054405440544054405440{{A@hInA@hA@h}A@h}{{A@fA@dA@f}A@f}{{A@fInA@f}A@f}0{{A@fOhA@f}A@f}{{A@jInA@j}A@j}{{A@lInA@l}A@l}{{InA@dA@f}j}{{InInA@f}j}0{{InOhA@f}j}{{InInA@j}j}{{InInA@l}j}88{{A@hInA@h}A@h}{{AAdInA@l}AAd}{{A@fInAAd}A@f}0{{AAdA@dA@f}AAd}{{A@hA@dA@f}A@h}{{ABbA@dA@f}j}{{AAdInA@f}AAd}40{{A@jInAAd}A@j}{{AAjInA@f}AAj}{{A@lInA@f}A@l}{{ABbInA@f}j}0444{{A@jInA@f}A@j}3{{OlInA@f}Ol}222{{A@fA@dAAd}A@f};;;;9;652510;;{{AAlA@dA@lA@l}AAl}{{AAnInA@l}AAn}{{A@lInAAn}A@l}{{AAdInA@j}AAd}{{A@fInA@j}A@f}10{{AAjInA@j}AAj}{{OlInA@j}Ol}{{A@fA@dA@h}A@f}{{A@fInAAj}A@f}0100{{A@jInAAj}A@j}{{A@lInAAd}A@l}{{A@fInA@l}A@f}{{A@fInOl}A@f}10{{AAdInA@l}AAd}{{AAdA@dA@f}AAd}{{ABbA@dA@f}j}{{AAdInA@f}AAd}0{{ABbInA@f}j}0111000>=>=:99:996565321100111000{{A@lInAAj}A@l}{{AAjInA@l}AAj}{{A@fA@dA@fA@f}A@f}{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}{{A@lInAAlAAl}A@l}{{A@fInA@fA@f}A@f}000{{A@fA@dA@f}A@f}{{A@fInA@f}A@f}0{{A@fOhA@f}A@f}{{A@jInA@j}A@j}{{A@lInA@l}A@l}{{A@fA@dAB`}A@f}{{A@fInOj}A@f}{{A@fInA@b}A@f}{{A@fOhABb}A@f}{{A@jInAAf}A@j}{{A@lInAAh}A@l}{{OlInA@l}Ol}{{AAbInA@j}AAb}{{AAdInA@f}AAd}0{{A@hInA@hA@h}A@h}0{{A@jInA@jA@f}A@j}{{A@lInA@lA@f}A@l}2{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}2102102105210210{{InA@j}In}{{A@dA@h}A@d}{{InA@l}In}{{A@jInA@j}A@j}{{A@hA@dA@h}A@h}{{A@lInA@l}A@l}210{{A@fOhA@fA@f}A@f}00{{A@fOjA@fA@f}A@f}{{A@fA@bAAdA@f}A@f}{{A@jAAfAAdA@j}A@j}{{A@lAAhA@fA@l}A@l}{{InInA@fA@f}j}{{InInAAdA@f}j}{{InInAAdA@j}j}{{InInA@fA@l}j}{{AAdOjA@fAAd}AAd}{{A@fA@bA@fA@f}A@f}{{A@jAAfA@fA@j}A@j}{{OlAAhA@fOl}Ol}{{InInA@fAAd}j}8{{InInA@fA@j}j}{{InInA@fOl}j}{{A@lInA@lOl}A@l}{{A@jInA@jAAb}A@j}{{A@fInA@fAAd}A@f}0{{A@fInOj}A@f}{{A@fInA@b}A@f}{{A@jInAAf}A@j}{{A@lInAAh}A@l}{{A@fA@dAB`}A@f}43{{A@fOhABb}A@f}32{{A@fInA@f}A@f}0{{A@fInA@fA@f}A@f}00{{A@fA@dA@fA@f}A@f}011{{A@fOhA@fA@f}A@f}1220{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}45534553210{{A@fA@dA@f}A@f}77{{A@fOhA@f}A@f}{{A@jInA@j}A@j}{{A@lInA@l}A@l}10099{{A@hInA@hA@h}A@h}7659999::8::75898921{{A@jInA@jA@f}A@j}{{A@lInA@lA@f}A@l};<<:{{A@jInA@fA@j}A@j}{{A@lInA@fA@l}A@l}?6=>><108??7;965{{A@hA@dA@h}A@h}{{A@dA@f}AB`}{{OhA@f}ABb}1010{{A@dA@f}A@d}{{OhA@f}In}32103232;4:{{A@fInA@f}A@f}0{{A@fInA@fA@f}A@f}01100=6<=<6{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}{{A@fA@dAB`}A@f}{{A@fInOj}A@f}{{A@fInA@b}A@f}{{A@fOhABb}A@f}{{A@fA@dA@fA@f}A@f}880880880889{{A@fOhA@fA@f}A@f}689986{{A@fA@dA@f}A@f}0{{A@fA@dA@fAAd}A@f}{{A@fInA@fAAd}A@f}02==4<<{{A@jInA@j}A@j}{{A@hA@dA@h}A@h}{{A@lInA@l}A@l}4335{{A@fInA@f}A@f}08{{A@fInA@fA@f}A@f}0655711900{{OjInA@f}j}{{A@bInA@f}j}{{AAfInA@j}j}{{AAhInA@l}j}{{AB`A@dA@f}j}43{{ABbOhA@f}j}32?66>{{A@jInA@jA@j}A@j}{{A@hA@dA@hA@h}A@h}{{A@lInA@lA@l}A@l}{{A@fA@dA@fA@f}A@f}{{A@fOhA@fA@f}A@f}10;;{{A@dA@fA@f}A@d}{{InA@fA@f}In}0{{OhA@fA@f}Oh}21104>>3754>>375>>75{{OjA@f}A@f}{{A@bA@f}A@f}{{AAfA@f}A@j}{{AAhA@f}A@l}{{OjA@fA@f}j}{{A@bA@fA@f}j}{{AAfA@fA@j}j}{{AAhA@fA@l}j}{{A@dA@f}A@f}{{InA@f}A@f}0{{OhA@f}A@f}{{A@dA@fA@f}A@f}{{InA@fA@f}A@f}0{{OhA@fA@f}A@f}{{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}53534434420442053{{InOl}A@l}0{{InAAb}A@j}{{InAAd}A@f}00{{OhAAd}A@f}1123{{A@dAAd}A@f}{{InA@hA@h}A@h}>==<{{InA@j}A@j}{{InA@l}A@l}??{{InA@h}A@h}{{InA@l}AAd}77{{A@dA@f}AAd}{{A@dA@f}A@h}{{InA@f}AAd}:0{{InAAd}A@j}{{InA@f}AAj}{{InA@f}A@l}333{{InA@f}A@j}2{{InA@f}Ol}=????6?43130=??{{A@dA@lA@l}AAl}{{InA@l}AAn}{{InAAn}A@l}{{InA@j}AAd}{{InA@j}A@f}10{{InA@j}AAj}{{InA@j}Ol}{{A@dA@h}A@f}{{InAAj}A@f}0100{{InAAj}A@j}{{InAAd}A@l}{{InA@l}A@f}{{InOl}A@f}10{{InA@l}AAd}{{A@dA@f}AAd}{{InA@f}AAd}0000<;<;8778774343100000{{InAAj}A@l}{{InA@l}AAj}{{A@dA@fA@f}A@f}{{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}{{InA@lAAlAAl}A@l}{{InA@fA@fA@f}A@f}000{{A@dA@f}A@f}{{InA@f}A@f}0{{OhA@f}A@f}{{InA@j}A@j}{{InA@l}A@l}{{A@dAB`}A@f}{{InOj}A@f}{{InA@b}A@f}{{OhABb}A@f}{{InAAf}A@j}{{InAAh}A@l}{{InA@l}Ol}{{InA@j}AAb}{{InA@f}AAd}0{{InA@hA@hA@h}A@h}{{InA@hA@h}A@h}{{InA@jA@jA@f}A@j}{{InA@lA@lA@f}A@l}3{{InA@jA@jA@j}A@j}{{A@dA@hA@hA@h}A@h}{{InA@lA@lA@l}A@l}2102102105210210{{InA@j}A@j}{{A@dA@h}A@h}{{InA@l}A@l}210{{OhA@fA@f}A@f}00{{InA@lOl}A@l}{{InA@jAAb}A@j}{{InA@fAAd}A@f}0{{InOj}A@f}{{InA@b}A@f}{{InAAf}A@j}{{InAAh}A@l}{{A@dAB`}A@f}43{{OhABb}A@f}32{{InA@f}A@f}0{{InA@fA@fA@f}A@f}0{{InA@fA@f}A@f}{{A@dA@fA@f}A@f}011=011={{InA@jA@j}A@j}{{A@dA@hA@h}A@h}{{InA@lA@l}A@l}344{{OhA@fA@f}A@f}4550321{{A@dA@f}A@f}88{{OhA@f}A@f}{{InA@j}A@j}{{InA@l}A@l}10099{{InA@hA@h}A@h}8769999::5::86595921{{InA@jA@f}A@j}{{InA@lA@f}A@l}{{A@dA@fA@fA@f}A@f}>>{{OhA@fA@fA@f}A@f}{{InA@jA@fA@j}A@j}{{InA@lA@fA@l}A@l}{{InA@f}A@f}9{{A@dA@fA@f}A@f}{{InA@fA@f}A@f}0>{{InA@fA@j}A@j}{{InA@fA@l}A@l}?44>{{InA@jA@j}A@j}{{InA@lA@l}A@l}?>{{A@dA@h}A@h}{{InA@j}A@j}1{{InA@l}A@l}997799771201024{{A@dA@hA@h}A@h}4{{A@dAB`}A@f}{{InOj}A@f}{{InA@b}A@f}{{OhABb}A@f}=<<{{A@dA@fA@fA@f}A@f}{{InA@fA@fA@f}A@f}0?>>100{{InA@f}A@f}{{OhA@fA@f}A@f}<={{InA@fA@f}A@f}0>={{A@dA@f}A@f}0{{A@dA@fAAd}A@f}{{InA@fAAd}A@f}0255{{A@dA@fA@f}A@f}44?{{A@dA@h}A@h}?3224771553224771551556{{InA@jA@j}A@j}?{{InA@lA@l}A@l}3838::3778103778107710{{A@fA@f}A@f}0000000{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}33333333210{{A@fInA@fIn}A@f}{{A@fInAAdIn}A@f}{{A@jInAAdIn}A@j}{{A@lInA@fIn}A@l}{{AAdInA@fIn}AAd}4{{A@jInA@fIn}A@j}{{OlInA@fIn}Ol}{A@jA@j}{A@lA@l}0{A@fOj}{A@jOj}{A@lOj}{A@fA@d}{A@fIn}0{A@fOh}{A@dA@f}{InA@f}0{OhA@f}{{A@fA@f}A@f}00{{A@hA@h}A@h}{{A@jA@j}A@j}1{{A@lA@l}A@l}33333333310333331033{A@fA@f}??>4{{A@lA@f}A@l}{{A@jA@f}A@j}1{{A@fA@fA@f}A@f}000{{A@jA@fA@j}A@j}{{A@hA@fA@h}A@h}{{A@lA@fA@l}A@l}6{A@jA@j};;;;{{A@fA@j}A@j}{{A@fA@h}A@h}{{A@fA@l}A@l}::::<;3{A@lA@l}{A@hA@h}1{A@fAB`}{A@fABb}{A@hAA`}2121{A@fA@d}{A@fIn}24310243243:56{A@fA@f}0{{A@fA@f}A@f}01100<8<78<8780{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}{AB`A@f}{OjA@f}{A@bA@f}{ABbA@f}{AAfA@j}{AA`A@h}{AAhA@l}{{AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`}A@f}{{OjOjOjOjOjOjOjOj}A@f}{{A@bA@bA@bA@b}A@f}{{ABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABb}A@f}{{OlOl}A@l}{{AAbAAb}A@j}{{AAdAAd}A@f}{{AAfAAfAAfAAf}A@j}{{AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`}A@h}{{AAhAAhAAhAAhAAhAAhAAhAAh}A@l}9876543210{{}A@j}{{}A@h}{{}A@l}{{}A@f}{{A@fA@f}A@f}00{{A@fA@fA@f}A@f}00111000{A@fA@f}2{{A@lA@l}A@l}{{A@jA@j}A@j}440122444{{A@fAAd}A@f}003333555{A@jA@j}{A@hA@h}{A@lA@l}3336668883336666888{{OjA@f}j}{{A@bA@f}j}{{AAfA@j}j}{{AA`A@h}j}{{AAhA@l}j}{{A@fA@f}j}{{AAhAAhA@l}j}{{AAfAAfA@j}j}{{AAdAAdA@f}j}{{AB`A@f}j}98{{ABbA@f}j}8765{A@fA@f}976{{A@fA@f}A@f}000{{A@jA@j}A@j}{{A@hA@h}A@h}{{A@lA@l}A@l}3333{{A@fA@fA@f}A@f}0{{A@fA@f}A@d}{{A@fA@f}In}0{{A@fA@f}Oh}{{A@jA@j}Oj}{{A@lA@l}Oj}{{A@fA@f}Oj}5443210210{{}A@j}{{}A@h}{{}A@l}{{}A@f}>>>>=;>>>>=;>>=;>{{}j}0{AAbA@j}{AAjA@h}{OlA@l}{AAdA@f}{ABdABd}000{ABfABf}{ABhABh}{ABjABj}{{ABdABd}ABd}000{{ABfABf}ABf}{{ABhABh}ABh}{{ABjABj}ABj}21033333333333332033320333{{ABdABd}A@`}{OlABj}0{A@lABj}{AAbABf}{A@jABf}{AAdABd}0{A@fABd}1011{InABd}{A@dABd}3573{ABdABd}065{ABfAAb}{ABfA@j}{ABfABh}{ABfABj}{ABfABd}{AAjABh}{A@hABh}{ABhAAj}{ABhA@h}{ABhABf}{ABhABj}{ABhABd}{OlABj}{A@lABj}{ABjOl}{ABjA@l}{ABjABf}{ABjABh}{ABjABd}{AAdABd}{A@fABd}{ABdABf}{ABdABh}{ABdABj}{ABdAAd}{ABdA@f}{{ABdABd}ABd}{{ABdABd}Oh}{{ABdABd}A@d}{{ABdABd}In}{{ABdABd}A@`}3210{{ABfABf}In}{{ABhABh}Oh}{{ABjABj}A@d}2106543654320654365436543654365436543206543654320654365432020202020{{ABhABh}ABh}0{ABdABd}0{ABhABh}>{ABdA@h}>{ABdABf}{ABdAAj}{ABdA@l}{ABdABh}4{ABdABj}432{ABfA@f}{ABfABd}10{ABfAAj}{ABfA@l}{ABhABd}{A@hABd}{AAjABd}210{AAjABf}{A@fABj}{ABjABd}{A@lABd}10{A@lABf}{ABjA@f}{A@fABd}{AAdABd}{ABdA@f}{ABdABh}13{ABdAAd}{A@fABf}{ABdA@h}{ABdABj}{ABdABf}4640{ABdAAj}{ABdA@l}:99:97:5432210:99{{ABjABj}ABl}{ABjAAl}{AAlABj}{ABfA@f}{ABfABd}10{ABfAAj}{ABfA@l}{ABfABj}{ABhABd}{A@hABd}{AAjABd}210{AAjABf}{A@fABj}{ABjABd}{A@lABd}10{A@lABf}{ABjA@f}{ABjABf}{ABfAAf}{ABdA@f}0{ABdAAd}010{ABhAA`}{ABdOj}{ABjAAh}{ABfA@f}{ABfABd}10{ABhABd}{A@hABd}{AAjABd}210?>?>4343210210?>?>998898{A@hABj}{ABjA@h}10{{ABdABd}ABd}{{ABfABf}ABf}{{ABhABh}ABh}{{ABjABj}ABj}210{{ABjABlABl}ABj}{{ABdABdABd}ABd}000{ABjOl}{ABjA@l}{ABfAAb}{ABfA@j}{ABdAAd}{ABdA@f}10{{ABhABhABh}ABh}0::{{ABfABfABd}ABf}{{ABjABjABd}ABj}102{{ABfABfABf}ABf}3{{ABjABjABj}ABj}4140140140140140140140>>140140140140{ABfIn}{ABhOh}{ABjA@d}{ABfABf}{ABhABh}{ABjABj}210210210{{ABdABd}ABd}00{{ABdIn}ABd}{{A@fIn}ABd}{{A@fIn}ABf}{{ABdIn}ABj}3{{ABdIn}ABf}{{InABdABd}j}{{InABdABf}j}1{{InA@fABd}j}{{InA@fABf}j}{{InABdABj}j}{{ABdIn}A@f}:6{{ABdIn}A@l}{{InABdA@f}j}76{{InABdA@l}j}{{ABjOl}ABj}{{ABjA@l}ABj}{{ABfAAb}ABf}{{ABfA@j}ABf}{{ABdAAd}ABd}{{ABdA@f}ABd}10{OjA@d}{{A@dA@d}A@d}0{A@dA@d}01{{A@dA@d}Oj}02{{A@`A@`}A@`}{{OhOh}Oh}44{OjABd}{A@bABd}{AAfABf}{AA`ABh}{AAhABj}4{AB`ABd}54{ABbABd}4326{ABdABd}0{{ABdABdABd}ABd}0{{ABdABd}ABd}0{{ABdABdOhABd}ABd}{{ABdABdA@dABd}ABd}{{ABdABdInABd}ABd}{{ABdABdA@`ABd}ABd}{{ABfABdInABf}ABf}{{ABjABdA@dABj}ABj}{A@dOj}{{ABhABhABhA@d}ABh}00{{ABfABfABfIn}ABf}{{ABhABhABhOh}ABh}{{ABjABjABjA@d}ABj}3210210210210210210210210210210210{{ABdOhABd}ABd}{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}{{ABdOhABdABd}ABd}{{ABdA@dABdABd}ABd}{{ABdInABdABd}ABd}{{ABdA@`ABdABd}ABd}{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}21063635435420542063{{A@`ABdABd}A@`}{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{A@`ABdABd}ABd}{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}{{ABjA@dOl}ABj}0{{ABjA@dA@l}ABj}{{ABfInAAb}ABf}{{ABfInA@j}ABf}{{ABdA@dAAd}ABd}0{{ABdA@dA@f}ABd}{{ABdInAAd}ABd}{{ABdInA@f}ABd}{{ABdA@`AAd}ABd}4268{{ABdOhAAd}ABd}{{OhABdABd}Oh}{{A@dABdABd}A@d}{{InABdABd}In}{{A@`ABdABd}A@`}3210{{InABfABf}In}{{OhABhABh}Oh}{{A@dABjABj}A@d}2106543654320654365436543654365436543206543654320654365432020202020{{ABhA@dABhABh}ABh}0{{ABdOhABd}ABd}{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}{{InOhABd}j}{{InA@dABd}j}{{InInABd}j}{{InA@`ABd}j}{{InInABf}j}{{InA@dABj}j}:9{{ABhA@dABh}ABh}{{ABhOhABd}ABh}{{A@hA@dABd}A@h}{{ABjA@dABd}ABj}{{ABfInABd}ABf}{{AAjInABd}AAj}{{A@lInABd}A@l}543210{{A@fInABf}A@f}{{ABdInABf}ABd}10{{AAjInABf}AAj}{{A@lInABf}A@l}{{ABdOhABh}ABd}{{ABdA@dA@h}ABd}{{ABdInAAj}ABd}210{{ABfInAAj}ABf}{{ABjA@dA@f}ABj}{{ABdA@dABj}ABd}{{ABdInA@l}ABd}10{{ABfInA@l}ABf}{{A@fA@dABj}A@f}{{ABdA@dA@f}ABd}{{ABdInAAd}ABd}{{A@fOhABd}A@f}{{ABhOhABd}ABh}{{ABbOhABd}j}{{A@fA@dABd}A@f}{{ABdInA@f}ABd}{{AAdA@dABd}AAd}{{ABfInA@f}ABf}{{A@hA@dABd}A@h}{{ABjA@dABd}ABj}{{ABbA@dABd}j}0{{ABfInABd}ABf}{{AAdInABd}AAd}{{A@fInABd}A@f}12{{AAjInABd}AAj}{{A@lInABd}A@l}{{ABbInABd}j}00{{ABdOhA@f}ABd}{{ABdA@dAAd}ABd}{{ABdInAAd}ABd}{{ABdA@dA@f}ABd}1{{ABhOhABd}ABh}{{ABdInA@f}ABd}?>=;;87543{{ABlOhABjABj}ABl}{{AAlA@dABj}AAl}{{ABjA@dAAl}ABj}{{A@fInABf}A@f}{{ABdInABf}ABd}10{{AAjInABf}AAj}{{A@lInABf}A@l}{{ABjInABf}ABj}{{ABdOhABh}ABd}{{ABdA@dA@h}ABd}{{ABdInAAj}ABd}210{{ABfInAAj}ABf}{{ABjA@dA@f}ABj}{{ABdA@dABj}ABd}{{ABdInA@l}ABd}10{{ABfInA@l}ABf}{{A@fA@dABj}A@f}{{ABfInABj}ABf}{{A@fOhABd}A@f}{{ABbOhABd}j}{{A@fA@dABd}A@f}{{AAdA@dABd}AAd}{{ABbA@dABd}j}0{{AAdInABd}AAd}{{A@fInABd}A@f}1{{ABbInABd}j}00{{A@fInABf}A@f}{{ABdInABf}ABd}10{{ABdOhABh}ABd}{{ABdA@dA@h}ABd}{{ABdInAAj}ABd}210{{ABdA@dABj}ABd}{{ABdInA@l}ABd}1065654324321010>=<;::989777{{ABjA@dA@h}ABj}{{A@hA@dABj}A@h}10{{ABdOhABdABd}ABd}{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}210{{ABjA@dABlABl}ABj}{{ABdA@dABdABd}ABd}000{{ABdOhABd}ABd}{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}{{ABdOhAB`}ABd}{{ABdA@dOj}ABd}{{ABdInA@b}ABd}{{ABdA@`ABb}ABd}{{ABfInAAf}ABf}{{ABjA@dAAh}ABj}{{OlInABj}Ol}{{A@lInABj}A@l}{{AAbInABf}AAb}{{A@jInABf}A@j}{{AAdInABd}AAd}{{A@fInABd}A@f}10{{ABhA@dABhABh}ABh}000{{ABfInABfABd}ABf}{{ABjA@dABjABd}ABj}102{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}521021021021021021021055210210210210{{InABf}In}{{OhABh}Oh}{{A@dABj}A@d}{{ABfInABf}ABf}{{ABhOhABh}ABh}{{ABjA@dABj}ABj}210210210{{ABdA@`ABdABd}ABd}00{{ABdA@dABdIn}ABd}{{ABdInA@fIn}ABd}{{ABfInA@fIn}ABf}{{ABjA@dABdIn}ABj}{{ABdInABdIn}ABd}{{ABfInABdIn}ABf}{{InInABdABd}j}{{InInABdABf}j}{{InA@dABdABd}j}{{InInA@fABd}j}{{InInA@fABf}j}{{InA@dABdABj}j}{{A@fInABdIn}A@f}87{{A@lInABdIn}A@l}{{InInABdA@f}j}87{{InInABdA@l}j}{{ABjA@dABjOl}ABj}{{ABjA@dABjA@l}ABj}{{ABfInABfAAb}ABf}{{ABfInABfA@j}ABf}{{ABdA@dABdAAd}ABd}{{ABdA@dABdA@f}ABd}{{ABdInABdAAd}ABd}{{ABdInABdA@f}ABd}{{ABdA@dOj}ABd}{{ABdInA@b}ABd}{{ABfInAAf}ABf}{{ABjA@dAAh}ABj}{{ABdOhAB`}ABd}43{{ABdA@`ABb}ABd}32{{ABdA@dABd}ABd}{{ABdInABd}ABd}{{ABdInABdABd}ABd}0{{ABdA@dABdABd}ABd}{{ABdOhABdABd}ABd}012{{ABdA@`ABdABd}ABd}1230{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}21045634563210210{{ABdOhABd}ABd}98{{ABdA@`ABd}ABd}{{ABfInABf}ABf}{{ABjA@dABj}ABj}100::{{ABhA@dABhABh}ABh}76507659999:;;8:;75898921:{{ABfInABfABd}ABf}{{ABjA@dABjABd}ABj};<=:{{ABfInABdABf}ABf}{{ABjA@dABdABj}ABj}{{ABdInABd}ABd}7>?{{ABdInABdABd}ABd}>32:{{ABdA@dABd}ABd}2:><><98{{ABhOhABh}ABh}{{A@dABd}Oj}{{InABd}A@b}{{InABf}AAf}{{A@dABj}AAh}3232{{A@dABd}Oh}{{InABd}A@`}32541032543254{{ABfInABf}ABf}7{{ABjA@dABj}ABj}1809;{{ABdA@dABdABd}ABd};:<0;291291219{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}210{{ABdOhAB`}ABd}{{ABdA@dOj}ABd}{{ABdInA@b}ABd}{{ABdA@`ABb}ABd}{{ABdOhABdABd}ABd}8{{ABdInABdABd}ABd}190190190{{ABdA@dABd}ABd}{{ABdA@`ABdABd}ABd}8:;2:8{{ABdOhABd}ABd}0{{ABdOhABdAAd}ABd}{{ABdA@dABdAAd}ABd}{{ABdInABdAAd}ABd}35{{ABdInABd}ABd}8{{ABdA@dABdABd}ABd}8{{ABfInABf}ABf}{{ABhOhABh}ABh}{{ABjA@dABj}ABj}2107658:4<3;7658:4<3;{{OjA@dABd}j}{{A@bInABd}j}{{AAfInABf}j}{{AAhA@dABj}j}{{AB`OhABd}j}43{{ABbA@`ABd}j}32{{ABdOhABdABd}ABd}:{{ABdInABdABd}ABd}{{ABdA@`ABdABd}ABd}{{ABfInABfABf}ABf}{{ABhOhABhABh}ABh}{{ABjA@dABjABj}ABj}2105353?4{{OhABdABd}Oh}{{A@dABdABd}A@d}{{InABdABd}In}{{A@`ABdABd}A@`}32109{{ABdA@dABdABd}ABd}9875:098750975{{OhABd}ABd}{{A@dABd}ABd}{{InABd}ABd}{{A@`ABd}ABd}{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{A@`ABdABd}ABd}{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}21063635435420542063{{A@dOl}ABj}0{{A@dA@l}ABj}{{InAAb}ABf}{{InA@j}ABf}{{A@dAAd}ABd}0{{A@dA@f}ABd}{{InAAd}ABd}{{InA@f}ABd}{{A@`AAd}ABd}4268{{OhAAd}ABd}{{A@dABhABh}ABh}0{{OhABd}ABd}{{A@dABd}ABd}{{InABd}ABd}{{A@`ABd}ABd}{{InABf}ABf}{{A@dABj}ABj}43{{A@dABh}ABh}{{OhABd}ABh}{{A@dABd}A@h}{{A@dABd}ABj}{{InABd}ABf}{{InABd}AAj}{{InABd}A@l}543210{{InABf}A@f}{{InABf}ABd}10{{InABf}AAj}{{InABf}A@l}{{OhABh}ABd}{{A@dA@h}ABd}{{InAAj}ABd}210{{InAAj}ABf}{{A@dA@f}ABj}{{A@dABj}ABd}{{InA@l}ABd}10{{InA@l}ABf}{{A@dABj}A@f}{{A@dA@f}ABd}{{InAAd}ABd}{{OhABd}A@f}{{OhABd}ABh}{{A@dABd}A@f}{{InA@f}ABd}{{A@dABd}AAd}{{InA@f}ABf}{{A@dABd}A@h}{{A@dABd}ABj}{{InABd}AAd}{{InABd}A@f}1{{InABd}ABf}{{InABd}AAj}{{InABd}A@l}{{OhA@f}ABd}{{A@dAAd}ABd}?{{A@dA@f}ABd}{{InAAd}ABd}?=;:9654320{{OhABjABj}ABl}{{A@dABj}AAl}{{A@dAAl}ABj}{{InABf}A@f}{{InABf}ABd}10{{InABf}AAj}{{InABf}A@l}{{OhABh}ABd}{{A@dA@h}ABd}{{InAAj}ABd}210{{InAAj}ABf}{{A@dA@f}ABj}{{A@dABj}ABd}{{InA@l}ABd}10{{InA@l}ABf}{{A@dABj}A@f}{{OhABd}A@f}{{A@dABd}A@f}{{A@dABd}AAd}{{InABd}AAd}{{InABd}A@f}1{{InABf}A@f}{{InABf}ABd}10?>=?>=:9:91010?>=?>=:9:9654323{{A@dA@h}ABj}{{A@dABj}A@h}10{{OhABdABd}ABd}{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}210{{A@dABjABlABl}ABj}{{A@dABdABdABd}ABd}000{{OhABd}ABd}{{A@dABd}ABd}{{InABd}ABd}{{A@`ABd}ABd}{{InABf}ABf}{{A@dABj}ABj}{{OhAB`}ABd}{{A@dOj}ABd}{{InA@b}ABd}{{A@`ABb}ABd}{{InAAf}ABf}{{A@dAAh}ABj}{{InABj}Ol}{{InABj}A@l}{{InABf}AAb}{{InABf}A@j}{{InABd}AAd}{{InABd}A@f}10{{A@dABhABhABh}ABh}0{{A@dABhABh}ABh}0{{InABfABfABd}ABf}{{A@dABjABjABd}ABj}103{{InABfABfABf}ABf}{{OhABhABhABh}ABh}{{A@dABjABjABj}ABj}621021021021021021021055210210210210{{InABf}ABf}{{OhABh}ABh}{{A@dABj}ABj}210210210{{A@`ABdABd}ABd}00{{A@dABjOl}ABj}{{A@dABjA@l}ABj}{{InABfAAb}ABf}{{InABfA@j}ABf}{{A@dABdAAd}ABd}{{A@dABdA@f}ABd}{{InABdAAd}ABd}{{InABdA@f}ABd}{{A@dOj}ABd}{{InA@b}ABd}{{InAAf}ABf}{{A@dAAh}ABj}{{OhAB`}ABd}43{{A@`ABb}ABd}32{{A@dABd}ABd}{{InABd}ABd}{{InABdABdABd}ABd}0{{A@dABdABd}ABd}{{OhABdABd}ABd}01{{InABdABd}ABd}{{A@`ABdABd}ABd}2310{{InABfABf}ABf}{{OhABhABh}ABh}{{A@dABjABj}ABj}21056435643210210{{OhABd}ABd}:9{{A@`ABd}ABd}{{InABf}ABf}{{A@dABj}ABj}10088{{A@dABhABh}ABh}7650765::::;98;9758:8:21{{InABfABd}ABf}{{A@dABjABd}ABj}{{OhABdABdABd}ABd}{{A@dABdABdABd}ABd}{{InABdABdABd}ABd}{{A@`ABdABdABd}ABd}{{InABfABdABf}ABf}{{A@dABjABdABj}ABj}{{InABd}ABd};{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{A@`ABdABd}ABd}{{InABdABf}ABf}{{A@dABdABj}ABj}{{OhABd}ABd}{{A@dABd}ABd}8{{A@`ABd}ABd}{{InABfABf}ABf}{{A@dABjABj}ABj}10{{InABf}ABf}{{A@dABj}ABj}{{OhABh}ABh}2012016><;6><;2012012104{{OhABhABh}ABh}4504{{OhAB`}ABd}{{A@dOj}ABd}{{InA@b}ABd}{{A@`ABb}ABd}{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}{{OhABdABdABd}ABd}{{A@dABdABdABd}ABd}{{InABdABdABd}ABd}543210{{A@dABd}ABd}{{A@`ABdABd}ABd}{{A@dABjABj}ABj}{{InABfABf}ABf}8701{{OhABd}ABd}0{{OhABdAAd}ABd}{{A@dABdAAd}ABd}{{InABdAAd}ABd}37{{InABd}ABd}>=<{{InABf}ABf}{{OhABh}ABh}{{A@dABj}ABj}2106547;3{{OhABdABd}ABd}{{A@dABdABd}ABd}{{InABdABd}ABd}987:>6210210=;{{OhABhABh}ABh}=<0=3>3>{{A@dABdABdABd}ABd}{{InABdABdABd}ABd}543{{A@`ABdABd}ABd}?{{A@dABjABj}ABj}7651{{InABfABf}ABf}17601{{ABdABd}ABd}0000000{{ABfABf}ABf}{{ABhABh}ABh}{{ABjABj}ABj}21033333333210210{ABfABf}{ABjABj}0{ABdOh}{ABdA@d}{ABdIn}{ABdA@`}{OhABd}{A@dABd}{InABd}{A@`ABd}==;<;:;<;:==========<:=====98={{ABfABd}ABf}{{ABjABd}ABj}{{ABdABdABd}ABd}000{{ABfABdABf}ABf}{{ABhABdABh}ABh}{{ABjABdABj}ABj}{ABdABd}{ABfABf}{{ABdABd}ABd}000{{ABdABf}ABf}{{ABdABh}ABh}{{ABdABj}ABj}5555{{ABfABf}ABf}{{ABjABj}ABj}106{ABjABj}{ABhABh}{ABdOj}{ABdA@b}{ABfAAf}{ABhAA`}{ABjAAh}4343{ABdOh}{ABdA@`}43265104326543265?78?78{ABdABd}0??00??{ABfABf}9:09:0:9{{ABdABd}ABd}={{ABhABh}ABh}=>0={AB`ABd}{OjABd}{A@bABd}{ABbABd}{AAfABf}{AA`ABh}{AAhABj}{{OjOjOjOj}ABd}{{A@bA@bA@bA@b}ABd}{{AAfAAfAAfAAf}ABf}{{AAhAAhAAhAAh}ABj}{{AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`AB`}ABd}{{OjOjOjOjOjOjOjOjOjOjOjOjOjOjOjOj}ABd}{{A@bA@bA@bA@bA@bA@bA@bA@b}ABd}{{ABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABb}ABd}{{AAfAAfAAfAAfAAfAAfAAfAAf}ABf}{{AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`AA`}ABh}{{AAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAhAAh}ABj}:98754210{{}ABj}{{}ABd}{{}ABf}{{}ABh}32{{ABdABd}ABd}00{{ABdABdABd}ABd}00111000{ABdABd}2{{ABjABj}ABj}{{ABfABf}ABf}440122{{ABdAAd}ABd}00333555{ABfABf}{ABhABh}{ABjABj}210333666888333666888{{OjABd}j}{{A@bABd}j}{{AAfABf}j}{{AA`ABh}j}{{AAhABj}j}4{{AB`ABd}j}54{{ABbABd}j}4326=426????;{{ABhABh}ABh}=<0={{ABdABd}ABd}000{{ABdABdABd}ABd}0{{ABdABd}Oh}{{ABdABd}A@d}{{ABdABd}In}{{ABdABd}A@`}3210{{}ABj}{{}ABd}{{}ABf}{{}ABh}39999{{ABfABf}ABf}{{ABjABj}ABj};;;;10;;10;{AAbABf}{A@jABf}{AAjABh}{A@hABh}{OlABj}{A@lABj}{AAdABd}{A@fABd}{AAdAAd}000{AAjAAj}{{AAdAAd}AAd}000{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}21021033332033335533320320333{A@nOl}{AA`Ol}{{AAdAAd}A@d}6653{{AAdAAdAAd}AAd}{{AAbAAbAAb}AAb}{{OlOlOl}Ol};{{{f{AAh}}}Ol}<<{InAAd}{A@dAAd}>{AAbAAb}{AAdA@f}{OlOl}{AAdAAd}00{AAbAAj}{AAbOl}{AAbAAd}{AAjAAb}{AAjOl}{AAjAAd}{OlAAb}{OlAAj}{OlAAd}{AAdAAb}{AAdAAj}{AAdOl}?={{AAbAAb}AAb}{{OlOl}Ol}{Inj}{{AAdAAd}AAd}{{AAdAAd}In}00{{AAdAAd}A@d}11105{{AAbAAb}In}{{AAjAAj}In}6{{OlOl}In}210821705454545344438787{{AAdOjAAdOj}Oj}00{{AAdOjAAdOj}AAd}11166656665:9:9767676756665:9:9{{AAdAAd}Oj}00800077767776;:;:87877867776;:;:77767776;:;:;:;:;:;:;:;:;:;:;:;:;:;:{{AAjAAj}AAj}00{{AAbAAb}Oj}{{AAjAAj}Oj}{{OlOl}Oj}1210210210210210210{AAdAAd}0{AAjAAj}{{OhA@d}Oh}{{OhOh}Oh}{{A@`A@`}A@`}{{OhIn}Oh}{{AAjOj}AAj}{{OlOj}Ol}{{AAbA@b}AAb}{{AAjA@b}AAj}{{OlA@b}Ol}{AAbOj}{AAbA@b}{{AAjAAb}AAj}21{{OlAAb}Ol}{AAbOh}{AAbA@`}{AAjOj}{AAjA@b}{{AAbAAj}AAb}{{OlAAj}Ol}{AAjOh}{AAjA@`}?><{OlOj}{OlA@b}{{AAbOl}AAb}{{AAjOl}AAj}32{OlOh}{OlA@`}{{AAjOh}AAj}{{OlOh}Ol}{{AAbA@`}AAb}{{AAjA@`}AAj}{{OlA@`}Ol}{{OlOj}Ol};{AAdAAd}00{AAdAAj}111{AAdAAb}1{AAdOl}333120333332312120333{{AAbOj}AAb}{{AAjOj}AAj}6{{AAbA@b}AAb}{{AAjA@b}AAj}{{OlA@b}Ol}{{OlOl}AAn}{AAnOl}{AAjOl}10{OlAAn}0{AAhA@n}3{AAbAAd}000{AAbAAj}{AAbOl}{AAjAAd}00000{AAjAAb}?{OlAAd}000{OlAAb}1{A@nAAh}{AAbAAf}{AAbOj}{AAbA@b}{{AAjAAb}AAj}211{{OlAAb}Ol}{AAbOh}{AAbA@`}{AAdAAd}00000{AAjAA`}{AAjOj}{AAjA@b}{{AAbAAj}AAb}{{OlAAj}Ol}{AAjOh}{AAjA@`}{AAdAB`}{AAdOj}{AAdA@b}0{AB`AAd}{{AAbOj}AAb}{OjAAd}{{OlOj}Ol}{{AAbA@b}AAb}{A@bAAd}{{OlA@b}Ol}21{OlAAh}{OlOj}{OlA@b}{{AAbOl}AAb}{{AAjOl}AAj}32{OlOh}{OlA@`}{AAbOj}{AAbA@b}10{AAbOh}{AAbA@`}{AAjOj}{AAjA@b}{AAjOh}{AAjA@`}=<=<98={AAbAAd}000{AAjAAd}00000{OlAAd}000:9:99876543{OlOj}{OlA@b}10>={{AAbOh}AAb}{{AAjOh}AAj}{{OlOh}Ol}{{AAbA@`}AAb}{{AAjA@`}AAj}{{OlA@`}Ol}{AAdAAd}00000{AAjOl}{OlAAj}{{AAdAAd}AAd}{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}21021020{{OlAAnAAn}Ol}{{AAdAAdAAd}AAd}0000000000000000000{AAdOj}0{AAdA@b}1{OlOj}8;{{AAjAAjAAj}AAj}00777{{AAbAAbAAd}AAb}{{OlOlAAd}Ol}1010{AAbAAb}{OlOl}<:4{{AAbAAbAAb}AAb}5{{OlOlOl}Ol}61606160160160160160160===160160160160160160{AAbIn}{AAjIn}{OlIn}210{{}Oh}7{AAjAAj}7{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}210;3:210210{{AAdAAd}AAd}000031000310{{OjAAd}AAd}{{A@bAAd}AAd}{{AAfAAd}AAb}{{AAhAAd}Ol}{{InAAdAAd}j}0{{InAAdAAb}j}{{InAAdOl}j}65432210{{AAdOj}AAd}0{{AAdA@b}AAd}1:99{AAdAAd}{{}j}{AAfAAb}{AAhOl}{OjAAd}{A@bAAd}33{AA`AAj}3340634{{AAbAAf}AAb}7054{AB`AAd}43{ABbAAd}7369{InAAd}00::{{AAdAAdAAd}AAd}000{{AAdAAd}AAd}0{{AAdAAdInAAd}AAd}00{{AAdAAdA@dAAd}AAd}{{AAbAAdInAAb}AAb}{{OlAAdInOl}Ol}{{AAjAAjAAjIn}AAj}000{{AAbAAbAAbIn}AAb}1{{OlOlOlIn}Ol}21202120120120120120120120120120120120120{{AAdInAAd}AAd}00{{AAdA@dAAd}AAd}{{AAdInAAdAAd}AAd}00{{AAdA@dAAdAAd}AAd}{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}21021043434434420442043{{A@dAAdAAd}A@d}{{InAAdAAd}AAd}00{{A@dAAdAAd}AAd}{{InAAbAAb}AAb}{{InAAjAAj}AAj}{{InOlOl}Ol}<;<<{{OlInOl}Ol}={{InAAdAAd}In}0070007{{InAAbAAb}In}{{InAAjAAj}In}{{InOlOl}In}210210333:333:333:333:333:333:333:333:333:333:333:333:<<<{{AAdInAAd}AAd}00{{AAdA@dAAd}AAd}{{AAbInAAb}AAb}7{{InInAAd}j}00{{InA@dAAd}j}{{InInAAb}j}{{InInOl}j}66{{AAjInAAj}AAj}{{AAdInOl}AAd}{{AAjInAAjAAb}AAj}{{OlInOlAAb}Ol}{{AAbInAAbAAj}AAb}{{OlInOlAAj}Ol}{{AAbInAAbOl}AAb}{{AAjInAAjOl}AAj}>>>{{AAjInAAd}AAj}{{ABbInAAd}j}{{AAdInAAd}AAd}00{{AAbInAAd}AAb}3{{OlInAAd}Ol}33222140333222224214140222{{AAnInOlOl}AAn}{{AAnInOl}AAn}{{OlInAAn}Ol}{{AAdInAAb}AAd}000{{AAjInAAb}AAj}{{OlInAAb}Ol}{{AAdInAAj}AAd}00000{{AAbInAAj}AAb}8{{AAdInOl}AAd}0000{{AAjInAAjAAb}AAj}{{OlInOlAAb}Ol}=>==>>===>>>{{AAbInAAbAAj}AAb}{{OlInOlAAj}Ol}{{AAbInAAbOl}AAb}{{AAjInAAjOl}AAj};;;;8888886666{{AAdInAAd}AAd}{{ABbInAAd}j}1100111000{{OlInAAj}Ol}{{AAjInOl}AAj}{{AAdInAAdAAd}AAd}{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}210210{{OlInAAnAAn}Ol}4444888{{AAdA@dAAd}AAd}{{AAbInAAb}AAb}{{OlInOl}Ol}{{AAdInAB`}AAd}{{AAdInOj}AAd}{{AAdInA@b}AAd}{{AAdA@dABb}AAd}{{AAbInAAf}AAb}{{OlInAAh}Ol};;;;;;{{AAbInAAbAAd}AAb}{{OlInOlAAd}Ol}1010=>=<=>=<=>=<>=<>=<>=<>=<>=<===>=<>=<>=<>=<>=<>=<{{InAAb}In}{{InAAj}In}{{InOl}In}210<{{AAjInAAj}AAj}<{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}210{{AAbInAAb}AAb}4{{OlInOl}Ol}432432{{AAdA@dAAdAAd}AAd}00{{AAdOjAAdAAd}AAd}{{AAdA@bAAdAAd}AAd}{{AAbAAfAAdAAb}AAb}{{OlAAhAAdOl}Ol}{{InInAAdAAd}j}0{{InInAAdAAb}j}{{InInAAdOl}j}65432210{{AAdInOj}AAd}{{AAdInA@b}AAd}{{AAbInAAf}AAb}{{OlInAAh}Ol}1{{AAjInAA`}AAj}1{{AAdInAB`}AAd}54{{AAdA@dABb}AAd}43{{AAdInAAd}AAd}0{{AAdInAAdAAd}AAd}000000{{AAdA@dAAdAAd}AAd}1110{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}21021044434443210210210555{{AAdA@dAAd}AAd}{{AAbInAAb}AAb}{{OlInOl}Ol}5431007745434543454377777767753676710{{AAbInAAbAAd}AAb}{{OlInOlAAd}Ol}9998{{AAbInAAdAAb}AAb}{{OlInAAdOl}Ol};:<<<69797975497{{AAjInAAj}AAj}9{{InAAd}AB`}{{A@dAAd}ABb}1010{{InAAd}A@d}{{A@dAAd}In}32103232:49>=<>=<{{AAdInAAd}AAd}0{{AAdInAAdAAd}AAd}01100<6;{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}210?>2091210210210{{AAdInAB`}AAd}{{AAdInOj}AAd}{{AAdInA@b}AAd}{{AAdA@dABb}AAd}7777777777778{{AAdA@dAAdAAd}AAd}7599888999888{{AAbInAAb}AAb}?{{OlInOl}Ol}987987:::;;;::::::;;;:::{{OjInAAd}j}{{A@bInAAd}j}{{AAfInAAb}j}{{AAhInOl}j}1{{AA`InAAj}j}1{{AB`InAAd}j}54{{ABbA@dAAd}j}43{{AAdInAAdAAd}AAd}00:{{AAbInAAbAAb}AAb}{{AAjInAAjAAj}AAj}{{OlInOlOl}Ol}2102103=3=33{{InAAdAAd}In}00{{A@dAAdAAd}A@d}1110555?42555?425542{{OjAAd}AAd}{{A@bAAd}AAd}{{AAfAAd}AAb}{{AAhAAd}Ol}{{AAdAAdABb}j}{{OjAAdAAd}j}{{A@bAAdAAd}j}{{AAfAAdAAb}j}{{AAhAAdOl}j}{{InAAd}AAd}00{{A@dAAd}AAd}{{InAAdAAd}AAd}00{{A@dAAdAAd}AAd}{{InAAbAAb}AAb}{{InAAjAAj}AAj}{{InOlOl}Ol}210210434344344204420436566{{InOl}Ol}72227776{{InAAb}AAb}188{{InAAj}AAj}{{InOl}AAd}{{InAAjAAb}AAj}{{InOlAAb}Ol}{{InAAbAAj}AAb}{{InOlAAj}Ol}{{InAAbOl}AAb}{{InAAjOl}AAj}{{InAAd}AAd}00{{InAAd}AAj}111{{InAAd}AAb}1{{InAAd}Ol}333120333332312120333{{InOlOl}AAn}{{InOl}AAn}{{InAAn}Ol}{{InAAb}AAd}000{{InAAb}AAj}{{InAAb}Ol}{{InAAj}AAd}00000{{InAAj}AAb}8{{InOl}AAd}0000{{InAAjAAb}AAj}{{InOlAAb}Ol}>>>>>>{{InAAbAAj}AAb}{{InOlAAj}Ol}{{InAAbOl}AAb}{{InAAjOl}AAj};;;;8888886666{{InAAd}AAd}00000{{InAAj}Ol}{{InOl}AAj}{{InAAdAAd}AAd}{{InAAbAAb}AAb}{{InAAjAAj}AAj}{{InOlOl}Ol}210210{{InOlAAnAAn}Ol}{{InAAdAAdAAd}AAd}000888{{A@dAAd}AAd}{{InAAb}AAb}{{InOl}Ol}{{InAB`}AAd}{{InOj}AAd}{{InA@b}AAd}{{A@dABb}AAd}{{InAAf}AAb}{{InAAh}Ol}{{InAAjAAjAAj}AAj}00==={{InAAbAAbAAd}AAb}{{InOlOlAAd}Ol}10102{{InAAbAAbAAb}AAb}3{{InOlOlOl}Ol}41404140140140140140140{{InAAjAAj}AAj}00251251251251251251={{InAAj}AAj}={{InAAbAAb}AAb}2{{InOlOl}Ol}130{{InAAb}AAb}3{{InOl}Ol}352352{{A@dAAdAAd}AAd}00{{InOj}AAd}{{InA@b}AAd}?>?{{InAA`}AAj}?{{InAB`}AAd}32{{A@dABb}AAd}{{InAAf}AAb}{{InAAh}Ol}{{InAAd}AAd}0{{InAAdAAdAAd}AAd}0{{InAAdAAd}AAd}0000:000:>{{InAAjAAj}AAj}>?0>?0>111;111;?0>?0>?0>333{{A@dAAd}AAd}>={{InAAbAAb}AAb}2{{InOlOl}Ol}{{InAAb}AAb}{{InOl}Ol}066535253525352666666{{A@dAAdAAd}AAd}7743070721{{InAAbAAd}AAb}{{InOlAAd}Ol}:::{{A@dAAdAAdAAd}AAd}{{InAAbAAdAAb}AAb}{{InOlAAdOl}Ol}<5>>>:9898987698{{InAAj}AAj}<807:<9:<9??==??==807:<9:<987:90<:<9:<9:<9{{InAB`}AAd}{{InOj}AAd}{{InA@b}AAd}{{A@dABb}AAd}{{InAAdAAd}AAd}00{{InAAdAAdAAd}AAd}00111000{{InAAd}AAd}={{InAAbAAb}AAb}{{InOlOl}Ol}22444222444{{InAAb}AAb}:{{InOl}Ol}3{{InAAjAAj}AAj}3403777555777777555777777{{A@dAAdAAd}AAd}5145145148080778880548880548854{{AAdAAd}AAd}0000000{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}210210{{}j}44444444321321321{AAdAAd}{{AAdInAAdIn}AAd}0{{AAbInAAdIn}AAb}{{OlInAAdIn}Ol}22103765{AAbAAb}{OlOl}707{AAdOj}{AAbOj}{OlOj}{AAdIn}00{AAdA@d}{InAAd}00{A@dAAd}{{AAdAAd}AAd}00{{AAjAAj}AAj}{{AAbAAb}AAb}1{{OlOl}Ol}212021203333333331033333{{}j}=<{{AAbAAd}AAb}{{OlAAd}Ol}{{AAdAAdAAd}AAd}000{{AAbAAdAAb}AAb}{{AAjAAdAAj}AAj}{{OlAAdOl}Ol}::{{AAdAAj}AAj}{AAdAAd}000{ABbj};:;:{AAbAAb}{OlOl}=<{AAjAAj}1?1{AAdAB`}{AAdABb}{AAjAA`}2121{AAdA@d}{AAdIn}24310243243756{{AAbAAb}AAb}{{AAjAAj}AAj}{{OlOl}Ol}210<<{{AAdAAd}AAd}0==00;:31;9:321321;:319:2:0321321321{AB`AAd}{OjAAd}{A@bAAd}{ABbAAd}{AAfAAb}{AA`AAj}{AAhOl}{{AB`AB`AB`AB`AB`AB`AB`AB`}AAd}{{OjOjOjOj}AAd}{{A@bA@b}AAd}{{ABbABbABbABbABbABbABbABbABbABbABbABbABbABbABbABb}AAd}{{AAfAAf}AAb}7{{AA`AA`AA`AA`AA`AA`AA`AA`}AAj}{{AAhAAhAAhAAh}Ol}7987{Ohj}764321{{}AAb}{{}AAj}{{}Ol}{{}AAd}{{}j}{{AAdAAd}AAd}00000{{AAdAAdAAd}AAd}111000111000{AAdAAd}2{{AAbAAb}AAb}{{OlOl}Ol}224444442222444{AAbAAb}{AAjAAj}{OlOl}4{{AAjAAj}AAj}45018886668888886666888{{AAfAAb}j}{{AAhOl}j}{{OjAAd}j}{{A@bAAd}j}33{{AA`AAj}j}3340{{AAdAAd}j}450554{{AB`AAd}j}43{{ABbAAd}j}7362{{InAAd}j}00?8783{{OjOj}j}{{A@bA@b}j}9{{AAdAAd}AAd}000{{AAbAAb}AAb}={{OlOl}Ol}1>01>02222{{AAdAAdAAd}AAd}0{AAdOj}{{AAdAAd}Oj}{{AAdAAd}In}00{{AAdAAd}A@d}2{{AAbAAb}Oj}{{OlOl}Oj}43332104104{OhOj}{A@`A@b}3{{AAjAAj}Oj}3403403403403403{{}AAb}{{}AAj}{{}Ol}{{}AAd}{{AAdAAd}AAd}000{{AAbAAb}AAb}{{OlOl}Ol}22221022102{{OhOh{f{bOh}}}Oh}{{A@`A@`{f{bA@`}}}A@`}{{OhOh}Oh}{{A@`A@`}A@`}10{OjOj}{A@bOj}{{{f{bA@d}}}Oj}{{{f{bOh}}}Oj}{{{f{bA@`}}}Oj}210{{}A@`}{{A@dA@d}j}{{OhOh}j}{{A@`A@`}j}{{InIn}j}{{InOhOh{f{bOh}}}In}{{InA@`A@`{f{bA@`}}}In}{OhOh}{A@`A@`}{{}j}0000000{Inj}{{Inh}j}21002{A@dA@d}545435{{}Oh}4{OhA@`}{{InA@`}j}00000000000{{OhA@`}j}{{}In}`{f{{f{c}}}{}}0000000000000000{{{f{b}}}{{f{bc}}}{}}0000000000000000{{{f{AAd}}}AAd}{{{f{Ol}}}Ol}{{{f{AAb}}}AAb}{{{f{A@f}}}A@f}{{{f{A@l}}}A@l}{{{f{A@j}}}A@j}{{{f{ABd}}}ABd}{{{f{ABj}}}ABj}{{{f{ABf}}}ABf}{{{f{AAn}}}AAn}{{{f{AAl}}}AAl}{{{f{ABl}}}ABl}{{{f{AAj}}}AAj}{{{f{A@h}}}A@h}{{{f{ABh}}}ABh}{{{f{A@n}}}A@n}{{{f{On}}}On}{{f{f{bc}}}j{}}0000000000000000{fj}0000000000000000{{{f{On}}{f{On}}}Cd}{{ABnABnABnAC`AC`}ABn}````{{{f{On}}{f{On}}}Af}{{{f{AAd}}{f{bK`}}}{{n{jKb}}}}{{{f{Ol}}{f{bK`}}}{{n{jKb}}}}{{{f{AAb}}{f{bK`}}}{{n{jKb}}}}{{{f{A@f}}{f{bK`}}}{{n{jKb}}}}{{{f{A@l}}{f{bK`}}}{{n{jKb}}}}{{{f{A@j}}{f{bK`}}}{{n{jKb}}}}{{{f{ABd}}{f{bK`}}}{{n{jKb}}}}{{{f{ABj}}{f{bK`}}}{{n{jKb}}}}{{{f{ABf}}{f{bK`}}}{{n{jKb}}}}{{{f{AAn}}{f{bK`}}}{{n{jKb}}}}{{{f{AAl}}{f{bK`}}}{{n{jKb}}}}{{{f{ABl}}{f{bK`}}}{{n{jKb}}}}{{{f{AAj}}{f{bK`}}}{{n{jKb}}}}{{{f{A@h}}{f{bK`}}}{{n{jKb}}}}{{{f{ABh}}{f{bK`}}}{{n{jKb}}}}{{{f{A@n}}{f{bK`}}}{{n{jKb}}}}{{{f{On}}{f{bK`}}}{{n{jKb}}}}{{{AOj{A@b}}}AAd}{{{AOj{h}}}AAd}{{{AOj{A@d}}}AAd}{{{AOj{A@`}}}AAd}{{{AOj{Oj}}}AAd}{{{AOj{Oh}}}AAd}{{{AOj{AB`}}}AAd}{{{AOj{AFd}}}AAd}{{{AOj{ABb}}}AAd}{cc{}}{{{AOj{In}}}AAd}{{{AOj{AAh}}}Ol}2{{{AOj{AAf}}}AAb}3{{{AOj{Oj}}}A@f}{{{AOj{AB`}}}A@f}{{{AOj{A@b}}}A@f}{{{AOj{A@d}}}A@f}{{{AOj{h}}}A@f}{{{AOj{A@`}}}A@f}{{{AOj{AFd}}}A@f}{{{AOj{In}}}A@f};{{{AOj{ABb}}}A@f}{{{AOj{Oh}}}A@f}{{{AOj{AAh}}}A@l}>>{{{AOj{AAf}}}A@j}{{{AOj{Oh}}}ABd}{{{AOj{AB`}}}ABd}{{{AOj{A@b}}}ABd}{{{AOj{ABb}}}ABd}{cc{}}{{{AOj{In}}}ABd}{{{AOj{A@`}}}ABd}{{{AOj{Oj}}}ABd}{{{AOj{h}}}ABd}{{{AOj{A@d}}}ABd}{{{AOj{AFd}}}ABd}6{{{AOj{AAh}}}ABj}7{{{AOj{AAf}}}ABf}88888888{A@dA@n}{{}c{}}0000000000000000{{{f{On}}{f{On}}}{{Df{Cd}}}}{A@nA@d}{fc{}}0000000000000000{c{{n{e}}}{}{}}0000000000000000{{}{{n{c}}}{}}0000000000000000{fOf}0000000000000000``{{{f{b{Fn{c}}}}h}{{n{j{l{h}}}}}{}}0{{{f{b{Fn{c}}}}}{{f{b{Jd{c}}}}}{}}{{{f{{Fn{c}}}}}{{f{{Jd{c}}}}}{}}{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{{f{{Fn{c}}}}}{{Fn{c}}}ACb}{{{f{BCh}}}BCh}{{f{f{bc}}}j{}}0{fj}0{{{Fn{c}}}h{}}{{{f{BCh}}}{{f{Ll}}}}{{{f{b{Fn{c}}}}}j{}}{{}{{Fn{c}}}{}}{{{f{{Fn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{BCh}}{f{bK`}}}{{n{jKb}}}}0{{{Fn{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{cc{}}{BCjBCh}1{e{{Fj{c}}}{}{{Aj{h}{{Ah{c}}}}}}{{{f{bc}}}{{f{b{Fj{c}}}}}{}}{{{f{c}}}{{f{{Fj{c}}}}}{}}{{}c{}}00{{{f{{Fn{c}}}}}Af{}}{{{Fn{c}}}Df{}}{{{f{{Fn{c}}}}}h{}}{{{Fj{c}}}{{Fn{c}}}{}}{{{Fj{{BCl{c}}}}{M`{h}}}{{Fn{c}}}{}}{{{f{b{Fn{c}}}}}Df{}}0{c{{Fj{c}}}ACb}={{{f{{Fn{c}}}}}{{G`{h{Df{h}}}}}{}}{fc{}}0{fI`}{c{{n{e}}}{}{}}0{e{}Ib{{Aj{h}{{Ah{c}}}}}}{{}{{n{c}}}{}}0{fOf}0````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{f{bACd}}h}{{n{j{l{h}}}}}}0{{{f{BCn}}}{{f{Ll}}}}{{BCnh}{{Df{BCn}}}}{{BCnh}BCn}{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{{f{BCn}}}BCn}{{{f{ACd}}}ACd}{{f{f{bc}}}j{}}0{fj}0{{{f{BCn}}{f{BCn}}}Cd}{ACdh}{{}BCn}{In{{Df{BCn}}}}{InBCn}{{{f{BCn}}{f{BCn}}}Af}{{{f{{BD`{}{{Bl{c}}}}}}{f{{BD`{}{{Bl{c}}}}}}}Af{}}{InACd}{{{f{BCn}}{f{bK`}}}{{n{jKb}}}}0{{{f{ACd}}{f{bK`}}}{{n{jKb}}}}0{{BCnh}{{Df{BCn}}}}{{BCnh}BCn}{cc{}}098{{{f{BCn}}{f{bc}}}jAEn}{{}c{}}00{{{f{{BD`{}{{Bl{c}}}}}}}Af{}}{ACd{{Df{In}}}}{{{f{ACd}}}h}{{{f{b{BD`{}{{Bl{c}}}}}}}j{}}0{{{f{bACd}}}{{Df{In}}}}0{{{f{BCn}}{f{BCn}}}{{Df{Cd}}}}{{{f{ACd}}}{{G`{h{Df{h}}}}}}{{{f{BCn}}{f{BCn}}}{{Df{h}}}}{{{f{{BD`{}{{Bl{c}}}}}}}c{}}0{BCnLj}{fc{}}0{fI`}0{BCnIn}{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{fOf}0````````{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{{ACf{c}}}}}{{ACf{c}}}ACb}{{f{f{bc}}}j{}}{fj}{{{f{{ACf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{cc{}}{cACfBj}{{}c{}}{{{ACj{}{{A`{c}}{ACh{e}}}}}e{}{{ACl{}{{A`{c}}}}}}{{}}{{{Gf{{f{b{ACl{}{{A`{c}}}}}}}}{f{bGh}}}{{Gj{{Df{c}}}}}{}}{{{Gf{{f{b{ACf{c}}}}}}{f{bGh}}}{{Gj{Df}}}Ab}{{{f{{ACl{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{ACf{c}}}}}{{G`{h{Df{h}}}}}Ab}{fc{}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{fOf}``````{f{{f{c}}}{}}00{{{f{b}}}{{f{bc}}}{}}00{{}BDb}0{{{f{BDd}}{f{BDd}}}Af}{{{f{BDb}}{f{bK`}}}{{n{jKb}}}}0{{{f{BDf}}{f{bK`}}}{{n{jKb}}}}{{{f{BDd}}{f{bK`}}}{{n{jKb}}}}4{{{f{BDb}}}{{f{{Jd{BDf}}}}}}{cc{}}00{{}c{}}00{{{f{BDb}}}BDd}{fI`}>>>===<<<```````{{{BDh{Ll}}{BDh{Ll}}}}{{{BDh{Ll}}{f{Ll}}}}{{{f{b{BDh{Ll}}}}{f{Ll}}}j}{{{f{b{BDh{Ll}}}}{BDh{Ll}}}j}{{{f{{BDh{BDj}}}}}{{f{BDl}}}}{{{f{{BDh{c}}}}}{{f{c}}}{BnAd}}{{{f{C`}}}{{f{c}}}Ad}1{f{{f{c}}}{}}{{{f{bJl}}}{{f{bc}}}Ad}{{{f{b}}}{{f{bc}}}{}}{{{f{{BDh{c}}}}}{{BDh{c}}}{BnAd}}{{{f{b{BDh{c}}}}{f{{BDh{c}}}}}j{BnAd}}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{f{f{bc}}}j{}}{fj}{{{f{{BDh{c}}}}{f{{BDh{c}}}}}Cd{FlBnAd}}{{}{{BDh{c}}}{BnAd}};{{{f{{BDh{BDl}}}}{f{BDj}}}Af}{{{f{{BDh{e}}}}{f{{BDh{c}}}}}Af{BnAd}{{ADb{c}}BnAd}}{{{f{{BDh{BDl}}}}{f{BDl}}}Af}{{{f{{BDh{BDl}}}}{f{{f{BDl}}}}}Af}{{{f{{BDh{BDl}}}}{f{BDn}}}Af}{{{f{{BDh{Ll}}}}{f{{f{Ll}}}}}Af}{{{f{{BDh{BDj}}}}{f{{f{BDj}}}}}Af}{{{f{{BDh{BDj}}}}{f{BDn}}}Af}{{{f{{BDh{BDj}}}}{f{BDl}}}Af}{{{f{{BDh{BDj}}}}{f{BE`}}}Af}{{{f{{BDh{Ll}}}}{f{Ll}}}Af}{{{f{{BDh{BDl}}}}{f{{f{BDj}}}}}Af}{{{f{{BDh{BDl}}}}{f{BE`}}}Af}{{{f{{BDh{BDj}}}}{f{BDj}}}Af}{{{f{{BDh{{Jd{e}}}}}}{f{{f{b{Jd{c}}}}}}}Af{}{{ADb{c}}ACb}}{{{f{{BDh{{Jd{e}}}}}}{f{{f{{Jd{c}}}}}}}Af{}{{ADb{c}}ACb}}{{{f{{BDh{{Jd{e}}}}}}{f{{BEb{cg}}}}}Af{}{{ADb{c}}ACb}Jb}{{{f{{BDh{Ll}}}}{f{I`}}}Af}{{{f{{BDh{BDj}}}}{f{{f{BDl}}}}}Af}{{{f{{BDh{c}}}}{f{bK`}}}{{n{jKb}}}{JnBnAd}}{{{f{{BDh{c}}}}{f{bK`}}}{{n{jKb}}}{KdBnAd}}{BEd{{BDh{BEf}}}}{{{f{BDl}}}{{BDh{BDl}}}}{{{f{BEf}}}{{BDh{BEf}}}}{{{f{{Fj{c}}}}}{{BDh{{Jd{c}}}}}ACb}{{{BEb{c}}}{{BDh{{Jd{c}}}}}ACb}{{{f{{BEb{c}}}}}{{BDh{{Jd{c}}}}}ACb}{{{f{I`}}}{{BDh{Ll}}}}{cc{}}{I`{{BDh{Ll}}}}{{{f{Ll}}}{{BDh{Ll}}}}{{{f{BEd}}}{{BDh{BEf}}}}{{{f{{Jd{c}}}}}{{BDh{{Jd{c}}}}}ACb}{{{f{BDn}}}{{BDh{BDl}}}}{BDn{{BDh{BDl}}}}{BE`{{BDh{BDj}}}}{{{f{BDj}}}{{BDh{BDj}}}}{{{f{BE`}}}{{BDh{BDj}}}}{c{{BDh{Ll}}}{{Bj{}{{A`{{f{Ll}}}}}}}}{c{{BDh{Ll}}}{{Bj{}{{A`{I`}}}}}}{e{{BDh{{Jd{c}}}}}ACb{{Bj{}{{A`{c}}}}}}{c{{BDh{Ll}}}{{Bj{}{{A`{Lj}}}}}}{{{f{{BDh{c}}}}{f{be}}}j{AF`BnAd}AEn}{{}c{}}{{{BDh{c}}}{}{BnAd}}{{{f{{BDh{c}}}}}Af{BnAd}}0{{{f{{BDh{{Jd{e}}}}}}{f{{f{b{Jd{c}}}}}}}Af{}{{ADb{c}}ACb}}{{{f{{BDh{Ll}}}}{f{Ll}}}Af}{{{f{{BDh{Ll}}}}{f{{f{Ll}}}}}Af}{{{f{{BDh{Ll}}}}{f{I`}}}Af}{{{f{{BDh{{Jd{e}}}}}}{f{{BEb{cg}}}}}Af{}{{ADb{c}}ACb}Jb}{{{f{{BDh{{Jd{e}}}}}}{f{{f{{Jd{c}}}}}}}Af{}{{ADb{c}}ACb}}{{{f{{BDh{BDj}}}}{f{{f{BDl}}}}}{{Df{Cd}}}}{{{f{{BDh{BDl}}}}{f{{f{BDj}}}}}{{Df{Cd}}}}{{{f{{BDh{c}}}}{f{{BDh{c}}}}}{{Df{Cd}}}{FbBnAd}}{{{f{{BDh{BDl}}}}{f{BDl}}}{{Df{Cd}}}}{{{f{{BDh{BDj}}}}{f{BDl}}}{{Df{Cd}}}}{{{f{{BDh{BDj}}}}{f{BE`}}}{{Df{Cd}}}}{{{f{{BDh{BDl}}}}{f{BDj}}}{{Df{Cd}}}}{{{f{{BDh{BDj}}}}{f{BDn}}}{{Df{Cd}}}}{{{f{{BDh{BDl}}}}{f{BDn}}}{{Df{Cd}}}}{{{f{{BDh{BDl}}}}{f{BE`}}}{{Df{Cd}}}}{{{f{{BDh{BDl}}}}{f{{f{BDl}}}}}{{Df{Cd}}}}{{{f{{BDh{BDj}}}}{f{BDj}}}{{Df{Cd}}}}{{{f{{BDh{BDj}}}}{f{{f{BDj}}}}}{{Df{Cd}}}}{{{f{b{BDh{c}}}}}{{f{b}}}{BnAd}}{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}{fc{}}{fI`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{fOf}``{{{f{{Mj{ce}}}}}{{f{e}}}AdJb}{{{f{{Mj{c}}}}}BEh{BEjAd}}{{{f{b{Mj{ce}}}}}{{f{bc}}}AdJb}{{{f{b{Mj{ce}}}}}{}AdJb}{{{f{{Mj{ce}}}}}{}AdJb}{{{f{{Mj{c}}}}}OjBEl}{{{f{{Mj{ce}}}}}{{f{c}}}AdJb}{{{Mj{{BCl{c}}e}}}{{Mj{ce}}}{}Jb}{{{Mj{{Jd{{BCl{c}}}}e}}}{{Mj{{Jd{c}}e}}}{}Jb}{{{f{{Mj{eg}}}}c}{}Bd{{AIn{c}}Ad}Jb}{{{f{b{Mj{eg}}}}c}{}Bd{{AJb{c}}Ad}Jb}{{{Mj{eg}}c}{}Bd{{AJf{c}}Ad}Jb}{f{{f{c}}}{}}60{{{f{b}}}{{f{bc}}}{}}0;{{{f{{Mj{eg}}}}c}{}Bd{{Bb{c}}Ad}Jb}{{{f{b{Mj{eg}}}}c}{}Bd{{Aj{c}}Ad}Jb}{{{Mj{eg}}c}{}Bd{{Bf{c}}Ad}Jb}{{{f{{Mj{c}}}}}{{Df{{f{ADd}}}}}ADd}{{{f{{Mj{{Jd{c}}e}}}}}{{Mj{{Jd{c}}e}}}ACb{JbACb}}{{{f{{Mj{ce}}}}}{{Mj{ce}}}ACb{JbACb}}{{{f{{Mj{BDj}}}}}{{Mj{BDj}}}}{{{f{{Mj{BEf}}}}}{{Mj{BEf}}}}{{{f{{Mj{Ll}}}}}{{Mj{Ll}}}}{{{f{{Mj{BDl}}}}}{{Mj{BDl}}}}{{{f{b{Mj{{Jd{c}}e}}}}{f{{Mj{{Jd{c}}e}}}}}jACb{JbACb}}{{{f{b{Mj{ce}}}}{f{{Mj{ce}}}}}jACb{JbACb}}{{f{f{bc}}}j{}}{fj}{{{f{{Mj{ce}}}}{f{{Mj{ce}}}}}Cd{FlAd}Jb}{{{f{b{Mj{c}}}}h}j{BEnAd}}{{}{{Mj{BDj}}}}{{}{{Mj{c}}}Gb}{{}{{Mj{{Jd{c}}}}}{}}{{}{{Mj{BEf}}}}{{}{{Mj{Ll}}}}{{{f{{BF`{c}}}}}{{f{c}}}Ad}{{{f{{Mj{ce}}}}}{{f{c}}}AdJb}{{{f{b{BF`{c}}}}}{{f{bc}}}Ad}{{{f{b{Mj{ce}}}}}{{f{bc}}}AdJb}{{{f{{Mj{c}}}}}{{f{Ll}}}ADd}{{{Mj{Odc}}}{{n{{Mj{ec}}{Mj{Odc}}}}}JbOd}00{{{Mj{Odc}}}{{Mj{ec}}}JbOd}00{{{f{b{BF`{c}}}}}jAd}{{{f{b{Mj{ce}}}}}jAdJb}{{{f{{Mj{ce}}}}{f{{Mj{ce}}}}}Af{ADbAd}Jb}{{{f{b{Mj{c}}}}}{{n{{f{{Jd{In}}}}BFb}}}{BEnAd}}{{{f{{Mj{ce}}}}}A@`{AEnAd}Jb}{{{f{b{Mj{c}}}}}{{n{jBFb}}}{BFdAd}}{{{f{{BF`{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{BF`{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{Mj{ce}}}}{f{bK`}}}{{n{jKb}}}{JnAd}Jb}{{{f{{Mj{ce}}}}{f{bK`}}}{{n{jKb}}}AdJb}{{{f{{Mj{ce}}}}{f{bK`}}}{{n{jKb}}}{KdAd}Jb}{cc{}}{BDn{{Mj{BDl}}}}{{{Mj{Llc}}}{{Mj{{Jd{In}}c}}}Jb}{{{f{Ll}}}{{Mj{ADd}}}}{{{BDh{Ll}}}{{Mj{ADd}}}}04{Jjc{}}{{{BDh{BDl}}}{{Mj{BDl}}}}{I`{{Mj{ADd}}}}40{c{{Mj{c}}}{}}{{{f{BDl}}}{{Mj{BDl}}}}{{{BDh{Ll}}}{{Mj{Ll}}}}{BE`{{Mj{BDj}}}}{{{f{BEf}}}{{Mj{BEf}}}}{{{BDh{BEf}}}{{Mj{BEf}}}}{{{BEb{ce}}}{{Mj{{Jd{c}}e}}}{}Jb}{{{BDh{BDj}}}{{Mj{BDj}}}}{BEd{{Mj{BEf}}}}{{{f{BDj}}}{{Mj{BDj}}}}{{{BDh{{Jd{c}}}}}{{Mj{{Jd{c}}}}}ACb}{{{f{Ll}}}{{Mj{Ll}}}}{c{{Mj{ADd}}}{ADdB@fB@h}}{I`{{Mj{Ll}}}}{c{{Mj{ADd}}}ADd}{{{Fj{c}}}{{Mj{{Jd{c}}}}}{}}{{{f{{Jd{c}}}}}{{Mj{{Jd{c}}}}}ACb}{c{{Mj{Ll}}}{{Bj{}{{A`{{BDh{Ll}}}}}}}}{e{{Mj{Ll}}}Jb{{Bj{}{{A`{{Mj{Llc}}}}}}}}{c{{Mj{Ll}}}{{Bj{}{{A`{{f{Lj}}}}}}}}{e{{Mj{{Jd{c}}}}}{}{{Bj{}{{A`{c}}}}}}{c{{Mj{Ll}}}{{Bj{}{{A`{Lj}}}}}}{c{{Mj{Ll}}}{{Bj{}{{A`{{f{Ll}}}}}}}}{c{{Mj{Ll}}}{{Bj{}{{A`{I`}}}}}}{{}{{Mj{c}}}Ad}{c{{Mj{ec}}}JbAd}{{{f{{Mj{ce}}}}{f{{Mj{ce}}}}}Af{FbAd}Jb}0{{{f{{Mj{ce}}}}{f{bg}}}j{AF`Ad}JbAEn}{{}c{}}0{{}}{{{Mj{ce}}}{{Mj{{Jd{c}}e}}}{}Jb}1{{{Mj{ce}}}c{}Jb}{{{f{b{Mj{{Jd{c}}e}}}}}{{BFf{c}}}{}Jb}{{{f{{Mj{{Jd{c}}e}}}}}{{BFh{c}}}{}Jb}5{{{Mj{{Jd{c}}e}}}{{BFj{ce}}}{}Jb}{{{Mj{ce}}}{{Gf{{Mj{ce}}}}}AdJb}{{{Mj{ce}}}{}AdJb}{{{Mj{ce}}}{{G`{e}}}AdJb}{{{f{Ll}}}{{BFl{c}}}{}}{{{f{Ll}}}Af}{{{f{{Mj{ce}}}}}Af{F`Ad}Jb}1{{{f{{Mj{c}}}}}Af{BFnAd}}2{{{f{{Mj{c}}}}}Af{BFdAd}}{{{Mj{ce}}}Df{AbAd}Jb}{{{f{{Mj{ce}}}}{f{{Mj{ce}}}}}Af{FbAd}Jb}{{{Mj{ce}}}{{f{bc}}}AdJb}{{{f{{Mj{ce}}}}}h{F`Ad}Jb}2{{{f{{Mj{ce}}}}{f{{Mj{ce}}}}}Af{ADbAd}Jb}{c{{BF`{c}}}{}}{c{{Mj{c}}}{}}{{ce}{{Mj{ce}}}{}{JbJb}}{{}{{Mj{{BCl{c}}}}}{}}{c{{Mj{{BCl{e}}c}}}{JbJb}{}}{h{{Mj{{Jd{{BCl{c}}}}}}}{}}{{hc}{{Mj{{Jd{{BCl{e}}}}c}}}Jb{}}{e{{BF`{c}}}Ad{{BG`{c}}}}4321{{{f{b{Mj{ce}}}}}Df{AbAd}Jb}{{{f{b{Mj{ce}}}}}Df{dAd}Jb}{{{f{b{Mj{ce}}}}h}Df{AbAd}Jb}{{{f{b{Mj{ce}}}}h}Df{dAd}Jb}{{{f{{Mj{ce}}}}{f{{Mj{ce}}}}}{{Df{Cd}}}{FbAd}Jb}{c{{Gf{{Mj{c}}}}}{}}{{ce}{{Gf{{Mj{ce}}}}}{}{JbJb}}{{{Gf{{f{b{Mj{ce}}}}}}{f{bGh}}}Gj{ElAHdAd}Jb}{{{Gf{{f{b{Mj{c}}}}}}{f{bGh}}}{{Gj{Df}}}{AClAHdAd}}{{{f{{Mj{c}}}}{f{bADh}}}jADd}{{{f{b{Mj{c}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}{BFnAd}}{{{f{b{Mj{c}}}}BGb}{{n{jBFb}}}{BFnAd}}0{{{f{b{Mj{c}}}}{f{b{Jd{In}}}}}{{n{jBFb}}}{BFnAd}}{{{f{b{Mj{c}}}}{f{bI`}}}{{n{hBFb}}}{BEnAd}}{{{f{b{Mj{c}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}{BFnAd}}{{{f{b{Mj{c}}}}{f{bI`}}}{{n{hBFb}}}{BFnAd}}{{{f{b{Mj{c}}}}In{f{b{BEb{In}}}}}{{n{hBFb}}}{BEnAd}}{{{f{b{Mj{c}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}{BFnAd}}{{{Gf{{f{b{Mj{eg}}}}}}c}AMh{}{{AHb{c}}AHdAd}Jb}{{{f{b{Mj{c}}}}BGf}{{n{A@`BFb}}}{BGhAd}}{{{f{{Mj{ce}}}}}{{G`{h{Df{h}}}}}{AbAd}Jb}{{{f{{Mj{c}}}}}{{G`{h{Df{h}}}}}{AClAHdAd}}{{{f{{BF`{c}}}}}{{Df{{f{ADd}}}}}{ADdAd}}{{{f{{Mj{c}}}}}{{Df{{f{ADd}}}}}ADd}{{{f{b{Mj{c}}}}}{{n{A@`BFb}}}{BGhAd}}{{{f{Ll}}}{{Df{{f{Ll}}}}}}0{fc{}}{fI`}0{c{{n{e}}}{}{}}{{{Mj{{Jd{c}}}}}{{n{{Mj{{Fj{c}}}}}}}{}}1{{{BEb{c}}}{{n{{Mj{{Fj{c}}}}}}}{}}{{}{{n{c}}}{}}0{c{{n{{BF`{c}}Jh}}}{}}{c{{n{{Mj{c}}Jh}}}{}}{{ce}{{n{{Mj{ce}}Jh}}}{}{JbJb}}{{}{{n{{Mj{{BCl{c}}}}Jh}}}{}}{c{{n{{Mj{{BCl{e}}c}}Jh}}}{JbJb}{}}{h{{n{{Mj{{Jd{{BCl{c}}}}}}Jh}}}{}}{{hc}{{n{{Mj{{Jd{{BCl{e}}}}c}}Jh}}}Jb{}}3210{fOf}0{{{Mj{{BCl{c}}e}}c}{{Mj{ce}}}{}Jb}{{{f{b{Mj{c}}}}{f{{Jd{In}}}}}{{n{hBFb}}}{BFdAd}}{{{f{b{Mj{ce}}}}{f{{Jd{In}}}}}j{AEnAd}Jb}{{{f{b{Mj{c}}}}{f{{Jd{In}}}}}{{n{jBFb}}}{BFdAd}}{{{f{b{Mj{c}}}}Ld}{{n{jBFb}}}{BFdAd}}{{{f{b{Mj{ce}}}}AFb}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}AB`}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}Oj}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}A@b}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}ABb}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}AFd}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}h}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}{f{Ll}}}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}ABn}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}A@d}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}Oh}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}A@`}j{AEnAd}Jb}{{{f{b{Mj{ce}}}}In}j{AEnAd}Jb}6{{{f{b{Mj{c}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}{BFdAd}}``````````{{{f{{BGl{{Fj{c}}}}}}}{{f{{Fj{{BGl{c}}}}}}}{}}{{{f{{BGl{c}}}}}{}Ad}{{{f{{BGn{c}}}}}{}Ad}{{{f{{BGl{{Jd{c}}}}}}}{{f{{Jd{{BGl{c}}}}}}}{}}{f{{f{c}}}{}}000{{{f{{BGn{c}}}}}{{BH`{c}}}Ad}111111{{{f{b}}}{{f{bc}}}{}}00{{{f{{BGn{c}}}}}{{BHb{c}}}Ad}1111111{{{f{{BHd{c}}}}}{{BHd{c}}}ACb}{{{f{{BGl{c}}}}}{{BGl{c}}}AFf}{{{f{{BGn{c}}}}}{{BGn{c}}}ACb}{{{f{{BH`{c}}}}}{{BH`{c}}}Ad}{{{f{b{BGn{c}}}}{f{{BGn{c}}}}}jACb}{{f{f{bc}}}j{}}00{fj}00{{{f{{BGl{c}}}}{f{{BGl{c}}}}}Cd{FlAFf}}{{{f{{BGn{c}}}}{f{{BGn{c}}}}}Cd{FlAd}}{{}{{BHf{c}}}Gb}{{}{{BHd{c}}}{}}{{}{{BGl{c}}}Gb}{{}{{BGn{c}}}Gb}{{}{{BHh{c}}}Gb}{{}{{BHj{c}}}Gb}{{{f{{BHf{ce}}}}}{{f{c}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{{BH`{c}}}}}{{f{c}}}Ad}{{{f{{BHb{c}}}}}{{f{c}}}Ad}{{{f{b{BHb{c}}}}}{{f{bc}}}Ad}{{{f{BHl}}}{{f{Ll}}}}{{{f{BHn}}}{{f{Ll}}}}{{{f{{BHd{c}}}}{f{{BHd{c}}}}}AfADb}{{{f{{BGl{c}}}}{f{{BGl{c}}}}}Af{ADbAFf}}{{{f{{BGn{c}}}}{f{{BGn{c}}}}}Af{ADbAd}}{{{BH`{c}}g}{{n{{BH`{e}}{BH`{c}}}}}AdAd{{Bf{{f{c}}}{{Ah{{Df{{f{e}}}}}}}}}}{{{BHb{c}}g}{{n{{BHb{e}}{BHb{c}}}}}AdAd{{Bf{{f{bc}}}{{Ah{{Df{{f{be}}}}}}}}}}{{{f{{BHf{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{BHd{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BGl{c}}}}{f{bK`}}}{{n{jKb}}}{AFfJn}}{{{f{{BGn{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{BHl}}{f{bK`}}}{{n{jKb}}}}0{{{f{BHn}}{f{bK`}}}{{n{jKb}}}}0{{{f{{BH`{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{BH`{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{BHb{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{BHb{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{BHh{c}}}}{f{bK`}}}{{n{jKb}}}Ad}{{{f{{BHj{c}}}}{f{bK`}}}{{n{jKb}}}Ad}{{{f{{BHf{ce}}}}}{{f{c}}}{}{{Bf{}{{Ah{c}}}}}}{cc{}}0{c{{BHd{c}}}{}}{Jjc{}}{c{{BGl{c}}}{}}311{c{{BGn{c}}}{}}4444424{c{{BHh{c}}}{}}{c{{BHj{c}}}{}}64{{{f{bc}}}{{f{{BGl{c}}}}}Ad}{{{f{bc}}}{{f{b{BHh{c}}}}}Ad}{{{f{{BGl{c}}}}{f{{BGl{c}}}}}Af{FbAFf}}{{{f{{BGn{c}}}}{f{{BGn{c}}}}}Af{FbAd}}{{{f{{BHd{c}}}}}{{Df{{f{c}}}}}{}}{{{f{{BGl{c}}}}}cAFf}{{{f{{BHh{c}}}}}{}Ad}{{{f{{BHj{c}}}}}{}Ad}{{{f{b{BHd{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{BGl{c}}}}}{{f{bc}}}Ad}{{{f{b{BGn{c}}}}}{{f{bc}}}Ad}{{{f{b{BHh{c}}}}}{{f{bc}}}Ad}{{{f{b{BHj{c}}}}}{{f{bc}}}Ad}{{{f{b{BHd{c}}}}e}{{f{bc}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{b{BHd{c}}}}g}{{n{{f{bc}}e}}}{}{}{{Bf{}{{Ah{{n{ce}}}}}}}}{{{f{{BHd{c}}}}e}{{f{c}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{{BHd{c}}}}g}{{n{{f{c}}e}}}{}{}{{Bf{}{{Ah{{n{ce}}}}}}}}>={{}c{}}000000000{{{BHf{ce}}}{{n{ce}}}{}{{Bf{}{{Ah{c}}}}}}{{{BHd{c}}}{{Df{c}}}{}}{{{BGl{c}}}c{}}{{{BGn{c}}}c{}}{{{BHh{c}}}c{}}{{{BHj{c}}}c{}}{{{f{{BGl{c}}}}{f{{BGl{c}}}}}Af{FbAFf}}{{{f{{BGn{c}}}}{f{{BGn{c}}}}}Af{FbAd}}{{{BH`{c}}}{{f{c}}}Ad}{{{BHb{c}}}{{f{bc}}}Ad}32{{{BH`{c}}g}{{BH`{e}}}AdAd{{Bf{{f{c}}}{{Ah{{f{e}}}}}}}}{{{BHb{c}}g}{{BHb{e}}}AdAd{{Bf{{f{bc}}}{{Ah{{f{be}}}}}}}}{{{BH`{c}}i}{{G`{{BH`{e}}{BH`{g}}}}}AdAdAd{{Bf{{f{c}}}{{Ah{{G`{{f{e}}{f{g}}}}}}}}}}{{{BHb{c}}i}{{G`{{BHb{e}}{BHb{g}}}}}AdAdAd{{Bf{{f{bc}}}{{Ah{{G`{{f{be}}{f{bg}}}}}}}}}}{e{{BHf{ce}}}{}{{Bf{}{{Ah{c}}}}}}{{}{{BHd{c}}}{}}{c{{BGl{c}}}{}}{c{{BGn{c}}}{}}{c{{BHh{c}}}{}}{c{{BHj{c}}}{}}{{{f{{BGl{c}}}}{f{{BGl{c}}}}}{{Df{Cd}}}{FbAFf}}{{{f{{BGn{c}}}}{f{{BGn{c}}}}}{{Df{Cd}}}{FbAd}}{BHh}{BHj}{{{f{{BGl{c}}}}c}c{}}{{{f{{BGn{c}}}}c}c{}}{{{f{{BGn{c}}}}e}c{}{{Bf{{f{bc}}}{{Ah{c}}}}}}{{{f{{BHd{c}}}}c}{{n{jc}}}{}}{{{f{{BGl{c}}}}c}j{}}{{{f{{BGl{c}}}}{f{{BGl{c}}}}}j{}}{{{f{{BGn{c}}}}{f{{BGn{c}}}}}j{}}{{{f{b{BHd{c}}}}}{{Df{c}}}{}}{{{f{{BGl{c}}}}}cGb}{{{f{{BGn{c}}}}}cGb}{fc{}}00{fI`}000{{{f{{BGn{c}}}}}{{n{{BH`{c}}BHl}}}Ad}{{{f{{BGn{c}}}}}{{n{{BHb{c}}BHn}}}Ad}{{{f{{BGn{c}}}}}{{n{{f{c}}BHl}}}Ad}{c{{n{e}}}{}{}}000000000{{{f{{BHd{c}}}}c}{{n{{f{c}}{G`{{f{c}}c}}}}}{}}{{}{{n{c}}}{}}000000000{fOf}000000000{{{f{b{BGn{c}}}}}{{f{bc}}}Ad}{{{f{{BGl{c}}}}e}cAFf{{Bf{c}{{Ah{c}}}}}}`````````````{{{f{bBI`}}h}{{n{j{l{h}}}}}}{{{f{bBIb}}h}{{n{j{l{h}}}}}}{{{f{bBId}}h}{{n{j{l{h}}}}}}{{{f{bBIf}}h}{{n{j{l{h}}}}}}32{f{{f{c}}}{}}000000000{{{f{b}}}{{f{bc}}}{}}000000000{{{f{BIh}}}BIh}{{{f{BIj}}}BIj}{{{f{{ACn{c}}}}}{{ACn{c}}}{ACb{Ab{}{{A`{A@d}}}}}}{{{f{BIl}}}BIl}{{{f{BId}}}BId}{{{f{BIf}}}BIf}{{{f{BIn}}}BIn}{{{f{BI`}}}BI`}{{{f{BIb}}}BIb}{{{f{BJ`}}}BJ`}{{f{f{bc}}}j{}}000000000{fj}000000000{BIdh}{BIfh}{BInh}{BI`h}{BIbh}{cACn{{Bj{}{{A`{A@d}}}}}}{{{f{BIh}}}{{f{Ll}}}}{{{f{BIj}}}{{f{Ll}}}}{{{f{BIl}}}{{f{Ll}}}}{{{f{BIh}}{f{BIh}}}Af}{{{f{BIj}}{f{BIj}}}Af}{{{f{BIl}}{f{BIl}}}Af}{{{f{BJ`}}{f{BJ`}}}Af}{{{f{BIh}}{f{bK`}}}{{n{jKb}}}}0{{{f{BIj}}{f{bK`}}}{{n{jKb}}}}0{{{f{{ACn{c}}}}{f{bK`}}}{{n{jKb}}}{Jn{Ab{}{{A`{A@d}}}}}}{{{f{BIl}}{f{bK`}}}{{n{jKb}}}}0{{{f{BId}}{f{bK`}}}{{n{jKb}}}}0{{{f{BIf}}{f{bK`}}}{{n{jKb}}}}0{{{f{BIn}}{f{bK`}}}{{n{jKb}}}}0{{{f{BI`}}{f{bK`}}}{{n{jKb}}}}0{{{f{BIb}}{f{bK`}}}{{n{jKb}}}}0{{{f{BJ`}}{f{bK`}}}{{n{jKb}}}}0{{BI`ce}c{}{{Aj{c}{{Ah{c}}}}}}{{BIbce}c{}{{Aj{c}{{Ah{c}}}}}}{cc{}}000000000{{OhOh}{{Df{Lj}}}}{Oh{{Df{Lj}}}}{OhLj}{{}c{}}000000000000000{{{f{BI`}}}Af}{{{f{BIb}}}Af}{BId{{Df{Lj}}}}{BIf{{Df{Lj}}}}{BI`Df}{BIbDf}{{{f{BId}}}h}{{{f{BIf}}}h}{{{f{BIn}}}h}{{{f{BI`}}}h}{{{f{BIb}}}h}{{{f{b{ACn{c}}}}}{{Df{{n{LjBIl}}}}}{{Ab{}{{A`{A@d}}}}}}{{{f{bBId}}}{{Df{Lj}}}}{{{f{bBIf}}}{{Df{Lj}}}}{{{f{bBIn}}}{{Df{Lj}}}}{{{f{bBI`}}}{{Df{Lj}}}}{{{f{bBIb}}}{{Df{Lj}}}}10{{BI`ce}c{}{{Aj{c}{{Ah{c}}}}}}{{BIbce}c{}{{Aj{c}{{Ah{c}}}}}}{{{f{{ACn{c}}}}}{{G`{h{Df{h}}}}}{{Ab{}{{A`{A@d}}}}}}{{{f{BId}}}{{G`{h{Df{h}}}}}}{{{f{BIf}}}{{G`{h{Df{h}}}}}}{{{f{BIn}}}{{G`{h{Df{h}}}}}}{{{f{BI`}}}{{G`{h{Df{h}}}}}}{{{f{BIb}}}{{G`{h{Df{h}}}}}}{fc{}}000000000{fI`}00000000{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}000000000{fOf}000000000{{{f{BIl}}}A@d}```{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{f{AD`}}}j}`````````````{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{FlFlFl}Fl}{{{f{Cd}}}Cd}{{{f{{BJb{c}}}}}{{BJb{c}}}ACb}{{{f{b{BJb{c}}}}{f{{BJb{c}}}}}jACb}{{f{f{bc}}}j{}}0{fj}0{{{f{Fl}}{f{Fl}}}Cd}{{{f{Cd}}{f{Cd}}}Cd}{{{f{{BJb{c}}}}{f{{BJb{c}}}}}CdFl}{{}{{BJb{c}}}Gb}{{{f{ADb}}{f{c}}}AfAd}{{{f{Cd}}{f{Cd}}}Af}{{{f{{BJb{c}}}}{f{{BJb{c}}}}}AfADb}{{{f{Cd}}{f{bK`}}}{{n{jKb}}}}{{{f{{BJb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{cc{}}0{{{f{Fb}}{f{c}}}AfAd}{{{f{{BJb{c}}}}{f{{BJb{c}}}}}AfFb}10{{{f{Cd}}{f{bc}}}jAEn}{{{f{{BJb{c}}}}{f{be}}}jAF`AEn}{{}c{}}0{CdAf}000005454{{cc}cFl}{{FlFl}Fl}{{cce}c{}{{Bf{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{ccg}c{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}3210{{cc}{{Fj{c}}}Fl}{{cce}{{Fj{c}}}{}{{Bf{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{ccg}{{Fj{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{ADb}}{f{c}}}AfAd}{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{f{Cd}}{f{Cd}}}{{Df{Cd}}}}{{{f{{BJb{c}}}}{f{{BJb{c}}}}}{{Df{Cd}}}Fb}{CdCd}{{CdCd}Cd}{{Cdc}Cd{{Bf{}{{Ah{Cd}}}}}}{fc{}}0{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{fOf}0```````````````{{{f{{BJd{ce}}}}}{{f{e}}}{}Jb}{{{f{{BJf{ce}}}}}{{f{e}}}{}Jb}{{{f{b{BJd{ce}}}}{f{b{BJd{ce}}}}}jFlJb}{{{f{b{BJh{ceg}}}}{f{b{BJh{ceg}}}}}jFl{}{ACbJbACb}}{{{f{b{BJj{ce}}}}{f{b{BJj{ce}}}}}jFl{ACbJbACb}}{{{f{b{BJl{c}}}}{f{b{BJl{c}}}}}j{}}{{{f{b{BJf{ce}}}}{f{b{BJf{ce}}}}}j{}Jb}{{{f{b{BJf{ce}}}}}{{G`{{f{b{Jd{c}}}}{f{b{Jd{c}}}}}}}{}Jb}{{{f{{BJd{ce}}}}}{{f{{Jd{c}}}}}{}Jb}{{{f{{BJf{ce}}}}}{{G`{{f{{Jd{c}}}}{f{{Jd{c}}}}}}}{}Jb}{{{f{{BJl{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{{BJf{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{b{BJl{ce}}}}}{{Df{{f{bc}}}}}{}Jb}{{{f{b{BJf{ce}}}}}{{Df{{f{bc}}}}}{}Jb}`{{{f{{BJf{ce}}}}{f{c}}}{{n{hh}}}FlJb}{{{f{{BJf{ce}}}}g}{{n{hh}}}{}Jb{{Aj{{f{c}}}{{Ah{Cd}}}}}}{{{f{{BJf{ce}}}}{f{g}}i}{{n{hh}}}{}JbFl{{Aj{{f{c}}}{{Ah{g}}}}}}{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}{{BJn{ce}}}{BK`AF`ACb}{AElGb}}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}{{BJj{ce}}}{FlACb}{JbACb}}1010{f{{f{c}}}{}}00000000{{{f{b}}}{{f{bc}}}{}}00000000``{{{f{{BKb{ceg}}}}}h{}{}{}}{{{f{{BJd{ce}}}}}h{}Jb}{{{f{{BJn{ce}}}}}h{}{}}{{{f{{BJf{ce}}}}}h{}Jb}{{{f{b{BKb{ceg}}}}}j{}{}{}}{{{f{b{BJd{ce}}}}}j{}Jb}{{{f{b{BJh{ceg}}}}}j{}{}{JbACb}}{{{f{b{BJn{ce}}}}}j{}{}}{{{f{b{BJj{ce}}}}}j{}{ACbJbACb}}{{{f{b{BJl{ce}}}}}j{}Jb}{{{f{b{BJf{ce}}}}}j{}Jb}{{{f{{BKb{ceg}}}}}{{BKb{ceg}}}ACbACbACb}{{{f{{BJd{ce}}}}}{{BJd{ce}}}ACb{JbACb}}{{{f{{BJh{ceg}}}}}{{BJh{ceg}}}ACbACb{JbACb}}{{{f{{BJn{ce}}}}}{{BJn{ce}}}ACbACb}{{{f{{BJj{ce}}}}}{{BJj{ce}}}ACb{JbACb}}{{{f{{BJl{ce}}}}}{{BJl{ce}}}ACb{JbACb}}{{{f{{BJf{ce}}}}}{{BJf{ce}}}ACb{JbACb}}{{{f{BKd}}}BKd}{{{f{BKf}}}BKf}{{{f{b{BKb{ceg}}}}{f{{BKb{ceg}}}}}jACbACbACb}{{{f{b{BJd{ce}}}}{f{{BJd{ce}}}}}jACb{JbACb}}{{{f{b{BJn{ce}}}}{f{{BJn{ce}}}}}jACbACb}{{{f{b{BJj{ce}}}}{f{{BJj{ce}}}}}jACb{JbACb}}{{{f{b{BJl{ce}}}}{f{{BJl{ce}}}}}jACb{JbACb}}{{{f{b{BJf{ce}}}}{f{{BJf{ce}}}}}jACb{JbACb}}{{f{f{bc}}}j{}}00000000{fj}00000000{{{f{{BJh{ceg}}}}{f{{BJh{ceg}}}}}CdFlFl{JbACb}}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}CdFl{JbACb}}{{{f{{BJl{ce}}}}{f{{BJl{ce}}}}}CdFlJb}{{{f{{BJf{ce}}}}{f{{BJf{ce}}}}}CdFlJb}{{{f{b{BJf{Inc}}}}h}jJb}{{{f{{BJn{eg}}}}{f{c}}}Af{AF`BK`Ad}{{C`{c}}BK`AF`}AEl}{{{f{{BJj{eg}}}}{f{c}}}Af{FlAd}{{C`{c}}Fl}{JbACb}}{{{f{{BJl{ce}}}}{f{c}}}AfADbJb}{{{f{{BJf{ce}}}}{f{c}}}AfADbJb}{{{f{{BKb{egi}}}}{f{c}}}Af{AF`BK`Ad}{{C`{c}}BK`AF`}{}AEl}{{{f{{BJh{egi}}}}{f{c}}}Af{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{{BJl{ce}}}}}{{BKh{ce}}}{}Jb}{{{f{b{BJl{ce}}}}}{{BKj{ce}}}{}Jb}10{{}{{BKb{ceg}}}{}{}Gb}{{}{{BJd{c}}}Fl}{{}{{BJh{ce}}}{}{}}{{}{{BJn{ce}}}{}Gb}{{}{{BJj{c}}}{}}{{}{{BJl{c}}}{}}{{}{{BJf{c}}}{}}{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}{{BKl{ce}}}{BK`AF`}AEl}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}{{BKn{ce}}}Fl{JbACb}}{{{f{b{BKb{ceg}}}}}{{BL`{ce}}}{}{}{}}{{{f{b{BJd{ce}}}}}{{BLb{ce}}}{}Jb}{{{f{b{BJn{ce}}}}}{{BLd{c}}}{}{}}{{{f{b{BJf{ce}}}}g}{{BLf{ce}}}{}Jb{{Mh{h}}}}{{{f{b{BJd{ce}}}}}{{BLh{ce}}}FlJb}{{{f{b{BJh{ceg}}}}}j{}{}{JbACb}}{{{f{b{BJl{ce}}}}}j{}Jb}{{{f{b{BJf{ce}}}}}j{}Jb}{{{f{b{BKb{ceg}}}}c}{{BLj{ce}}}{BK`AF`}{}AEl}{{{f{b{BJh{ceg}}}}c}{{BLl{ceg}}}Fl{}{JbACb}}{{{f{{BKb{ceg}}}}{f{{BKb{ceg}}}}}Af{BK`AF`}ADbAEl}{{{f{{BJh{ceg}}}}{f{{BJh{ceg}}}}}AfADbADb{JbACb}}{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}Af{BK`AF`}AEl}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}AfADb{JbACb}}{{{f{{BJl{ce}}}}{f{{BJl{ce}}}}}AfADbJb}{{{f{{BJf{eg}}}}{f{{f{{Fj{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BJf{eg}}}}{f{{Fj{c}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BJf{ce}}}}{f{{BJf{ce}}}}}AfADbJb}{{{f{{BJf{eg}}}}{f{{BEb{cg}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BJf{eg}}}}{f{{f{{Jd{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BJf{eg}}}}{f{{f{b{Fj{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BJf{eg}}}}{f{{f{b{Jd{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{BKd}}{f{BKd}}}Af}{{{f{BKf}}{f{BKf}}}Af}{{{f{b{BKb{ceg}}}}i}j{BK`AF`}{}AEl{{Bj{}{{A`{{G`{ce}}}}}}}}{{{f{b{BKb{ceg}}}}i}j{BK`AF`AFf}AFfAEl{{Bj{}{{A`{{G`{{f{c}}{f{e}}}}}}}}}}{{{f{b{BJd{ce}}}}g}jFlJb{{Bj{}{{A`{c}}}}}}{{{f{b{BJd{ce}}}}g}j{FlAFf}Jb{{Bj{}{{A`{{f{c}}}}}}}}{{{f{b{BJh{ceg}}}}i}j{FlAFf}AFf{JbACb}{{Bj{}{{A`{{G`{{f{c}}{f{e}}}}}}}}}}{{{f{b{BJh{ceg}}}}i}jFl{}{JbACb}{{Bj{}{{A`{{G`{ce}}}}}}}}{{{f{b{BJn{ce}}}}g}j{BK`AF`AFf}AEl{{Bj{}{{A`{{f{c}}}}}}}}{{{f{b{BJn{ce}}}}g}j{BK`AF`}AEl{{Bj{}{{A`{c}}}}}}{{{f{b{BJj{ce}}}}g}j{FlAFf}{JbACb}{{Bj{}{{A`{{f{c}}}}}}}}{{{f{b{BJj{ce}}}}g}jFl{JbACb}{{Bj{}{{A`{c}}}}}}{{{f{b{BJl{ce}}}}g}j{}Jb{{Bj{}{{A`{c}}}}}}{{{f{b{BJl{ce}}}}g}jAFfJb{{Bj{}{{A`{{f{c}}}}}}}}{{{f{b{BJf{ce}}}}g}j{}Jb{{Bj{}{{A`{c}}}}}}{{{f{b{BJf{ce}}}}g}jAFfJb{{Bj{}{{A`{{f{c}}}}}}}}{{{f{b{BKb{ceg}}}}{G`{ce}}}j{BK`AF`}{}AEl}{{{f{b{BKb{ceg}}}}{G`{{f{c}}{f{e}}}}}j{BK`AF`AFf}AFfAEl}{{{f{b{BJd{ce}}}}c}jFlJb}{{{f{b{BJd{ce}}}}{f{c}}}j{FlAFf}Jb}{{{f{b{BJh{ceg}}}}{G`{{f{c}}{f{e}}}}}j{FlAFf}AFf{JbACb}}{{{f{b{BJh{ceg}}}}{G`{ce}}}jFl{}{JbACb}}{{{f{b{BJn{ce}}}}{f{c}}}j{BK`AF`AFf}AEl}{{{f{b{BJn{ce}}}}c}j{BK`AF`}AEl}{{{f{b{BJj{ce}}}}{f{c}}}j{FlAFf}{JbACb}}{{{f{b{BJj{ce}}}}c}jFl{JbACb}}{{{f{b{BJl{ce}}}}c}j{}Jb}{{{f{b{BJl{ce}}}}{f{c}}}jAFfJb}{{{f{b{BJf{ce}}}}{f{c}}}jAFfJb}{{{f{b{BJf{ce}}}}c}j{}Jb}{{{f{b{BKb{ceg}}}}h}j{BK`AF`AFf}AFfAEl}{{{f{b{BKb{ceg}}}}h}j{BK`AF`}{}AEl}{{{f{b{BJd{ce}}}}h}j{FlAFf}Jb}{{{f{b{BJd{ce}}}}h}jFlJb}{{{f{b{BJn{ce}}}}h}j{BK`AF`}AEl}{{{f{b{BJn{ce}}}}h}j{BK`AF`AFf}AEl}{{{f{b{BJf{ce}}}}h}j{}Jb}{{{f{b{BJf{ce}}}}h}jAFfJb}{{{f{b{BKb{ceg}}}}i}{{BLn{cei}}}{}{}{}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{b{BJh{ceg}}}}i}{{BM`{ceig}}}Fl{}{JbACb}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{b{BJn{ce}}}}g}{{BMb{cg}}}{}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BJj{ce}}}}g}{{BMd{cge}}}Fl{JbACb}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BJl{ce}}}}g}{{BMf{cge}}}{}Jb{{Aj{{f{bc}}}{{Ah{Af}}}}}}{{{f{b{BJf{Inc}}}}}{{n{{f{{Jd{In}}}}BFb}}}Jb}{{{f{{BJj{ce}}}}}{{Df{{f{c}}}}}Fl{JbACb}}{{{f{b{BJh{ceg}}}}}{{Df{{BMh{ceg}}}}}Fl{}{JbACb}}{{{f{{BJh{ceg}}}}}{{Df{{G`{{f{c}}{f{e}}}}}}}Fl{}{JbACb}}{{{f{b{BJf{Inc}}}}}{{n{jBFb}}}Jb}{{{f{{BKb{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{}}{{{f{{BJd{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{BJh{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{JbACb}}{{{f{{BJn{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{BJj{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{JbACb}}{{{f{{BJl{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{BJf{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{BKd}}{f{bK`}}}{{n{jKb}}}}0{{{f{BKf}}{f{bK`}}}{{n{jKb}}}}{{{Fj{{G`{ce}}}}}{{BKb{ce}}}{BK`AF`}{}}{cc{}}0{{{BEb{ce}}}{{BJd{ce}}}FlJb}{{{Fj{c}}}{{BJd{c}}}Fl}2{{{Fj{{G`{ce}}}}}{{BJh{ce}}}Fl{}}{{{Fj{c}}}{{BJn{c}}}{BK`AF`}}44{{{Fj{c}}}{{BJj{c}}}Fl}5{{{Fj{c}}}{{BJl{c}}}{}}6{{{BEb{ce}}}{{BJf{ce}}}{}Jb}{{{Fj{c}}}{{BJf{c}}}{}}8{BKfBKd}{BCbBKf}:{g{{BKb{cei}}}{BK`AF`}{}{{Bj{}{{A`{{G`{ce}}}}}}}{AElGb}}{e{{BJd{c}}}Fl{{Bj{}{{A`{c}}}}}}{g{{BJh{ce}}}Fl{}{{Bj{}{{A`{{G`{ce}}}}}}}}{e{{BJn{cg}}}{BK`AF`}{{Bj{}{{A`{c}}}}}{AElGb}}{e{{BJj{c}}}Fl{{Bj{}{{A`{c}}}}}}{e{{BJl{c}}}{}{{Bj{}{{A`{c}}}}}}{e{{BJf{c}}}{}{{Bj{}{{A`{c}}}}}}{{{f{{BJl{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{{BJf{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{b{BJl{ce}}}}}{{Df{{f{bc}}}}}{}Jb}{{{f{b{BJf{ce}}}}}{{Df{{f{bc}}}}}{}Jb}{{{f{{BKb{egi}}}}{f{c}}}{{Df{{f{g}}}}}{AF`BK`Ad}{{C`{c}}BK`AF`}{}AEl}{{{f{{BJh{egi}}}}{f{c}}}{{Df{{f{g}}}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{{BJn{eg}}}}{f{c}}}{{Df{{f{e}}}}}{AF`BK`Ad}{{C`{c}}BK`AF`}AEl}{{{f{{BJj{eg}}}}{f{c}}}{{Df{{f{e}}}}}{FlAd}{{C`{c}}Fl}{JbACb}}{{{f{{BJf{ce}}}}h}{{Df{{f{c}}}}}{}Jb}{{{f{{BKb{egi}}}}{f{c}}}{{Df{{G`{{f{e}}{f{g}}}}}}}{AF`BK`Ad}{{C`{c}}BK`AF`}{}AEl}{{{f{{BJh{egi}}}}{f{c}}}{{Df{{G`{{f{e}}{f{g}}}}}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{b{BKb{egi}}}}{Fj{{f{c}}}}}{{Df{{Fj{{f{bg}}}}}}}{AF`BK`Ad}{{C`{c}}BK`AF`}{}AEl}0{{{f{b{BKb{egi}}}}{f{c}}}{{Df{{f{bg}}}}}{AF`BK`Ad}{{C`{c}}BK`AF`}{}AEl}{{{f{b{BJh{egi}}}}{f{c}}}{{Df{{f{bg}}}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{b{BJf{ce}}}}h}{{Df{{f{bc}}}}}{}Jb}{{{f{b{BJn{ce}}}}c}{{f{c}}}{BK`AF`}AEl}{{{f{b{BJn{eg}}}}{f{c}}}{{f{e}}}{}{{C`{c}}BK`AF`}AEl}{{{f{b{BJn{eg}}}}{f{c}}i}{{f{e}}}{AF`BK`Ad}{{C`{c}}BK`AF`}AEl{{Bf{{f{c}}}{{Ah{e}}}}}}{{{f{{BJh{ceg}}}}{f{bi}}}jAF`AF`{JbACb}AEn}{{{f{{BJj{ce}}}}{f{bg}}}jAF`{JbACb}AEn}{{{f{{BJl{ce}}}}{f{bg}}}jAF`JbAEn}{{{f{{BJf{ce}}}}{f{bg}}}jAF`JbAEn}``{{{f{{BKb{ceg}}}}}{{f{g}}}{}{}{}}{{{f{{BJn{ce}}}}}{{f{e}}}{}{}}{{{f{{BKb{egi}}}}{f{c}}}{{f{g}}}{BK`AF`Ad}{BK`AF`{C`{c}}}{}AEl}{{{f{{BJh{egi}}}}{f{c}}}{{f{g}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{{BJf{ce}}}}h}{{f{c}}}{}Jb}{{{f{b{BJf{ce}}}}h}{{f{bc}}}{}Jb}{{{f{b{BKb{ceg}}}}ce}{{Df{e}}}{BK`AF`}{}AEl}{{{f{b{BJh{ceg}}}}ce}{{Df{e}}}Fl{}{JbACb}}{{{f{b{BJn{ce}}}}c}Af{BK`AF`}AEl}{{{f{b{BJj{ce}}}}c}AfFl{JbACb}}{{{f{b{BJf{ce}}}}hc}j{}Jb}{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}{{BMj{ce}}}{BK`AF`}AEl}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}{{BMl{ce}}}Fl{JbACb}}{{}c{}}00000000{{{f{b{BKb{ceg}}}}}{{BMn{ce}}}{}{}{}}{{{f{{BKb{ceg}}}}}{{BN`{ce}}}{}{}{}}{{{BKb{ceg}}}{{BNb{ce}}}{}{}{}}{{{BJd{ce}}}{{BNd{ce}}}{}Jb}{{{f{{BJd{ce}}}}}{{BNf{c}}}{}Jb}{{{f{b{BJh{ceg}}}}}{{BNh{ce}}}{}{}{JbACb}}{{{f{{BJh{ceg}}}}}{{BNj{ce}}}{}{}{JbACb}}{{{BJh{ceg}}}{{BNl{ceg}}}{}{}{JbACb}}{{{f{{BJn{ce}}}}}{{BNn{c}}}{}{}}{{{BJn{ce}}}{{BO`{c}}}{}{}}{{{BJj{ce}}}{{BOb{ce}}}{}{JbACb}}{{{f{{BJj{ce}}}}}{{BOd{c}}}{}{JbACb}}{{{BJl{ce}}}{{BOf{ce}}}{}Jb}{{{f{{BJl{ce}}}}}{{BOh{c}}}{}Jb}{{{f{b{BJl{ce}}}}}{{BOj{c}}}{}Jb}{{{BJf{ce}}}{{BOl{ce}}}{}Jb}{{{f{{BJf{ce}}}}}{{BOn{c}}}{}Jb}{{{f{b{BJf{ce}}}}}{{C@`{c}}}{}Jb}{{{BJd{ce}}}{{C@b{ce}}}{}Jb}{{{BKb{ceg}}}{{C@d{ce}}}{}{}{}}{{{BJh{ceg}}}{{C@f{ceg}}}{}{}{JbACb}}{{{BJd{ce}}}{{BEb{ce}}}FlJb}{{{BKb{ceg}}}{{C@h{ce}}}{}{}{}}{{{BJh{ceg}}}{{C@j{ceg}}}{}{}{JbACb}}{{{BJd{ce}}}{{BEb{ce}}}{}Jb}{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}Af{BK`AF`}AEl}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}AfFl{JbACb}}{{{f{{BKb{ceg}}}}}Af{}{}{}}{{{f{{BJd{ce}}}}}Af{}Jb}{{{f{{BJh{ceg}}}}}Af{}{}{JbACb}}{{{f{{BJn{ce}}}}}Af{}{}}{{{f{{BJj{ce}}}}}Af{}{JbACb}}{{{f{{BJl{ce}}}}}Af{}Jb}{{{f{{BJf{ce}}}}}Af{}Jb}8787{{{f{{BJf{Inc}}}}}AfJb}{{{f{{BKb{ceg}}}}}{{BN`{ce}}}{}{}{}}{{{f{{BJd{ce}}}}}{{BNf{c}}}{}Jb}{{{f{{BJh{ceg}}}}}{{BNj{ce}}}{}{}{JbACb}}{{{f{{BJn{ce}}}}}{{BNn{c}}}{}{}}{{{f{{BJj{ce}}}}}{{BOd{c}}}{}{JbACb}}{{{f{{BJl{ce}}}}}{{BOh{c}}}{}Jb}{{{f{{BJf{ce}}}}}{{BOn{c}}}{}Jb}{{{f{b{BKb{ceg}}}}}{{BMn{ce}}}{}{}{}}{{{f{b{BJh{ceg}}}}}{{BNh{ce}}}{}{}{JbACb}}{{{f{b{BJl{ce}}}}}{{BOj{c}}}{}Jb}{{{f{b{BJf{ce}}}}}{{C@`{c}}}{}Jb}{{{f{{BKb{ceg}}}}}{{C@l{ce}}}{}{}{}}{{{f{{BJh{ceg}}}}}{{C@n{ce}}}{}{}{JbACb}}{{{f{BKd}}}BKf}{{{f{{BJj{ce}}}}}{{Df{{f{c}}}}}Fl{JbACb}}{{{f{b{BJh{ceg}}}}}{{Df{{BMh{ceg}}}}}Fl{}{JbACb}}{{{f{{BJh{ceg}}}}}{{Df{{G`{{f{c}}{f{e}}}}}}}Fl{}{JbACb}}{{{f{{BKb{ceg}}}}}h{}{}{}}{{{f{{BJd{ce}}}}}h{}Jb}{{{f{{BJh{ceg}}}}}h{}{}{JbACb}}{{{f{{BJn{ce}}}}}h{}{}}{{{f{{BJj{ce}}}}}h{}{JbACb}}{{{f{{BJl{ce}}}}}h{}Jb}{{{f{{BJf{ce}}}}}h{}Jb}`{{{f{{BJh{egi}}}}{ALb{{f{c}}}}}{{CA`{eg}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{{BJj{eg}}}}{ALb{{f{c}}}}}{{CAb{e}}}{FlAd}{{C`{c}}Fl}{JbACb}}{{{f{b{BJh{egi}}}}{ALb{{f{c}}}}}{{CAd{egi}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{b{BJj{eg}}}}{ALb{{f{c}}}}}{{CAf{eg}}}{FlAd}{{C`{c}}Fl}{JbACb}}{{{f{b{BJf{ce}}}}}{{f{b{Jd{c}}}}}{}Jb}{{{f{{BJl{ce}}}}{f{{BJl{ce}}}}}AfADbJb}{{}{{BKb{ce}}}{}{}}{{}{{BJd{c}}}Fl}{{}{{BJh{ce}}}{}{}}{{}{{BJn{c}}}{}}{{}{{BJj{c}}}{}}{{}{{BJl{c}}}{}}{{}{{BJf{c}}}{}}{c{{BJd{ec}}}JbFl}{c{{BJh{egc}}}{JbACb}{}{}}{c{{BJj{ec}}}{JbACb}{}}{c{{BJl{ec}}}Jb{}}{c{{BJf{ec}}}Jb{}}{{{f{{BJh{ceg}}}}{f{{BJh{ceg}}}}}{{Df{Cd}}}FbFb{JbACb}}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}{{Df{Cd}}}Fb{JbACb}}{{{f{{BJl{ce}}}}{f{{BJl{ce}}}}}{{Df{Cd}}}FbJb}{{{f{{BJf{ce}}}}{f{{BJf{ce}}}}}{{Df{Cd}}}FbJb}{{{f{{BJf{ce}}}}g}h{}Jb{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{BJd{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{b{BJd{ce}}}}}{{Df{{CAh{ce}}}}}FlJb}{{{f{b{BJd{ce}}}}}{{Df{c}}}FlJb}{{{f{b{BJl{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{BJf{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{BJh{ceg}}}}}{{Df{{G`{ce}}}}}Fl{}{JbACb}}{{{f{b{BJj{ce}}}}}{{Df{c}}}Fl{JbACb}}3210{{{f{b{BJd{ce}}}}c}jFlJb}{{{f{b{BJl{ce}}}}c}j{}Jb}{{{f{b{BJf{ce}}}}c}j{}Jb}10{{{f{{BJh{egi}}}}k}{{CAj{eg}}}{FlAd}{{C`{c}}Fl}{}{JbACb}{{Mh{c}}}}{{{f{{BJj{eg}}}}i}{{CAl{e}}}{FlAd}{{C`{c}}Fl}{JbACb}{{Mh{c}}}}{{{f{{BJf{ce}}}}g}{{BOn{c}}}{}Jb{{Mh{h}}}}{{{f{b{BJh{egi}}}}k}{{CAn{eg}}}{FlAd}{{C`{c}}Fl}{}{JbACb}{{Mh{c}}}}{{{f{b{BJf{ce}}}}g}{{C@`{c}}}{}Jb{{Mh{h}}}}{{{f{{BKb{ceg}}}}}{{CB`{ceg}}}{}{}AEl}{{{f{b{BKb{ceg}}}}}{{CBb{ceg}}}{}{}AEl}{{{f{b{BJf{Inc}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}Jb}{{{f{b{BJf{Inc}}}}BGb}{{n{jBFb}}}Jb}{{{f{b{BJf{Inc}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}Jb}{{{f{b{BJf{Inc}}}}{f{bI`}}}{{n{hBFb}}}Jb}{{{f{b{BKb{egi}}}}{f{c}}}{{Df{g}}}{AF`BK`Ad}{{C`{c}}BK`AF`}{}AEl}{{{f{b{BJh{egi}}}}{f{c}}}{{Df{g}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{b{BJn{eg}}}}{f{c}}}Af{AF`BK`Ad}{{C`{c}}BK`AF`}AEl}{{{f{b{BJj{eg}}}}{f{c}}}Af{FlAd}{{C`{c}}Fl}{JbACb}}{{{f{b{BJl{ce}}}}h}c{}Jb}{{{f{b{BJf{ce}}}}h}{{Df{c}}}{}Jb}{{{f{b{BKb{egi}}}}{f{c}}}{{Df{{G`{eg}}}}}{AF`BK`Ad}{{C`{c}}BK`AF`}{}AEl}{{{f{b{BJh{egi}}}}{f{c}}}{{Df{{G`{eg}}}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{b{BJn{ce}}}}c}{{Df{c}}}{BK`AF`}AEl}{{{f{b{BJj{ce}}}}c}{{Df{c}}}Fl{JbACb}}{{{f{b{BKb{ceg}}}}h}j{BK`AF`}{}AEl}{{{f{b{BJd{ce}}}}h}j{}Jb}{{{f{b{BJn{ce}}}}h}j{BK`AF`}AEl}{{{f{b{BJf{ce}}}}h}j{}Jb}20{{{f{b{BJf{ce}}}}hc}jACbJb}{{{f{b{BJf{ce}}}}hg}j{}Jb{{Aj{}{{Ah{c}}}}}}{{{f{b{BKb{ceg}}}}i}j{}{}{}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{b{BJd{ce}}}}g}jFlJb{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BJh{ceg}}}}i}jFl{}{JbACb}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{b{BJn{ce}}}}g}j{}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BJj{ce}}}}g}jFl{JbACb}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BJl{ce}}}}g}j{}Jb{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BJf{ce}}}}g}j{}Jb{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BJl{ce}}}}g}j{}Jb{{Aj{{f{bc}}}{{Ah{Af}}}}}}{{{f{b{BJf{ce}}}}g}j{}Jb{{Aj{{f{bc}}}{{Ah{Af}}}}}};;>=<;{{{f{b{BKb{ceg}}}}}j{BK`AF`}{}AEl}{{{f{b{BJd{ce}}}}}j{}Jb}{{{f{b{BJn{ce}}}}}j{BK`AF`}AEl}{{{f{b{BJf{ce}}}}}j{}Jb}{{{f{b{BJh{egi}}}}{f{c}}}{{BJh{egi}}}{FlAd}{{C`{c}}Fl}{}{ACbJbACb}}{{{f{b{BJj{eg}}}}{f{c}}}{{BJj{eg}}}{FlAd}{{C`{c}}Fl}{ACbJbACb}}{{{f{b{BJl{ce}}}}h}{{BJl{ce}}}{}{ACbJb}}{{{f{b{BJf{ce}}}}h}{{BJf{ce}}}{}{ACbJb}}{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}{{BJn{ce}}}{BK`AF`ACb}{AElGb}}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}{{BJj{ce}}}{FlACb}{JbACb}}{{{f{b{BJf{ce}}}}hh}j{}Jb}{{{f{b{BJf{ce}}}}h}{{Df{c}}}{}Jb}0{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}{{CBd{ce}}}{BK`AF`}AEl}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}{{CBf{c}}}Fl{JbACb}}{{{f{b{BJn{eg}}}}{f{c}}}{{Df{e}}}{AF`BK`Ad}{{C`{c}}BK`AF`}AEl}{{{f{b{BJj{eg}}}}{f{c}}}{{Df{e}}}{FlAd}{{C`{c}}Fl}{JbACb}}{fc{}}00000000{fI`}{{{f{b{BJf{ce}}}}h}j{}Jb}{c{{n{e}}}{}{}}00000000{{{f{b{BKb{ceg}}}}ce}{{n{{f{be}}{CBh{ce}}}}}{BK`AF`}{}AEl}{{{f{b{BJh{ceg}}}}ce}{{n{{f{be}}{CBj{ceg}}}}}Fl{}{JbACb}}{{}{{n{c}}}{}}00000000{{{f{b{BKb{ceg}}}}h}{{n{jBKd}}}{BK`AF`}{}AEl}{{{f{b{BJd{ce}}}}h}{{n{jBKd}}}{}Jb}{{{f{b{BJn{ce}}}}h}{{n{jBKd}}}{BK`AF`}AEl}{{{f{b{BJf{ce}}}}h}{{n{jBKd}}}{}Jb}20{h{{n{{BJf{c}}BKd}}}{}}{fOf}00000000{{{f{{BJn{ce}}}}{f{{BJn{ce}}}}}{{CBl{ce}}}{BK`AF`}AEl}{{{f{{BJj{ce}}}}{f{{BJj{ce}}}}}{{CBn{c}}}Fl{JbACb}}{{{f{{BJh{egi}}}}{ALb{{f{c}}}}}{{CA`{eg}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{{BJj{eg}}}}{ALb{{f{c}}}}}{{CAb{e}}}{FlAd}{{C`{c}}Fl}{JbACb}}{{{f{b{BJh{egi}}}}{ALb{{f{c}}}}}{{CAd{egi}}}{FlAd}{{C`{c}}Fl}{}{JbACb}}{{{f{b{BJj{eg}}}}{ALb{{f{c}}}}}{{CAf{eg}}}{FlAd}{{C`{c}}Fl}{JbACb}}{{{f{{BKb{ceg}}}}}{{CC`{ce}}}{}{}{}}{{{f{{BJh{ceg}}}}}{{CCb{ce}}}{}{}{JbACb}}{{{f{b{BKb{ceg}}}}}{{CCd{ce}}}{}{}{}}{{{f{b{BJh{ceg}}}}}{{CCf{ce}}}{}{}{JbACb}}`{h{{BKb{ce}}}{}{}}{h{{BJd{c}}}Fl}{h{{BJn{c}}}{}}{h{{BJf{c}}}{}}{{hc}{{BKb{egc}}}{}{}{}}{{hc}{{BJn{ec}}}{}{}}{{hc}{{BJd{ec}}}JbFl}{{hc}{{BJf{ec}}}Jb{}}{c{{BKb{egc}}}{}{}{}}{c{{BJn{ec}}}{}{}}{{{f{b{BJf{Inc}}}}{f{{Jd{In}}}}}{{n{hBFb}}}Jb}{{{f{b{BJf{Inc}}}}{f{{Jd{In}}}}}{{n{jBFb}}}Jb}{{{f{b{BJf{Inc}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}Jb}````````{{{f{{BNd{ce}}}}}{{f{e}}}{}Jb}{{{f{{C@b{ce}}}}}{{f{e}}}{}Jb}{{{f{{BLb{ce}}}}}{{f{e}}}{}Jb}{{{f{{BLh{ce}}}}}{{f{e}}}FlJb}{f{{f{c}}}{}}00000{{{f{b}}}{{f{bc}}}{}}00000{{{f{{BNf{c}}}}}{{BNf{c}}}{}}{{{f{{BNd{ce}}}}}{{BNd{ce}}}ACb{ACbJb}}{{{f{{C@b{ce}}}}}{{C@b{ce}}}ACb{ACbJb}}{{f{f{bc}}}j{}}00{fj}00{{}{{BNf{c}}}{}}{{}{{BNd{c}}}{}}{{{f{{CAh{ce}}}}}{{f{c}}}FlJb}{{{f{b{CAh{ce}}}}}{{f{bc}}}FlJb}{{{f{b{CAh{ce}}}}}jFlJb}{{{f{b{BLh{ce}}}}}jFlJb}{{{f{{CAh{ce}}}}{f{bK`}}}{{n{jKb}}}{FlJn}Jb}{{{f{{BNf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BNd{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{C@b{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{JnJb}}{{{f{{BLb{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{JnJb}}{{{f{{BLh{ce}}}}{f{bK`}}}{{n{jKb}}}{JnFl}{JnJb}}{cc{}}00000{{}c{}}0000000000{{{f{{BNf{c}}}}}Af{}}{{{f{{BNd{ce}}}}}Af{}Jb}{{{f{{BLb{ce}}}}}Af{}Jb}{{{BNf{c}}}{{Df{{f{c}}}}}{}}{{{f{b{BNf{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{BNd{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{C@b{ce}}}}}{{Df{c}}}FlJb}{{{f{b{BLb{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{BLh{ce}}}}}{{Df{c}}}FlJb}431{{{CAh{ce}}}cFlJb}{{{f{{BNf{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BNd{ce}}}}}{{G`{h{Df{h}}}}}{}Jb}{{{f{{C@b{ce}}}}}{{G`{h{Df{h}}}}}FlJb}{{{f{{BLb{ce}}}}}{{G`{h{Df{h}}}}}{}Jb}{{{f{{BLh{ce}}}}}{{G`{h{Df{h}}}}}FlJb}{fc{}}00{c{{n{e}}}{}{}}00000{{}{{n{c}}}{}}00000{fOf}00000``````````````````````{{{BLl{ceg}}i}{{BLl{ceg}}}Fl{}{JbACb}{{Bf{{f{be}}}}}}{{{f{{CAd{ceg}}}}}{{CA`{ce}}}{}{}{}}{{{f{{CCh{ceg}}}}}{{CA`{ce}}}{}{}{}}{f{{f{c}}}{}}00000000000000000{{{f{b}}}{{f{bc}}}{}}00000000000000000{{{f{{BNj{ce}}}}}{{BNj{ce}}}{}{}}{{{f{{C@n{ce}}}}}{{C@n{ce}}}{}{}}{{{f{{CCb{ce}}}}}{{CCb{ce}}}{}{}}{{{f{{CAj{ce}}}}}{{CAj{ce}}}{}{}}{{{f{{CA`{ce}}}}}{{CA`{ce}}}{}{}}{{f{f{bc}}}j{}}0000{fj}0000{{}{{BNj{ce}}}{}{}}{{}{{BNh{ce}}}{}{}}{{}{{BNl{ceg}}}{}{}{JbGbACb}}{{}{{C@n{ce}}}{}{}}{{}{{CCb{ce}}}{}{}}{{}{{CCf{ce}}}{}{}}{{}{{C@f{ceg}}}{}{}{JbGbACb}}{{}{{C@j{ceg}}}{}{}{JbGbACb}}{{}{{CAj{ce}}}{}{}}{{}{{CAn{ce}}}{}{}}{{{f{{CBj{ce}}}}}{{f{Ll}}}{JnFl}Jn}{{{f{b{BNl{ceg}}}}}j{}{}{JbACb}}`{{{f{{BLl{ceg}}}}{f{bK`}}}{{n{jKb}}}{JnFl}Jn{JbACb}}{{{f{{CCj{ceg}}}}{f{bK`}}}{{n{jKb}}}{JnFl}{}{JbACb}}{{{f{{BMh{ceg}}}}{f{bK`}}}{{n{jKb}}}{JnFl}Jn{JbACb}}{{{f{{CBj{ceg}}}}{f{bK`}}}{{n{jKb}}}{JnFl}Jn{JbACb}}0{{{f{{BNj{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{BNh{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{BNl{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{JbACb}}{{{f{{C@n{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{CCb{ce}}}}{f{bK`}}}{{n{jKb}}}{}Jn}{{{f{{CCf{ce}}}}{f{bK`}}}{{n{jKb}}}{}Jn}{{{f{{C@f{ceg}}}}{f{bK`}}}{{n{jKb}}}Jn{}{JbACb}}{{{f{{C@j{ceg}}}}{f{bK`}}}{{n{jKb}}}{}Jn{JbACb}}{{{f{{CAj{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{CAn{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{BM`{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{{CA`{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{CAd{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{}}{{{f{{CCh{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{}}{cc{}}00000000000000000{{{f{{BMh{ceg}}}}}{{f{e}}}Fl{}{JbACb}}{{{f{b{BMh{ceg}}}}}{{f{be}}}Fl{}{JbACb}}{{{CCj{ceg}}e}{{f{be}}}Fl{}{JbACb}}{{{f{b{BMh{ceg}}}}e}eFl{}{JbACb}}{{{f{b{CAd{ceg}}}}ce}{{n{jCCl}}}Fl{}{JbACb}}{{{f{b{CCh{ceg}}}}ce}{{n{jCCl}}}Fl{}{JbACb}}{{{f{b{CAd{ceg}}}}ce}jFl{}{JbACb}}{{{f{b{CCh{ceg}}}}ce}jFl{}{JbACb}}3210{{}c{}}0000000000000000000000000000{{{CCj{ceg}}}cFl{}{JbACb}}{{{BMh{ceg}}}{{f{be}}}Fl{}{JbACb}}{{{f{{BLl{ceg}}}}}{{f{c}}}Fl{}{JbACb}}{{{f{{CCj{ceg}}}}}{{f{c}}}Fl{}{JbACb}}{{{f{{BMh{ceg}}}}}{{f{c}}}Fl{}{JbACb}}{{{BNj{ce}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}{{{BNh{ce}}}{{Df{{G`{{f{c}}{f{be}}}}}}}{}{}}{{{C@n{ce}}}{{Df{{f{c}}}}}{}{}}{{{CCb{ce}}}{{Df{{f{e}}}}}{}{}}{{{CCf{ce}}}{{Df{{f{be}}}}}{}{}}{{{C@f{ceg}}}{{Df{c}}}{}{}{JbACb}}{{{C@j{ceg}}}{{Df{e}}}{}{}{JbACb}}{{{CAj{ce}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}{{{CAn{ce}}}{{Df{{G`{{f{c}}{f{be}}}}}}}{}{}}{{{f{{BNj{ce}}}}}h{}{}}{{{f{{BNh{ce}}}}}h{}{}}{{{f{{BNl{ceg}}}}}h{}{}{JbACb}}{{{f{{C@n{ce}}}}}h{}{}}{{{f{{CCb{ce}}}}}h{}{}}{{{f{{CCf{ce}}}}}h{}{}}{{{f{{C@f{ceg}}}}}h{}{}{JbACb}}{{{f{{C@j{ceg}}}}}h{}{}{JbACb}}{{{BNj{ce}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}{{{BNh{ce}}}{{Df{{G`{{f{c}}{f{be}}}}}}}{}{}}{{{C@n{ce}}}{{Df{{f{c}}}}}{}{}}{{{C@f{ceg}}}{{Df{c}}}Fl{}{JbACb}}=<3210=<{{{f{b{BNj{ce}}}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}{{{f{b{BNh{ce}}}}}{{Df{{G`{{f{c}}{f{be}}}}}}}{}{}}{{{f{b{BNl{ceg}}}}}{{Df{{G`{ce}}}}}{}{}{JbACb}}{{{f{b{C@n{ce}}}}}{{Df{{f{c}}}}}{}{}}{{{f{b{CCb{ce}}}}}{{Df{{f{e}}}}}{}{}}{{{f{b{CCf{ce}}}}}{{Df{{f{be}}}}}{}{}}{{{f{b{C@f{ceg}}}}}{{Df{c}}}{}{}{JbACb}}{{{f{b{C@j{ceg}}}}}{{Df{e}}}{}{}{JbACb}}{{{f{b{CAj{ce}}}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}{{{f{b{CAn{ce}}}}}{{Df{{G`{{f{c}}{f{be}}}}}}}{}{}}{{{f{b{BM`{cegi}}}}}{{Df{{G`{ce}}}}}{}{}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}{JbACb}}{{{f{b{CA`{ce}}}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}{{{f{b{CAd{ceg}}}}}{{Df{{G`{{f{c}}{f{be}}}}}}}{}{}{}}{{{f{b{CCh{ceg}}}}}{{Df{{G`{{f{bc}}{f{be}}}}}}}{}{}{}}=<;:987654{{{BLl{ceg}}}{{f{be}}}FlGb{JbACb}}{{{BLl{ceg}}e}{{f{be}}}Fl{}{JbACb}}{{{BLl{ceg}}i}{{f{be}}}Fl{}{JbACb}{{Bf{}{{Ah{e}}}}}}{{{BLl{ceg}}i}{{f{be}}}Fl{}{JbACb}{{Bf{{f{c}}}{{Ah{e}}}}}}{{{f{{CA`{ce}}}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}65065765{{{BMh{ceg}}}eFl{}{JbACb}}{{{BMh{ceg}}}{{G`{ce}}}Fl{}{JbACb}}{{{f{b{CAd{ceg}}}}}{{Df{{G`{ce}}}}}Fl{}{JbACb}}{{{f{b{CCh{ceg}}}}}{{Df{{G`{ce}}}}}Fl{}{JbACb}}10{{{f{{BNj{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{BNh{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{BNl{ceg}}}}}{{G`{h{Df{h}}}}}{}{}{JbACb}}{{{f{{C@n{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{CCb{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{CCf{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{C@f{ceg}}}}}{{G`{h{Df{h}}}}}{}{}{JbACb}}{{{f{{C@j{ceg}}}}}{{G`{h{Df{h}}}}}{}{}{JbACb}}{{{f{{BM`{cegi}}}}}{{G`{h{Df{h}}}}}{}{}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}{JbACb}}{fc{}}0000{fI`}{c{{n{e}}}{}{}}00000000000000000{{}{{n{c}}}{}}00000000000000000{fOf}00000000000000000`{{{CAd{ceg}}}{{CCh{ceg}}}{}{}{}}`````````````{{{f{{CAf{ce}}}}}{{CAb{c}}}{}{}}{{{f{{CCn{ce}}}}}{{CAb{c}}}{}{}}{f{{f{c}}}{}}00000000000{{{f{b}}}{{f{bc}}}{}}00000000000{{{f{{BOd{c}}}}}{{BOd{c}}}{}}{{{f{{BKn{ce}}}}}{{BKn{ce}}}{}{JbACb}}{{{f{{CBf{c}}}}}{{CBf{c}}}{}}{{{f{{BMl{ce}}}}}{{BMl{ce}}}{}{JbACb}}{{{f{{CBn{c}}}}}{{CBn{c}}}{}}{{{f{CCl}}}CCl}{{{f{{CAl{c}}}}}{{CAl{c}}}{}}{{{f{{CAb{c}}}}}{{CAb{c}}}ACb}{{f{f{bc}}}j{}}0000000{fj}0000000{{}{{BOd{c}}}{}}{{}{{BOb{ce}}}{}{JbGbACb}}{{}{{CAl{c}}}{}}{{{f{CCl}}{f{CCl}}}Af}{{{f{{BOd{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BKn{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{JbACb}}{{{f{{CBf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BMl{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{JbACb}}{{{f{{CBn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BMd{ceg}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}{JbACb}}{{{f{{CAf{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{CCn{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{CCl}}{f{bK`}}}{{n{jKb}}}}0{{{f{{BOb{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{JnJbACb}}{{{f{{CAl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{CAb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{cc{}}00000000000{{{f{b{CAf{ce}}}}c}{{n{jCCl}}}Fl{JbACb}}{{{f{b{CCn{ce}}}}c}{{n{jCCl}}}Fl{JbACb}}{{{f{b{CAf{ce}}}}c}jFl{JbACb}}{{{f{b{CCn{ce}}}}c}jFl{JbACb}}3210{{}c{}}0000000000000000000{{{BOd{c}}}{{Df{{f{c}}}}}{}}{{{CAl{c}}}{{Df{{f{c}}}}}{}}{{{f{{BOd{c}}}}}h{}}{{{f{{BOb{ce}}}}}h{}{JbACb}}323{{{BKn{ce}}}{{Df{{f{c}}}}}Fl{JbACb}}{{{CBf{c}}}{{Df{{f{c}}}}}Fl}{{{BMl{ce}}}{{Df{{f{c}}}}}Fl{JbACb}}{{{CBn{c}}}{{Df{{f{c}}}}}Fl}6{{{f{b{BOd{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{BKn{ce}}}}}{{Df{{f{c}}}}}Fl{JbACb}}{{{f{b{CBf{c}}}}}{{Df{{f{c}}}}}Fl}{{{f{b{BMl{ce}}}}}{{Df{{f{c}}}}}Fl{JbACb}}{{{f{b{CBn{c}}}}}{{Df{{f{c}}}}}Fl}{{{f{b{BMd{ceg}}}}}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{JbACb}}{{{f{b{CAf{ce}}}}}{{Df{{f{c}}}}}{}{}}{{{f{b{CCn{ce}}}}}{{Df{{f{bc}}}}}{}{}}{{{f{b{BOb{ce}}}}}{{Df{c}}}{}{JbACb}}{{{f{b{CAl{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{CAb{c}}}}}{{Df{{f{c}}}}}{}}:2143{{{f{{CAb{c}}}}}{{Df{{f{c}}}}}{}}540541{{{f{b{CAf{ce}}}}}{{Df{c}}}Fl{JbACb}}{{{f{b{CCn{ce}}}}}{{Df{c}}}Fl{JbACb}}10{{{f{{BOd{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BKn{ce}}}}}{{G`{h{Df{h}}}}}Fl{JbACb}}{{{f{{CBf{c}}}}}{{G`{h{Df{h}}}}}Fl}{{{f{{BMl{ce}}}}}{{G`{h{Df{h}}}}}Fl{JbACb}}{{{f{{CBn{c}}}}}{{G`{h{Df{h}}}}}Fl}{{{f{{BMd{ceg}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{JbACb}}{{{f{{BOb{ce}}}}}{{G`{h{Df{h}}}}}{}{JbACb}}{fc{}}0000000{fI`}{c{{n{e}}}{}{}}00000000000{{}{{n{c}}}{}}00000000000{fOf}00000000000{{{CAf{ce}}}{{CCn{ce}}}{}{}}``````````````````````````{{{CD`{ceg}}i}{{CD`{ceg}}}{}{}{}{{Bf{{f{bc}}{f{be}}}}}}{{{BLj{ce}}g}{{BLj{ce}}}{}{}{{Bf{{f{be}}}}}}{f{{f{c}}}{}}000000000000000000{{{f{b}}}{{f{bc}}}{}}000000000000000000{{{f{{BN`{ce}}}}}{{BN`{ce}}}{}{}}{{{f{{C@l{ce}}}}}{{C@l{ce}}}{}{}}{{{f{{CC`{ce}}}}}{{CC`{ce}}}{}{}}{{f{f{bc}}}j{}}00{fj}00{{{BN`{ce}}}h{}{}}{{{BMn{ce}}}h{}{}}{{{BNb{ce}}}h{}{}}{{{C@l{ce}}}h{}{}}{{{CC`{ce}}}h{}{}}{{{CCd{ce}}}h{}{}}{{{C@d{ce}}}h{}{}}{{{C@h{ce}}}h{}{}}{{{f{{CBh{ce}}}}}{{f{Ll}}}JnJn}`{{{f{{BN`{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{BMn{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{BNb{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{C@l{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{CC`{ce}}}}{f{bK`}}}{{n{jKb}}}{}Jn}{{{f{{BL`{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{BLn{ceg}}}}{f{bK`}}}{{n{jKb}}}{}{}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{{CCd{ce}}}}{f{bK`}}}{{n{jKb}}}{}Jn}{{{f{{C@d{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{C@h{ce}}}}{f{bK`}}}{{n{jKb}}}{}Jn}{{{f{{CBb{ceg}}}}{f{bK`}}}{{n{jKb}}}{}{}{}}{{{f{{CD`{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{}}{{{f{{CDb{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{}}{{{f{{CDd{ceg}}}}{f{bK`}}}{{n{jKb}}}{}{}{}}{{{f{{CB`{ceg}}}}{f{bK`}}}{{n{jKb}}}{}{}{}}{{{f{{BLj{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{CDf{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{CDh{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{CBh{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}0{{{BN`{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{BMn{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{BNb{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{C@l{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{CC`{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{BL`{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{CCd{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{C@d{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{{{C@h{ce}}gi}g{}{}{}{{Aj{g}{{Ah{g}}}}}}{cc{}}000000000000000000{{{CBb{ceg}}A@`i}{{CD`{ceg}}}{}{}AEl{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{CB`{ceg}}A@`i}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}AEl{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{CBb{egi}}{f{c}}}{{CD`{egi}}}{AF`BK`Ad}{{C`{c}}}{}AEl}{{{CB`{egi}}{f{c}}}{{Df{{G`{{f{e}}{f{g}}}}}}}{AF`BK`Ad}{{C`{c}}}{}AEl}{{{CBb{egi}}A@`{f{c}}}{{CD`{egi}}}{BK`Ad}{{C`{c}}}{}AEl}{{{CB`{egi}}A@`{f{c}}}{{Df{{G`{{f{e}}{f{g}}}}}}}{AF`BK`Ad}{{C`{c}}}{}AEl}{{{f{{CDb{ceg}}}}}{{f{e}}}{}{}{}}{{{f{{CDf{ce}}}}}{{f{e}}}{}{}}{{{f{b{CDb{ceg}}}}}{{G`{{f{c}}{f{e}}}}}{}{}{}}{{{f{b{CDb{ceg}}}}}{{G`{{f{bc}}{f{be}}}}}{}{}{}}{{{f{b{CDb{ceg}}}}}{{f{be}}}{}{}{}}{{{f{b{CDf{ce}}}}}{{f{be}}}{}{}}{{{f{b{CDb{ceg}}}}e}e{}{}{}}{{{CDd{ceg}}ce}{{G`{{f{bc}}{f{be}}}}}AF`{}AEl}{{{f{b{CDf{ce}}}}e}e{}{}}{{{CDh{ce}}e}{{f{be}}}{}{}}{{{BLj{ce}}e}{{CDf{ce}}}{}{}}{{{CDh{ce}}e}{{CDf{ce}}}{}{}}{{{CDd{ceg}}A@`ce}{{G`{{f{bc}}{f{be}}}}}AF`{}AEl}{{{f{b{CDb{ceg}}}}c}c{}{}{}}{{}c{}}0000000000000000000000000000{{{CDb{ceg}}}{{f{bc}}}{}{}{}}{{{CDh{ce}}}c{}{}}{{{CDb{ceg}}}{{G`{{f{bc}}{f{be}}}}}{}{}{}}{{{CDb{ceg}}}{{f{be}}}{}{}{}}{{{CDf{ce}}}{{f{be}}}{}{}}{{{f{{CDb{ceg}}}}}{{f{c}}}{}{}{}}{{{f{{BLj{ce}}}}}{{f{c}}}{}{}}{{{f{{CDf{ce}}}}}{{f{c}}}{}{}}{{{f{{CDh{ce}}}}}{{f{c}}}{}{}}{{{f{b{CDb{ceg}}}}}{{f{bc}}}{}{}{}}{{{f{{BN`{ce}}}}}h{}{}}{{{f{{BMn{ce}}}}}h{}{}}{{{f{{BNb{ce}}}}}h{}{}}{{{f{{C@l{ce}}}}}h{}{}}{{{f{{CC`{ce}}}}}h{}{}}{{{f{{BL`{ce}}}}}h{}{}}{{{f{{CCd{ce}}}}}h{}{}}{{{f{{C@d{ce}}}}}h{}{}}{{{f{{C@h{ce}}}}}h{}{}}{{{f{b{BN`{ce}}}}}{{Df{{G`{{f{c}}{f{e}}}}}}}{}{}}{{{f{b{BMn{ce}}}}}{{Df{{G`{{f{c}}{f{be}}}}}}}{}{}}{{{f{b{BNb{ce}}}}}{{Df{{G`{ce}}}}}{}{}}{{{f{b{C@l{ce}}}}}{{Df{{f{c}}}}}{}{}}{{{f{b{CC`{ce}}}}}{{Df{{f{e}}}}}{}{}}{{{f{b{BL`{ce}}}}}{{Df{{G`{ce}}}}}{}{}}{{{f{b{BLn{ceg}}}}}{{Df{{G`{ce}}}}}{}{}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{b{CCd{ce}}}}}{{Df{{f{be}}}}}{}{}}{{{f{b{C@d{ce}}}}}{{Df{c}}}{}{}}{{{f{b{C@h{ce}}}}}{{Df{e}}}{}{}}{{{BLj{ce}}}{{f{be}}}{}Gb}{{{CD`{ceg}}ce}{{G`{{f{bc}}{f{be}}}}}AF`{}AEl}{{{BLj{ce}}e}{{f{be}}}{}{}}{{{CD`{ceg}}i}{{G`{{f{bc}}{f{be}}}}}AF`{}AEl{{Bf{}{{Ah{{G`{ce}}}}}}}}{{{BLj{ce}}g}{{f{be}}}{}{}{{Bf{}{{Ah{e}}}}}}{{{BLj{ce}}g}{{f{be}}}{}{}{{Bf{{f{c}}}{{Ah{e}}}}}}{{{CDb{ceg}}}e{}{}{}}{{{CDf{ce}}}e{}{}}{{{CDb{ceg}}}{{G`{ce}}}{}{}{}}{{{CDf{ce}}}{{G`{ce}}}{}{}}{{{CDf{ce}}e}{{G`{ce}}}{}{}}{{{CDf{ce}}}c{}{}}{{{f{{BN`{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{BMn{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{BNb{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{C@l{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{CC`{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{BL`{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{BLn{ceg}}}}}{{G`{h{Df{h}}}}}{}{}{{Aj{{f{c}}{f{be}}}{{Ah{Af}}}}}}{{{f{{CCd{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{C@d{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{{{f{{C@h{ce}}}}}{{G`{h{Df{h}}}}}{}{}}{fc{}}00{fI`}{c{{n{e}}}{}{}}000000000000000000{{}{{n{c}}}{}}000000000000000000{fOf}000000000000000000``````````{f{{f{c}}}{}}0000000{{{f{b}}}{{f{bc}}}{}}0000000{{{f{{BNn{c}}}}}{{BNn{c}}}{}}{{{f{{BMj{ce}}}}}{{BMj{ce}}}{}{}}{{{f{{BKl{ce}}}}}{{BKl{ce}}}{}{}}{{{f{{CBd{ce}}}}}{{CBd{ce}}}{}{}}{{{f{{CBl{ce}}}}}{{CBl{ce}}}{}{}}{{f{f{bc}}}j{}}0000{fj}0000{{{BNn{c}}}h{}}{{{BO`{c}}}h{}}{{{CBl{ce}}}h{BK`AF`}AEl}{{{f{{BNn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BO`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BLd{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BMb{ce}}}}{f{bK`}}}{{n{jKb}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{BMj{ce}}}}{f{bK`}}}{{n{jKb}}}{JnBK`AF`}AEl}{{{f{{BKl{ce}}}}{f{bK`}}}{{n{jKb}}}{JnBK`AF`}AEl}{{{f{{CBd{ce}}}}{f{bK`}}}{{n{jKb}}}{JnBK`AF`}AEl}{{{f{{CBl{ce}}}}{f{bK`}}}{{n{jKb}}}{JnBK`AF`}AEl}{{{BNn{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BO`{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BLd{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BMj{ce}}gi}g{BK`AF`}AEl{}{{Aj{g}{{Ah{g}}}}}}{{{BKl{ce}}gi}g{BK`AF`}AEl{}{{Aj{g}{{Ah{g}}}}}}{{{CBd{ce}}gi}g{BK`AF`}AEl{}{{Aj{g}{{Ah{g}}}}}}{{{CBl{ce}}gi}g{BK`AF`}AEl{}{{Aj{g}{{Ah{g}}}}}}{cc{}}0000000{{}c{}}000000000000000{{{f{{BNn{c}}}}}h{}}{{{f{{BO`{c}}}}}h{}}{{{f{{BLd{c}}}}}h{}}{{{f{b{BNn{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{BO`{c}}}}}{{Df{c}}}{}}{{{f{b{BLd{c}}}}}{{Df{c}}}{}}{{{f{b{BMb{ce}}}}}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BMj{ce}}}}}{{Df{{f{c}}}}}{BK`AF`}AEl}{{{f{b{BKl{ce}}}}}{{Df{{f{c}}}}}{BK`AF`}AEl}{{{f{b{CBd{ce}}}}}{{Df{{f{c}}}}}{BK`AF`}AEl}{{{f{b{CBl{ce}}}}}{{Df{{f{c}}}}}{BK`AF`}AEl}{{{f{{BNn{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BO`{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BLd{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BMb{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{BMj{ce}}}}}{{G`{h{Df{h}}}}}{BK`AF`}AEl}{{{f{{BKl{ce}}}}}{{G`{h{Df{h}}}}}{BK`AF`}AEl}{{{f{{CBd{ce}}}}}{{G`{h{Df{h}}}}}{BK`AF`}AEl}{{{f{{CBl{ce}}}}}{{G`{h{Df{h}}}}}{BK`AF`}AEl}{fc{}}0000{c{{n{e}}}{}{}}0000000{{}{{n{c}}}{}}0000000{fOf}0000000```````{{{f{{BKj{ce}}}}}{{BKh{ce}}}{}Jb}{{{f{{BKh{ce}}}}}{{f{{BJl{ce}}}}}{}Jb}{{{f{{BKj{ce}}}}}{{f{{BJl{ce}}}}}{}Jb}{{{f{{BKh{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{{BKj{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{b{BKj{ce}}}}}{{Df{{f{bc}}}}}{}Jb}{f{{f{c}}}{}}00000{{{f{b}}}{{f{bc}}}{}}00000{{{f{{BOh{c}}}}}{{BOh{c}}}{}}{{{f{{BKh{ce}}}}}{{BKh{ce}}}{}Jb}{{{f{{BOf{ce}}}}}{{BOf{ce}}}ACb{ACbJb}}{{f{f{bc}}}j{}}00{fj}0097{{}{{BOh{c}}}{}}{{}{{BOj{c}}}{}}{{}{{BOf{c}}}{}}{{{f{{BOh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BOj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BKh{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{BKj{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{BMf{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{bc}}}{{Ah{Af}}}}}}{{{f{{BOf{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{cc{}}00000{{{f{{BKh{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{{BKj{ce}}}}}{{Df{{f{c}}}}}{}Jb}{{{f{b{BKj{ce}}}}}{{Df{{f{bc}}}}}{}Jb}{{{f{{BKh{ce}}}}}{{Df{h}}}{}Jb}{{{f{{BKj{ce}}}}}{{Df{h}}}{}Jb}{{{f{b{BKj{ce}}}}c}j{}Jb}0{{}c{}}000000000{{{BOh{c}}}{{Df{{f{c}}}}}{}}{{{BOj{c}}}{{Df{{f{bc}}}}}{}}{{{f{b{BKh{ce}}}}}j{}Jb}{{{f{b{BKj{ce}}}}}j{}Jb}10{{{f{b{BOh{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{BOj{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{BMf{ceg}}}}}{{Df{c}}}{}{{Aj{{f{bc}}}{{Ah{Af}}}}}Jb}{{{f{b{BOf{ce}}}}}{{Df{c}}}{}Jb}320><><{{{f{b{BKj{ce}}}}}{{Df{c}}}{}Jb}0::0{{{f{b{BKj{ce}}}}}{{Df{{BJl{ce}}}}}{}{ACbJb}}{{{f{{BOh{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BOj{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BMf{ceg}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{bc}}}{{Ah{Af}}}}}Jb}{{{f{{BOf{ce}}}}}{{G`{h{Df{h}}}}}{}Jb}{{{f{b{BKj{c}}}}{BJl{c}}}j{}}0{{{f{b{BKj{ce}}}}}{{BJl{ce}}}{}{ACbJb}}0{fc{}}00{c{{n{e}}}{}{}}00000{{}{{n{c}}}{}}00000{fOf}00000`````{{{f{b{C@`{c}}}}h}{{n{j{l{h}}}}}{}}{{{f{b{BOn{c}}}}h}{{n{j{l{h}}}}}{}}{{{f{b{BOl{ce}}}}h}{{n{j{l{h}}}}}{}Jb}210{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000{{{f{{BOn{c}}}}}{{BOn{c}}}{}}{{{f{{BOl{ce}}}}}{{BOl{ce}}}ACb{ACbJb}}{{f{f{bc}}}j{}}0{fj}0{{{BOl{ce}}}h{}Jb}{{}{{C@`{c}}}{}}{{}{{BOn{c}}}{}}{{{f{b{BLf{ce}}}}}j{}Jb}{{{f{{BLf{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{C@`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BOn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BOl{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{C@`{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BOn{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BOl{ce}}gi}g{}Jb{}{{Aj{g}{{Ah{g}}}}}}{cc{}}000{{}c{}}0000000{{{f{{C@`{c}}}}}Af{}}{{{f{{BOn{c}}}}}Af{}}{{{f{{BOl{ce}}}}}Af{}Jb}{{{C@`{c}}}{{Df{{f{bc}}}}}{}}{{{BOn{c}}}{{Df{{f{c}}}}}{}}{{{BOl{ce}}}Df{}Jb}{{{f{{C@`{c}}}}}h{}}{{{f{{BOn{c}}}}}h{}}{{{f{b{BLf{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{C@`{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{BOn{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{BOl{ce}}}}}{{Df{c}}}{}Jb}3210{{{f{b{BOl{ce}}}}}{{n{FjFn}}}{}Jb}{{{C@`{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BOn{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BOl{ce}}gi}g{}Jb{}{{Aj{g}{{Ah{g}}}}}}{{{f{{BLf{ce}}}}}{{G`{h{Df{h}}}}}{}Jb}{{{f{{C@`{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BOn{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BOl{ce}}}}}{{G`{h{Df{h}}}}}{}Jb}{fc{}}0{{{f{b{C@`{c}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{BOn{c}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{BOl{ce}}}}gk}i{}Jb{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000432{fOf}000``````````{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{BCj}}}BCj}{{f{f{bc}}}j{}}{fj}{{{f{BCj}}{f{BCj}}}Cd}{{{f{BCj}}}{{f{Ll}}}}{{{f{BCj}}{f{BCj}}}Af}{{{f{BCj}}{f{bK`}}}{{n{jKb}}}}0{cDl{}}{cc{}}{Jjc{}}{JjBCj}{{{f{BCj}}{f{bc}}}jAEn}3{Efc{}}{{}c{}}{{{f{BCj}}{f{BCj}}}{{Df{Cd}}}}{BCjCDj}{fc{}}{fI`}{c{{n{{If{}{{Id{e}}}}e}}}{}{}}{c{{n{e}}}{}{}}{{{Ih{}{{Id{c}}}}}{{n{ec}}}{}{}}{{}{{n{c}}}{}}{fOf}``{{}Gb}`````````{{}CDl}{{}CDn}{f{{f{c}}}{}}000000{{{f{b}}}{{f{bc}}}{}}000000{{{f{CE`}}}CE`}{{f{f{bc}}}j{}}{fj}`{{}{{n{BDnBFb}}}}0{{{f{CE`}}}{{f{Ll}}}}{{{f{CEb}}}{{f{Ll}}}}{{{f{CE`}}{f{CE`}}}Af}{{{f{CEd}}{f{bK`}}}{{n{jKb}}}}{{{f{CEf}}{f{bK`}}}{{n{jKb}}}}{{{f{CEh}}{f{bK`}}}{{n{jKb}}}}{{{f{CDl}}{f{bK`}}}{{n{jKb}}}}{{{f{CDn}}{f{bK`}}}{{n{jKb}}}}{{{f{CE`}}{f{bK`}}}{{n{jKb}}}}0{{{f{CEb}}{f{bK`}}}{{n{jKb}}}}0{cc{}}000000{{}{{Df{BDn}}}}{{}c{}}00000000000{{{f{CDl}}}Af}{{{f{CDn}}}Af}{e{{n{BE`CEb}}}{{B`{BDj}}}{{Bj{}{{A`{c}}}}}}{{{f{CDl}}}h}{{{f{CDn}}}h}{{{f{bCEd}}}{{Df{{G`{I`I`}}}}}}{{{f{bCEf}}}{{Df{{G`{BE`BE`}}}}}}{{{f{bCEh}}}{{Df{BDn}}}}{{{f{bCDl}}}{{Df{I`}}}}{{{f{bCDn}}}{{Df{BE`}}}}10{cj{{B`{BDj}}}}{c{{n{jBFb}}}{{B`{BDl}}}}{{ce}j{{B`{BDj}}}{{B`{BDj}}}}{{{f{CEd}}}{{G`{h{Df{h}}}}}}{{{f{CEf}}}{{G`{h{Df{h}}}}}}{{{f{CEh}}}{{G`{h{Df{h}}}}}}{{{f{CDl}}}{{G`{h{Df{h}}}}}}{{{f{CDn}}}{{G`{h{Df{h}}}}}}{{{f{c}}}CEh{{B`{BDj}}Ad}}{{}BDn}{fc{}}{fI`}0{c{{n{e}}}{}{}}000000{{}{{n{c}}}{}}000000{fOf}000000{c{{n{I`CE`}}}{{B`{BDj}}}}{c{{Df{BE`}}}{{B`{BDj}}}}{{}CEd}{{}CEf}```````````{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{{f{ADd}}}{{Df{{f{ADd}}}}}}{{{f{ADd}}}{{f{Ll}}}}{{{Mj{ADd}}}{{n{{Mj{c}}{Mj{ADd}}}}}ADd}00{{{f{bADd}}}{{Df{{f{bc}}}}}ADd}00{{{f{ADd}}}{{Df{{f{c}}}}}ADd}00{{{f{{CEj{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{CEj{c}}}}{f{bK`}}}{{n{jKb}}}ADd}{{{f{ADh}}{f{bK`}}}{{n{jKb}}}}{cc{}}{c{{CEj{c}}}ADd}{Jjc{}}{{}c{}}{{{f{ADd}}}Af}00{c{{CEj{c}}}{}}{{{CEj{c}}Af}{{CEj{c}}}{}}{{{f{ADd}}{f{bADh}}}j}{{{f{bADh}}{f{c}}}{{f{bADh}}}Ad}{{{f{bADh}}e}{{f{bADh}}}Ad{{Bf{}{{Ah{{f{c}}}}}}}}{{{f{bADh}}c}{{f{bADh}}}{}}{{{f{bADh}}e}{{f{bADh}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{c}}}{{Df{{f{e}}}}}{ADdAd}Ad}{{{f{c}}}{{Df{e}}}{ADdAd}{}}7{{{f{ADd}}}{{Df{{f{ADd}}}}}}{{{f{ADd}}}ADf}{fI`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{fOf}0{{{f{ADh}}}Af}0```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{f{bCEl}}}cCEn}{{{f{BDj}}}{{f{{Jd{In}}}}}}{{{f{BEd}}}{{f{{Jd{In}}}}}}{{{f{CF`}}}{{f{{Jd{In}}}}}}1{{{f{BEd}}}{{f{BEf}}}}3{{{f{BE`}}}{{f{BDj}}}}{{{f{BEf}}}ABb}{{{f{BE`}}}{{f{BDl}}}}2{{{f{BDj}}}{{f{BDj}}}}{{{f{BDj}}}{{f{BDl}}}}5{{{f{BEf}}}{{f{BEf}}}}{{{f{bCEl}}}CFb}{f{{f{c}}}{}}7008000000000{{{f{b}}}{{f{bc}}}{}}00000000000{{{f{BEf}}}ADj}```````````````{{{f{BE`}}}h}{{{f{bBE`}}}j}{{{f{BE`}}}BE`}{{{f{BEd}}}BEd}{{{f{CFd}}}CFd}{{{f{CF`}}}CF`}{{{f{CFf}}}CFf}{{{f{CFh}}}CFh}{{{f{CFj}}}CFj}{{{f{CEl}}}CEl}{{{f{bBE`}}{f{BE`}}}j}{{f{f{bc}}}j{}}{{{f{BDj}}{f{bBE`}}}j}1111{{{f{BEf}}{f{bBEd}}}j}222{fj}{{{f{BDj}}BDj}j}1111{{{f{BEf}}BEf}j}222{{{f{BE`}}{f{BE`}}}Cd}{{{f{BDj}}{f{BDj}}}Cd}{{{f{BEd}}{f{BEd}}}Cd}{{{f{BEf}}{f{BEf}}}Cd}{{{f{BEf}}}h}{{}BE`}{{}{{f{BDj}}}}{{}BEd}{{}{{f{BEf}}}}{{{f{BE`}}}{{f{BDj}}}}{{{f{BEd}}}{{f{BEf}}}}{{{f{CFb}}}{{f{CEl}}}}{{{f{bBE`}}}{{f{bBDj}}}}{{{f{bCFb}}}{{f{bCEl}}}}{{{f{CFd}}}{{f{Ll}}}}{{{f{CFf}}}{{f{Ll}}}}{{{f{CFh}}}{{f{Ll}}}}{{{f{BDj}}}CFl}{{{f{bBEd}}}j}{{{f{bCEl}}}j}{{{f{BE`}}{f{{f{BDj}}}}}Af}{{{f{BE`}}{f{BDn}}}Af}{{{f{BE`}}{f{{f{Ll}}}}}Af}{{{f{BE`}}{f{Ll}}}Af}{{{f{BE`}}{f{BE`}}}Af}{{{f{BE`}}{f{{BDh{BDl}}}}}Af}{{{f{BE`}}{f{{f{BDl}}}}}Af}{{{f{BE`}}{f{BDl}}}Af}{{{f{BE`}}{f{BDj}}}Af}{{{f{BE`}}{f{{BDh{BDj}}}}}Af}{{{f{BDj}}{f{BE`}}}Af}{{{f{BDj}}{f{BDn}}}Af}{{{f{BDj}}{f{Ll}}}Af}{{{f{{f{BDj}}}}{f{BDn}}}Af}{{{f{{f{BDj}}}}{f{BE`}}}Af}{{{f{BDj}}{f{BDj}}}Af}{{{f{BDj}}{f{BDl}}}Af}{{{f{{f{BDj}}}}{f{BDl}}}Af}{{{f{{f{BDj}}}}{f{{BDh{BDj}}}}}Af}{{{f{BDj}}{f{{f{BDl}}}}}Af}{{{f{BDj}}{f{{BDh{BDj}}}}}Af}{{{f{BDj}}{f{{BDh{BDl}}}}}Af}{{{f{{f{BDj}}}}{f{{BDh{BDl}}}}}Af}{{{f{BEd}}{f{BEd}}}Af}{{{f{CFd}}{f{CFd}}}Af}{{{f{CF`}}{f{CF`}}}Af}{{{f{CFf}}{f{CFf}}}Af}{{{f{BEf}}{f{BEf}}}Af}{{{f{CFh}}{f{CFh}}}Af}{{{f{CFj}}{f{CFj}}}Af}{{{f{BDj}}c}Af{{B`{BDj}}}}{{{f{bBE`}}c}j{{Bj{}{{A`{{BDh{BDj}}}}}}}}{{{f{bBE`}}c}j{{Bj{}{{A`{{f{BDj}}}}}}}}{{{f{bBE`}}c}j{{Bj{}{{A`{BE`}}}}}}{{{f{BE`}}{f{bK`}}}{{n{jKb}}}}{{{f{BDj}}{f{bK`}}}{{n{jKb}}}}{{{f{CFn}}{f{bK`}}}{{n{jKb}}}}{{{f{BEd}}{f{bK`}}}{{n{jKb}}}}{{{f{CFd}}{f{bK`}}}{{n{jKb}}}}0{{{f{CF`}}{f{bK`}}}{{n{jKb}}}}0{{{f{CFf}}{f{bK`}}}{{n{jKb}}}}0{{{f{BEf}}{f{bK`}}}{{n{jKb}}}}{{{f{CFh}}{f{bK`}}}{{n{jKb}}}}0{{{f{CFj}}{f{bK`}}}{{n{jKb}}}}0{{{f{CEl}}{f{bK`}}}{{n{jKb}}}}{{{f{CFb}}{f{bK`}}}{{n{jKb}}}}{BDnBE`}{cc{}}{I`BE`}{{{Mj{BDj}}}BE`}{{{f{c}}}BE`{{B`{BDj}}Ad}}{{{BDh{BDj}}}BE`}4{{{BDh{BEf}}}BEd}5{{{Mj{BEf}}}BEd}{{{BEb{{l{In}}}}}BEd}{{{f{BEf}}}BEd}8888888{{{f{{Jd{In}}}}}{{f{BDj}}}}{{{f{{Jd{In}}}}}{{n{{f{BEf}}CFj}}}}{{{f{{Jd{In}}}}}{{n{{f{BEf}}CFh}}}}{{{f{{Jd{In}}}}}{{f{BEf}}}}{{{BEb{In}}}BE`}4{cBE`{{Bj{}{{A`{{BDh{BDj}}}}}}}}{cBE`{{Bj{}{{A`{{f{BDj}}}}}}}}{cBE`{{Bj{}{{A`{BE`}}}}}}{ABb{{f{BEf}}}}{ABbBEd}{{{f{Ll}}}{{n{BE`}}}}6{{{BEb{In}}}BEd}{{{BEb{In}}}{{n{BEdCF`}}}}1{{{f{BE`}}{f{BE`}}}Af}{{{f{BDj}}{f{BDj}}}Af}10{{{f{BE`}}{f{bc}}}jAEn}{{{f{BDj}}{f{bc}}}jAEn}{{{f{BEd}}{f{bc}}}jAEn}{{{f{BEf}}{f{bc}}}jAEn}{{{f{BE`}}CG`}{{f{BDj}}}}{{{f{BEd}}CG`}{{f{BEf}}}}{{{f{BEf}}{AOh{h}}}{{f{BEf}}}}{{{f{bBE`}}CG`}{{f{bBDj}}}}{{}c{}}000000000{BEd{{Mj{BEf}}}}{BE`{{Mj{BDj}}}}{BEd{{BEb{In}}}}{CF`{{BEb{In}}}}1{{{Mj{BEf}}}BEd}{CFfBEd}{BE`{{BEb{In}}}}{{{Mj{BDj}}}BE`}{BEdABb}{BE`{{n{I`BE`}}}}{BEd{{n{I`CFf}}}}4{CFd{{BEb{In}}}}{{{f{BDj}}}Af}0{{{f{BEf}}}Af}{{{f{BE`}}{f{BE`}}}Af}{{{f{BDj}}{f{BDj}}}Af}{BE`{{f{bBDj}}}}{{{f{BDj}}}h}32{{{f{bBDj}}}j}0{{}BE`}{{{f{c}}}{{f{BDj}}}{{B`{BDj}}Ad}}{c{{n{BEdCFd}}}{{Ef{{BEb{In}}}}}}{{{f{CFd}}}h}`{{{f{BE`}}{f{{BDh{BDj}}}}}{{Df{Cd}}}}{{{f{BE`}}{f{BDj}}}{{Df{Cd}}}}{{{f{BE`}}{f{{BDh{BDl}}}}}{{Df{Cd}}}}{{{f{BE`}}{f{{f{BDj}}}}}{{Df{Cd}}}}{{{f{BE`}}{f{BDn}}}{{Df{Cd}}}}{{{f{BE`}}{f{Ll}}}{{Df{Cd}}}}{{{f{BE`}}{f{BDl}}}{{Df{Cd}}}}{{{f{BE`}}{f{{f{BDl}}}}}{{Df{Cd}}}}{{{f{BE`}}{f{BE`}}}{{Df{Cd}}}}{{{f{BDj}}{f{{BDh{BDl}}}}}{{Df{Cd}}}}{{{f{{f{BDj}}}}{f{BDn}}}{{Df{Cd}}}}{{{f{{f{BDj}}}}{f{{BDh{BDl}}}}}{{Df{Cd}}}}{{{f{BDj}}{f{{f{BDl}}}}}{{Df{Cd}}}}{{{f{{f{BDj}}}}{f{BE`}}}{{Df{Cd}}}}{{{f{BDj}}{f{{BDh{BDj}}}}}{{Df{Cd}}}}{{{f{{f{BDj}}}}{f{BDl}}}{{Df{Cd}}}}{{{f{BDj}}{f{BDl}}}{{Df{Cd}}}}{{{f{BDj}}{f{BE`}}}{{Df{Cd}}}}{{{f{{f{BDj}}}}{f{{BDh{BDj}}}}}{{Df{Cd}}}}{{{f{BDj}}{f{Ll}}}{{Df{Cd}}}}{{{f{BDj}}{f{BDj}}}{{Df{Cd}}}}{{{f{BDj}}{f{BDn}}}{{Df{Cd}}}}{{{f{BEd}}{f{BEd}}}{{Df{Cd}}}}{{{f{BEf}}{f{BEf}}}{{Df{Cd}}}}{{{f{bBE`}}c}j{{B`{BDj}}}}{{{f{bBE`}}h}j}00{{{f{bBE`}}}j}{{{f{BDj}}c}{{f{BDj}}}{{Mh{h}}}}{{{f{CFf}}}{{Df{{f{ADd}}}}}}{{{f{BDj}}}BE`}0{{{f{BEf}}}{{f{{Jd{In}}}}}}01{fc{}}20000{{{f{BEf}}}BEd}111{{{f{BDj}}}{{Df{{f{Ll}}}}}}{{{f{BEf}}}{{n{{f{Ll}}N`}}}}{fI`}0000{{{f{BDj}}}{{BDh{Ll}}}}{{{f{BEf}}}{{BDh{Ll}}}}{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}000000000{{{f{bBE`}}h}{{n{jBKd}}}}0{fOf}00000000000{{{f{CFf}}}N`}{hBE`}{{{f{CEl}}e}c{}{{Bf{CFb}{{Ah{c}}}}}}{{{f{bBE`}}{f{Ll}}}{{n{jKb}}}}``````````{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{CFl}}{f{bK`}}}{{n{jKb}}}}0{cc{}}{{}c{}}?<;9```````````````````````````{{{f{K`}}}{{Df{CGb}}}}{{{f{K`}}}Af}{{{f{Ld}}}{{Df{{f{Ll}}}}}}77777777776666666666{{{f{CGb}}}CGb}{{{f{Kb}}}Kb}{{{f{Ld}}}Ld}{{f{f{bc}}}j{}}00{fj}00{{{f{Kb}}{f{Kb}}}Cd}{{{f{bK`}}}CGd}{{{f{bK`}}}CGf}{{{f{bK`}}}CGh}{{{f{bK`}}{f{Ll}}}CGj}{{{f{bK`}}{f{Ll}}}CGl}{{}Kb}{{{f{Kb}}}{{f{Ll}}}}{{{f{bCGh}}e}{{f{bCGh}}}Jn{{Bj{}{{A`{c}}}}}}{{{f{bCGd}}e}{{f{bCGd}}}Jn{{Bj{}{{A`{c}}}}}}{{{f{bCGf}}g}{{f{bCGf}}}JnJn{{Bj{}{{A`{{G`{ce}}}}}}}}{{{f{bCGh}}{f{Jn}}}{{f{bCGh}}}}{{{f{bCGd}}{f{Jn}}}{{f{bCGd}}}}{{{f{bCGf}}{f{Jn}}{f{Jn}}}{{f{bCGf}}}}{{{f{bCGh}}c}{{f{bCGh}}}{{Bf{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{bCGd}}c}{{f{bCGd}}}{{Bf{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{CGb}}{f{CGb}}}Af}{{{f{Kb}}{f{Kb}}}Af}{{{f{bCGj}}{f{Ll}}{f{Jn}}}{{f{bCGj}}}}{{{f{bCGl}}{f{Jn}}}{{f{bCGl}}}}{{{f{bCGj}}{f{Ll}}c}{{f{bCGj}}}{{Bf{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{bCGl}}c}{{f{bCGl}}}{{Bf{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{K`}}}Lj}{{{f{bCGj}}}{{n{jKb}}}}{{{f{bCGl}}}{{n{jKb}}}}{{{f{bCGh}}}{{n{jKb}}}}{{{f{bCGd}}}{{n{jKb}}}}{{{f{bCGf}}}{{n{jKb}}}}43210{{{f{K`}}}Oh}{{{f{Jn}}{f{bK`}}}{{n{jKb}}}}{{{f{Kd}}{f{bK`}}}{{n{jKb}}}}{{{f{Kf}}{f{bK`}}}{{n{jKb}}}}{{{f{Kh}}{f{bK`}}}{{n{jKb}}}}{{{f{Kj}}{f{bK`}}}{{n{jKb}}}}{{{f{Kl}}{f{bK`}}}{{n{jKb}}}}{{{f{Kn}}{f{bK`}}}{{n{jKb}}}}{{{f{L`}}{f{bK`}}}{{n{jKb}}}}{{{f{Lb}}{f{bK`}}}{{n{jKb}}}}{{{f{{Lf{c}}}}{f{bK`}}}{{n{jKb}}}{{Bb{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}0{{{f{CGb}}{f{bK`}}}{{n{jKb}}}}{{{f{Kb}}{f{bK`}}}{{n{jKb}}}}0{{{f{Ld}}{f{bK`}}}{{n{jKb}}}}0{LdI`}{cc{}}000000000{c{{Lf{c}}}{{Bb{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{Kb}}{f{bc}}}jAEn}{{}c{}}000000000{{{f{bCGf}}{f{Jn}}}{{f{bCGf}}}}{{{f{bCGf}}c}{{f{bCGf}}}{{Bf{{f{bK`}}}{{Ah{{n{jKb}}}}}}}}{{{f{bK`}}{f{Ll}}}{{n{jKb}}}}{{{f{bK`}}Af{f{Ll}}{f{Ll}}}{{n{jKb}}}}{{{f{Kb}}{f{Kb}}}{{Df{Cd}}}}{{{f{K`}}}{{Df{h}}}}{{{f{K`}}}Af}00{fc{}}00{fI`}00{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}000000000{fOf}000000000;:6{{{f{bLh}}Ld}{{n{jKb}}}}{{{f{bLh}}Lj}{{n{jKb}}}}{{{f{bK`}}Lj}{{n{jKb}}}}2{{{f{bK`}}Ld}{{n{jKb}}}}0{{{f{bLh}}{f{Ll}}}{{n{jKb}}}}>>`````````{{{f{CGn}}}{{n{CH`BFb}}}}{{{f{bCHb}}Af}{{f{bCHb}}}}{{{f{CHd}}}BEh}{{{f{CHd}}}Oj}{{{f{CGn}}}{{f{CHf}}}}{{{f{CGn}}}A@b}0{{{f{CGn}}}A@`}0{f{{f{c}}}{}}00000000{{{f{b}}}{{f{bc}}}{}}00000000{c{{n{BDnBFb}}}{{B`{BDl}}}}{{{f{CGn}}}CGn}{{{f{CHb}}}CHb}{{{f{CHh}}}CHh}{{{f{CHj}}}CHj}{{{f{CHl}}}CHl}{{f{f{bc}}}j{}}0000{fj}0000{{ce}{{n{A@`BFb}}}{{B`{BDl}}}{{B`{BDl}}}}{c{{n{CHdBFb}}}{{B`{BDl}}}}{{{f{bCHb}}Af}{{f{bCHb}}}}{{{f{CHn}}c}{{n{jBFb}}}{{B`{BDl}}}}{c{{n{jBFb}}}{{B`{BDl}}}}032{{{f{CGn}}}{{n{CH`BFb}}}}{{{f{CGn}}}A@b}0{{{f{bCHb}}Oj}{{f{bCHb}}}}{{}CHh}{{{f{CGn}}}A@`}{{{f{CHj}}{f{CHj}}}Af}{{{f{CHl}}{f{CHl}}}Af}{c{{n{AfBFb}}}{{B`{BDl}}}}{{{f{CI`}}}BE`}{{{f{CI`}}}{{f{BDj}}}}{{{f{CI`}}}{{n{CHlBFb}}}}{{{f{CGn}}}CHl}{{{f{bCHd}}}{{n{jBFb}}}}{{{f{b{f{CHd}}}}}{{n{jBFb}}}}{{{f{CHd}}{f{bK`}}}{{n{jKb}}}}{{{f{CI`}}{f{bK`}}}{{n{jKb}}}}{{{f{CGn}}{f{bK`}}}{{n{jKb}}}}{{{f{CIb}}{f{bK`}}}{{n{jKb}}}}{{{f{CHb}}{f{bK`}}}{{n{jKb}}}}{{{f{CHh}}{f{bK`}}}{{n{jKb}}}}{{{f{CHj}}{f{bK`}}}{{n{jKb}}}}{{{f{CHl}}{f{bK`}}}{{n{jKb}}}}{{{f{CHn}}{f{bK`}}}{{n{jKb}}}}{cc{}}{CIdCHd}11111111{OhCHj}{OjCHd}{{{f{CGn}}}Oh}{{ce}{{n{jBFb}}}{{B`{BDl}}}{{B`{BDl}}}}{{{f{CHl}}{f{bc}}}jAEn}{{{f{CI`}}}A@`}{{{f{CGn}}}A@`}{{}c{}}000000000{CHdOj}{{{f{CHl}}}Af}0{{{f{CGn}}}Af}1101{{{f{{f{CHd}}}}}Af}{{{f{CHd}}}Af}3230016{c{{n{CGnBFb}}}{{B`{BDl}}}}{{{f{CHd}}}{{n{CGnBFb}}}}{{{f{CI`}}}{{n{CGnBFb}}}}={{{f{bCHb}}Oh}{{f{bCHb}}}}{{{f{CHj}}}Oh}{{{f{bCHn}}Oh}{{f{bCHn}}}}{{{f{CGn}}}{{n{CH`BFb}}}}{{{f{CGn}}}A@b}0{{}CHb}{{}CHh}{{}CHn}{{{f{bCIb}}}{{Df{{n{CI`BFb}}}}}}{{{f{CGn}}}A@`}{c{{n{CHdBFb}}}{{B`{BDl}}}}{{{f{CHb}}c}{{n{CHdBFb}}}{{B`{BDl}}}}6{{{f{CI`}}}BDn}{{{f{CGn}}}CHj}4{c{{n{{BEb{In}}BFb}}}{{B`{BDl}}}}{{{f{bCHd}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CHd}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCHb}}Af}{{f{bCHb}}}}{{{f{CHd}}{f{b{Jd{In}}}}A@`}{{n{hBFb}}}}{{{f{b{f{CHd}}}}BGb}{{n{jBFb}}}}{{{f{bCHd}}BGb}{{n{jBFb}}}}{c{{n{CIbBFb}}}{{B`{BDl}}}}{c{{n{BDnBFb}}}{{B`{BDl}}}}{{{f{bCHd}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{b{f{CHd}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{c{{n{I`BFb}}}{{B`{BDl}}}}{{{f{bCHd}}{f{bI`}}}{{n{hBFb}}}}{{{f{b{f{CHd}}}}{f{bI`}}}{{n{hBFb}}}}{{{f{b{f{CHd}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bCHd}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{CHd}}{f{b{Jd{BGd}}}}A@`}{{n{hBFb}}}}{{{f{CHj}}}Af}{{{f{bCHn}}Af}{{f{bCHn}}}}{c{{n{jBFb}}}{{B`{BDl}}}}00{{ce}{{n{jBFb}}}{{B`{BDl}}}{{B`{BDl}}}}{{{f{b{f{CHd}}}}BGf}{{n{A@`BFb}}}}{{{f{bCHd}}BGf}{{n{A@`BFb}}}}{{CHhCH`}CHh}{{{f{CHd}}A@`}{{n{jBFb}}}}{{{f{bCHj}}Oh}j}{{{f{CHd}}CH`}{{n{jBFb}}}}3{{cCHj}{{n{jBFb}}}{{B`{BDl}}}}{{{f{CHd}}CHj}{{n{jBFb}}}}{{{f{bCHj}}Af}j}{{{f{CHd}}CHh}{{n{jBFb}}}}{{{f{CGn}}}A@`};{{{f{CGn}}}A@b}011001{{{f{CGn}}}Oh}20112220{c{{n{CGnBFb}}}{{B`{BDl}}}}{{{f{CHd}}}{{n{jBFb}}}}0{fc{}}0000{{{f{bCHb}}Af}{{f{bCHb}}}}{{{f{CHd}}}{{n{CHdBFb}}}}{c{{n{e}}}{}{}}00000000{{}{{n{c}}}{}}00000000{fOf}000000008{{ce}{{n{jBFb}}}{{B`{BDl}}}{{B`{{Jd{In}}}}}}{{{f{bCHd}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CHd}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}7{{{f{CHd}}{f{{Jd{In}}}}A@`}{{n{hBFb}}}}{{{f{bCHd}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{CHd}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{CHd}}{f{{Jd{BGj}}}}A@`}{{n{hBFb}}}}```````````{c{{ADl{c}}}{}}{{{Gf{{f{b{AE`{}{{ADn{c}}}}}}}}}c{{El{}{{Ah{j}}}}}}{{}{{AEb{c}}}Ad}{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000{{{f{{AEd{c}}}}}{{AEd{c}}}{}}{{{f{{AEh{c}}}}}{{AEh{c}}}ACb}{{f{f{bc}}}j{}}0{fj}0{{{f{{AEb{c}}}}{f{bK`}}}{{n{jKb}}}Ad}{{{f{{AEd{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{AEf{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{AEh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{cc{}}000{{}c{}}000{{{Ej{}{{Ah{c}}{Eh{e}}}}}e{}{{El{}{{Ah{c}}}}}}{{}}000{{{AEh{c}}}c{}}`{{}{{AEd{c}}}{}}{{{Gf{{f{b{El{}{{Ah{c}}}}}}}}{f{bGh}}}{{Gj{c}}}{}}{{{Gf{{f{b{AEb{c}}}}}}{f{bGh}}}GjAd}{{{Gf{{f{b{AEd{c}}}}}}{f{bGh}}}{{Gj{c}}}{}}{{{Gf{{f{b{AEf{e}}}}}}{f{bGh}}}{{Gj{c}}}{}{{Aj{{f{bGh}}}{{Ah{{Gj{c}}}}}}}}{{{Gf{{f{b{AEh{c}}}}}}{f{bGh}}}{{Gj{c}}}{}}{e{{AEf{e}}}{}{{Aj{{f{bGh}}}{{Ah{{Gj{c}}}}}}}}{c{{AEh{c}}}{}}{fc{}}0{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{fOf}000`````````{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000{{{f{{AEl{}{{AEj{c}}}}}}}cAEn}{{{f{CIf}}}CIh}{{{f{{CIj{c}}}}}c{GbAEn}}{{{f{CIf}}}CIf}{{{f{CIh}}}CIh}{{{f{{CIj{c}}}}}{{CIj{c}}}{}}{{{f{CIl}}}CIl}{{f{f{bc}}}j{}}000{fj}000{{}CIf}{{}CIh}{{}{{CIj{c}}}{}}{{}CIl}{{{f{{CIj{c}}}}{f{{CIj{c}}}}}Af{}}{{{f{AEn}}}A@`}{{{f{CIh}}}A@`}{{{f{CIl}}}A@`}{{{f{CIf}}{f{bK`}}}{{n{jKb}}}}{{{f{CIh}}{f{bK`}}}{{n{jKb}}}}{{{f{{CIj{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{CIl}}{f{bK`}}}{{n{jKb}}}}{cc{}}000{{{f{AF`}}{f{bc}}}jAEn}{{{f{{AEl{}{{AEj{c}}}}}}e}A@`AEnAF`}{{{f{{Jd{AF`}}}}{f{bc}}}jAEn}{{}c{}}000{{}CIf}{{}CIh}{{}{{CIj{c}}}{}}{{}CIl}{{A@`A@`}CIl}{fc{}}000{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{fOf}000{{{f{bAEn}}{f{{Jd{In}}}}}j}{{{f{bCIh}}{f{{Jd{In}}}}}j}{{{f{bCIl}}{f{{Jd{In}}}}}j}{{{f{bAEn}}AFb}j}{{{f{bAEn}}AB`}j}{{{f{bAEn}}Oj}j}{{{f{bAEn}}A@b}j}{{{f{bAEn}}ABb}j}{{{f{bAEn}}AFd}j}{{{f{bAEn}}h}j}{{{f{bCIh}}{f{Ll}}}j}{{{f{bAEn}}{f{Ll}}}j}{{{f{bCIl}}{f{Ll}}}j}{{{f{bAEn}}ABn}j}{{{f{bAEn}}A@d}j}{{{f{bAEn}}Oh}j}{{{f{bAEn}}A@`}j}{{{f{bAEn}}In}j}8{Afj}{cc{}}0{{}j}{{}Jj}````````````0{{cc}{{G`{cAf}}}AFf}{{ce}g{}{}{{AFj{c}{{AFh{e}}}}}}{AFd}4446{ccAFf}00003333333333333333333333333333335555{{}cAFf}000111111111111111111116666{cjAFf}0002222222222222222222222222222222872{{}{{f{AFl}}}}{{{AFn{In}{{Ah{j}}}}In{AFn{InIn}{{Ah{j}}}}}Oj}{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}{{InInh}Oj}{{hh}In}{{Inhh}j}{{cgi}eBd{}{{Bf{c}{{Ah{e}}}}}{{Bf{c}{{Ah{e}}}}}}{hj}0{{AG`AG`}AG`}{{AA`AA`}AA`}{{AAhAAh}AAh}{{AAfAAf}AAf}<;:9{cOhAFf}0000{{{f{c}}}{}{}}{{}j}{{cc}cAFf}{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}321032104444{ceAFfAFf}4321{{AG`AG`AG`}AG`}{{AA`AA`AA`}AA`}{{AAhAAhAAh}AAh}{{AAfAAfAAf}AAf}99{cjAd}::::{cAfAFf}{AfAf};:98;:98;:98{{AG`AG`}AG`}{{AA`AA`}AA`}{{AAhAAh}AAh}{{AAfAAf}AAf}{{}h}04321`{{cc}{{G`{cAf}}}AFf}{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}{{}Af}{cj{}}{{ce}c{}{}}<;:9{{AG`Oj}AG`}{{AA`Oj}AA`}{{AAhOj}AAh}{{AAfOj}AAf}<{Ojj}000{{}In}{h}{{}c{}}{{}AFd}{{}h}{{{f{c}}{f{c}}}Af{}}3{AG`AG`}{AA`AA`}{AAhAAh}{AAfAAf}{{cOh}cAFf}043214321{cc{}}{{cc}cAFf}0{{Afcc}c{}}`7654997654{{cc}{{G`{cAf}}}AFf}{{cc}CdAFf}{ce{}{}}0:987{{}ABn}{{}{{f{Ll}}}}{{}j}{{}Af}{{}c{}}{cj{}}::::{{ce}cAFfAFf}0;{AfAf}{{}Jj}{{}h}{hj}06{{Inh}j}6{jh}0{{cc}cAFf}0028`{Afj}`{{jAGbAGd}j}{ce{}{}}0{c{{G`{cAf}}}{}}`{cc{}}={c{}{}}{{cAGbAGd}j{}}{{jOh}c{}}{AGfAGf}`{ch{}}5`{{ce}c{}{}}{{}}{cj{}}{{}AGf}{AGfAGb}`{{cOh}j{}}{c{{f{c}}}{}};4443`{AGfAGd}{{}AGd}{{}j}{AGhAGd}`25{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000{cc{}}000{{}c{}}000``{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{fOf}000{{cc}c{}}0{{ce}c{}{}}{ce{}{}}0770077772{{cc}e{}{}}1{{cOh}e{}{}}99999999{{ccc}c{}}55::{{ceg}c{}{}{}}33{{cOhe}c{}{}}44{{ceg}g{}{}{}}{{ceg}j{}{}{}}96>9{{ce}e{}{}}8{cAf{}}90991999;{cc{}}<<3{{cee}e{}{}}0=={{cce}g{}{}{}}>2<>```````````````````````````````````````````````````````````````````````````````{{{f{bBGd}}h}j}{{{f{bBGj}}h}j}{{{f{bBGb}}h}{{f{bBGb}}}}{{{f{b{f{b{Jd{BGd}}}}}}h}j}{{{f{b{f{b{Jd{BGj}}}}}}h}j}2{{{f{bBGb}}{f{{Jd{In}}}}}j}{{{f{CIn}}}BEh}{{{f{CJ`}}}BEh}{{{f{CJb}}}BEh}{{{f{CJd}}}BEh}{{{f{CJf}}}BEh}{{{f{CJh}}}BEh}{{{f{bBGb}}}{{f{b{Jd{{BCl{In}}}}}}}}{{{f{CIn}}}Oj}{{{f{CJ`}}}Oj}{{{f{CJb}}}Oj}{{{f{CJd}}}Oj}{{{f{CJf}}}Oj}{{{f{CJh}}}Oj}{f{{f{c}}}{}}00000000000000000000000000{{{f{b}}}{{f{bc}}}{}}00000000000000000000000000{{{f{{CJj{c}}}}}{{f{{Jd{In}}}}}Ad}{{{f{{CJl{c}}}}}{{f{{Jd{In}}}}}{BFdAd}}{{{f{bBFn}}}{{f{bBFn}}}}{{{f{bBFd}}}{{f{bBFd}}}}{BFn{{CJn{BFn}}}}{{{f{{CJj{c}}}}}hAd}{{{f{{CJl{c}}}}}h{BFdAd}}{{{f{CK`}}}h}{{{f{BGb}}}h}{{{f{BFb}}}{{Df{{f{ADd}}}}}}{{BFnc}{{CKb{BFnc}}}BFn}{{{f{bCK`}}}{{f{bCK`}}}}{{{f{{CKd{c}}}}}{{CKd{c}}}ACb}{{{f{CKf}}}CKf}{{{f{CKh}}}CKh}{{{f{CKj}}}CKj}{{{f{BGj}}}BGj}{{{f{BGf}}}BGf}{{{f{b{CKd{c}}}}{f{{CKd{c}}}}}jACb}{{f{f{bc}}}j{}}00000{fj}00000{{{f{CKf}}{f{CKf}}}Cd}{{{f{bBEn}}h}j}{{{f{b{CJj{c}}}}h}j{BFnAd}}{{{f{bCJ`}}h}j}{{{f{b{CKd{c}}}}h}j{{B`{{Jd{In}}}}}}{{{f{bCKh}}h}j}{{{f{b{CKb{ce}}}}h}jBEnBEn}{{{f{b{CKl{c}}}}h}jBEn}{{{f{bc}}{f{be}}}{{n{A@`BFb}}}{BFnAd}{BFdAd}}{{}{{CKd{c}}}Gb}{{}CKh}{{}CKj}{{{f{BGd}}}{{f{{Jd{In}}}}}}{{{f{BGj}}}{{f{{Jd{In}}}}}}{{{f{bBGd}}}{{f{b{Jd{In}}}}}}{{{f{CKn}}}{{f{Ll}}}}{{{f{BFb}}}{{f{Ll}}}}{{{f{{CL`{c}}}}}{{f{Ll}}}{B@fJn}}{BFb{{n{cBFb}}}{ADdB@fB@h}}{{{f{b{CJl{c}}}}}j{BFdAd}}9{{{f{bBGb}}}{{f{bBGb}}}}{{{f{{CKd{c}}}}{f{{CKd{c}}}}}AfADb}{{{f{CKf}}{f{CKf}}}Af}{{{f{BGf}}{f{BGf}}}Af}{{{f{{CL`{c}}}}}{{f{BFb}}}{}}{{{f{bBEn}}}{{n{{f{{Jd{In}}}}BFb}}}}{{{f{b{CJj{c}}}}}{{n{{f{{Jd{In}}}}BFb}}}{BFnAd}}{{{f{bCJ`}}}{{n{{f{{Jd{In}}}}BFb}}}}{{{f{b{CKd{c}}}}}{{n{{f{{Jd{In}}}}BFb}}}{{B`{{Jd{In}}}}}}{{{f{bCKh}}}{{n{{f{{Jd{In}}}}BFb}}}}{{{f{b{CKb{ce}}}}}{{n{{f{{Jd{In}}}}BFb}}}BEnBEn}{{{f{b{CKl{c}}}}}{{n{{f{{Jd{In}}}}BFb}}}BEn}{{{f{CK`}}}{{f{{Jd{In}}}}}}{{{f{bCK`}}}{{f{b{Jd{In}}}}}}{{{f{bBFd}}}{{n{jBFb}}}}{{{f{b{CJl{c}}}}}{{n{jBFb}}}{BFdAd}}{{{f{b{CLb{c}}}}}{{n{jBFb}}}{BFdAd}}{{{f{b{f{CJb}}}}}{{n{jBFb}}}}{{{f{bCJb}}}{{n{jBFb}}}}{{{f{bCJd}}}{{n{jBFb}}}}{{{f{bCJf}}}{{n{jBFb}}}}{{{f{b{f{CJf}}}}}{{n{jBFb}}}}{{{f{bCJh}}}{{n{jBFb}}}}{{{f{b{CKd{{BEb{Inc}}}}}}}{{n{jBFb}}}Jb}{{{f{b{CKd{{f{b{BEb{Inc}}}}}}}}}{{n{jBFb}}}Jb}{{{f{b{CKd{{f{b{Jd{In}}}}}}}}}{{n{jBFb}}}}{{{f{b{CKd{{Fj{In}}}}}}}{{n{jBFb}}}}{{{f{b{CKd{{Mj{{Jd{In}}c}}}}}}}{{n{jBFb}}}Jb}{{{f{bCKh}}}{{n{jBFb}}}}{{{f{b{f{CKh}}}}}{{n{jBFb}}}}{{{f{bCKj}}}{{n{jBFb}}}}{{{f{b{f{CKj}}}}}{{n{jBFb}}}}{{{f{bBGb}}}{{n{jBFb}}}}{{{f{{CJj{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{CJl{c}}}}{f{bK`}}}{{n{jKb}}}{BFdJnAd}}{{{f{CKn}}{f{bK`}}}{{n{jKb}}}}0{{{f{{CLb{c}}}}{f{bK`}}}{{n{jKb}}}{BFdJnAd}}{{{f{BFb}}{f{bK`}}}{{n{jKb}}}}0{{{f{CIn}}{f{bK`}}}{{n{jKb}}}}{{{f{CJ`}}{f{bK`}}}{{n{jKb}}}}{{{f{CJb}}{f{bK`}}}{{n{jKb}}}}{{{f{CJd}}{f{bK`}}}{{n{jKb}}}}{{{f{CJf}}{f{bK`}}}{{n{jKb}}}}{{{f{CJh}}{f{bK`}}}{{n{jKb}}}}{{{f{CLd}}{f{bK`}}}{{n{jKb}}}}{{{f{BGd}}{f{bK`}}}{{n{jKb}}}}{{{f{CK`}}{f{bK`}}}{{n{jKb}}}}{{{f{{CL`{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{CL`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{CKd{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{CKf}}{f{bK`}}}{{n{jKb}}}}0{{{f{CKh}}{f{bK`}}}{{n{jKb}}}}{{{f{CKj}}{f{bK`}}}{{n{jKb}}}}{{{f{BGj}}{f{bK`}}}{{n{jKb}}}}{{{f{BGf}}{f{bK`}}}{{n{jKb}}}}{{{f{{CKb{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{CKl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{CJn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{CLf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{CLh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{BGb}}{f{bK`}}}{{n{jKb}}}}{cc{}}0000{CKfBFb}{BKdBFb}{CFdBFb}{{{CL`{c}}}BFb{}}44444444{{{f{b{Jd{In}}}}}CK`}5{{{f{b{Jd{{BCl{In}}}}}}}CK`}6666666666666{OjBFb}{{{f{b{CJj{c}}}}}{{f{bc}}}Ad}{{{f{b{CJl{c}}}}}{{f{bc}}}{BFdAd}}{{{f{b{CLb{c}}}}}{{f{bc}}}BFd}{{{f{bBFb}}}{{Df{{f{bADd}}}}}}{{{f{b{CKd{c}}}}}{{f{bc}}}{}}{{{f{b{CKb{ce}}}}}{{G`{{f{bc}}{f{be}}}}}{}{}}{{{f{b{CKl{c}}}}}{{f{bc}}}{}}{{{f{{CJj{c}}}}}{{f{c}}}Ad}{{{f{{CJl{c}}}}}{{f{c}}}{BFdAd}}{{{f{{CLb{c}}}}}{{f{c}}}{BFdAd}}{{{f{BFb}}}{{Df{{f{ADd}}}}}}{{{f{{CKd{c}}}}}{{f{c}}}{}}{{{f{{CKb{ce}}}}}{{G`{{f{c}}{f{e}}}}}{}{}}{{{f{{CKl{c}}}}}{{f{c}}}{}}{{{f{bBEn}}}{{n{AfBFb}}}}{{{f{CKf}}{f{bc}}}jAEn}{{{f{CK`}}}h}{{{f{bBGb}}}{{f{b{Jd{In}}}}}}{{{f{BGb}}}{{f{{Jd{In}}}}}}{{}c{}}00000000000000000000000000{{{CL`{c}}}BFb{}}{{{CJj{c}}}cAd}{{{CJl{c}}}{{n{c{CL`{{CJl{c}}}}}}}BFd}{CKn{{BEb{In}}}}{{{CLb{c}}}{{n{c{CL`{{CLb{c}}}}}}}BFd}{BFb{{Df{{Mj{ADd}}}}}}{{{CL`{c}}}c{}}{{{CKd{c}}}c{}}{{{CKb{ce}}}{{G`{ce}}}{}{}}{{{CKl{c}}}c{}}:::{{{CJl{c}}}{{G`{c{n{{BEb{In}}CKn}}}}}BFd}{{{CL`{c}}}{{G`{BFbc}}}{}}{{{f{{CJj{c}}}}}Af{BFnAd}}{{{f{CIn}}}Af}{{{f{{f{CIn}}}}}Af}{{{f{CJ`}}}Af}{{{f{CLd}}}Af}{{{f{BFn}}}Af}{{{f{{CKd{c}}}}}Af{{B`{{Jd{In}}}}}}{{{f{{CKb{ce}}}}}AfBFnBFn}{{{f{CLj}}}Af}75{{{f{CJb}}}Af}{{{f{CJd}}}Af}{{{f{CJf}}}Af}{{{f{CJh}}}Af}{{{f{{CJl{c}}}}}Af{BFdAd}}{{{f{{CLb{c}}}}}Af{BFdAd}}5{{{f{{f{CJb}}}}}Af}5{{{f{{f{CJf}}}}}Af}54{{{f{BFd}}}Af}{{{f{{CKd{{Mj{{Jd{In}}c}}}}}}}AfJb}{{{f{{CKd{{BEb{Inc}}}}}}}AfJb}{{{f{{CKd{{f{b{Jd{In}}}}}}}}}Af}{{{f{{CKd{{Fj{In}}}}}}}Af}{{{f{{CKd{{f{b{BEb{Inc}}}}}}}}}AfJb}{{{f{{f{CKh}}}}}Af}{{{f{CKh}}}Af}{{{f{CKj}}}Af}{{{f{{f{CKj}}}}}Af}{{{f{BFb}}}CKf}{{}BFb}{{{f{CK`}}}h}{{{f{{CKl{c}}}}}A@`{}}{CIn{{CLh{CJ`}}}}{BEn{{CLh{BEn}}}}{{{f{CIn}}}CJ`}{{{f{CJb}}}CJd}{{{f{CJf}}}CJh}{c{{CJj{c}}}BFn}{c{{CJl{c}}}BFd}{c{{CLb{c}}}BFd}{{CKfc}BFb{{Ef{{Mj{ADd}}}}}}{{{f{b{Jd{In}}}}}BGd}{c{{CKd{c}}}{}}{{{f{{Jd{In}}}}}BGj}{{{f{b{CJn{c}}}}}{{Df{{n{InBFb}}}}}BFn}{{{f{b{CLf{c}}}}}{{Df{{n{{BEb{In}}BFb}}}}}BEn}{{{f{b{CLh{c}}}}}{{Df{{n{I`BFb}}}}}BEn}{cBFb{{Ef{{Mj{ADd}}}}}}{{{f{CKf}}{f{CKf}}}{{Df{Cd}}}}{{{f{b{CJj{c}}}}h}{{n{{f{{Jd{In}}}}BFb}}}{BFnAd}}{{{f{{CKd{c}}}}}A@`{}}`{{{f{BFb}}}{{Df{Oj}}}}{{{f{bBFn}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{CJj{c}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}{BFnAd}}{{{f{b{f{CIn}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCIn}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCJ`}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCLd}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{CKd{c}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}{{B`{{Jd{In}}}}}}{{{f{bCKh}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{CKb{ce}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}BFnBFn}{{{f{b{CKl{c}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}BFn}{{{f{b{CJj{c}}}}BGb}{{n{jBFb}}}{BFnAd}}{{{f{bCIn}}BGb}{{n{jBFb}}}}{{{f{b{f{CIn}}}}BGb}{{n{jBFb}}}}{{{f{bCJ`}}BGb}{{n{jBFb}}}}{{{f{bCLd}}BGb}{{n{jBFb}}}}{{{f{bBFn}}BGb}{{n{jBFb}}}}{{{f{b{CKd{c}}}}BGb}{{n{jBFb}}}{{B`{{Jd{In}}}}}}{{{f{bCKh}}BGb}{{n{jBFb}}}}{{{f{b{CKb{ce}}}}BGb}{{n{jBFb}}}BFnBFn}{{{f{b{CKl{c}}}}BGb}{{n{jBFb}}}BFn}987643{{{f{b{CJj{c}}}}{f{b{Jd{In}}}}}{{n{jBFb}}}{BFnAd}}{{{f{b{f{CIn}}}}{f{b{Jd{In}}}}}{{n{jBFb}}}}{{{f{bCIn}}{f{b{Jd{In}}}}}{{n{jBFb}}}}{{{f{bCJ`}}{f{b{Jd{In}}}}}{{n{jBFb}}}}{{{f{bBFn}}{f{b{Jd{In}}}}}{{n{jBFb}}}}{{{f{b{CKd{c}}}}{f{b{Jd{In}}}}}{{n{jBFb}}}{{B`{{Jd{In}}}}}}{{{f{CIn}}{f{bI`}}}{{n{hBFb}}}}{{{f{bCJ`}}{f{bI`}}}{{n{hBFb}}}}{{{f{bBEn}}{f{bI`}}}{{n{hBFb}}}}{{{f{b{CJj{c}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}{BFnAd}}{{{f{bCIn}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{b{f{CIn}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bCJ`}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bCLd}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bBFn}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{b{CKd{c}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}{{B`{{Jd{In}}}}}}{{{f{b{CKb{ce}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}BFnBFn}{c{{n{I`BFb}}}BFn}{{{f{b{CJj{c}}}}{f{bI`}}}{{n{hBFb}}}{BFnAd}}{{{f{b{f{CIn}}}}{f{bI`}}}{{n{hBFb}}}}{{{f{bCIn}}{f{bI`}}}{{n{hBFb}}}}={{{f{bCLd}}{f{bI`}}}{{n{hBFb}}}}{{{f{bBFn}}{f{bI`}}}{{n{hBFb}}}}{{{f{b{CKd{c}}}}{f{bI`}}}{{n{hBFb}}}{{B`{{Jd{In}}}}}}{{{f{bCJ`}}In{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bBEn}}In{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{b{CKb{ce}}}}In{f{b{BEb{In}}}}}{{n{hBFb}}}BEnBEn}{{{f{b{CJj{c}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}{BFnAd}}{{{f{b{f{CIn}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bCIn}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bCJ`}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bCLd}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bBFn}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{b{CKd{c}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}{{B`{{Jd{In}}}}}}{{{f{b{CKb{ce}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}BFnBFn}{{{f{bBGb}}}BGb}{InCLd}{{{f{bBGh}}}{{n{jBFb}}}}{{{f{bBGh}}BGf}{{n{A@`BFb}}}}{{{f{b{CJj{c}}}}BGf}{{n{A@`BFb}}}{BGhAd}}{{{f{b{CJl{c}}}}BGf}{{n{A@`BFb}}}{BFdBGhAd}}{{{f{b{CKd{c}}}}BGf}{{n{A@`BFb}}}{{B`{{Jd{In}}}}}}{{{f{bCKh}}BGf}{{n{A@`BFb}}}}{{{f{b{CJj{c}}}}A@b}{{n{jBFb}}}{BGhAd}}0{{{f{bBGh}}A@b}{{n{jBFb}}}}{{{f{bCK`}}h}{{f{bCK`}}}}{{{f{bBGb}}h}{{f{bBGb}}}}{{{f{b{CKl{c}}}}A@`}j{}}{{{f{b{CKd{c}}}}A@`}j{}}{{}CKj}{{{f{{CJn{c}}}}}{{G`{h{Df{h}}}}}BFn}{{{f{bBEn}}In}{{n{hBFb}}}}{{{f{BFb}}}{{Df{{f{ADd}}}}}}{{BEnIn}{{CLf{BEn}}}}{{{f{{CKd{c}}}}}{{G`{{f{{Jd{In}}}}{f{{Jd{In}}}}}}}{{B`{{Jd{In}}}}}}{{{f{b{CKd{c}}}}}{{G`{{f{b{Jd{In}}}}{f{b{Jd{In}}}}}}}{{An{{Jd{In}}}}}}{{}CJf}{{}CIn}{{}CJb}{{{f{bBGh}}}{{n{A@`BFb}}}}{{{f{b{CKd{c}}}}}{{n{A@`BFb}}}{{B`{{Jd{In}}}}}}{{{f{bCKh}}}{{n{A@`BFb}}}}{{{f{b{CJj{c}}}}}{{n{A@`BFb}}}{BGhAd}}321{{BFnA@`}{{CKl{BFn}}}}{fc{}}00000{fI`}000{c{{n{e}}}{}{}}00000000000000000000000000{{}{{n{c}}}{}}00000000000000000000000000{fOf}00000000000000000000000000{{{f{bCK`}}}BGb}{{{f{bBGb}}}{{f{b{Jd{{BCl{In}}}}}}}}{{hc}{{CJj{c}}}BFn}{{hc}{{CJl{c}}}BFd}{{hc}{{CLb{c}}}BFd}{{{f{bBFd}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{CJl{c}}}}{f{{Jd{In}}}}}{{n{hBFb}}}{BFdAd}}{{{f{b{CLb{c}}}}{f{{Jd{In}}}}}{{n{hBFb}}}{BFdAd}}{{{f{bCJb}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CJb}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCJd}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CJf}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCJf}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCJh}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{CKd{{f{b{BEb{Inc}}}}}}}}{f{{Jd{In}}}}}{{n{hBFb}}}Jb}{{{f{b{CKd{{f{b{Jd{In}}}}}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{CKd{{Mj{{Jd{In}}c}}}}}}{f{{Jd{In}}}}}{{n{hBFb}}}Jb}{{{f{b{CKd{{BEb{Inc}}}}}}{f{{Jd{In}}}}}{{n{hBFb}}}Jb}{{{f{b{CKd{{Fj{In}}}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCKh}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CKh}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CKj}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bCKj}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bBGb}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{CJl{c}}}}{f{{Jd{In}}}}}{{n{jBFb}}}{BFdAd}}{{{f{b{CLb{c}}}}{f{{Jd{In}}}}}{{n{jBFb}}}{BFdAd}}{{{f{bCJb}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{b{f{CJb}}}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{bCJd}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{b{f{CJf}}}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{bCJf}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{bCJh}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{bBFd}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{b{CLb{c}}}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}{BFdAd}}{{{f{bCJb}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{b{f{CJb}}}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{bCJd}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{bCJf}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{b{f{CJf}}}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{bCJh}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{bBFd}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{b{CLb{c}}}}Ld}{{n{jBFb}}}{BFdAd}}{{{f{b{f{CJb}}}}Ld}{{n{jBFb}}}}{{{f{bCJb}}Ld}{{n{jBFb}}}}{{{f{bCJf}}Ld}{{n{jBFb}}}}{{{f{b{f{CJf}}}}Ld}{{n{jBFb}}}}{{{f{bBFd}}Ld}{{n{jBFb}}}}{{{f{b{CJl{c}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}{BFdAd}}{{{f{b{CLb{c}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}{BFdAd}}{{{f{bCJb}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{CJb}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{bCJd}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{CJf}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{bCJf}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{bCJh}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{bBFd}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{CKd{{Fj{In}}}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{CKd{{Mj{{Jd{In}}c}}}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}Jb}{{{f{b{CKd{{BEb{Inc}}}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}Jb}{{{f{b{CKd{{f{b{Jd{In}}}}}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{CKd{{f{b{BEb{Inc}}}}}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}Jb}{{{f{b{f{CKh}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{bCKh}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{bCKj}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{CKj}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{BGb}}}h}````{{{f{bBFn}}}{{f{bBFn}}}}{{{f{bBFd}}}{{f{bBFd}}}}{BFn{{CJn{BFn}}}}{{BFnc}{{CKb{BFnc}}}BFn}{{{f{bBEn}}h}j}{{{f{bBEn}}}{{n{{f{{Jd{In}}}}BFb}}}}{{{f{bBFd}}}{{n{jBFb}}}}{{{f{bBEn}}}{{n{AfBFb}}}}{{{f{BFn}}}Af}{{{f{BFd}}}Af}{BEn{{CLh{BEn}}}}{{{f{bBFn}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bBFn}}BGb}{{n{jBFb}}}}0{{{f{bBFn}}{f{b{Jd{In}}}}}{{n{jBFb}}}}{{{f{bBEn}}{f{bI`}}}{{n{hBFb}}}}{{{f{bBFn}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bBFn}}{f{bI`}}}{{n{hBFb}}}}{{{f{bBEn}}In{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bBFn}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bBGh}}}{{n{jBFb}}}}{{{f{bBGh}}BGf}{{n{A@`BFb}}}}{{{f{bBGh}}A@b}{{n{jBFb}}}}{{{f{bBEn}}In}{{n{hBFb}}}}{{BEnIn}{{CLf{BEn}}}}{{{f{bBGh}}}{{n{A@`BFb}}}}0{{BFnA@`}{{CKl{BFn}}}}{{{f{bBFd}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bBFd}}{f{{Jd{In}}}}}{{n{jBFb}}}}{{{f{bBFd}}{f{b{Jd{BGj}}}}}{{n{jBFb}}}}{{{f{bBFd}}Ld}{{n{jBFb}}}}{{{f{bBFd}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}````````````````````````````````````````````````````{{{f{b{Dh{ceg}}}}h}{{n{j{l{h}}}}}dBj{{Aj{}{{Ah{e}}}}}}{{{f{b{Dj{c}}}}h}{{n{j{l{h}}}}}d}{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{CLl{c}}}}h}{{n{j{l{h}}}}}d}{{{f{b{Bh{ce}}}}h}{{n{j{l{h}}}}}d{{d{}{{A`{}}}}}}{{{f{b{Cj{e}}}}h}{{n{j{l{h}}}}}AFf{{d{}{{A`{{f{c}}}}}}}}{{{f{b{D`{c}}}}h}{{n{j{l{h}}}}}{F`d}}{{{f{b{Gn{c}}}}h}{{n{j{l{h}}}}}d}{{{f{b{Hb{c}}}}h}{{n{j{l{h}}}}}{dF`}}{{{f{b{Hj{{AHl{c}}}}}}h}{{n{j{l{h}}}}}ACb}{{{f{b{Hj{c}}}}h}{{n{j{l{h}}}}}{dF`}}{{{f{b{AHl{c}}}}h}{{n{j{l{h}}}}}ACb}{{{f{b{AHn{c}}}}h}{{n{j{l{h}}}}}ACb}{{{f{b{Dh{ceg}}}}h}{{n{j{l{h}}}}}AbBj{{Aj{}{{Ah{e}}}}}}{{{f{b{Dj{c}}}}h}{{n{j{l{h}}}}}Ab}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{{f{b{CLl{c}}}}h}{{n{j{l{h}}}}}Ab}{{{f{b{Bh{ce}}}}h}{{n{j{l{h}}}}}Ab{{Ab{}{{A`{}}}}}}{{{f{b{Cj{e}}}}h}{{n{j{l{h}}}}}AFf{{Ab{}{{A`{{f{c}}}}}}}}{{{f{b{Cl{c}}}}h}{{n{j{l{h}}}}}{ACbAb}}{{{f{b{D`{c}}}}h}{{n{j{l{h}}}}}Ab}={{{f{b{Hb{c}}}}h}{{n{j{l{h}}}}}Ab}{{{f{b{Hj{c}}}}h}{{n{j{l{h}}}}}Ab};:{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{AGjh}AGj}{{AGjh}{{Df{AGj}}}}1{f{{f{c}}}{}}0000000000000000000000000000000000{{{f{b}}}{{f{bc}}}{}}0000000000000000000000000000000000{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{ce}BhBj{{Bj{}{{A`{}}}}}}{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{{f{{Dh{ceg}}}}}{{Dh{ceg}}}ACb{ACbBj}ACb}{{{f{{Dj{c}}}}}{{Dj{c}}}{ACbAb}}{{{f{{Ed{ce}}}}}{{Ed{ce}}}{AbACb}ACb}{{{f{{Fh{ce}}}}}{{Fh{ce}}}{AbACb}ACb}{{{f{{AGl{c}}}}}{{AGl{c}}}{}}{{{f{{Al{c}}}}}{{Al{c}}}{ACbAb}}{{{f{{Bh{ce}}}}}{{Bh{ce}}}ACbACb}{{{f{{Cb{c}}}}}{{Cb{c}}}ACb}{{{f{{Cj{c}}}}}{{Cj{c}}}ACb}{{{f{{Cl{c}}}}}{{Cl{c}}}ACb}{{{f{{D`{c}}}}}{{D`{c}}}ACb}{{{f{{Db{ce}}}}}{{Db{ce}}}ACbACb}{{{f{{Dd{ce}}}}}{{Dd{ce}}}ACbACb}{{{f{{Dn{c}}}}}{{Dn{c}}}ACb}{{{f{{E`{ce}}}}}{{E`{ce}}}ACbACb}{{{f{{Eb{c}}}}}{{Eb{c}}}{ACbAb}}{{{f{{Fd{ce}}}}}{{Fd{ce}}}ACbACb}{{{f{{Ff{ce}}}}}{{Ff{ce}}}ACbACb}{{{f{{Gd{c}}}}}{{Gd{c}}}{ACbAb}}{{{f{{Gn{c}}}}}{{Gn{c}}}ACb}{{{f{{H`{ceg}}}}}{{H`{ceg}}}ACbACbACb}{{{f{{Hb{c}}}}}{{Hb{c}}}ACb}{{{f{{Hd{ce}}}}}{{Hd{ce}}}ACbACb}{{{f{{Hf{c}}}}}{{Hf{c}}}ACb}{{{f{{Hj{c}}}}}{{Hj{c}}}ACb}{{{f{{Hl{ce}}}}}{{Hl{ce}}}ACbACb}{{{f{{Ij{ce}}}}}{{Ij{ce}}}ACbACb}{{{f{{AHf{c}}}}}{{AHf{c}}}ACb}{{{f{{AHh{c}}}}}{{AHh{c}}}ACb}{{{f{{AHj{c}}}}}{{AHj{c}}}ACb}{{{f{{AHl{c}}}}}{{AHl{c}}}ACb}{{{f{{AHn{c}}}}}{{AHn{c}}}ACb}{{{f{{AI`{c}}}}}{{AI`{c}}}ACb}{{{f{{AIb{ce}}}}}{{AIb{ce}}}ACbACb}{{f{f{bc}}}j{}}000000000000000000000000000000000{fj}000000000000000000000000000000000{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Dh{ceg}}}hAbBj{{Aj{}{{Ah{e}}}}}}{{{Dj{c}}}hAb}{{{Ab{}{{A`{c}}}}}h{}}{{{Al{c}}}hAb}{{{Bh{ce}}}hAb{{Ab{}{{A`{}}}}}}{{{Cj{e}}}hAFf{{Ab{}{{A`{{f{c}}}}}}}}{{{D`{c}}}hAb}{{{Db{ce}}}hAb{{Aj{f}{{Ah{Af}}}}}}{{{Dn{c}}}hAb}{{{Gd{c}}}hAb}{{{Hb{c}}}hAb}{{{AHl{c}}}hACb}{{{AHn{c}}}hACb}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}{{Dj{c}}}{GbAb}}{{}{{AGl{c}}}{}}{{}{{Bh{ce}}}GbGb}{{}{{Cb{c}}}Gb}{{}{{Cj{c}}}Gb}{{}{{D`{c}}}Gb}{{}{{Dn{c}}}Gb}{{}{{Gn{c}}}Gb}{{{f{b{AHn{c}}}}}j{}}7{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Bh{ce}}}}g}DfAb{{Ab{}{{A`{}}}}}{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Dn{c}}}}e}DfAb{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Gn{c}}}}e}Dfd{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{f{{Dh{ceg}}}}{f{bK`}}}{{n{jKb}}}JnBj{}}{{{f{{Dj{c}}}}{f{bK`}}}{{n{jKb}}}{JnAb}}{{{f{{Ed{ce}}}}{f{bK`}}}{{n{jKb}}}{AbJn}Jn}{{{f{{Fh{ce}}}}{f{bK`}}}{{n{jKb}}}{AbJn}{}}{{{f{{AGl{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{Al{c}}}}{f{bK`}}}{{n{jKb}}}{JnAb}}{{{f{{CLl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Bh{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{Cb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Cj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Cl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{D`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Db{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Dd{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Dn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{E`{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Eb{c}}}}{f{bK`}}}{{n{jKb}}}{JnAb}}{{{f{{Fd{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Ff{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Gd{c}}}}{f{bK`}}}{{n{jKb}}}{JnAb}}{{{f{{Gn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{H`{ceg}}}}{f{bK`}}}{{n{jKb}}}JnJn{}}{{{f{{Hb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Hd{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Hf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Hj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Hl{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Ij{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{AHf{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{AHh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AHj{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{AHl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AHn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AI`{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{AIb{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{Dh{ceg}}ik}iAbBj{{Aj{}{{Ah{e}}}}}{}{{Aj{i}{{Ah{i}}}}}}{{{Dj{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Ed{ce}}gi}gAb{{Aj{}{{Ah{}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Al{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{CLl{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Bh{ce}}gi}gAb{{Ab{}{{A`{}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Cb{e}}gi}gACb{{Ab{}{{A`{{f{c}}}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Cj{e}}gi}gAFf{{Ab{}{{A`{{f{c}}}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{D`{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Db{ce}}gi}gAb{{Aj{f}{{Ah{Af}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Dd{cg}}ik}iAb{}{{Aj{}{{Ah{{Df{e}}}}}}}{}{{Aj{i}{{Ah{i}}}}}}{{{Dn{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{E`{ce}}gi}gAb{{Aj{f}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Eb{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Fd{cg}}ik}iAb{}{{Aj{}{{Ah{e}}}}}{}{{Aj{i}{{Ah{i}}}}}}{{{Ff{cg}}ik}iAb{}{{Aj{}{{Ah{{Df{e}}}}}}}{}{{Aj{i}{{Ah{i}}}}}}{{{Gd{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Gn{c}}eg}ed{}{{Aj{e}{{Ah{e}}}}}}{{{H`{cei}}km}kAb{}{}{{Aj{{f{be}}}{{Ah{{Df{g}}}}}}}{}{{Aj{k}{{Ah{k}}}}}}{{{Hb{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Hd{ce}}gi}gAb{{Aj{f}{{Ah{Af}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Hf{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Hj{c}}eg}eAb{}{{Aj{e}{{Ah{e}}}}}}{{{Hl{ce}}gi}gAb{{Aj{f}{{Ah{Af}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Ij{ce}}gi}gAbAb{}{{Aj{g}{{Ah{g}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}{{{Hj{c}}e}jAbAj}{{AGjh}AGj}{{AGjh}{{Df{AGj}}}}1{cc{}}0000000000000000000000000000000000{c{{AGn{c}}}{{AHb{}{{AH`{j}}}}AHd}}{e{{AHf{e}}}{}{{Aj{}{{Ah{{Df{c}}}}}}}}{eCf{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}Af{}Bj}0{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{{}c{}}0000000000000000000000000000000000{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}11111111111111111111111111111111111{{{Al{c}}}{{Df{Fn}}}Ab}{{{f{F`}}}Af}{{{f{{Al{c}}}}}AfF`}{{{f{{Cb{e}}}}}AfACb{{F`{}{{A`{{f{c}}}}}}}}{{{f{{Cj{e}}}}}AfAFf{{F`{}{{A`{{f{c}}}}}}}}{{{f{{D`{c}}}}}AfF`}{{{f{{Dn{c}}}}}AfF`}{{{f{{E`{ce}}}}}AfF`{{Aj{f}}}}{{{f{{Fd{cg}}}}}AfF`{}{{Aj{}{{Ah{e}}}}}}{{{f{{Gn{c}}}}}Af{F`d}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Dh{ceg}}}DfAbBj{{Aj{}{{Ah{e}}}}}}{{{Dj{c}}}DfAb}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}{{{Bh{ce}}}DfAb{{Ab{}{{A`{}}}}}}{{{Cj{e}}}{{Df{c}}}AFf{{Ab{}{{A`{{f{c}}}}}}}}{{{Dn{c}}}DfAb}{{{Gd{c}}}DfAb}{{{Hb{c}}}DfAb}{{{AHl{c}}}{{Df{c}}}ACb}{{{AHn{c}}}{{Df{c}}}ACb}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{{AGl{c}}}}}h{}}{{{f{F`}}}h}{{{f{{Al{c}}}}}hF`}{{{f{{Cb{e}}}}}hACb{{F`{}{{A`{{f{c}}}}}}}}{{{f{{Cj{e}}}}}hAFf{{F`{}{{A`{{f{c}}}}}}}}{{{f{{D`{c}}}}}hF`}{{{f{{Dn{c}}}}}hF`}{{{f{{E`{ce}}}}}hF`{{Aj{f}}}}{{{f{{Fd{cg}}}}}hF`{}{{Aj{}{{Ah{e}}}}}}{{{f{{Gn{c}}}}}h{F`d}}{{{f{{Hj{{AI`{e}}}}}}}h{}{{Aj{}{{Ah{c}}}}}}{{{f{{Hj{{AHl{c}}}}}}}hACb}{{{f{{AHh{c}}}}}h{}}{{{f{{AHj{e}}}}}h{}{{Bf{}{{Ah{c}}}}}}{{{f{{AHn{c}}}}}hACb}?{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}210{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{b{Dh{ceg}}}}}DfAbBj{{Aj{}{{Ah{e}}}}}}{{{f{b{Dj{c}}}}}DfAb}{{{f{b{Ed{ce}}}}}DfAb{{Aj{}{{Ah{}}}}}}{{{f{b{Fh{cg}}}}}DfAb{}{{Aj{{f{Fj}}}{{Ah{e}}}}}}{{{f{b{AGl{c}}}}}{{Df{c}}}{}}{{{f{b{Al{c}}}}}DfAb}{{{f{b{CLl{c}}}}}DfAb}{{{f{b{Bh{ce}}}}}DfAb{{Ab{}{{A`{}}}}}}{{{f{b{Cb{e}}}}}{{Df{c}}}ACb{{Ab{}{{A`{{f{c}}}}}}}}{{{f{b{Cj{e}}}}}{{Df{c}}}AFf{{Ab{}{{A`{{f{c}}}}}}}}{{{f{b{Cl{c}}}}}Df{ACbAb}}{{{f{b{D`{c}}}}}{{Df{{G`{h}}}}}Ab}{{{f{b{Db{ce}}}}}DfAb{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Dd{cg}}}}}{{Df{e}}}Ab{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{b{Dn{c}}}}}DfAb}{{{f{b{E`{ce}}}}}DfAb{{Aj{f}}}}{{{f{b{Eb{c}}}}}DfAb}{{{f{b{Fd{cg}}}}}{{Df{e}}}Ab{}{{Aj{}{{Ah{e}}}}}}{{{f{b{Ff{cg}}}}}{{Df{e}}}Ab{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{b{Gd{c}}}}}DfAb}{{{f{b{Gn{c}}}}}Dfd}{{{f{b{H`{cei}}}}}{{Df{g}}}Ab{}{}{{Aj{{f{be}}}{{Ah{{Df{g}}}}}}}}{{{f{b{Hb{c}}}}}DfAb}{{{f{b{Hd{ce}}}}}DfAb{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Hf{c}}}}}DfAb}{{{f{b{Hj{c}}}}}DfAb}{{{f{b{Hl{ce}}}}}DfAb{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Ij{ce}}}}}DfAbAb}{{{f{b{AHf{e}}}}}Df{}{{Aj{}{{Ah{{Df{c}}}}}}}}{{{f{b{AHh{c}}}}}{{Df{c}}}{}}{{{f{b{AHj{e}}}}}{{Df{c}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{b{AHl{c}}}}}{{Df{c}}}ACb}{{{f{b{AHn{c}}}}}{{Df{c}}}ACb}{{{f{b{AI`{e}}}}}{{Df{c}}}{}{{Aj{}{{Ah{c}}}}}}{{{f{b{AIb{ce}}}}}Df{}{{Aj{{f{c}}}{{Ah{{Df{c}}}}}}}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Dh{ceg}}}}}DfdBj{{Aj{}{{Ah{e}}}}}}{{{f{b{Dj{c}}}}}Dfd}{{{f{b{AGl{c}}}}}{{Df{c}}}{}}{{{f{b{Al{c}}}}}Df{dF`}}{{{f{b{CLl{c}}}}}Dfd}{{{f{b{Bh{ce}}}}}Dfd{{d{}{{A`{}}}}}}{{{f{b{Cb{e}}}}}{{Df{c}}}ACb{{d{}{{A`{{f{c}}}}}}}}{{{f{b{Cj{e}}}}}{{Df{c}}}AFf{{d{}{{A`{{f{c}}}}}}}}{{{f{b{D`{c}}}}}{{Df{{G`{h}}}}}{F`d}}{{{f{b{Db{ce}}}}}Dfd{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Dd{cg}}}}}{{Df{e}}}d{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{b{Dn{c}}}}}Dfd}{{{f{b{E`{ce}}}}}Dfd{{Aj{f}}}}{{{f{b{Fd{cg}}}}}{{Df{e}}}d{}{{Aj{}{{Ah{e}}}}}}{{{f{b{Gd{c}}}}}Dfd}{{{f{b{Gn{c}}}}}Dfd}{{{f{b{Hb{c}}}}}Df{dF`}}{{{f{b{Hf{c}}}}}Df{dF`}}{{{f{b{Hj{{AHl{c}}}}}}}DfACb}{{{f{b{Hj{c}}}}}Df{dF`}}{{{f{b{Ij{ce}}}}}{{Df{G`}}}{dF`}{dF`}}{{{f{b{AHh{c}}}}}{{Df{c}}}{}}{{{f{b{AHj{e}}}}}{{Df{c}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{b{AHl{c}}}}}{{Df{c}}}ACb}{{{f{b{AHn{c}}}}}{{Df{c}}}ACb}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Cj{e}}}}}{{n{FjFn}}}AFf{{Ab{}{{A`{{f{c}}}}}}}}{{{f{b{Db{ce}}}}}{{n{FjFn}}}Ab{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Dd{cg}}}}}{{n{FjFn}}}Ab{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{b{Gd{c}}}}e}DfAb{{Bf{f}{{Ah{Af}}}}}}{{{f{b{Gd{c}}}}{f{e}}}DfAbAd}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{b{CLl{c}}}}h}DfAb}{{{f{b{Bh{ce}}}}h}DfAb{{Ab{}{{A`{}}}}}}{{{f{b{Cj{e}}}}h}{{Df{c}}}AFf{{Ab{}{{A`{{f{c}}}}}}}}{{{f{b{D`{c}}}}h}{{Df{{G`{h}}}}}Ab}{{{f{b{Dn{c}}}}h}DfAb}{{{f{b{Gd{c}}}}h}DfAb}{{{f{b{Gn{c}}}}h}Dfd}{{{f{b{Hb{c}}}}h}DfAb}{{{f{b{Hf{c}}}}h}DfAb}{{{f{b{Hj{c}}}}h}DfAb}{{{f{b{Ij{ce}}}}h}DfAbAb}{{{f{b{AHl{c}}}}h}{{Df{c}}}ACb}{{{f{bd}}h}{{Df{c}}}{}}{{{f{b{CLl{c}}}}h}Dfd}{{{f{b{Bh{ce}}}}h}Dfd{{d{}{{A`{}}}}}}{{{f{b{D`{c}}}}h}{{Df{{G`{h}}}}}{F`d}}{{{f{b{Dn{c}}}}h}Dfd}:{{{f{b{Hb{c}}}}h}Df{dF`}}{{{f{b{Hf{c}}}}h}Df{dF`}}{{{f{b{Hj{c}}}}h}Df{dF`}}{{{f{b{Hj{{AHl{c}}}}}}h}DfACb}9{{{f{b{AHn{c}}}}h}{{Df{c}}}ACb}{c{{AHh{c}}}{}}{e{{AHj{e}}}{}{{Bf{}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{f{b{Gd{c}}}}}{{Df{f}}}Ab}{{{f{b{Gd{c}}}}}{{Df{{f{b}}}}}Ab}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{eGl{}{{Ab{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{c{{AHl{c}}}ACb}{{ch}{{AHn{c}}}ACb}{e{{AI`{e}}}{}{{Aj{}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Bh{ce}}}}g}Dfd{{d{}{{A`{}}}}}{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Dn{c}}}}e}Dfd{{Aj{f}{{Ah{Af}}}}}}{{{f{b{Gn{c}}}}e}Dfd{{Aj{f}{{Ah{Af}}}}}}{{{Dh{ceg}}ik}idBj{{Aj{}{{Ah{e}}}}}{}{{Aj{i}{{Ah{i}}}}}}{{{Dj{c}}eg}ed{}{{Aj{e}{{Ah{e}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}{{{Al{c}}eg}e{dF`}{}{{Aj{e}{{Ah{e}}}}}}{{{CLl{c}}eg}ed{}{{Aj{e}{{Ah{e}}}}}}{{{Bh{ce}}gi}gd{{d{}{{A`{}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Cb{e}}gi}gACb{{d{}{{A`{{f{c}}}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Cj{e}}gi}gAFf{{d{}{{A`{{f{c}}}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{D`{c}}eg}e{F`d}{}{{Aj{e}{{Ah{e}}}}}}{{{Db{ce}}gi}gd{{Aj{f}{{Ah{Af}}}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Dd{cg}}ik}id{}{{Aj{}{{Ah{{Df{e}}}}}}}{}{{Aj{i}{{Ah{i}}}}}}{{{Dn{c}}eg}ed{}{{Aj{e}{{Ah{e}}}}}}{{{E`{ce}}gi}gd{{Aj{f}}}{}{{Aj{g}{{Ah{g}}}}}}{{{Fd{cg}}ik}id{}{{Aj{}{{Ah{e}}}}}{}{{Aj{i}{{Ah{i}}}}}}{{{Gd{c}}eg}ed{}{{Aj{e}{{Ah{e}}}}}}{{{Gn{c}}eg}ed{}{{Aj{e}{{Ah{e}}}}}}{{{Hb{c}}eg}e{dF`}{}{{Aj{e}{{Ah{e}}}}}}{{{Hf{c}}eg}e{dF`}{}{{Aj{e}{{Ah{e}}}}}}{{{Hj{c}}eg}e{dF`}{}{{Aj{e}{{Ah{e}}}}}}{{{Hj{{AHl{c}}}}eg}eACb{}{{Aj{e}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Dh{ceg}}}}}{{G`{h{Df{h}}}}}AbBj{{Aj{}{{Ah{e}}}}}}{{{f{{Dj{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Ed{ce}}}}}{{G`{h{Df{h}}}}}Ab{{Aj{}{{Ah{}}}}}}{{{f{{Fh{cg}}}}}{{G`{h{Df{h}}}}}Ab{}{{Aj{{f{Fj}}}{{Ah{e}}}}}}{{{f{{AGl{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{Al{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{CLl{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Bh{ce}}}}}{{G`{h{Df{h}}}}}Ab{{Ab{}{{A`{}}}}}}{{{f{{Cb{e}}}}}{{G`{h{Df{h}}}}}ACb{{Ab{}{{A`{{f{c}}}}}}}}{{{f{{Cj{e}}}}}{{G`{h{Df{h}}}}}AFf{{Ab{}{{A`{{f{c}}}}}}}}{{{f{{Cl{c}}}}}{{G`{h{Df{h}}}}}{ACbAb}}{{{f{{D`{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Db{ce}}}}}{{G`{h{Df{h}}}}}Ab{{Aj{f}{{Ah{Af}}}}}}{{{f{{Dd{cg}}}}}{{G`{h{Df{h}}}}}Ab{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{{Dn{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{E`{ce}}}}}{{G`{h{Df{h}}}}}Ab{{Aj{f}}}}{{{f{{Eb{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Fd{cg}}}}}{{G`{h{Df{h}}}}}Ab{}{{Aj{}{{Ah{e}}}}}}{{{f{{Ff{cg}}}}}{{G`{h{Df{h}}}}}Ab{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{{Gd{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Gn{c}}}}}{{G`{h{Df{h}}}}}d}{{{f{{H`{cei}}}}}{{G`{h{Df{h}}}}}Ab{}{}{{Aj{{f{be}}}{{Ah{{Df{g}}}}}}}}{{{f{{Hb{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Hd{ce}}}}}{{G`{h{Df{h}}}}}Ab{{Aj{f}{{Ah{Af}}}}}}{{{f{{Hf{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Hj{c}}}}}{{G`{h{Df{h}}}}}Ab}{{{f{{Hl{ce}}}}}{{G`{h{Df{h}}}}}Ab{{Aj{f}{{Ah{Af}}}}}}{{{f{{Ij{ce}}}}}{{G`{h{Df{h}}}}}AbAb}{{{f{{AHh{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{AHj{e}}}}}{{G`{h{Df{h}}}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{{AHl{c}}}}}{{G`{h{Df{h}}}}}ACb}{{{f{{AHn{c}}}}}{{G`{h{Df{h}}}}}ACb}{{{f{{AI`{e}}}}}{{G`{h{Df{h}}}}}{}{{Aj{}{{Ah{c}}}}}}{{{f{{AIb{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{{Df{c}}}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}{{{f{AGj}}{f{AGj}}}{{Df{h}}}}{{{Df{c}}e}{{AIb{ce}}}{}{{Aj{{f{c}}}{{Ah{{Df{c}}}}}}}}{eHh{}{{Ab{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{fc{}}000000000000000000000000000000000{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Dh{ceg}}}}im}kAbBj{{Aj{}{{Ah{e}}}}}{}{{Ib{}{{Ah{i}}}}}{{Aj{i}{{Ah{k}}}}}}{{{f{b{Dj{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Al{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{CLl{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Bh{ce}}}}gk}iAb{{Ab{}{{A`{}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Cb{e}}}}gk}iACb{{Ab{}{{A`{{f{c}}}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Cj{e}}}}gk}iAFf{{Ab{}{{A`{{f{c}}}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Cl{c}}}}ei}g{ACbAb}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{D`{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Db{ce}}}}gk}iAb{{Aj{f}{{Ah{Af}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Dd{cg}}}}im}kAb{}{{Aj{}{{Ah{{Df{e}}}}}}}{}{{Ib{}{{Ah{i}}}}}{{Aj{i}{{Ah{k}}}}}}{{{f{b{Dn{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{E`{ce}}}}gk}iAb{{Aj{f}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Fd{cg}}}}im}kAb{}{{Aj{}{{Ah{e}}}}}{}{{Ib{}{{Ah{i}}}}}{{Aj{i}{{Ah{k}}}}}}{{{f{b{Ff{cg}}}}im}kAb{}{{Aj{}{{Ah{{Df{e}}}}}}}{}{{Ib{}{{Ah{i}}}}}{{Aj{i}{{Ah{k}}}}}}{{{f{b{Gd{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Gn{c}}}}ei}gd{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{H`{cei}}}}ko}mAb{}{}{{Aj{{f{be}}}{{Ah{{Df{g}}}}}}}{}{{Ib{}{{Ah{k}}}}}{{Aj{k}{{Ah{m}}}}}}{{{f{b{Hb{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Hd{ce}}}}gk}iAb{{Aj{f}{{Ah{Af}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Hf{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Hj{c}}}}ei}gAb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Hl{ce}}}}gk}iAb{{Aj{f}{{Ah{Af}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{AI`{e}}}}gk}i{}{{Aj{}{{Ah{c}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{e}}}{}{}}0000000000000000000000000000000000{{}{{n{c}}}{}}0000000000000000000000000000000000{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{b{Dh{ceg}}}}im}kdBj{{Aj{}{{Ah{e}}}}}{}{{Ib{}{{Ah{i}}}}}{{Aj{i}{{Ah{k}}}}}}{{{f{b{Dj{c}}}}ei}gd{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}{{{f{b{Al{c}}}}ei}g{dF`}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{CLl{c}}}}ei}gd{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Bh{ce}}}}gk}id{{d{}{{A`{}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Cb{e}}}}gk}iACb{{d{}{{A`{{f{c}}}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Cj{e}}}}gk}iAFf{{d{}{{A`{{f{c}}}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{D`{c}}}}ei}g{F`d}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Db{ce}}}}gk}id{{Aj{f}{{Ah{Af}}}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Dd{cg}}}}im}kd{}{{Aj{}{{Ah{{Df{e}}}}}}}{}{{Ib{}{{Ah{i}}}}}{{Aj{i}{{Ah{k}}}}}}{{{f{b{Dn{c}}}}ei}gd{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{E`{ce}}}}gk}id{{Aj{f}}}{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{{{f{b{Fd{cg}}}}im}kd{}{{Aj{}{{Ah{e}}}}}{}{{Ib{}{{Ah{i}}}}}{{Aj{i}{{Ah{k}}}}}}{{{f{b{Gd{c}}}}ei}gd{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Gn{c}}}}ei}gd{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Hb{c}}}}ei}g{dF`}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Hf{c}}}}ei}g{dF`}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Hj{{AHl{c}}}}}}ei}gACb{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{{{f{b{Hj{c}}}}ei}g{dF`}{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{fOf}0000000000000000000000000000000000{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{ce}IjBjBj}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}``````````````````````{AIdj}{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{{f{{CLn{c}}}}}{{CLn{c}}}Ad}{{{f{CM`}}}CM`}{{f{f{bc}}}j{}}0{fj}0{{{f{{CLn{c}}}}{f{{CLn{c}}}}}CdAd}{{{f{CM`}}{f{CM`}}}Cd}{{}{{CLn{c}}}Ad}{{}CM`}{{{f{{CLn{c}}}}{f{{CLn{c}}}}}AfAd}{{{f{CM`}}{f{CM`}}}Af}{{{f{{CLn{c}}}}{f{bK`}}}{{n{jKb}}}Ad}{{{f{CM`}}{f{bK`}}}{{n{jKb}}}}{cc{}}0{{{f{{CLn{c}}}}{f{be}}}jAdAEn}{{{f{CM`}}{f{bc}}}jAEn}{{}c{}}0{{{f{{CLn{c}}}}{f{{CLn{c}}}}}{{Df{Cd}}}Ad}{{{f{CM`}}{f{CM`}}}{{Df{Cd}}}}{fc{}}0{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{fOf}0``````````{{CMbCMb}CMb}{{}h}{{{f{c}}}hAd}1`2{{{Fj{{BCl{c}}}}}{{Fj{c}}}{}}{{{f{{BCl{c}}}}}{{f{{Jd{{BCl{In}}}}}}}{}}{{{f{b{BCl{c}}}}}{{f{b{Jd{{BCl{In}}}}}}}{}}{{{f{b{BCl{c}}}}}{}{}}{{{f{{BCl{c}}}}}{}{}}{{{BCl{c}}}c{}}{{{f{b{BCl{c}}}}}j{}}{{{f{b{BCl{c}}}}}{{f{bc}}}{}}{{{f{{BCl{c}}}}}c{}}{{{f{{BCl{c}}}}}{{f{c}}}{}}{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000>{{{f{{AIf{c}}}}}{{AIf{c}}}{}}{{{f{{CMd{c}}}}}{{CMd{c}}}{ACbAd}}{{{f{{BCl{c}}}}}{{BCl{c}}}AFf}{{{f{CMb}}}CMb}{{{f{b{Jd{{BCl{c}}}}}}{f{{Jd{c}}}}}{{f{b{Jd{c}}}}}ACb}{{f{f{bc}}}j{}}000{fj}000{{{f{{CMd{c}}}}{f{{CMd{c}}}}}Cd{FlAd}}{{{f{c}}}cAFf}{{{f{b{Jd{{BCl{c}}}}}}{f{{Jd{c}}}}}{{f{b{Jd{c}}}}}AFf}{{}{{CMd{c}}}{GbAd}}{{{f{{CMd{c}}}}}{{f{c}}}Ad}{{{f{b{CMd{c}}}}}{{f{bc}}}Ad}{{{f{c}}}{{AIf{c}}}{}}{cj{}}{{{f{b{CMd{c}}}}}jAd}{{{f{{AIf{c}}}}{f{{AIf{c}}}}}Af{}}{{{f{{CMd{c}}}}{f{{CMd{c}}}}}Af{ADbAd}}{{{f{CMb}}{f{CMb}}}Af}{{{f{b{Jd{{BCl{c}}}}}}c}{{f{b{Jd{c}}}}}ACb}{{{f{b{Jd{{BCl{c}}}}}}e}{{G`{{f{b{Jd{c}}}}{f{b{Jd{{BCl{c}}}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{{f{b{Jd{{BCl{c}}}}}}e}{{f{b{Jd{c}}}}}{}{{Aj{}{{Ah{c}}}}}}{{{f{{AIf{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{CMd{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{BCl{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{CMb}}{f{bK`}}}{{n{jKb}}}};{cjAd}{cc{}}000{{{f{{AIf{c}}}}{f{be}}}j{}AEn}{{{f{{CMd{c}}}}{f{be}}}j{AF`Ad}AEn}{{}c{}}000{{{CMd{c}}}c{}}`{{}h}{{{f{c}}}hAd}{{}Af}{c{{CMd{c}}}{}}{c{{BCl{c}}}{}}`{{{f{{CMd{c}}}}{f{{CMd{c}}}}}{{Df{Cd}}}{FbAd}}{{{f{bc}}c}c{}}`656{{{f{{Jd{{BCl{c}}}}}}}{{f{{Jd{{BCl{In}}}}}}}{}}{{{f{b{Jd{{BCl{c}}}}}}}{{f{b{Jd{{BCl{In}}}}}}}{}}{{{f{b{Jd{{BCl{c}}}}}}}{}{}}{{{f{{Jd{{BCl{c}}}}}}}{}{}}{{{f{b{Jd{{BCl{c}}}}}}}{{f{b{Jd{c}}}}}{}}{{{f{{Jd{{BCl{c}}}}}}}{{f{{Jd{c}}}}}{}}{{CMbCMb}CMb}{{{f{bc}}{f{bc}}}j{}}{{{f{bc}}}cGb}{{{f{b{CMd{c}}}}}c{}}{fc{}}000{ce{}{}}{cAIhAd}{{{f{c}}}e{}{}}{{{BCl{{Fj{c}}}}}{{Fj{{BCl{c}}}}}{}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{fOf}000{{}{{BCl{c}}}{}}{{}{{Fj{{BCl{c}}}}}{}}{{}c{}}`{{}h}{{{f{b{BCl{c}}}}c}{{f{bc}}}{}}24`````````````````````````````````````{{{f{CMf}}}{{n{{G`{CMhCMj}}BFb}}}}{{{f{CMh}}}BEh}{{{f{CMf}}}BEh}{{{f{CMl}}}BEh}{{{f{CMh}}}Oj}{{{f{CMf}}}Oj}{{{f{CMl}}}Oj}{{CMnh}{{Df{CMn}}}}{{CN`h}{{Df{CN`}}}}{{CMnh}CMn}{{CN`h}CN`}{c{{n{CMfBFb}}}CNb}{c{{n{CMlBFb}}}CNb}{{{f{CMn}}{f{CMn}}}CMn}{{{f{CMn}}CMn}CMn}{{CMn{f{CMn}}}CMn}{{CMnCMn}CMn}{{{f{CN`}}{f{CN`}}}CN`}{{CN`{f{CN`}}}CN`}{{CN`CN`}CN`}{{{f{CN`}}CN`}CN`}{{{f{bCMn}}CMn}j}{{{f{bCMn}}{f{CMn}}}j}{{{f{bCN`}}{f{CN`}}}j}{{{f{bCN`}}CN`}j}89:;54673210{f{{f{c}}}{}}0000000000000{{{f{b}}}{{f{bc}}}{}}0000000000000{{{f{CMl}}}{{n{AfBFb}}}}{{{f{CNd}}}CNd}{{{f{CNf}}}CNf}{{{f{CMn}}}CMn}{{{f{CN`}}}CN`}{{{f{CNh}}}CNh}{{{f{CNj}}}CNj}{{{f{CMj}}}CMj}{{{f{CNl}}}CNl}{{{f{CNn}}}CNn}{{f{f{bc}}}j{}}00000000{fj}00000000{{{f{CNf}}{f{CNf}}}Cd}{{{f{CMn}}{f{CMn}}}Cd}{{{f{CN`}}{f{CN`}}}Cd}{{{f{CMj}}{f{CMj}}}Cd}{{{f{CNl}}{f{CNl}}}Cd}{{{f{CNn}}{f{CNn}}}Cd}{c{{n{CMhBFb}}}CNb}{{{f{CMl}}c}{{n{jBFb}}}CNb}{{{f{CMj}}CO`}{{n{CMhBFb}}}}{{{f{CMh}}}{{n{OhBFb}}}}{{{f{CNj}}}{{f{Ll}}}}{{{f{CNd}}{f{CNd}}}Af}{{{f{CNf}}{f{CN`}}}Af}{{{f{CNf}}{f{CNf}}}Af}{{{f{CNf}}{f{CMn}}}Af}{{{f{CMn}}{f{CMn}}}Af}{{{f{CMn}}{f{CNf}}}Af}{{{f{CN`}}{f{CNf}}}Af}{{{f{CN`}}{f{CN`}}}Af}{{{f{CNh}}{f{CNh}}}Af}{{{f{CNj}}{f{CNj}}}Af}{{{f{CMj}}{f{CMj}}}Af}{{{f{CNl}}{f{CNl}}}Af}{{{f{CNn}}{f{CNn}}}Af}{{{f{CNn}}}Oh}{{{f{b{f{CMh}}}}}{{n{jBFb}}}}{{{f{bCMh}}}{{n{jBFb}}}}{{{f{CMh}}{f{bK`}}}{{n{jKb}}}}{{{f{CMf}}{f{bK`}}}{{n{jKb}}}}{{{f{CMl}}{f{bK`}}}{{n{jKb}}}}{{{f{COb}}{f{bK`}}}{{n{jKb}}}}{{{f{COd}}{f{bK`}}}{{n{jKb}}}}{{{f{CNd}}{f{bK`}}}{{n{jKb}}}}{{{f{CNf}}{f{bK`}}}{{n{jKb}}}}0{{{f{CMn}}{f{bK`}}}{{n{jKb}}}}0{{{f{CN`}}{f{bK`}}}{{n{jKb}}}}0{{{f{CNh}}{f{bK`}}}{{n{jKb}}}}{{{f{CNj}}{f{bK`}}}{{n{jKb}}}}0{{{f{CMj}}{f{bK`}}}{{n{jKb}}}}0{{{f{CNl}}{f{bK`}}}{{n{jKb}}}}0{{{f{CNn}}{f{bK`}}}{{n{jKb}}}}0{{CMnh}{{Df{CMn}}}}{{CN`h}{{Df{CN`}}}}{{CMnh}CMn}{{CN`h}CN`}{cc{}}{CIdCMh}{CIdCMf}22{CIdCMl}333{{{Fj{In}}}CNf}{{{Fj{A@d}}}CNf}51{CN`CNf}{CMnCNf}{{{Fj{In}}}CMn}{OhCMn}9{ABnCN`}{{{Fj{In}}}CN`}{{{Fj{A@d}}}CN`}<<<<{{{G`{cA@d}}}CMj{{Ef{CNf}}}}{CNnCMj}{CNlCMj}??65{OjCMh}{OjCMf}{OjCMl}{{{f{Ll}}}{{n{CNfCNj}}}}{{{f{Ll}}}{{n{CMnCNj}}}}{{{f{Ll}}}{{n{CN`CNj}}}}{{{f{Ll}}}{{n{CMjCNj}}}}{{{f{Ll}}}{{n{CNlCNj}}}}{{{f{Ll}}}{{n{CNnCNj}}}}{{{f{CNf}}{f{bc}}}jAEn}{{{f{CMn}}{f{bc}}}jAEn}{{{f{CN`}}{f{bc}}}jAEn}{{{f{CNh}}{f{bc}}}jAEn}{{{f{CMj}}{f{bc}}}jAEn}{{{f{CNl}}{f{bc}}}jAEn}{{{f{CNn}}{f{bc}}}jAEn}{{{f{CMf}}}COb}{{}c{}}0000000000000{CMfCOd}11{CMhOj}{CMfOj}{CMlOj}{{{f{CMj}}}CNf}{{{f{CNl}}}{{f{CMn}}}}{{{f{CNn}}}{{f{CN`}}}}{{{f{CNf}}}Af}{{{f{CMn}}}Af}{{{f{CN`}}}Af}12102102{{{f{CMj}}}Af}13023213212{{{f{{f{CMh}}}}}Af}{{{f{CMh}}}Af}44333354301{{{f{CMl}}{f{CMn}}{f{CMn}}}{{n{jBFb}}}}{{{f{CMl}}{f{CN`}}Oh}{{n{jBFb}}}}10{{{f{CMh}}}{{n{{Df{CO`}}BFb}}}}{{{f{CMh}}}{{n{CMjBFb}}}}{{{f{CMf}}}{{n{CMjBFb}}}}{{{f{CMl}}}{{n{CMjBFb}}}}{{{f{CMl}}}{{n{AfBFb}}}}0{{{f{CN`}}}{{Df{CNh}}}}{{{f{CMl}}}{{n{OhBFb}}}}{{InInInIn}CMn}{{A@dA@dA@dA@dA@dA@dA@dA@d}CN`}{{CNfA@d}CMj}{{CMnA@d}CNl}{{CN`A@dOhOh}CNn}{{{f{bCOb}}}{{Df{{n{CMhBFb}}}}}}{{{f{bCOd}}}{{Df{{n{CMhBFb}}}}}}{{{f{CMh}}}{{n{AfBFb}}}}{CMnCMn}{{{f{CMn}}}CMn}{CN`CN`}{{{f{CN`}}}CN`}{{{f{CMn}}}{{Fj{In}}}}{{{f{CN`}}}{{Fj{In}}}}{{{f{CMf}}}{{n{AfBFb}}}}{{{f{{Jd{In}}}}}{{n{CNfCNj}}}}{{{f{{Jd{In}}}}}{{n{CMnCNj}}}}{{{f{{Jd{In}}}}}{{n{CN`CNj}}}}{{{f{{Jd{In}}}}}{{n{CMjCNj}}}}{{{f{{Jd{In}}}}}{{n{CNlCNj}}}}{{{f{{Jd{In}}}}}{{n{CNnCNj}}}}{{{f{CNf}}{f{CNf}}}{{Df{Cd}}}}{{{f{CNf}}{f{CMn}}}{{Df{Cd}}}}{{{f{CNf}}{f{CN`}}}{{Df{Cd}}}}{{{f{CMn}}{f{CMn}}}{{Df{Cd}}}}{{{f{CMn}}{f{CNf}}}{{Df{Cd}}}}{{{f{CN`}}{f{CNf}}}{{Df{Cd}}}}{{{f{CN`}}{f{CN`}}}{{Df{Cd}}}}{{{f{CMj}}{f{CMj}}}{{Df{Cd}}}}{{{f{CNl}}{f{CNl}}}{{Df{Cd}}}}{{{f{CNn}}{f{CNn}}}{{Df{Cd}}}}{{{f{CMh}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{CMl}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{CMl}}{f{b{Jd{In}}}}}{{n{{G`{hCMj}}BFb}}}}{{{f{CMh}}}{{n{CMjBFb}}}}{{{f{CMl}}}{{n{CMjBFb}}}}{{{f{CMj}}}A@d}{{{f{CNl}}}A@d}{{{f{CNn}}}A@d}{{{f{CMh}}}{{n{AfBFb}}}}{{{f{bCMh}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CMh}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CMh}}}}BGb}{{n{jBFb}}}}{{{f{bCMh}}BGb}{{n{jBFb}}}}{{{f{CMh}}}{{n{{Df{CO`}}BFb}}}}{{{f{CMl}}}{{n{{Df{CO`}}BFb}}}}{{{f{b{f{CMh}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bCMh}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}?>{{{f{CNn}}}Oh}{{{f{CN`}}}{{Fj{A@d}}}}{{{f{CMl}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{CMl}}{f{{Jd{In}}}}c}{{n{hBFb}}}CNb}{{{f{CMl}}Af}{{n{jBFb}}}}{{{f{CMh}}Oh}{{n{jBFb}}}}{{{f{bCNn}}Oh}j}{{{f{bCMj}}CNf}j}{{{f{bCNl}}CMn}j}{{{f{bCNn}}CN`}j}{{{f{CMh}}{Df{CO`}}}{{n{jBFb}}}}66{{{f{CMl}}Oh}{{n{jBFb}}}}{{{f{CMh}}Af}{{n{jBFb}}}}0{{{f{CMf}}Af}{{n{jBFb}}}}90{{{f{bCMj}}A@d}j}{{{f{bCNl}}A@d}j}{{{f{bCNn}}A@d}j}46{{{f{CMl}}{Df{CO`}}}{{n{jBFb}}}};<{{{f{CMf}}Oh}{{n{jBFb}}}}781{{{f{CMh}}CNd}{{n{jBFb}}}}{{{f{CMn}}{f{CMn}}}{{Df{h}}}}{{{f{CN`}}{f{CN`}}}{{Df{h}}}}{{{f{CMh}}}{{n{{Df{BFb}}BFb}}}}{{{f{CMf}}}{{n{{Df{BFb}}BFb}}}}{{{f{CMl}}}{{n{{Df{BFb}}BFb}}}}{CMnOh}{CN`ABn}{{{f{CNf}}}CNf}{{{f{CN`}}}CNf}{{{f{CN`}}}{{Df{CMn}}}}0{{{f{CMn}}}CN`}0{fc{}}00000000{{{f{{CNb{}{{COf{c}}}}}}}{{n{cBFb}}}{{Ab{}{{A`{CMj}}}}}}{{{f{CMj}}}{{n{{COh{CMj}}BFb}}}}{{{f{CNl}}}{{n{{COh{CMj}}BFb}}}}{{{f{CNn}}}{{n{{COh{CMj}}BFb}}}}{fI`}000000{{{f{CMh}}}{{n{CMhBFb}}}}{{{f{CMf}}}{{n{CMfBFb}}}}{{{f{CMl}}}{{n{CMlBFb}}}}{c{{n{e}}}{}{}}0000000000000{{}{{n{c}}}{}}0000000000000{{{f{CMh}}}{{n{OhBFb}}}}{{{f{CMf}}}{{n{OhBFb}}}}{{{f{CMl}}}{{n{OhBFb}}}}{fOf}0000000000000{{{f{bCMh}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{CMh}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{CMh}}}{{n{{Df{CO`}}BFb}}}}{{{f{CMl}}}{{n{{Df{CO`}}BFb}}}}{{{f{bCMh}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{CMh}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{l{AB`}}}{{l{AB`}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{Oj}}}{{l{Oj}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{COj{In}}{f{{COj{In}}}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{ABn}}}}ABn}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{COj{In}}{f{{COj{In}}}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{ABn}}}}ABn}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{l{c}}{l{c}}}{}{COn{AJl{}{{Ah{}}}}}}{{{l{c}}c}{}{COn{AJl{}{{Ah{}}}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{COj{In}}{f{{COj{In}}}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{b{l{c}}}}c}jCOn}{{{f{b{l{c}}}}{l{c}}}jCOn}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{ABn}}}}ABn}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{COj{In}}{f{{COj{In}}}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{ABn}}}}ABn}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{f{{f{c}}}{}}0000000{{{f{b}}}{{f{bc}}}{}}0000000{{{l{AFb}}}{{Df{{l{AFb}}}}}}{{{l{AFd}}}{{Df{{l{AFd}}}}}}{{{l{Oj}}}{{Df{{l{Oj}}}}}}{{{l{A@b}}}{{Df{{l{A@b}}}}}}{{{l{ABb}}}{{Df{{l{ABb}}}}}}{{{l{AB`}}}{{Df{{l{AB`}}}}}}{{{l{ABn}}ABn}{{Df{{l{ABn}}}}}}{{{l{h}}h}{{Df{{l{h}}}}}}{{{l{Oh}}Oh}{{Df{{l{Oh}}}}}}{{{l{A@d}}A@d}{{Df{{l{A@d}}}}}}{{{l{In}}In}{{Df{{l{In}}}}}}{{{l{A@`}}A@`}{{Df{{l{A@`}}}}}}{{{l{h}}{l{h}}}{{Df{{l{h}}}}}}{{{l{ABb}}{l{ABb}}}{{Df{{l{ABb}}}}}}{{{l{AFd}}{l{AFd}}}{{Df{{l{AFd}}}}}}{{{l{Oj}}{l{Oj}}}{{Df{{l{Oj}}}}}}{{{l{In}}{l{In}}}{{Df{{l{In}}}}}}{{{l{AB`}}{l{AB`}}}{{Df{{l{AB`}}}}}}{{{l{A@b}}{l{A@b}}}{{Df{{l{A@b}}}}}}{{{l{ABn}}{l{ABn}}}{{Df{{l{ABn}}}}}}{{{l{Oh}}{l{Oh}}}{{Df{{l{Oh}}}}}}{{{l{A@`}}{l{A@`}}}{{Df{{l{A@`}}}}}}{{{l{A@d}}{l{A@d}}}{{Df{{l{A@d}}}}}}{{{l{AFb}}{l{AFb}}}{{Df{{l{AFb}}}}}}{{{l{AFd}}}{{Df{{l{AFd}}}}}}{{{l{AB`}}}{{Df{{l{AB`}}}}}}{{{l{AFb}}}{{Df{{l{AFb}}}}}}{{{l{ABb}}}{{Df{{l{ABb}}}}}}{{{l{Oj}}}{{Df{{l{Oj}}}}}}{{{l{A@b}}}{{Df{{l{A@b}}}}}}{{{l{In}}}{{Df{{l{In}}}}}}{{{l{Oh}}}{{Df{{l{Oh}}}}}}{{{l{A@d}}}{{Df{{l{A@d}}}}}}{{{l{ABn}}}{{Df{{l{ABn}}}}}}{{{l{h}}}{{Df{{l{h}}}}}}{{{l{A@`}}}{{Df{{l{A@`}}}}}}{{{l{h}}Oh}{{Df{{l{h}}}}}}{{{l{Oh}}Oh}{{Df{{l{Oh}}}}}}{{{l{In}}Oh}{{Df{{l{In}}}}}}{{{l{AB`}}Oh}{{Df{{l{AB`}}}}}}{{{l{AFb}}Oh}{{Df{{l{AFb}}}}}}{{{l{AFd}}Oh}{{Df{{l{AFd}}}}}}{{{l{ABb}}Oh}{{Df{{l{ABb}}}}}}{{{l{A@b}}Oh}{{Df{{l{A@b}}}}}}{{{l{A@d}}Oh}{{Df{{l{A@d}}}}}}{{{l{Oj}}Oh}{{Df{{l{Oj}}}}}}{{{l{ABn}}Oh}{{Df{{l{ABn}}}}}}{{{l{A@`}}Oh}{{Df{{l{A@`}}}}}}{{{l{c}}{l{c}}{l{c}}}{{l{c}}}{COnFl}}{{{f{{l{c}}}}}{{l{c}}}COn}{{{f{D@`}}}D@`}{{{f{D@b}}}D@b}{{{f{D@d}}}D@d}{{{f{D@f}}}D@f}{{{f{{COj{c}}}}}{{COj{c}}}ACb}{{{f{{COl{c}}}}}{{COl{c}}}ACb}{{{f{D@h}}}D@h}{{f{f{bc}}}j{}}0000000{fj}0000000{{{f{{l{c}}}}{f{{l{c}}}}}Cd{COnFl}}{{{f{{COj{c}}}}{f{{COj{c}}}}}CdFl}{{{f{{COl{c}}}}{f{{COl{c}}}}}CdFl}{{{l{A@d}}}{{l{Oh}}}}{{{l{In}}}{{l{Oh}}}}{{{l{h}}}{{l{Oh}}}}{{{l{ABb}}}{{l{Oh}}}}{{{l{AB`}}}{{l{Oh}}}}{{{l{Oj}}}{{l{Oh}}}}{{{l{Oh}}}{{l{Oh}}}}{{{l{A@`}}}{{l{Oh}}}}{{{l{AFb}}}{{l{Oh}}}}{{{l{ABn}}}{{l{Oh}}}}{{{l{AFd}}}{{l{Oh}}}}{{{l{A@b}}}{{l{Oh}}}}{{{COj{ABn}}}Oh}{{{COj{A@d}}}Oh}{{{COj{A@b}}}Oh}{{{COj{A@`}}}Oh}{{{COj{Oh}}}Oh}{{{COj{In}}}Oh}{{{COj{h}}}Oh}{{{COj{Oj}}}Oh}{{{COj{AB`}}}Oh}{{{COj{ABb}}}Oh}{{{COj{AFb}}}Oh}{{{COj{AFd}}}Oh}{{{COl{Oj}}}Oh}{{{COl{A@d}}}Oh}{{{COl{AFd}}}Oh}{{{COl{A@`}}}Oh}{{{COl{h}}}Oh}{{{COl{AB`}}}Oh}{{{COl{In}}}Oh}{{{COl{ABb}}}Oh}{{{COl{Oh}}}Oh}{{{COl{ABn}}}Oh}{{{COl{A@b}}}Oh}{{{COl{AFb}}}Oh}{{{COj{A@d}}}Oh}>{{{COj{A@`}}}Oh}{{{COj{A@b}}}Oh}{{{COj{Oh}}}Oh}{{{COj{Oj}}}Oh}{{{COj{ABn}}}Oh}{{{COj{AFd}}}Oh}{{{COj{AB`}}}Oh}{{{COj{In}}}Oh}{{{COj{ABb}}}Oh}{{{COj{h}}}Oh}>{{{COl{h}}}Oh}{{{COl{AB`}}}Oh}{{{COl{AFd}}}Oh}{{{COl{A@`}}}Oh}{{{COl{A@d}}}Oh}{{{COl{ABb}}}Oh}{{{COl{Oj}}}Oh}{{{COl{AFb}}}Oh}{{{COl{A@b}}}Oh}{{{COl{ABn}}}Oh}{{{COl{In}}}Oh}{{}{{COj{c}}}Gb}{{}{{COl{c}}}Gb}{{{f{D@`}}}{{f{Ll}}}}{{{f{D@b}}}{{f{Ll}}}}{{{f{D@d}}}{{f{Ll}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{COj{In}}{f{{COj{In}}}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{ABn}}}}ABn}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{{{f{{l{c}}}}{f{{l{c}}}}}Af{COnADb}}{{{f{D@`}}{f{D@`}}}Af}{{{f{D@b}}{f{D@b}}}Af}{{{f{D@d}}{f{D@d}}}Af}{{{f{D@f}}{f{D@f}}}Af}{{{f{{COj{c}}}}{f{{COj{c}}}}}AfADb}{{{f{{COl{c}}}}{f{{COl{c}}}}}AfADb}{{{f{D@h}}{f{D@h}}}Af}{{{f{{l{c}}}}{f{bK`}}}{{n{jKb}}}{COnKf}}{{{f{{l{c}}}}{f{bK`}}}{{n{jKb}}}{COnKd}}{{{f{{l{c}}}}{f{bK`}}}{{n{jKb}}}{COnJn}}{{{f{{l{c}}}}{f{bK`}}}{{n{jKb}}}{COnKj}}{{{f{{l{c}}}}{f{bK`}}}{{n{jKb}}}{COnKl}}{{{f{{l{c}}}}{f{bK`}}}{{n{jKb}}}{COnKh}}{{{f{D@`}}{f{bK`}}}{{n{jKb}}}}0{{{f{D@b}}{f{bK`}}}{{n{jKb}}}}0{{{f{D@d}}{f{bK`}}}{{n{jKb}}}}0{{{f{D@f}}{f{bK`}}}{{n{jKb}}}}{{{f{{COj{c}}}}{f{bK`}}}{{n{jKb}}}Kj}{{{f{{COj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{COj{c}}}}{f{bK`}}}{{n{jKb}}}Kh}{{{f{{COj{c}}}}{f{bK`}}}{{n{jKb}}}Kl}{{{f{{COj{c}}}}{f{bK`}}}{{n{jKb}}}Kd}{{{f{{COj{c}}}}{f{bK`}}}{{n{jKb}}}Kf}{{{f{{COl{c}}}}{f{bK`}}}{{n{jKb}}}Kd}{{{f{{COl{c}}}}{f{bK`}}}{{n{jKb}}}Kj}{{{f{{COl{c}}}}{f{bK`}}}{{n{jKb}}}Kh}{{{f{{COl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{COl{c}}}}{f{bK`}}}{{n{jKb}}}Kl}{{{f{{COl{c}}}}{f{bK`}}}{{n{jKb}}}Kf}{{{f{D@h}}{f{bK`}}}{{n{jKb}}}}{{{l{ABb}}}{{l{AB`}}}}{{{l{A@`}}}{{l{AFb}}}}{{{l{A@d}}}{{l{A@`}}}}{{{l{In}}}{{l{A@`}}}}{{{l{In}}}{{l{Oh}}}}{{{l{In}}}{{l{A@d}}}}{D@j{{l{h}}}}{{{l{A@d}}}{{l{ABn}}}}{{{l{A@d}}}{{l{h}}}}{{{l{A@d}}}{{l{Oh}}}}{{{l{Oh}}}{{l{A@`}}}}{{{l{Oh}}}{{l{ABn}}}}{{{l{A@`}}}{{l{ABn}}}}{{{l{In}}}{{l{h}}}}{{{l{ABb}}}{{l{Oj}}}}{{{l{ABb}}}{{l{A@b}}}}{{{l{ABb}}}{{l{AFb}}}}{{{l{ABb}}}{{l{AFd}}}}{{{l{AB`}}}{{l{Oj}}}}{{{l{AB`}}}{{l{A@b}}}}{{{l{AB`}}}{{l{AFb}}}}{{{l{AB`}}}{{l{AFd}}}}{{{l{Oj}}}{{l{A@b}}}}{{{l{Oj}}}{{l{AFb}}}}{{{l{A@b}}}{{l{AFb}}}}{{{l{In}}}{{l{AB`}}}}{{{l{In}}}{{l{Oj}}}}{{{l{In}}}{{l{A@b}}}}{{{l{In}}}{{l{AFb}}}}{{{l{In}}}{{l{AFd}}}}{{{l{A@d}}}{{l{Oj}}}}{{{l{A@d}}}{{l{A@b}}}}{{{l{A@d}}}{{l{AFb}}}}{{{l{Oh}}}{{l{A@b}}}}{cc{}}{{{l{Oh}}}{{l{AFb}}}}{{{l{In}}}{{l{ABn}}}}2{JjD@b}{Jjc{}}{BCjD@b}555555{{{l{Oh}}}{{l{Oh}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{A@d}}}{{l{A@d}}}}{{{l{In}}}{{l{In}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{A@`}}}{{l{A@`}}}}{{{l{Oj}}}{{l{Oj}}}}{{{l{h}}}{{l{h}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{ABn}}}{{l{ABn}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COj{ABn}}}{{COj{ABn}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{A@`}}}{{COj{A@`}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{h}}}{{COj{h}}}}{{{COj{In}}}{{COj{In}}}}{{{COj{A@d}}}{{COj{A@d}}}}{{{COj{Oh}}}{{COj{Oh}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COl{In}}}{{COl{In}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{h}}}{{COl{h}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{Oh}}}{{l{Oh}}}}{{{l{In}}}{{l{In}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{A@`}}}{{l{A@`}}}}{{{l{Oj}}}{{l{Oj}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{h}}}{{l{h}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{ABn}}}{{l{ABn}}}}{{{l{A@d}}}{{l{A@d}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{h}}}{{COj{h}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COj{A@`}}}{{COj{A@`}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{In}}}{{COj{In}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COj{A@d}}}{{COj{A@d}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COj{Oh}}}{{COj{Oh}}}}{{{COj{ABn}}}{{COj{ABn}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{COl{h}}}{{COl{h}}}}{{{COl{In}}}{{COl{In}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{f{bc}}}{{Df{{f{b{l{c}}}}}}}COn}{{{f{bc}}}{{f{b{l{c}}}}}COn}{{{f{Ll}}}{{n{{l{AFd}}}}}}{{{f{Ll}}}{{n{{l{A@b}}}}}}{{{f{Ll}}}{{n{{l{A@d}}}}}}{{{f{Ll}}}{{n{{l{AFb}}}}}}{{{f{Ll}}}{{n{{l{ABb}}}}}}{{{f{Ll}}}{{n{{l{AB`}}}}}}{{{f{Ll}}}{{n{{l{h}}}}}}{{{f{Ll}}}{{n{{l{ABn}}}}}}{{{f{Ll}}}{{n{{l{A@`}}}}}}{{{f{Ll}}}{{n{{l{Oj}}}}}}{{{f{Ll}}}{{n{{l{In}}}}}}{{{f{Ll}}}{{n{{l{Oh}}}}}}{{{f{{l{c}}}}{f{{l{c}}}}}Af{COnFb}}{{{l{c}}}cCOn}1{{{f{{l{c}}}}{f{be}}}j{COnAF`}AEn}{{{f{{COj{c}}}}{f{be}}}jAF`AEn}{{{f{{COl{c}}}}{f{be}}}jAF`AEn}{{{l{h}}}Oh}{{{l{Oh}}}Oh}{{{l{A@`}}}Oh}{{{l{In}}}Oh}{{{l{A@d}}}Oh}{{{l{ABn}}}Oh}025134{{}c{}}0000000{{{l{AFd}}}Af}{{{l{AB`}}}Af}{{{l{ABb}}}Af}{{{l{AFb}}}Af}{{{l{A@b}}}Af}{{{l{Oj}}}Af}{{{COj{AFd}}}Af}{{{COj{AB`}}}Af}{{{COj{ABb}}}Af}{{{COj{AFb}}}Af}{{{COj{Oj}}}Af}{{{COj{A@b}}}Af}{{{COl{ABb}}}Af}{{{COl{AFb}}}Af}{{{COl{A@b}}}Af}{{{COl{AFd}}}Af}{{{COl{AB`}}}Af}{{{COl{Oj}}}Af}{{{l{AB`}}}Af}{{{l{AFd}}}Af}{{{l{AFb}}}Af}{{{l{A@b}}}Af}{{{l{Oj}}}Af}{{{l{ABb}}}Af}=<>{{{COj{AFd}}}Af}{{{COj{ABb}}}Af}{{{COj{AB`}}}Af}9=<>:;{{{l{In}}}Af}{{{l{h}}}Af}{{{l{Oh}}}Af}{{{l{ABn}}}Af}{{{l{A@`}}}Af}{{{l{A@d}}}Af}{{{COj{h}}}Af}{{{COj{Oh}}}Af}{{{COj{A@d}}}Af}{{{COj{A@`}}}Af}{{{COj{ABn}}}Af}{{{COj{In}}}Af}{{{COl{Oh}}}Af}{{{COl{h}}}Af}{{{COl{A@d}}}Af}{{{COl{A@`}}}Af}{{{COl{ABn}}}Af}{{{COl{In}}}Af}{{{l{Oh}}}{{l{Oh}}}}{{{l{ABn}}}{{l{ABn}}}}{{{l{A@`}}}{{l{A@`}}}}{{{l{h}}}{{l{h}}}}{{{l{In}}}{{l{In}}}}{{{l{A@d}}}{{l{A@d}}}}{{{f{D@d}}}{{f{D@f}}}}{{{f{{l{c}}}}{f{{l{c}}}}}Af{COnFb}}{{{l{A@b}}}Oh}{{{l{Oj}}}Oh}{{{l{Oh}}}Oh}{{{l{AFd}}}Oh}{{{l{AB`}}}Oh}{{{l{ABb}}}Oh}{{{l{h}}}Oh}{{{l{AFb}}}Oh}{{{l{ABn}}}Oh}{{{l{In}}}Oh}{{{l{A@d}}}Oh}{{{l{A@`}}}Oh}{{{COj{A@b}}}Oh}{{{COj{ABn}}}Oh}{{{COj{AFd}}}Oh}{{{COj{ABb}}}Oh}{{{COj{Oj}}}Oh}{{{COj{AB`}}}Oh}{{{COj{AFb}}}Oh}{{{COj{h}}}Oh}{{{COj{In}}}Oh}{{{COj{A@d}}}Oh}{{{COj{Oh}}}Oh}{{{COj{A@`}}}Oh}{{{COl{ABb}}}Oh}{{{COl{In}}}Oh}{{{COl{A@`}}}Oh}{{{COl{ABn}}}Oh}{{{COl{Oj}}}Oh}{{{COl{A@b}}}Oh}{{{COl{AFd}}}Oh}{{{COl{AFb}}}Oh}{{{COl{A@d}}}Oh}{{{COl{AB`}}}Oh}{{{COl{h}}}Oh}{{{COl{Oh}}}Oh}{{{f{{l{c}}}}{f{{l{c}}}}}Af{COnFb}}{{{l{c}}{l{c}}}{{l{c}}}{COnFl}}{{{l{A@`}}{l{A@`}}}{{l{A@`}}}}{{{l{h}}{l{h}}}{{l{h}}}}{{{l{Oh}}{l{Oh}}}{{l{Oh}}}}{{{l{A@d}}{l{A@d}}}{{l{A@d}}}}{{{l{In}}{l{In}}}{{l{In}}}}{{{l{ABn}}{l{ABn}}}{{l{ABn}}}}6{{{COj{In}}{f{{COj{In}}}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{f{b{COl{ABn}}}}ABn}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{{l{c}}}}{f{{l{c}}}}}Af{COnADb}}{{{f{{l{AFd}}}}}}{{{l{ABb}}}{{l{ABb}}}}{{{f{{l{ABb}}}}}}{{{l{AB`}}}{{l{AB`}}}}{{{f{{l{AB`}}}}}}{{{l{Oj}}}{{l{Oj}}}}{{{f{{l{Oj}}}}}}{{{l{A@b}}}{{l{A@b}}}}{{{f{{l{A@b}}}}}}{{{l{AFb}}}{{l{AFb}}}}{{{f{{l{AFb}}}}}}{{{l{AFd}}}{{l{AFd}}}}{{{f{{COj{AFb}}}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{ABb}}}}}}{{{f{{COj{AB`}}}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{AFd}}}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{A@b}}}}}}{{{f{{COj{Oj}}}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{f{{COl{ABb}}}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{A@b}}}}}}{{{f{{COl{In}}}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{Oj}}}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{AFb}}}}}}{{{f{{COl{AB`}}}}}}{{{f{{COl{A@d}}}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{COl{In}}}{{COl{In}}}}{{{f{{COl{h}}}}}}{{{f{{COl{A@`}}}}}}{{{f{{COl{Oh}}}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{COl{h}}}{{COl{h}}}}{{{f{{COl{ABn}}}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{AFd}}}}}}{{{COl{Oj}}}{{COl{Oj}}}}{c{{Df{{l{c}}}}}COn}{c{{l{c}}}COn}6;{{{COl{A@d}}}{{COl{A@d}}}}8{{{COl{A@`}}}{{COl{A@`}}}}?{{{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{Oj}}}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{f{{COj{AFd}}}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{f{{COj{ABn}}}}}}{{{COj{ABn}}}{{COj{ABn}}}}{{{f{{COj{A@`}}}}}}{{{COj{A@`}}}{{COj{A@`}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{AFb}}}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{ABb}}}}}}{{{f{{COj{A@d}}}}}}{{{COj{A@d}}}{{COj{A@d}}}}{{{f{{COj{A@b}}}}}}{{{f{{COj{In}}}}}}{{{COj{In}}}{{COj{In}}}}{{{f{{COj{h}}}}}}{{{COj{h}}}{{COj{h}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{AB`}}}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{f{{COj{Oh}}}}}}{{{f{{COl{AB`}}}}}}{{{COl{h}}}{{COl{h}}}}{{{f{{COl{Oh}}}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{f{{COl{Oj}}}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{A@b}}}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{AFb}}}}}}{{{f{{COl{h}}}}}}{{{f{{COl{A@d}}}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{f{{COl{In}}}}}}{{{COl{In}}}{{COl{In}}}}{{{f{{COl{ABb}}}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{f{{COl{AFd}}}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{ABn}}}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{f{{COl{A@`}}}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{l{AFd}}}{{G`{{l{AFd}}Af}}}}{{{l{ABb}}}{{G`{{l{ABb}}Af}}}}{{{l{AFb}}}{{G`{{l{AFb}}Af}}}}{{{l{A@b}}}{{G`{{l{A@b}}Af}}}}{{{l{Oj}}}{{G`{{l{Oj}}Af}}}}{{{l{AB`}}}{{G`{{l{AB`}}Af}}}}541023{{{f{{l{c}}}}{f{{l{c}}}}}{{Df{Cd}}}{COnFb}}{{{f{{COj{c}}}}{f{{COj{c}}}}}{{Df{Cd}}}Fb}{{{f{{COl{c}}}}{f{{COl{c}}}}}{{Df{Cd}}}Fb}{{{COj{AFb}}Oh}{{COj{AFb}}}}{{{COj{A@`}}Oh}{{COj{A@`}}}}{{{COj{ABn}}Oh}{{COj{ABn}}}}{{{COj{AFd}}Oh}{{COj{AFd}}}}{{{COj{ABb}}Oh}{{COj{ABb}}}}{{{COj{AB`}}Oh}{{COj{AB`}}}}{{{COj{Oj}}Oh}{{COj{Oj}}}}{{{COj{A@b}}Oh}{{COj{A@b}}}}{{{COj{h}}Oh}{{COj{h}}}}{{{COj{Oh}}Oh}{{COj{Oh}}}}{{{COj{In}}Oh}{{COj{In}}}}{{{COj{A@d}}Oh}{{COj{A@d}}}}{{{COl{Oj}}Oh}{{COl{Oj}}}}{{{COl{ABn}}Oh}{{COl{ABn}}}}{{{COl{A@`}}Oh}{{COl{A@`}}}}{{{COl{AB`}}Oh}{{COl{AB`}}}}{{{COl{h}}Oh}{{COl{h}}}}{{{COl{A@b}}Oh}{{COl{A@b}}}}{{{COl{Oh}}Oh}{{COl{Oh}}}}{{{COl{AFb}}Oh}{{COl{AFb}}}}{{{COl{AFd}}Oh}{{COl{AFd}}}}{{{COl{In}}Oh}{{COl{In}}}}{{{COl{ABb}}Oh}{{COl{ABb}}}}{{{COl{A@d}}Oh}{{COl{A@d}}}}{c{{COl{AB`}}}{{Ab{}{{A`{{f{{COl{AB`}}}}}}}}}}{c{{COl{ABb}}}{{Ab{}{{A`{{f{{COl{ABb}}}}}}}}}}{c{{COl{h}}}{{Ab{}{{A`{{f{{COl{h}}}}}}}}}}{c{{COl{A@b}}}{{Ab{}{{A`{{f{{COl{A@b}}}}}}}}}}{c{{COl{h}}}{{Ab{}{{A`{{COl{h}}}}}}}}{c{{COl{ABn}}}{{Ab{}{{A`{{f{{COl{ABn}}}}}}}}}}{c{{COl{AFb}}}{{Ab{}{{A`{{COl{AFb}}}}}}}}{c{{COl{ABn}}}{{Ab{}{{A`{{COl{ABn}}}}}}}}{c{{COl{AFb}}}{{Ab{}{{A`{{f{{COl{AFb}}}}}}}}}}{c{{COl{ABb}}}{{Ab{}{{A`{{COl{ABb}}}}}}}}{c{{COl{A@`}}}{{Ab{}{{A`{{COl{A@`}}}}}}}}{c{{COl{Oh}}}{{Ab{}{{A`{{f{{COl{Oh}}}}}}}}}}{c{{COl{Oh}}}{{Ab{}{{A`{{COl{Oh}}}}}}}}{c{{COl{AFd}}}{{Ab{}{{A`{{COl{AFd}}}}}}}}{c{{COl{A@b}}}{{Ab{}{{A`{{COl{A@b}}}}}}}}{c{{COl{A@d}}}{{Ab{}{{A`{{f{{COl{A@d}}}}}}}}}}{c{{COl{Oj}}}{{Ab{}{{A`{{f{{COl{Oj}}}}}}}}}}{c{{COl{Oj}}}{{Ab{}{{A`{{COl{Oj}}}}}}}}{c{{COl{In}}}{{Ab{}{{A`{{COl{In}}}}}}}}{c{{COl{AB`}}}{{Ab{}{{A`{{COl{AB`}}}}}}}}{c{{COl{A@d}}}{{Ab{}{{A`{{COl{A@d}}}}}}}}{c{{COl{AFd}}}{{Ab{}{{A`{{f{{COl{AFd}}}}}}}}}}{c{{COl{In}}}{{Ab{}{{A`{{f{{COl{In}}}}}}}}}}{c{{COl{A@`}}}{{Ab{}{{A`{{f{{COl{A@`}}}}}}}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{COj{In}}{f{{COj{In}}}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{ABn}}}}ABn}j}{{{l{Oj}}}{{l{Oj}}}}{{{l{ABn}}}{{l{ABn}}}}{{{l{h}}}{{l{h}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{A@d}}}{{l{A@d}}}}{{{l{Oh}}}{{l{Oh}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{In}}}{{l{In}}}}{{{l{A@`}}}{{l{A@`}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{AB`}}}{{l{AB`}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{ABn}}}{{COj{ABn}}}}{{{COj{Oh}}}{{COj{Oh}}}}{{{COj{A@`}}}{{COj{A@`}}}}{{{COj{A@d}}}{{COj{A@d}}}}{{{COj{In}}}{{COj{In}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COj{h}}}{{COj{h}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{h}}}{{COl{h}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{COl{In}}}{{COl{In}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{l{ABn}}Oh}{{l{ABn}}}}{{{l{Oh}}Oh}{{l{Oh}}}}{{{l{A@b}}Oh}{{l{A@b}}}}{{{l{A@`}}Oh}{{l{A@`}}}}{{{l{AFd}}Oh}{{l{AFd}}}}{{{l{AB`}}Oh}{{l{AB`}}}}{{{l{AFb}}Oh}{{l{AFb}}}}{{{l{ABb}}Oh}{{l{ABb}}}}{{{l{A@d}}Oh}{{l{A@d}}}}{{{l{Oj}}Oh}{{l{Oj}}}}{{{l{In}}Oh}{{l{In}}}}{{{l{h}}Oh}{{l{h}}}}{{{COj{h}}Oh}{{COj{h}}}}{{{COj{ABb}}Oh}{{COj{ABb}}}}{{{COj{Oh}}Oh}{{COj{Oh}}}}{{{COj{A@d}}Oh}{{COj{A@d}}}}{{{COj{A@`}}Oh}{{COj{A@`}}}}{{{COj{A@b}}Oh}{{COj{A@b}}}}{{{COj{AFb}}Oh}{{COj{AFb}}}}{{{COj{AB`}}Oh}{{COj{AB`}}}}{{{COj{ABn}}Oh}{{COj{ABn}}}}{{{COj{In}}Oh}{{COj{In}}}}{{{COj{Oj}}Oh}{{COj{Oj}}}}{{{COj{AFd}}Oh}{{COj{AFd}}}}{{{COl{Oh}}Oh}{{COl{Oh}}}}{{{COl{AFb}}Oh}{{COl{AFb}}}}{{{COl{A@b}}Oh}{{COl{A@b}}}}{{{COl{A@d}}Oh}{{COl{A@d}}}}{{{COl{AFd}}Oh}{{COl{AFd}}}}{{{COl{Oj}}Oh}{{COl{Oj}}}}{{{COl{h}}Oh}{{COl{h}}}}{{{COl{ABn}}Oh}{{COl{ABn}}}}{{{COl{In}}Oh}{{COl{In}}}}{{{COl{ABb}}Oh}{{COl{ABb}}}}{{{COl{A@`}}Oh}{{COl{A@`}}}}{{{COl{AB`}}Oh}{{COl{AB`}}}}{{{l{A@d}}Oh}{{l{A@d}}}}{{{l{AFd}}Oh}{{l{AFd}}}}{{{l{Oh}}Oh}{{l{Oh}}}}{{{l{A@b}}Oh}{{l{A@b}}}}{{{l{A@`}}Oh}{{l{A@`}}}}{{{l{AB`}}Oh}{{l{AB`}}}}{{{l{ABb}}Oh}{{l{ABb}}}}{{{l{Oj}}Oh}{{l{Oj}}}}{{{l{h}}Oh}{{l{h}}}}{{{l{ABn}}Oh}{{l{ABn}}}}{{{l{In}}Oh}{{l{In}}}}{{{l{AFb}}Oh}{{l{AFb}}}}{{{COj{In}}Oh}{{COj{In}}}}{{{COj{ABb}}Oh}{{COj{ABb}}}}{{{COj{Oh}}Oh}{{COj{Oh}}}}{{{COj{AFb}}Oh}{{COj{AFb}}}}{{{COj{AFd}}Oh}{{COj{AFd}}}}{{{COj{A@b}}Oh}{{COj{A@b}}}}{{{COj{A@d}}Oh}{{COj{A@d}}}}{{{COj{A@`}}Oh}{{COj{A@`}}}}{{{COj{Oj}}Oh}{{COj{Oj}}}}{{{COj{AB`}}Oh}{{COj{AB`}}}}{{{COj{ABn}}Oh}{{COj{ABn}}}}{{{COj{h}}Oh}{{COj{h}}}}{{{COl{ABb}}Oh}{{COl{ABb}}}}{{{COl{AFd}}Oh}{{COl{AFd}}}}{{{COl{AFb}}Oh}{{COl{AFb}}}}{{{COl{AB`}}Oh}{{COl{AB`}}}}{{{COl{ABn}}Oh}{{COl{ABn}}}}{{{COl{A@`}}Oh}{{COl{A@`}}}}{{{COl{Oj}}Oh}{{COl{Oj}}}}{{{COl{Oh}}Oh}{{COl{Oh}}}}{{{COl{A@d}}Oh}{{COl{A@d}}}}{{{COl{In}}Oh}{{COl{In}}}}{{{COl{h}}Oh}{{COl{h}}}}{{{COl{A@b}}Oh}{{COl{A@b}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{Oj}}}{{l{Oj}}}}{{{l{A@d}}A@d}{{l{A@d}}}}{{{l{A@`}}A@`}{{l{A@`}}}}{{{l{h}}h}{{l{h}}}}{{{l{ABn}}ABn}{{l{ABn}}}}{{{l{In}}In}{{l{In}}}}{{{l{Oh}}Oh}{{l{Oh}}}}{{{l{ABb}}{l{ABb}}}{{l{ABb}}}}{{{l{In}}{l{In}}}{{l{In}}}}{{{l{A@b}}{l{A@b}}}{{l{A@b}}}}{{{l{A@d}}{l{A@d}}}{{l{A@d}}}}{{{l{AB`}}{l{AB`}}}{{l{AB`}}}}{{{l{AFd}}{l{AFd}}}{{l{AFd}}}}{{{l{A@`}}{l{A@`}}}{{l{A@`}}}}{{{l{h}}{l{h}}}{{l{h}}}}{{{l{ABn}}{l{ABn}}}{{l{ABn}}}}{{{l{Oh}}{l{Oh}}}{{l{Oh}}}}{{{l{AFb}}{l{AFb}}}{{l{AFb}}}}{{{l{Oj}}{l{Oj}}}{{l{Oj}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{Oj}}}{{l{Oj}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{A@`}}Oh}{{l{A@`}}}}{{{l{h}}Oh}{{l{h}}}}{{{l{Oj}}Oh}{{l{Oj}}}}{{{l{A@d}}Oh}{{l{A@d}}}}{{{l{ABb}}Oh}{{l{ABb}}}}{{{l{AFd}}Oh}{{l{AFd}}}}{{{l{AB`}}Oh}{{l{AB`}}}}{{{l{In}}Oh}{{l{In}}}}{{{l{AFb}}Oh}{{l{AFb}}}}{{{l{Oh}}Oh}{{l{Oh}}}}{{{l{A@b}}Oh}{{l{A@b}}}}{{{l{ABn}}Oh}{{l{ABn}}}}{{{COl{In}}h}{{COl{In}}}}{{{COl{A@d}}h}{{COl{A@d}}}}{{{COl{Oh}}{f{h}}}}{{{f{{COl{Oh}}}}{f{h}}}}{{{COl{A@`}}h}{{COl{A@`}}}}{{{f{{COl{Oh}}}}h}}{{{COl{A@`}}{f{h}}}}{{{f{{COl{A@`}}}}{f{h}}}}{{{COl{ABn}}h}{{COl{ABn}}}}{{{f{{COl{ABn}}}}h}}{{{COl{ABn}}{f{h}}}}{{{f{{COl{ABn}}}}{f{h}}}}{{{COl{h}}h}{{COl{h}}}}{{{f{{COl{h}}}}h}}{{{COl{h}}{f{h}}}}{{{f{{COl{h}}}}{f{h}}}}{{{COl{ABb}}h}{{COl{ABb}}}}{{{f{{COl{ABb}}}}h}}{{{COl{ABb}}{f{h}}}}{{{f{{COl{ABb}}}}{f{h}}}}{{{COl{AB`}}h}{{COl{AB`}}}}{{{f{{COl{AB`}}}}h}}{{{COl{AB`}}{f{h}}}}{{{f{{COl{AB`}}}}{f{h}}}}{{{COl{Oj}}h}{{COl{Oj}}}}{{{f{{COl{Oj}}}}h}}{{{COl{Oj}}{f{h}}}}{{{f{{COl{Oj}}}}{f{h}}}}{{{COl{A@b}}h}{{COl{A@b}}}}{{{f{{COl{A@b}}}}h}}{{{COl{A@b}}{f{h}}}}{{{f{{COl{A@b}}}}{f{h}}}}{{{COl{AFb}}h}{{COl{AFb}}}}{{{f{{COl{AFb}}}}h}}{{{COl{AFb}}{f{h}}}}{{{f{{COl{AFb}}}}{f{h}}}}{{{f{{COl{AFd}}}}{f{h}}}}{{{COl{Oh}}h}{{COl{Oh}}}}{{{COl{AFd}}h}{{COl{AFd}}}}{{{f{{COl{AFd}}}}h}}{{{f{{COl{A@d}}}}{f{h}}}}{{{COl{AFd}}{f{h}}}}{{{COl{A@d}}{f{h}}}}{{{f{{COl{A@d}}}}h}}{{{f{{COl{In}}}}h}}{{{COl{In}}{f{h}}}}{{{f{{COl{In}}}}{f{h}}}}{{{f{{COl{A@`}}}}h}}{{{f{b{COl{AFd}}}}h}j}{{{f{b{COl{In}}}}h}j}{{{f{b{COl{A@b}}}}h}j}{{{f{b{COl{AB`}}}}h}j}{{{f{b{COl{Oj}}}}{f{h}}}j}{{{f{b{COl{Oj}}}}h}j}{{{f{b{COl{AB`}}}}{f{h}}}j}{{{f{b{COl{ABb}}}}{f{h}}}j}{{{f{b{COl{ABb}}}}h}j}{{{f{b{COl{AFb}}}}h}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{A@b}}}}{f{h}}}j}{{{f{b{COl{ABn}}}}{f{h}}}j}{{{f{b{COl{ABn}}}}h}j}{{{f{b{COl{A@`}}}}{f{h}}}j}{{{f{b{COl{A@`}}}}h}j}{{{f{b{COl{Oh}}}}{f{h}}}j}{{{f{b{COl{Oh}}}}h}j}{{{f{b{COl{A@d}}}}{f{h}}}j}{{{f{b{COl{A@d}}}}h}j}{{{f{b{COl{In}}}}{f{h}}}j}{{{f{b{COl{AFd}}}}{f{h}}}j}{{{f{b{COl{AFb}}}}{f{h}}}j}{{{f{{COl{ABb}}}}{f{h}}}}{{{f{{COl{A@`}}}}{f{h}}}}{{{COl{Oj}}{f{h}}}}{{{COl{A@b}}h}{{COl{A@b}}}}{{{f{{COl{ABn}}}}{f{h}}}}{{{COl{In}}{f{h}}}}{{{f{{COl{In}}}}h}}{{{COl{In}}h}{{COl{In}}}}{{{f{{COl{In}}}}{f{h}}}}{{{COl{A@d}}h}{{COl{A@d}}}}{{{COl{ABn}}{f{h}}}}{{{f{{COl{AB`}}}}{f{h}}}}{{{COl{AB`}}{f{h}}}}{{{f{{COl{AB`}}}}h}}{{{f{{COl{Oj}}}}h}}{{{f{{COl{AFd}}}}{f{h}}}}{{{COl{h}}{f{h}}}}{{{COl{AFd}}{f{h}}}}{{{f{{COl{AFd}}}}h}}{{{COl{AB`}}h}{{COl{AB`}}}}{{{f{{COl{ABn}}}}h}}{{{f{{COl{A@b}}}}{f{h}}}}{{{COl{AFd}}h}{{COl{AFd}}}}{{{f{{COl{AFb}}}}{f{h}}}}{{{f{{COl{Oh}}}}{f{h}}}}{{{COl{A@`}}h}{{COl{A@`}}}}{{{f{{COl{A@`}}}}h}}{{{COl{AFb}}{f{h}}}}{{{f{{COl{A@d}}}}h}}{{{COl{A@d}}{f{h}}}}{{{COl{ABb}}{f{h}}}}{{{COl{h}}h}{{COl{h}}}}{{{f{{COl{Oj}}}}{f{h}}}}{{{COl{Oj}}h}{{COl{Oj}}}}{{{f{{COl{AFb}}}}h}}{{{f{{COl{ABb}}}}h}}{{{COl{AFb}}h}{{COl{AFb}}}}{{{COl{ABb}}h}{{COl{ABb}}}}{{{f{{COl{h}}}}{f{h}}}}{{{f{{COl{A@d}}}}{f{h}}}}{{{COl{ABn}}h}{{COl{ABn}}}}{{{f{{COl{A@b}}}}h}}{{{COl{A@`}}{f{h}}}}{{{COl{A@b}}{f{h}}}}{{{COl{Oh}}h}{{COl{Oh}}}}{{{f{{COl{Oh}}}}h}}{{{COl{Oh}}{f{h}}}}{{{f{{COl{h}}}}h}}{{{f{b{COl{ABb}}}}h}j}{{{f{b{COl{A@`}}}}{f{h}}}j}{{{f{b{COl{Oh}}}}{f{h}}}j}{{{f{b{COl{A@b}}}}{f{h}}}j}{{{f{b{COl{AFd}}}}{f{h}}}j}{{{f{b{COl{AB`}}}}h}j}{{{f{b{COl{AB`}}}}{f{h}}}j}{{{f{b{COl{Oj}}}}h}j}{{{f{b{COl{Oj}}}}{f{h}}}j}{{{f{b{COl{A@b}}}}h}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{ABn}}}}{f{h}}}j}{{{f{b{COl{In}}}}h}j}{{{f{b{COl{AFd}}}}h}j}{{{f{b{COl{Oh}}}}h}j}{{{f{b{COl{ABn}}}}h}j}{{{f{b{COl{ABb}}}}{f{h}}}j}{{{f{b{COl{AFb}}}}h}j}{{{f{b{COl{A@d}}}}h}j}{{{f{b{COl{In}}}}{f{h}}}j}{{{f{b{COl{AFb}}}}{f{h}}}j}{{{f{b{COl{A@`}}}}h}j}{{{f{b{COl{A@d}}}}{f{h}}}j}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COj{h}}{COj{h}}}{{COj{h}}}}{{{f{{COj{ABn}}}}{f{{COj{ABn}}}}}}{{{COj{AFb}}{f{{COj{AFb}}}}}}{{{f{{COj{AFb}}}}{f{{COj{AFb}}}}}}{{{f{{COj{AFd}}}}{COj{AFd}}}}{{{f{{COj{h}}}}{COj{h}}}}{{{COj{h}}{f{{COj{h}}}}}}{{{f{{COj{h}}}}{f{{COj{h}}}}}}{{{f{{COj{AFb}}}}{COj{AFb}}}}{{{COj{AFd}}{COj{AFd}}}{{COj{AFd}}}}{{{COj{AB`}}{f{{COj{AB`}}}}}}{{{f{{COj{AB`}}}}{f{{COj{AB`}}}}}}{{{f{{COj{ABn}}}}{COj{ABn}}}}{{{COj{In}}{COj{In}}}{{COj{In}}}}{{{COj{ABn}}{COj{ABn}}}{{COj{ABn}}}}{{{COj{Oj}}{COj{Oj}}}{{COj{Oj}}}}{{{f{{COj{AB`}}}}{COj{AB`}}}}{{{f{{COj{Oh}}}}{COj{Oh}}}}{{{COj{AB`}}{COj{AB`}}}{{COj{AB`}}}}{{{f{{COj{A@`}}}}{f{{COj{A@`}}}}}}{{{f{{COj{A@b}}}}{COj{A@b}}}}{{{f{{COj{In}}}}{f{{COj{In}}}}}}{{{COj{A@`}}{f{{COj{A@`}}}}}}{{{f{{COj{In}}}}{COj{In}}}}{{{COj{Oj}}{f{{COj{Oj}}}}}}{{{COj{ABn}}{f{{COj{ABn}}}}}}{{{COj{AFb}}{COj{AFb}}}{{COj{AFb}}}}{{{COj{In}}{f{{COj{In}}}}}}{{{COj{AFd}}{f{{COj{AFd}}}}}}{{{f{{COj{A@`}}}}{COj{A@`}}}}{{{f{{COj{ABb}}}}{f{{COj{ABb}}}}}}{{{COj{ABb}}{f{{COj{ABb}}}}}}{{{COj{A@`}}{COj{A@`}}}{{COj{A@`}}}}{{{f{{COj{AFd}}}}{f{{COj{AFd}}}}}}{{{COj{Oh}}{COj{Oh}}}{{COj{Oh}}}}{{{f{{COj{A@d}}}}{f{{COj{A@d}}}}}}{{{f{{COj{Oh}}}}{f{{COj{Oh}}}}}}{{{COj{A@d}}{f{{COj{A@d}}}}}}{{{f{{COj{ABb}}}}{COj{ABb}}}}{{{COj{Oh}}{f{{COj{Oh}}}}}}{{{f{{COj{Oj}}}}{f{{COj{Oj}}}}}}{{{COj{A@b}}{COj{A@b}}}{{COj{A@b}}}}{{{COj{A@b}}{f{{COj{A@b}}}}}}{{{f{{COj{A@d}}}}{COj{A@d}}}}{{{COj{A@d}}{COj{A@d}}}{{COj{A@d}}}}{{{COj{ABb}}{COj{ABb}}}{{COj{ABb}}}}{{{f{{COj{A@b}}}}{f{{COj{A@b}}}}}}{{{f{{COj{Oj}}}}{COj{Oj}}}}{{{f{{COl{AFd}}}}{f{{COl{AFd}}}}}}{{{COl{A@`}}{COl{A@`}}}{{COl{A@`}}}}{{{COl{A@d}}{f{{COl{A@d}}}}}}{{{f{{COl{AB`}}}}{f{{COl{AB`}}}}}}{{{COl{Oj}}{COl{Oj}}}{{COl{Oj}}}}{{{f{{COl{Oj}}}}{COl{Oj}}}}{{{COl{Oj}}{f{{COl{Oj}}}}}}{{{f{{COl{Oj}}}}{f{{COl{Oj}}}}}}{{{COl{AB`}}{f{{COl{AB`}}}}}}{{{f{{COl{AB`}}}}{COl{AB`}}}}{{{COl{A@b}}{COl{A@b}}}{{COl{A@b}}}}{{{f{{COl{A@b}}}}{COl{A@b}}}}{{{COl{A@b}}{f{{COl{A@b}}}}}}{{{f{{COl{A@b}}}}{f{{COl{A@b}}}}}}{{{COl{AFb}}{COl{AFb}}}{{COl{AFb}}}}{{{f{{COl{AFb}}}}{COl{AFb}}}}{{{f{{COl{A@d}}}}{f{{COl{A@d}}}}}}{{{COl{Oh}}{COl{Oh}}}{{COl{Oh}}}}{{{COl{AB`}}{COl{AB`}}}{{COl{AB`}}}}{{{COl{AFb}}{f{{COl{AFb}}}}}}{{{f{{COl{ABb}}}}{f{{COl{ABb}}}}}}{{{f{{COl{AFb}}}}{f{{COl{AFb}}}}}}{{{COl{ABb}}{f{{COl{ABb}}}}}}{{{f{{COl{ABb}}}}{COl{ABb}}}}{{{f{{COl{Oh}}}}{COl{Oh}}}}{{{COl{ABb}}{COl{ABb}}}{{COl{ABb}}}}{{{COl{AFd}}{f{{COl{AFd}}}}}}{{{COl{Oh}}{f{{COl{Oh}}}}}}{{{f{{COl{AFd}}}}{COl{AFd}}}}{{{f{{COl{A@d}}}}{COl{A@d}}}}{{{COl{A@d}}{COl{A@d}}}{{COl{A@d}}}}{{{f{{COl{In}}}}{f{{COl{In}}}}}}{{{COl{In}}{f{{COl{In}}}}}}{{{COl{AFd}}{COl{AFd}}}{{COl{AFd}}}}{{{f{{COl{Oh}}}}{f{{COl{Oh}}}}}}{{{f{{COl{In}}}}{COl{In}}}}{{{COl{In}}{COl{In}}}{{COl{In}}}}{{{f{{COl{h}}}}{f{{COl{h}}}}}}{{{COl{h}}{f{{COl{h}}}}}}{{{f{{COl{h}}}}{COl{h}}}}{{{COl{h}}{COl{h}}}{{COl{h}}}}{{{f{{COl{ABn}}}}{f{{COl{ABn}}}}}}{{{COl{ABn}}{f{{COl{ABn}}}}}}{{{f{{COl{ABn}}}}{COl{ABn}}}}{{{f{{COl{A@`}}}}{f{{COl{A@`}}}}}}{{{COl{A@`}}{f{{COl{A@`}}}}}}{{{f{{COl{A@`}}}}{COl{A@`}}}}{{{COl{ABn}}{COl{ABn}}}{{COl{ABn}}}}{{{f{b{COj{ABn}}}}{f{ABn}}}j}{{{f{b{COj{ABb}}}}{f{ABb}}}j}{{{f{b{COj{A@b}}}}{f{A@b}}}j}{{{f{b{COj{AFb}}}}{COj{AFb}}}j}{{{f{b{COj{AFb}}}}{f{{COj{AFb}}}}}j}{{{f{b{COj{AFb}}}}AFb}j}{{{f{b{COj{AFb}}}}{f{AFb}}}j}{{{f{b{COj{A@`}}}}{COj{A@`}}}j}{{{f{b{COj{A@`}}}}A@`}j}{{{f{b{COj{Oh}}}}{f{Oh}}}j}{{{f{b{COj{A@b}}}}{f{{COj{A@b}}}}}j}{{{f{b{COj{A@`}}}}{f{A@`}}}j}{{{f{b{COj{Oh}}}}Oh}j}{{{f{b{COj{ABn}}}}{COj{ABn}}}j}{{{f{b{COj{Oh}}}}{f{{COj{Oh}}}}}j}{{{f{b{COj{ABn}}}}{f{{COj{ABn}}}}}j}{{{f{b{COj{Oh}}}}{COj{Oh}}}j}{{{f{b{COj{ABn}}}}ABn}j}{{{f{b{COj{A@d}}}}{f{A@d}}}j}{{{f{b{COj{A@`}}}}{f{{COj{A@`}}}}}j}{{{f{b{COj{In}}}}{f{In}}}j}{{{f{b{COj{A@b}}}}A@b}j}{{{f{b{COj{In}}}}{f{{COj{In}}}}}j}{{{f{b{COj{A@b}}}}{COj{A@b}}}j}{{{f{b{COj{A@d}}}}{f{{COj{A@d}}}}}j}{{{f{b{COj{In}}}}{COj{In}}}j}{{{f{b{COj{Oj}}}}{f{Oj}}}j}{{{f{b{COj{h}}}}{f{h}}}j}{{{f{b{COj{h}}}}h}j}{{{f{b{COj{AFd}}}}{COj{AFd}}}j}{{{f{b{COj{Oj}}}}Oj}j}{{{f{b{COj{Oj}}}}{f{{COj{Oj}}}}}j}{{{f{b{COj{AFd}}}}{f{{COj{AFd}}}}}j}{{{f{b{COj{Oj}}}}{COj{Oj}}}j}{{{f{b{COj{AFd}}}}AFd}j}{{{f{b{COj{AB`}}}}{f{AB`}}}j}{{{f{b{COj{AB`}}}}AB`}j}{{{f{b{COj{h}}}}{f{{COj{h}}}}}j}{{{f{b{COj{A@d}}}}{COj{A@d}}}j}{{{f{b{COj{AFd}}}}{f{AFd}}}j}{{{f{b{COj{ABb}}}}{COj{ABb}}}j}{{{f{b{COj{AB`}}}}{f{{COj{AB`}}}}}j}{{{f{b{COj{h}}}}{COj{h}}}j}{{{f{b{COj{ABb}}}}{f{{COj{ABb}}}}}j}{{{f{b{COj{ABb}}}}ABb}j}{{{f{b{COj{A@d}}}}A@d}j}{{{f{b{COj{AB`}}}}{COj{AB`}}}j}{{{f{b{COj{In}}}}In}j}{{{f{b{COl{ABb}}}}{f{ABb}}}j}{{{f{b{COl{A@`}}}}{COl{A@`}}}j}{{{f{b{COl{AFb}}}}{f{{COl{AFb}}}}}j}{{{f{b{COl{AFb}}}}{COl{AFb}}}j}{{{f{b{COl{AFb}}}}AFb}j}{{{f{b{COl{AFb}}}}{f{AFb}}}j}{{{f{b{COl{AFd}}}}AFd}j}{{{f{b{COl{A@b}}}}{COl{A@b}}}j}{{{f{b{COl{Oj}}}}{f{Oj}}}j}{{{f{b{COl{A@b}}}}{f{A@b}}}j}{{{f{b{COl{A@b}}}}A@b}j}{{{f{b{COl{AFd}}}}{f{{COl{AFd}}}}}j}{{{f{b{COl{Oh}}}}Oh}j}{{{f{b{COl{Oh}}}}{f{{COl{Oh}}}}}j}{{{f{b{COl{A@b}}}}{f{{COl{A@b}}}}}j}{{{f{b{COl{Oj}}}}Oj}j}{{{f{b{COl{AFd}}}}{COl{AFd}}}j}{{{f{b{COl{A@`}}}}{f{{COl{A@`}}}}}j}{{{f{b{COl{Oh}}}}{COl{Oh}}}j}{{{f{b{COl{A@d}}}}{f{A@d}}}j}{{{f{b{COl{Oj}}}}{f{{COl{Oj}}}}}j}{{{f{b{COl{h}}}}{COl{h}}}j}{{{f{b{COl{AB`}}}}{f{AB`}}}j}{{{f{b{COl{AB`}}}}AB`}j}{{{f{b{COl{A@d}}}}A@d}j}{{{f{b{COl{AB`}}}}{f{{COl{AB`}}}}}j}{{{f{b{COl{A@d}}}}{f{{COl{A@d}}}}}j}{{{f{b{COl{A@d}}}}{COl{A@d}}}j}{{{f{b{COl{In}}}}{f{In}}}j}{{{f{b{COl{AFd}}}}{f{AFd}}}j}{{{f{b{COl{ABb}}}}{COl{ABb}}}j}{{{f{b{COl{ABn}}}}{f{ABn}}}j}{{{f{b{COl{ABn}}}}ABn}j}{{{f{b{COl{AB`}}}}{COl{AB`}}}j}{{{f{b{COl{ABb}}}}{f{{COl{ABb}}}}}j}{{{f{b{COl{ABn}}}}{f{{COl{ABn}}}}}j}{{{f{b{COl{ABn}}}}{COl{ABn}}}j}{{{f{b{COl{A@`}}}}{f{A@`}}}j}{{{f{b{COl{In}}}}In}j}{{{f{b{COl{In}}}}{f{{COl{In}}}}}j}{{{f{b{COl{In}}}}{COl{In}}}j}{{{f{b{COl{h}}}}{f{h}}}j}{{{f{b{COl{h}}}}h}j}{{{f{b{COl{h}}}}{f{{COl{h}}}}}j}{{{f{b{COl{A@`}}}}A@`}j}{{{f{b{COl{ABb}}}}ABb}j}{{{f{b{COl{Oh}}}}{f{Oh}}}j}{{{f{b{COl{Oj}}}}{COl{Oj}}}j}{c{{COl{Oh}}}{{Ab{}{{A`{{COl{Oh}}}}}}}}{c{{COl{h}}}{{Ab{}{{A`{{COl{h}}}}}}}}{c{{COl{A@`}}}{{Ab{}{{A`{{COl{A@`}}}}}}}}{c{{COl{AFd}}}{{Ab{}{{A`{{f{{COl{AFd}}}}}}}}}}{c{{COl{In}}}{{Ab{}{{A`{{COl{In}}}}}}}}{c{{COl{A@`}}}{{Ab{}{{A`{{f{{COl{A@`}}}}}}}}}}{c{{COl{ABn}}}{{Ab{}{{A`{{COl{ABn}}}}}}}}{c{{COl{ABb}}}{{Ab{}{{A`{{COl{ABb}}}}}}}}{c{{COl{ABb}}}{{Ab{}{{A`{{f{{COl{ABb}}}}}}}}}}{c{{COl{AFd}}}{{Ab{}{{A`{{COl{AFd}}}}}}}}{c{{COl{AB`}}}{{Ab{}{{A`{{COl{AB`}}}}}}}}{c{{COl{AFb}}}{{Ab{}{{A`{{f{{COl{AFb}}}}}}}}}}{c{{COl{ABn}}}{{Ab{}{{A`{{f{{COl{ABn}}}}}}}}}}{c{{COl{AFb}}}{{Ab{}{{A`{{COl{AFb}}}}}}}}{c{{COl{In}}}{{Ab{}{{A`{{f{{COl{In}}}}}}}}}}{c{{COl{A@b}}}{{Ab{}{{A`{{f{{COl{A@b}}}}}}}}}}{c{{COl{A@b}}}{{Ab{}{{A`{{COl{A@b}}}}}}}}{c{{COl{A@d}}}{{Ab{}{{A`{{f{{COl{A@d}}}}}}}}}}{c{{COl{A@d}}}{{Ab{}{{A`{{COl{A@d}}}}}}}}{c{{COl{Oj}}}{{Ab{}{{A`{{f{{COl{Oj}}}}}}}}}}{c{{COl{h}}}{{Ab{}{{A`{{f{{COl{h}}}}}}}}}}{c{{COl{Oj}}}{{Ab{}{{A`{{COl{Oj}}}}}}}}{c{{COl{AB`}}}{{Ab{}{{A`{{f{{COl{AB`}}}}}}}}}}{c{{COl{Oh}}}{{Ab{}{{A`{{f{{COl{Oh}}}}}}}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{h}}}{{l{h}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{ABn}}}{{l{ABn}}}}{{{l{A@d}}}{{l{A@d}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{Oh}}}{{l{Oh}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{Oj}}}{{l{Oj}}}}{{{l{In}}}{{l{In}}}}{{{l{A@`}}}{{l{A@`}}}}{{{COj{h}}}{{COj{h}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COj{ABn}}}{{COj{ABn}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{In}}}{{COj{In}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COj{A@d}}}{{COj{A@d}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{Oh}}}{{COj{Oh}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COj{A@`}}}{{COj{A@`}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{COl{h}}}{{COl{h}}}}{{{COl{In}}}{{COl{In}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{l{Oj}}}{{l{Oj}}}}{{{l{In}}}{{l{In}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{A@d}}}{{l{A@d}}}}{{{l{ABn}}}{{l{ABn}}}}{{{l{h}}}{{l{h}}}}{{{l{Oh}}}{{l{Oh}}}}{{{l{A@`}}}{{l{A@`}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{ABb}}}{{l{ABb}}}}{{{COj{In}}}{{COj{In}}}}{{{COj{A@`}}}{{COj{A@`}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{ABn}}}{{COj{ABn}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COj{h}}}{{COj{h}}}}{{{COj{Oh}}}{{COj{Oh}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{A@d}}}{{COj{A@d}}}}{{{COl{h}}}{{COl{h}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{COl{In}}}{{COl{In}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{AB`}}}{{COl{AB`}}}}{{{l{Oh}}}{{l{Oh}}}}{{{l{In}}}{{l{In}}}}{{{l{ABb}}}{{l{ABb}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{A@d}}}{{l{A@d}}}}{{{l{h}}}{{l{h}}}}{{{l{A@`}}}{{l{A@`}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{ABn}}}{{l{ABn}}}}{{{l{Oj}}}{{l{Oj}}}}{{{COj{Oj}}}{{COj{Oj}}}}{{{COj{ABn}}}{{COj{ABn}}}}{{{COj{A@b}}}{{COj{A@b}}}}{{{COj{AFd}}}{{COj{AFd}}}}{{{COj{Oh}}}{{COj{Oh}}}}{{{COj{ABb}}}{{COj{ABb}}}}{{{COj{h}}}{{COj{h}}}}{{{COj{A@`}}}{{COj{A@`}}}}{{{COj{A@d}}}{{COj{A@d}}}}{{{COj{AB`}}}{{COj{AB`}}}}{{{COj{In}}}{{COj{In}}}}{{{COj{AFb}}}{{COj{AFb}}}}{{{COl{In}}}{{COl{In}}}}{{{COl{AFd}}}{{COl{AFd}}}}{{{COl{h}}}{{COl{h}}}}{{{COl{ABb}}}{{COl{ABb}}}}{{{COl{A@`}}}{{COl{A@`}}}}{{{COl{Oh}}}{{COl{Oh}}}}{{{COl{A@d}}}{{COl{A@d}}}}{{{COl{AFb}}}{{COl{AFb}}}}{{{COl{ABn}}}{{COl{ABn}}}}{{{COl{Oj}}}{{COl{Oj}}}}{{{COl{A@b}}}{{COl{A@b}}}}{{{COl{AB`}}}{{COl{AB`}}}}{fc{}}0000000{fI`}00000{{{l{Oj}}}Oh}{{{l{A@b}}}Oh}{{{l{AFd}}}Oh}{{{l{Oh}}}Oh}{{{l{h}}}Oh}{{{l{A@`}}}Oh}{{{l{AB`}}}Oh}{{{l{A@d}}}Oh}{{{l{AFb}}}Oh}{{{l{ABn}}}Oh}{{{l{ABb}}}Oh}{{{l{In}}}Oh}{{{COj{Oh}}}Oh}{{{COj{A@`}}}Oh}{{{COj{AB`}}}Oh}{{{COj{ABb}}}Oh}{{{COj{ABn}}}Oh}{{{COj{AFd}}}Oh}{{{COj{In}}}Oh}{{{COj{AFb}}}Oh}{{{COj{A@b}}}Oh}{{{COj{h}}}Oh}{{{COj{Oj}}}Oh}{{{COj{A@d}}}Oh}{{{COl{ABn}}}Oh}{{{COl{Oj}}}Oh}{{{COl{In}}}Oh}{{{COl{A@d}}}Oh}{{{COl{AFd}}}Oh}{{{COl{AFb}}}Oh}{{{COl{Oh}}}Oh}{{{COl{A@b}}}Oh}{{{COl{ABb}}}Oh}{{{COl{A@`}}}Oh}{{{COl{h}}}Oh}{{{COl{AB`}}}Oh}{{{l{Oj}}}{{n{{l{In}}}}}}{{{l{Oh}}}{{n{{l{ABb}}}}}}{{{l{A@b}}}{{n{{l{ABb}}}}}}{{{l{A@b}}}{{n{{l{h}}}}}}{{{l{Oj}}}{{n{{l{AFd}}}}}}{{{l{A@b}}}{{n{{l{ABn}}}}}}{{{l{AFb}}}{{n{{l{In}}}}}}{{{l{A@b}}}{{n{{l{A@`}}}}}}{{{l{A@b}}}{{n{{l{Oh}}}}}}{{{l{AFb}}}{{n{{l{A@d}}}}}}{{{l{A@b}}}{{n{{l{A@d}}}}}}{{{l{A@b}}}{{n{{l{In}}}}}}{{{l{AFb}}}{{n{{l{Oh}}}}}}{{{l{AFb}}}{{n{{l{A@`}}}}}}{{{l{AFb}}}{{n{{l{ABn}}}}}}{{{l{AFb}}}{{n{{l{h}}}}}}{{{l{Oj}}}{{n{{l{h}}}}}}{{{l{Oj}}}{{n{{l{ABn}}}}}}{{{l{Oj}}}{{n{{l{A@`}}}}}}{{{l{AFd}}}{{n{{l{In}}}}}}{{{l{Oj}}}{{n{{l{Oh}}}}}}{{{l{AFd}}}{{n{{l{A@d}}}}}}{{{l{Oj}}}{{n{{l{A@d}}}}}}{{{l{AFb}}}{{n{{l{AB`}}}}}}{{{l{AFd}}}{{n{{l{AFb}}}}}}{{{l{AB`}}}{{n{{l{h}}}}}}{{{l{A@b}}}{{n{{l{AFd}}}}}}{{{l{AFd}}}{{n{{l{Oh}}}}}}{{{l{AFb}}}{{n{{l{Oj}}}}}}{In{{n{{l{In}}}}}}{A@d{{n{{l{A@d}}}}}}{{{l{AFd}}}{{n{{l{A@`}}}}}}{{{l{AB`}}}{{n{{l{ABn}}}}}}{Oh{{n{{l{Oh}}}}}}{{{l{AFb}}}{{n{{l{A@b}}}}}}{{{l{AB`}}}{{n{{l{A@`}}}}}}{{{l{AB`}}}{{n{{l{Oh}}}}}}{{{l{In}}}{{n{{l{ABb}}}}}}{c{{n{e}}}{}{}}{{{l{AFb}}}{{n{{l{AFd}}}}}}{A@`{{n{{l{A@`}}}}}}{ABn{{n{{l{ABn}}}}}}{{{l{AB`}}}{{n{{l{A@d}}}}}}{h{{n{{l{h}}}}}}{{{l{A@d}}}{{n{{l{ABb}}}}}}{{{l{Oj}}}{{n{{l{AB`}}}}}}{{{l{AB`}}}{{n{{l{In}}}}}}{{{l{ABb}}}{{n{{l{h}}}}}}{{{l{AFd}}}{{n{{l{ABb}}}}}}{ABb{{n{{l{ABb}}}}}}{AB`{{n{{l{AB`}}}}}}{{{l{A@d}}}{{n{{l{AB`}}}}}}{Oj{{n{{l{Oj}}}}}}{A@b{{n{{l{A@b}}}}}}{{{l{AFd}}}{{n{{l{AB`}}}}}}{{{l{ABb}}}{{n{{l{ABn}}}}}}{{{l{ABb}}}{{n{{l{A@`}}}}}}{{{l{ABb}}}{{n{{l{Oh}}}}}}{{{l{ABb}}}{{n{{l{A@d}}}}}}{{{l{ABb}}}{{n{{l{In}}}}}}{{{l{h}}}{{n{{l{AFd}}}}}}{{{l{AFb}}}{{n{{l{ABb}}}}}}{{{l{h}}}{{n{{l{A@b}}}}}}{AFb{{n{{l{AFb}}}}}}{{{l{h}}}{{n{{l{Oj}}}}}}{{{l{h}}}{{n{{l{AB`}}}}}}{{{l{h}}}{{n{{l{ABb}}}}}}{{{l{AFd}}}{{n{{l{Oj}}}}}}{{{l{ABn}}}{{n{{l{AFd}}}}}}{AFd{{n{{l{AFd}}}}}}{{{l{A@d}}}{{n{{l{In}}}}}}{{{l{ABn}}}{{n{{l{AFb}}}}}}{{{l{ABn}}}{{n{{l{A@b}}}}}}{{{l{ABn}}}{{n{{l{Oj}}}}}}{{{l{Oh}}}{{n{{l{In}}}}}}{{{l{AFd}}}{{n{{l{A@b}}}}}}{{{l{A@d}}}{{n{{l{AFd}}}}}}{{{l{Oh}}}{{n{{l{A@d}}}}}}{{{l{A@b}}}{{n{{l{AB`}}}}}}{{{l{Oh}}}{{n{{l{h}}}}}}{{{l{A@`}}}{{n{{l{In}}}}}}{{{l{A@`}}}{{n{{l{A@d}}}}}}{{{l{A@`}}}{{n{{l{Oh}}}}}}{{{l{A@`}}}{{n{{l{h}}}}}}{{{l{ABn}}}{{n{{l{In}}}}}}{{{l{ABn}}}{{n{{l{AB`}}}}}}{{{l{ABn}}}{{n{{l{ABb}}}}}}{{{l{ABn}}}{{n{{l{A@d}}}}}}{{{l{ABn}}}{{n{{l{Oh}}}}}}{{{l{A@`}}}{{n{{l{AFd}}}}}}{{{l{A@`}}}{{n{{l{A@b}}}}}}{{{l{ABn}}}{{n{{l{A@`}}}}}}{{{l{A@`}}}{{n{{l{Oj}}}}}}{{{l{ABn}}}{{n{{l{h}}}}}}{{{l{A@`}}}{{n{{l{AB`}}}}}}{{{l{h}}}{{n{{l{In}}}}}}{{{l{h}}}{{n{{l{A@d}}}}}}{{{l{h}}}{{n{{l{Oh}}}}}}{{{l{h}}}{{n{{l{A@`}}}}}}{{{l{h}}}{{n{{l{ABn}}}}}}{{{l{AB`}}}{{n{{l{ABb}}}}}}{{{l{Oj}}}{{n{{l{ABb}}}}}}{{{l{A@b}}}{{n{{l{Oj}}}}}}{{{l{A@`}}}{{n{{l{ABb}}}}}}{{{l{Oh}}}{{n{{l{AFd}}}}}}{{{l{Oh}}}{{n{{l{Oj}}}}}}{{{l{AFd}}}{{n{{l{ABn}}}}}}{{{l{AFd}}}{{n{{l{h}}}}}}{{{l{Oh}}}{{n{{l{AB`}}}}}}{{{l{h}}}{{n{{l{AFb}}}}}}{c{{n{e}}}{}{}}000000{{}{{n{c}}}{}}0000000{fOf}0000000{{{l{h}}h}{{l{h}}}}{{{l{In}}In}{{l{In}}}}{{{l{A@d}}A@d}{{l{A@d}}}}{{{l{ABn}}ABn}{{l{ABn}}}}{{{l{A@`}}A@`}{{l{A@`}}}}{{{l{Oh}}Oh}{{l{Oh}}}}{{{l{A@d}}{l{A@d}}}{{l{A@d}}}}{{{l{Oh}}{l{Oh}}}{{l{Oh}}}}{{{l{AFb}}{l{AFb}}}{{l{AFb}}}}{{{l{A@b}}{l{A@b}}}{{l{A@b}}}}{{{l{AFd}}{l{AFd}}}{{l{AFd}}}}{{{l{A@`}}{l{A@`}}}{{l{A@`}}}}{{{l{ABn}}{l{ABn}}}{{l{ABn}}}}{{{l{h}}{l{h}}}{{l{h}}}}{{{l{In}}{l{In}}}{{l{In}}}}{{{l{Oj}}{l{Oj}}}{{l{Oj}}}}{{{l{AB`}}{l{AB`}}}{{l{AB`}}}}{{{l{ABb}}{l{ABb}}}{{l{ABb}}}}{{{l{ABb}}}{{l{In}}}}{{{l{AB`}}}{{l{A@d}}}}{{{l{Oj}}}{{l{Oh}}}}{{{l{AFb}}}{{l{ABn}}}}{{{l{AFd}}}{{l{h}}}}{{{l{A@b}}}{{l{A@`}}}}{{{l{A@b}}}{{l{A@b}}}}{{{l{AB`}}}{{l{AB`}}}}{{{l{Oj}}}{{l{Oj}}}}{{{l{AFb}}}{{l{AFb}}}}{{{l{AFd}}}{{l{AFd}}}}{{{l{ABb}}}{{l{ABb}}}}315042``````````````````````````````````````````````````````````````````````````````````{{{AIj{}{{Ah{c}}}}e}c{}{}}{{{f{bAIl}}c}j{}}{{{f{b{M`{c}}}}h}{{n{j{l{h}}}}}AGj}0{{{f{b{ALb{c}}}}}{{ALb{{f{bc}}}}}{}}{{{f{{ALb{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{AIn}}c}eBd{}}{{{f{b{AJb{}{{AJ`{c}}}}}}g}c{{El{}{{Ah{e}}}}}{}Bd}{{{AJf{}{{AJd{c}}{Ah{e}}}}g}c{{El{}{{Ah{e}}}}}{}Bd}{{{AJh{}{{Ah{c}}}}e}c{}{}}{{{f{bAJj}}c}j{}}{{{AJl{}{{Ah{c}}}}e}c{}{}}{{{f{bAJn}}c}j{}}{{{AK`{}{{Ah{c}}}}e}c{}{}}{{{f{bAKb}}c}j{}}{f{{f{c}}}{}}000000000{{{f{b}}}{{f{bc}}}{}}000000000{{{Ib{}{{Ah{c}}{AKd{e}}}}}{{AKf{ec}}}{}{}}{{{AKf{ce}}}AKf{}{}}{{{AKf{ce}}}{{Df{c}}}{}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}{{{f{{AKf{ce}}}}}{{AKf{ce}}}ACbACb}{{{f{{AMh{ce}}}}}{{AMh{ce}}}ACbACb}{{{f{CG`}}}CG`}{{{f{{M`{c}}}}}{{M`{c}}}ACb}{{{f{{AOh{c}}}}}{{AOh{c}}}ACb}{{{f{{Mf{c}}}}}{{Mf{c}}}ACb}{{{f{{AOf{c}}}}}{{AOf{c}}}ACb}{{{f{{D@l{c}}}}}{{D@l{c}}}ACb}{{{f{{ALb{c}}}}}{{ALb{c}}}ACb}{{f{f{bc}}}j{}}00000000{fj}00000000{{{ALb{{f{c}}}}}{{ALb{c}}}ACb}{{{f{{AMh{ce}}}}{f{{AMh{ce}}}}}CdFlFl}{{{f{Mh}}{f{c}}}Af{}{{Fb{c}}Ad}}{{{f{{M`{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{f{{AOh{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{f{{Mf{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{f{{AOf{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{f{{D@l{e}}}}{f{c}}}Af{FbAd}{{Fb{c}}Fb}}{{{AKf{ce}}}{{Df{e}}}{}{}}{{{M`{c}}}hAGj}{{{AOf{c}}}hAGj}{{}CG`}{{}{{M`{c}}}Gb}{{{f{{AKj{}{{AKh{c}}}}}}}{{f{c}}}Ad}{{{f{bAKl}}}{{f{bc}}}{}}{{{AKn{}{{Ah{c}}}}e}c{}{}}{{{f{bAL`}}c}j{}}{{{f{bCn}}}j}{{{f{{AOf{c}}}}}{{f{c}}}{}}```{{{f{Mh}}}{{ALb{{f{c}}}}}Ad}{{{f{CG`}}}{{ALb{{f{c}}}}}Ad}{{{f{{M`{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{M`{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOh{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOh{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{Mf{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{Mf{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOf{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOf{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{D@l{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{D@l{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AKf{ce}}}}{f{{AKf{ce}}}}}AfADbADb}{{{f{{AMh{ce}}}}{f{{AMh{ce}}}}}AfADbADb}{{{f{CG`}}{f{CG`}}}Af}{{{f{{M`{c}}}}{f{{M`{c}}}}}AfADb}{{{f{{AOh{c}}}}{f{{AOh{c}}}}}AfADb}{{{f{{Mf{c}}}}{f{{Mf{c}}}}}AfADb}{{{f{{AOf{c}}}}{f{{AOf{c}}}}}AfADb}{{{f{{D@l{c}}}}{f{{D@l{c}}}}}AfADb}{{{f{{ALb{c}}}}{f{{ALb{c}}}}}AfADb}{{{f{{AKf{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{AMh{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{CG`}}{f{bK`}}}{{n{jKb}}}}{{{f{{M`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AOh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Mf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{AOf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{D@l{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{ALb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{D@n{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{AOf{c}}eg}eAGj{}{{Aj{e}{{Ah{e}}}}}}{cc{}}000{{{AO`{c}}}{{M`{c}}}{}}1{{{AOd{c}}}{{AOh{c}}}{}}22{{{AOb{c}}}{{AOf{c}}}{}}333{c{{Ib{}{{Ah{c}}{AKd{e}}}}}{}{}}{{}{{AKf{ce}}}{}{}}{cALd{}}{{{AKf{cBCj}}}{{AKf{ce}}}{}{}}{{CG`{f{Ll}}}{{Df{f}}}}{{CG`{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{M`{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{M`{h}}{f{Ll}}}{{Df{f}}}}{{{AOh{h}}{f{Ll}}}{{Df{f}}}}{{{AOh{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{Mf{h}}{f{Ll}}}{{Df{f}}}}{{{Mf{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{AOf{h}}{f{Ll}}}{{Df{f}}}}{{{AOf{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{D@l{h}}{f{{Jd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{D@l{h}}{f{Ll}}}{{Df{f}}}}{{CG`{f{bLl}}}{{Df{{f{b}}}}}}{{CG`{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{M`{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{M`{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{AOh{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{AOh{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{Mf{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{Mf{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{AOf{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{AOf{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{D@l{h}}{f{bLl}}}{{Df{{f{b}}}}}}{{{D@l{h}}{f{b{Jd{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{CG`Jd}Jd}{{CG`Ll}}{{{M`{h}}Ll}}{{{M`{h}}Jd}Jd}{{{AOh{h}}Ll}}{{{AOh{h}}Jd}Jd}{{{Mf{h}}Jd}Jd}{{{Mf{h}}Ll}}{{{AOf{h}}Jd}Jd}{{{AOf{h}}Ll}}{{{D@l{h}}Jd}Jd}{{{D@l{h}}Ll}}:;8976542301{{{f{{AKf{ce}}}}{f{bg}}}jAF`AF`AEn}{{{f{{AMh{ce}}}}{f{bg}}}jAF`AF`AEn}{{{f{CG`}}{f{bc}}}jAEn}{{{f{{M`{c}}}}{f{be}}}jAF`AEn}{{{f{{AOh{c}}}}{f{be}}}jAF`AEn}{{{f{{Mf{c}}}}{f{be}}}jAF`AEn}{{{f{{AOf{c}}}}{f{be}}}jAF`AEn}{{{f{{D@l{c}}}}{f{be}}}jAF`AEn}{{{f{{ALb{c}}}}{f{be}}}jAF`AEn}{{{f{{ALf{}{{Ah{c}}}}}}e}{{f{c}}}AdAd}{{CG`{f{Ll}}}f}{{CG`{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{M`{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{M`{h}}{f{Ll}}}f}{{{AOh{h}}{f{Ll}}}f}{{{AOh{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{Mf{h}}{f{Ll}}}f}{{{Mf{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{AOf{h}}{f{Ll}}}f}{{{AOf{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{D@l{h}}{f{{Jd{c}}}}}{{f{{Jd{c}}}}}{}}{{{D@l{h}}{f{Ll}}}f}{{{f{bALh}}c}{{f{be}}}Ad{}}{{CG`{f{bLl}}}{{f{b}}}}{{CG`{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{{M`{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{{M`{h}}{f{bLl}}}{{f{b}}}}{{{AOh{h}}{f{bLl}}}{{f{b}}}}{{{AOh{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{{Mf{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{{Mf{h}}{f{bLl}}}{{f{b}}}}{{{AOf{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{{AOf{h}}{f{bLl}}}{{f{b}}}}{{{D@l{h}}{f{bLl}}}{{f{b}}}}{{{D@l{h}}{f{b{Jd{c}}}}}{{f{b{Jd{c}}}}}{}}{{}c{}}000000000{{{AOf{c}}}{{G`{cc}}}{}}111{{{f{{AKf{ce}}}}}Af{}{}}0{{{f{{M`{c}}}}}AfFb}{{{f{{AOf{c}}}}}AfFb}{{{M`{c}}}AfAGj}{{{AOf{c}}}AfAGj}{{{M`{c}}}{{Df{c}}}AGj}{{{AOf{c}}}{{Df{c}}}AGj}{{{ALb{c}}g}{{ALb{e}}}{}{}{{Bf{c}{{Ah{e}}}}}}{{{AKf{ce}}i}{{AKf{ge}}}{}{}{}{{Bf{c}{{Ah{g}}}}}}{{{AKf{ce}}i}{{AKf{cg}}}{}{}{}{{Bf{e}{{Ah{g}}}}}}{{{M`{c}}}{{Df{c}}}{FlAGj}}{{{AOf{c}}}{{Df{c}}}{FlAGj}}10{{{ALj{}{{Ah{c}}}}e}c{}{}}{{{f{bALl}}c}j{}}{{{ALn{}{{Ah{c}}}}}c{}}{{cc}{{AOf{c}}}{}}{{{f{b{M`{c}}}}}{{Df{c}}}AGj}{{{f{b{AOh{c}}}}}{{Df{c}}}AGj}{{{f{b{AOf{c}}}}}{{Df{c}}}AGj}20{{{AM`{}{{Ah{c}}}}}c{}}{{{f{b{M`{c}}}}h}{{Df{c}}}AGj}{{{f{b{AOh{c}}}}h}{{Df{c}}}AGj}{{{f{b{AOf{c}}}}h}{{Df{c}}}AGj}20{{{f{{AMh{ce}}}}{f{{AMh{ce}}}}}{{Df{Cd}}}FbFb}{{{AMb{}{{Ah{c}}}}e}c{}{}}{{{f{bAMd}}c}j{}}{{{Gf{{f{b{AHb{}{{AMf{c}}{AH`{e}}}}}}}}g}{{AMh{ce}}}{}{}{}}{{{AOf{c}}eg}eAGj{}{{Aj{e}{{Ah{e}}}}}}{{{AMj{}{{Ah{c}}}}e}c{}{}}{{{f{bAMl}}c}j{}}{{{AMn{}{{Ah{c}}}}e}c{}{}}{{{f{bAN`}}c}j{}}{{{f{{M`{c}}}}}{{G`{h{Df{h}}}}}AGj}{{{f{{AOh{c}}}}}{{G`{h{Df{h}}}}}AGj}{{{f{{AOf{c}}}}}{{G`{h{Df{h}}}}}AGj}{{{f{{AOf{c}}}}}{{f{c}}}{}}``{{{f{Mh}}}{{ALb{{f{c}}}}}Ad}{{{f{CG`}}}{{ALb{{f{c}}}}}Ad}{{{f{{M`{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{M`{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOh{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOh{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{Mf{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{Mf{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOf{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{AOf{c}}}}}{{ALb{{f{c}}}}}{}}{{{f{{D@l{{f{c}}}}}}}{{ALb{{f{c}}}}}{}}{{{f{{D@l{c}}}}}{{ALb{{f{c}}}}}{}}{{{ANb{}{{Ah{c}}}}e}c{}{}}{{{f{bANd}}c}j{}}{fc{}}00000000{{{f{b{AOf{c}}}}ei}gAGj{}{{Ib{}{{Ah{e}}}}}{{Aj{e}{{Ah{g}}}}}}{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}0000000002{fOf}000000000``````{{{Df{c}}{Df{e}}}{{Df{e}}}{}{}}{{{Df{c}}g}{{Df{e}}}{}{}{{Bf{c}{{Ah{{Df{e}}}}}}}}{{{f{{Df{c}}}}}{{Df{f}}}AKj}{{{f{b{Df{c}}}}}{{Df{{f{b}}}}}AKl}{{{f{b{Df{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{Df{c}}}}}{{f{b{Jd{c}}}}}{}}{{{Gf{{f{b{Df{c}}}}}}}{{Df{{Gf{{f{bc}}}}}}}{}}{{{Gf{{f{{Df{c}}}}}}}{{Df{{Gf{{f{c}}}}}}}{}}{{{f{{Df{c}}}}}{{Df{{f{c}}}}}{}}{{{f{{Df{c}}}}}{{f{{Jd{c}}}}}{}}{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000{{{Df{c}}}AKf{}}{{{f{{Df{c}}}}}{{Df{c}}}ACb}{{{f{{DA`{c}}}}}{{DA`{c}}}{}}{{{f{{COh{c}}}}}{{COh{c}}}ACb}{{{f{b{Df{c}}}}{f{{Df{c}}}}}jACb}{{f{f{bc}}}j{}}00{fj}00{{{Df{{f{c}}}}}{{Df{c}}}ACb}{{{Df{{f{bc}}}}}{{Df{c}}}ACb}{{{f{{Df{c}}}}{f{{Df{c}}}}}CdFl}{{{Df{{f{bc}}}}}{{Df{c}}}AFf}{{{Df{{f{c}}}}}{{Df{c}}}AFf}{{}{{Df{c}}}{}}{{{f{{Df{c}}}}{f{{Df{c}}}}}AfADb}{{{Df{c}}{f{Ll}}}c{}}{{{Df{c}}e}{{Df{c}}}{}{{Bf{{f{c}}}{{Ah{Af}}}}}}{{{Df{{Df{c}}}}}{{Df{c}}}{}}{{{f{{Df{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DA`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DAb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{COh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{c{{Df{c}}}{}}{Jjc{}}{cc{}}{{{f{b{Df{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{{Df{c}}}}}{{Df{{f{c}}}}}{}}222{e{{Df{g}}}{}{{Bj{}{{A`{{Df{c}}}}}}}{{Cf{c}}}}>{{{D@n{j}}}{{Df{c}}}{}}{{{Df{BCj}}}{{Df{c}}}{}}{{{f{b{Df{c}}}}c}{{f{bc}}}{}}{{{f{b{Df{c}}}}}{{f{bc}}}Gb}{{{f{b{Df{c}}}}e}{{f{bc}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{{Df{c}}}}{f{be}}}jAF`AEn}3{{{Df{c}}e}{{Df{c}}}{}{{Bf{{f{c}}}}}}{{}c{}}000{{{Df{c}}}{{COh{c}}}{}}{{{f{{Df{c}}}}}{{DA`{c}}}{}}{{{f{b{Df{c}}}}}{{DAb{c}}}{}}333{{{f{{Df{c}}}}}Af{}}{{{Df{c}}e}Af{}{{Bf{c}{{Ah{Af}}}}}}1032{{{Df{c}}g}{{Df{e}}}{}{}{{Bf{c}{{Ah{e}}}}}}{{{Df{c}}eg}e{}{}{{Bf{c}{{Ah{e}}}}}}{{{Df{c}}gi}e{}{}{{Bf{}{{Ah{e}}}}}{{Bf{c}{{Ah{e}}}}}}{{{f{b{DA`{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{DAb{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{COh{c}}}}}{{Df{c}}}{}}210{{{Df{c}}e}{{n{ce}}}{}{}}{{{Df{c}}g}{{n{ce}}}{}{}{{Bf{}{{Ah{e}}}}}}{{{Df{c}}{Df{c}}}{{Df{c}}}{}}{{{Df{c}}e}{{Df{c}}}{}{{Bf{}{{Ah{{Df{c}}}}}}}}{{{f{{Df{c}}}}{f{{Df{c}}}}}{{Df{Cd}}}Fb}{e{{Df{g}}}{}{{Ab{}{{A`{{Df{c}}}}}}}{{Gl{c}}}}{{{f{b{Df{c}}}}c}{{Df{c}}}{}}{{{f{{DA`{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DAb{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{COh{c}}}}}{{G`{h{Df{h}}}}}{}}{e{{Df{g}}}{}{{Ab{}{{A`{{Df{c}}}}}}}{{Hh{c}}}}{{{f{b{Df{c}}}}}{{Df{c}}}{}}{{{f{b{Df{c}}}}e}{{Df{c}}}{}{{Bf{{f{bc}}}{{Ah{Af}}}}}}{fc{}}00{{{Df{{n{ce}}}}}{{n{{Df{c}}e}}}{}{}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{fOf}000{{{Df{c}}}c{}}{{{Df{c}}c}c{}}{{{Df{c}}}cGb}{{{Df{c}}e}c{}{{Bf{}{{Ah{c}}}}}}3{{{Df{{G`{ce}}}}}{{G`{{Df{c}}{Df{e}}}}}{}{}}{{{Df{c}}{Df{c}}}{{Df{c}}}{}}{{{Df{c}}{Df{e}}}{{Df{{G`{ce}}}}}{}{}}{{{Df{c}}{Df{e}}i}{{Df{g}}}{}{}{}{{Bf{ce}{{Ah{g}}}}}}```````````{{{f{BEj}}}BEh}{{{f{CId}}}BEh}{{{f{BEh}}}BEh}{{{f{BEl}}}Oj}{{{f{CId}}}Oj}{{{f{BEh}}}Oj}{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{OjBEh}6{{f{f{bc}}}j{}}{fj}{{{f{bCId}}}j}{{{f{CId}}{f{bK`}}}{{n{jKb}}}}{{{f{BEh}}{f{bK`}}}{{n{jKb}}}}{DAdCId}{CMfCId}{DAfCId}{DAhCId}{DAjCId}{DAlCId}{DAnCId}{DB`CId}{CMlCId}{DBbCId}{cc{}}{DBdCId}{CHdCId}{CMhCId}3{OjDBf}{OjCId}{{}c{}}0{DBhOj}{CIdOj}{{{f{CId}}}Af}{{{f{BEh}}}Af}{fc{}}{{{f{CId}}}{{n{CIdBFb}}}}{{{f{BEh}}}{{n{CIdBFb}}}}{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{fOf}0`````{{{f{DBj}}}{{f{CHf}}}}{{{f{DBj}}}A@b}0{{{f{DBj}}}A@`}0110{{{f{DBj}}}Oh}10221110```{{{f{DBl}}}{{Df{{f{{Jd{In}}}}}}}}{{{f{DBn}}}{{n{OhBFb}}}}{c{{n{DC`BFb}}}{{B`{{Jd{In}}}}}}{{{f{DCb}}}{{n{AfBFb}}}}{{{f{DBn}}}{{n{AfBFb}}}}{{{f{DBn}}Oh}{{n{jBFb}}}}{{{f{DCb}}Af}{{n{jBFb}}}}{{{f{DBn}}Af}{{n{jBFb}}}}```{{{f{DBd}}}BEh}{{{f{DBd}}}Oj}{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{bDCd}}Af}{{f{bDCf}}}}{{{f{DBd}}{f{bK`}}}{{n{jKb}}}}{CIdDBd}{cc{}}{OjDBd}{{}c{}}{DCh{{n{DBdDCh}}}}{DBdOj}{{{f{DBd}}}{{n{jBFb}}}}{{{f{DCh}}}{{n{{f{DBd}}BFb}}}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{{{f{DBd}}}{{n{{Df{DCj}}BFb}}}}{fOf}{{{f{DBd}}}{{n{DCjBFb}}}}````{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{CHf}}}CHf}{{f{f{bc}}}j{}}{fj}`{cc{}}`?``````````````````````{fc{}};:8````````````````````````{{{f{DCl}}}{{f{{Jd{In}}}}}}{{{f{{Jd{In}}}}}{{f{DCl}}}}{{{BEb{In}}}DCn}{DCn{{BEb{In}}}}````````{{{f{DD`}}}A@b}0{{{f{DD`}}}A@`}0{{c{Df{Oh}}{Df{Oh}}}{{n{jBFb}}}{{B`{BDl}}}}{c{{n{jBFb}}}{{B`{BDl}}}}33{{{f{bDDb}}Oj}{{f{bDDb}}}}3{{c{Df{Oh}}{Df{Oh}}}{{n{jBFb}}}BEj}{{{f{DDd}}}{{f{BDj}}}}{OhDDf}{{{f{DD`}}}Oh}7{{{f{DDh}}}A@`}{{{f{DDj}}}Af}0008{{{f{DDf}}}Oh}{{{f{bDDb}}Oh}{{f{bDDb}}}}4{{{f{bDDl}}Oh}{{f{bDDl}}}}==<<{{{f{DDn}}{f{b{Jd{In}}}}A@`}{{n{hBFb}}}}{{{f{DDn}}{f{b{Jd{In}}}}A@`}{{n{jBFb}}}}{{{f{DDn}}{f{b{Jd{BGd}}}}A@`}{{n{hBFb}}}}{{{f{bDDf}}Oh}j}{{{f{DD`}}}A@`}{{ce}{{n{jBFb}}}{{B`{BDl}}}{{B`{BDl}}}};{{{f{DDn}}{f{{Jd{In}}}}A@`}{{n{jBFb}}}}{{{f{DDn}}{f{{Jd{In}}}}A@`}{{n{hBFb}}}}{{{f{DDn}}{f{{Jd{BGj}}}}A@`}{{n{hBFb}}}}```````{{{f{BEj}}}BEh}{{{f{BEl}}}Oj}{OjDBf}{DBhOj}````````````````{{{f{DAh}}}{{n{{G`{DAdDC`}}BFb}}}}{{{f{bDE`}}{f{{Jd{DEb}}}}}Af}{{{f{bDE`}}{f{{Jd{Oj}}}}}Af}{{{f{DC`}}}{{Df{{f{{Jd{In}}}}}}}}{{{f{DAn}}}BEh}{{{f{DAh}}}BEh}{{{f{DAd}}}BEh}{{{f{DC`}}}{{Df{{f{BDl}}}}}}{{{f{DAn}}}Oj}{{{f{DAh}}}Oj}{{{f{DAd}}}Oj}{c{{n{DAnBFb}}}{{B`{BDl}}}}{c{{n{DAhBFb}}}{{B`{BDl}}}}{{{f{DC`}}}{{n{DAnBFb}}}}{{{f{DC`}}}{{n{DAhBFb}}}}{f{{f{c}}}{}}000000000000{{{f{b}}}{{f{bc}}}{}}000000000000{{{f{DE`}}}h}{{{f{bDE`}}}j}{{{f{DC`}}}DC`}{{{f{DEb}}}DEb}{{{f{DEd}}}DEd}{{f{f{bc}}}j{}}00{fj}00{{{f{DAn}}c}{{n{jBFb}}}{{B`{BDl}}}}{c{{n{DAdBFb}}}{{B`{BDl}}}}{{{f{DAn}}{f{DC`}}}{{n{jBFb}}}}{{{f{DC`}}}{{n{DAdBFb}}}}{{{f{DEd}}{f{DEd}}}Af}{{{f{b{f{DAd}}}}}{{n{jBFb}}}}{{{f{bDAd}}}{{n{jBFb}}}}{{{f{DAn}}{f{bK`}}}{{n{jKb}}}}{{{f{DAh}}{f{bK`}}}{{n{jKb}}}}{{{f{DAd}}{f{bK`}}}{{n{jKb}}}}{{{f{DC`}}{f{bK`}}}{{n{jKb}}}}{{{f{DEf}}{f{bK`}}}{{n{jKb}}}}{{{f{DE`}}{f{bK`}}}{{n{jKb}}}}{{{f{DEh}}{f{bK`}}}{{n{jKb}}}}{{{f{DEd}}{f{bK`}}}{{n{jKb}}}}{cc{}}0000{CIdDAn}{CIdDAh}22{CIdDAd}333333{c{{n{DC`BFb}}}{{B`{{Jd{In}}}}}}{c{{n{DC`BFb}}}{{B`{BDl}}}}{OjDAn}{OjDAh}{OjDAd}{{{f{DEb}}}Oh}{{{f{DEb}}}Oj}1`{{{f{DEd}}{f{bc}}}jAEn}{{{f{DAh}}}DEh}{{}c{}}00000000000000010{DAnOj}{DAhOj}{DAdOj}{{{f{DE`}}}Af}{{{f{{f{DAd}}}}}Af}{{{f{DAd}}}Af}{{{f{DC`}}}Af}12{{{f{DE`}}}h}{{{f{DAn}}}{{n{DC`BFb}}}}{{{f{DAh}}}{{n{DC`BFb}}}}{{{f{DAd}}}{{n{DC`BFb}}}}{{{f{DE`}}}DEj}{{}DEb}{{{f{b{Jd{In}}}}}DE`}{{{f{bDEl}}}{{Df{Oj}}}}{{{f{bDEn}}}{{Df{DEb}}}}{{{f{bDEj}}}Df}{{{f{bDEh}}}{{Df{{n{DAdBFb}}}}}}{{}{{n{{G`{DAnDAn}}BFb}}}}{{}{{n{{G`{DAdDAd}}BFb}}}}{{{f{DAn}}}{{n{AfBFb}}}}{{{f{DAd}}}{{n{AfBFb}}}}{{{f{DAn}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{DAd}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{DAn}}{f{b{Jd{In}}}}}{{n{{G`{hDC`}}BFb}}}}{{{f{DAn}}}{{n{DC`BFb}}}}?{{{f{DAd}}}{{n{DEdBFb}}}}`{{{f{bDAd}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{DAd}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDAd}}BGb}{{n{jBFb}}}}{{{f{b{f{DAd}}}}BGb}{{n{jBFb}}}}{{{f{DAn}}}{{n{{Df{CO`}}BFb}}}}{{{f{DAd}}}{{n{{Df{CO`}}BFb}}}}{{{f{b{f{DAd}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bDAd}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}<:{{{f{DAn}}{f{b{Jd{BGd}}}}{f{bDE`}}}{{n{{G`{hAf}}BFb}}}}{{{f{DAd}}{f{b{Jd{BGd}}}}{f{bDE`}}}{{n{hBFb}}}}{{{f{DAn}}{f{b{Jd{BGd}}}}{f{bDE`}}}{{n{{G`{hAfDC`}}BFb}}}}{{{f{DAn}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{DAn}}{f{{Jd{In}}}}c}{{n{hBFb}}}{{B`{BDl}}}}{{{f{DAn}}{f{{Jd{In}}}}{f{DC`}}}{{n{hBFb}}}}{{{f{DAn}}{f{{Jd{BGj}}}}{f{bDE`}}}{{n{hBFb}}}}{{{f{DAd}}{f{{Jd{BGj}}}}{f{bDE`}}}{{n{hBFb}}}}{{{f{DAn}}{f{{Jd{BGj}}}}{f{bDE`}}c}{{n{hBFb}}}{{B`{BDl}}}}{{{f{bDEb}}Oh}j}{{{f{DAn}}Oh}{{n{jBFb}}}}{{{f{DAd}}Oh}{{n{jBFb}}}}{{{f{DAn}}Af}{{n{jBFb}}}}{{{f{DAh}}Af}{{n{jBFb}}}}{{{f{DAd}}Af}{{n{jBFb}}}}20{{{f{bDEb}}Oj}j}{{{f{DAn}}{Df{CO`}}}{{n{jBFb}}}}{{{f{DAd}}{Df{CO`}}}{{n{jBFb}}}}810{{{f{DAn}}CNd}{{n{jBFb}}}}{{{f{DAd}}CNd}{{n{jBFb}}}}{{{f{DEh}}}{{G`{h{Df{h}}}}}}{{{f{DAn}}}{{n{{Df{BFb}}BFb}}}}{{{f{DAh}}}{{n{{Df{BFb}}BFb}}}}{{{f{DAd}}}{{n{{Df{BFb}}BFb}}}}{fc{}}00{{{f{DE`}}}Af}{{{f{DAn}}}{{n{DAnBFb}}}}{{{f{DAh}}}{{n{DAhBFb}}}}{{{f{DAd}}}{{n{DAdBFb}}}}{c{{n{e}}}{}{}}000000000000{{}{{n{c}}}{}}000000000000{fOf}000000000000`{{}{{n{DAnBFb}}}}{{{f{b{f{DAd}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDAd}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{DAn}}}{{n{{Df{CO`}}BFb}}}}{{{f{DAd}}}{{n{{Df{CO`}}BFb}}}}{{{f{bDAd}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{DAd}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}````````````````````{{{f{bDF`}}c}{{f{bDCf}}}{{B`{BDj}}}}{{{f{DCl}}}{{f{{Jd{In}}}}}}{{{f{BEj}}}BEh}{{{f{DFb}}}A@`}{{{f{BEl}}}Oj}{{{f{DD`}}}A@b}0{{{f{bDF`}}c}{{f{bDCf}}}{{Aj{}{{Ah{{n{jBFb}}}}}}B@fB@h}}{{{f{DD`}}}A@`}0{{{f{DFd}}}Af}033{{{f{bDDb}}Oj}{{f{bDDb}}}}2{{{f{bDF`}}}BFb}{{{f{{Jd{In}}}}}{{f{DCl}}}}{OhDDf}{OjDFd}{OjDBf}{{{BEb{In}}}DCn}{{{f{DD`}}}Oh}{{{f{bDF`}}Oh}{{f{bDCf}}}}{{{f{bDF`}}{f{{Jd{Oh}}}}}{{f{bDCf}}}};{{{f{DDh}}}A@`}{DFbA@`}{DFdOj}{DBhOj}{DCn{{BEb{In}}}}{{{f{DDj}}}Af}000{{{f{DDf}}}Oh}{{{f{bDDb}}Oh}{{f{bDDb}}}}:{{{f{DD`}}}A@b}0{{{f{DD`}}}A@`}{{{f{bDF`}}c}{{f{bDCf}}}{{Aj{}{{Ah{{n{jBFb}}}}}}B@fB@h}}{{{f{bDF`}}Oj}{{f{bDCf}}}}2{{{f{DDn}}{f{b{Jd{In}}}}A@`}{{n{hBFb}}}}{{{f{DDn}}{f{b{Jd{In}}}}A@`}{{n{jBFb}}}}{{{f{DDn}}{f{b{Jd{BGd}}}}A@`}{{n{hBFb}}}}{{{f{bDDf}}Oh}j}{{{f{DFd}}}{{Df{Oj}}}}70{{{f{DD`}}}Oh}{{{f{bDF`}}Oh}{{f{bDCf}}}}{{{f{DDn}}{f{{Jd{In}}}}A@`}{{n{jBFb}}}}{{{f{DDn}}{f{{Jd{In}}}}A@`}{{n{hBFb}}}}{{{f{DDn}}{f{{Jd{BGj}}}}A@`}{{n{hBFb}}}}``{{{f{bDF`}}c}{{f{bDCf}}}{{B`{BDj}}}}<{{{f{DFd}}}Af}0{{{f{bDF`}}}BFb}{OjDFd}7{{{f{bDF`}}{f{{Jd{Oh}}}}}{{f{bDCf}}}}{DFdOj}{{}Oh}{{{f{bDF`}}c}{{f{bDCf}}}{{Aj{}{{Ah{{n{jBFb}}}}}}B@fB@h}}{{{f{bDF`}}Oj}{{f{bDCf}}}}>><``````````````{{{f{DFb}}}A@`}{DFbA@`}``````````{{}j}{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000{{{DFf{e}}j}c{}{{Bf{}{{Ah{c}}}}}}{{}{{f{AFl}}}}{{{f{DFh}}}Af}{e{{n{c{Mj{Od}}}}}{}{{Bf{}{{Ah{c}}}}DFj}}{{{f{DFl}}}DFl}{{{f{AFl}}}AFl}{{f{f{bc}}}j{}}0{fj}0{{{f{AFl}}{f{AFl}}}Cd}{{{f{AFl}}}Oh}{{}{{DFf{c}}}Gb}{{{f{{DFf{c}}}}}{{f{c}}}{}}{{{f{b{DFf{c}}}}}{{f{bc}}}{}}{{{f{DFl}}{f{DFl}}}Af}{{{f{AFl}}{f{AFl}}}Af}{{{f{AFl}}}{{f{Ll}}}}{{{f{DFh}}{f{bK`}}}{{n{jKb}}}}0{{{f{DFl}}{f{bK`}}}{{n{jKb}}}}{{{f{{DFf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{AFl}}{f{bK`}}}{{n{jKb}}}}0{cc{}}000{{}{{Df{DFl}}}}{{{f{AFl}}{f{bc}}}jAEn}{{}c{}}000{{}}0?{{{f{DFh}}}{{Df{{f{AFl}}}}}}{cJj{OdB@f}}{{{f{AFl}}{f{AFl}}}{{Df{Cd}}}}{{{f{DFh}}}{{f{Od}}}}{{{f{DFh}}}{{Df{{f{Ll}}}}}}{{{Gf{{f{b{DFf{c}}}}}}{f{bGh}}}GjEl}{{{Gf{{f{b{DFf{c}}}}}}{f{bGh}}}{{Gj{Df}}}ACl}{{{Mj{Od}}}Jj}{DFlj}{{{Mj{Bb}}}j}{{{f{{DFf{c}}}}}{{G`{h{Df{h}}}}}ACl}{{}{{Mj{Bb}}}}{fc{}}0{fI`}0{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{fOf}000{cj{{Bb{{f{Bb}}{f{DFh}}}}B@hB@f}}````````````````````````{c{{n{BDnBFb}}}{{B`{BDl}}}}{{{f{bBDn}}c}Af{{B`{BDj}}}}{{{f{BDl}}}DFn}{{{f{bBDl}}}{{f{bBDj}}}}{{{f{bBDn}}}{{f{bBE`}}}}{{{f{BDl}}}{{f{BDj}}}}{{{f{DG`}}}{{f{BDj}}}}{DGb{{f{BDj}}}}{{{f{BDn}}}{{f{BDl}}}}{{{f{DGd}}}{{f{BDl}}}}{{{f{DGf}}}{{f{BDl}}}}2{{{f{BDn}}}{{f{BDj}}}}{{{f{BDl}}}{{f{BDl}}}}7{{{f{DGb}}}{{f{BDj}}}}{{{f{DGb}}}{{f{BDl}}}}5{{{f{DGd}}}{{f{BDj}}}}{{{f{DGf}}}{{f{BDj}}}}68{f{{f{c}}}{}}000000000{{{f{b}}}{{f{bc}}}{}}000000000{{{f{BDl}}}{{n{BDnBFb}}}}{{{f{BDn}}}h}{{{f{bBDn}}}j}{{{f{BDn}}}BDn}{{{f{DGh}}}DGh}{{{f{DG`}}}DG`}{{{f{DGb}}}DGb}{{{f{DGd}}}DGd}{{{f{DGf}}}DGf}{{{f{DFn}}}DFn}{{{f{DGj}}}DGj}{{{f{bBDn}}{f{BDn}}}j}{{f{f{bc}}}j{}}{{{f{BDl}}{f{bBDn}}}j}1111111{fj}{{{f{BDl}}BDl}j}1111111{{{f{BDn}}{f{BDn}}}Cd}{{{f{BDl}}{f{BDl}}}Cd}{{{f{DGh}}{f{DGh}}}Cd}{{{f{DG`}}{f{DG`}}}Cd}{{{f{DGb}}{f{DGb}}}Cd}{{{f{DGd}}{f{DGd}}}Cd}{{{f{BDl}}}DGd}{{}BDn}{{{f{BDn}}}{{f{BDl}}}}{{{f{bBDn}}}{{f{bBDl}}}}{{{f{DGj}}}{{f{Ll}}}}{{{f{BDl}}}DGl}{{{f{BDl}}c}Af{{B`{BDl}}}}{{{f{BDn}}{f{{BDh{BDj}}}}}Af}{{{f{BDn}}{f{BDl}}}Af}{{{f{BDn}}{f{{f{BDj}}}}}Af}{{{f{BDn}}{f{BE`}}}Af}{{{f{BDn}}{f{{BDh{BDl}}}}}Af}{{{f{BDn}}{f{{f{BDl}}}}}Af}{{{f{BDn}}{f{BDj}}}Af}{{{f{BDn}}{f{BDn}}}Af}{{{f{{f{BDl}}}}{f{{BDh{BDj}}}}}Af}{{{f{BDl}}{f{BDj}}}Af}{{{f{BDl}}{f{BDn}}}Af}{{{f{BDl}}{f{BDl}}}Af}{{{f{{f{BDl}}}}{f{BE`}}}Af}{{{f{BDl}}{f{BE`}}}Af}{{{f{{f{BDl}}}}{f{{BDh{BDl}}}}}Af}{{{f{{f{BDl}}}}{f{BDn}}}Af}{{{f{BDl}}{f{{BDh{BDj}}}}}Af}{{{f{BDl}}{f{{BDh{BDl}}}}}Af}{{{f{{f{BDl}}}}{f{BDj}}}Af}{{{f{BDl}}{f{{f{BDj}}}}}Af}{{{f{DGh}}{f{DGh}}}Af}{{{f{DG`}}{f{DG`}}}Af}{{{f{DGb}}{f{DGb}}}Af}{{{f{DGd}}{f{DGd}}}Af}{{{f{DGj}}{f{DGj}}}Af}{{{f{BDl}}}Af}{{{f{bBDn}}e}j{{B`{BDl}}}{{Bj{}{{A`{c}}}}}}{{{f{bBDn}}c}j{{B`{BDl}}}}{{{f{BDl}}}{{Df{{f{BDj}}}}}}000{{{f{BDn}}{f{bK`}}}{{n{jKb}}}}{{{f{BDl}}{f{bK`}}}{{n{jKb}}}}{{{f{DGl}}{f{bK`}}}{{n{jKb}}}}0{{{f{DGh}}{f{bK`}}}{{n{jKb}}}}{{{f{DG`}}{f{bK`}}}{{n{jKb}}}}{{{f{DGb}}{f{bK`}}}{{n{jKb}}}}{{{f{DGd}}{f{bK`}}}{{n{jKb}}}}{{{f{DGf}}{f{bK`}}}{{n{jKb}}}}{{{f{DFn}}{f{bK`}}}{{n{jKb}}}}{{{f{DGj}}{f{bK`}}}{{n{jKb}}}}0{cc{}}{{{Mj{BDl}}}BDn}{{{BDh{BDl}}}BDn}{{{f{c}}}BDn{{B`{BDj}}Ad}}{I`BDn}{BE`BDn}55555555{eBDn{{B`{BDl}}}{{Bj{}{{A`{c}}}}}}{{{f{Ll}}}{{n{BDn}}}}{{{f{BDl}}}Af}{{{f{BDn}}{f{bc}}}jAEn}{{{f{BDl}}{f{bc}}}jAEn}{{{f{DGh}}{f{bc}}}jAEn}{{{f{DG`}}{f{bc}}}jAEn}{{{f{DGb}}{f{bc}}}jAEn}{{}c{}}00000000{BDn{{Mj{BDl}}}}{{{f{BDn}}}DGf}{{{f{BDl}}}DGf}333{BDnBE`}{{{Mj{BDl}}}BDn};;;;{LjAf}<{{{f{DGh}}}Af}4{{{f{BDl}}c}BDn{{B`{BDl}}}}{{{f{DG`}}}DGh}{BDn{{f{bBDl}}}}{{{f{BDl}}}{{n{CGnBFb}}}}{{}BDn}{{{f{c}}}{{f{BDl}}}{{B`{BDj}}Ad}}{{{f{bDGd}}}{{Df{DGb}}}}{{{f{bDGf}}}{{Df{{f{BDj}}}}}}{{{f{bDFn}}}Df}21{{{f{BDl}}}{{Df{{f{BDl}}}}}}{{{f{BDn}}{f{{BDh{BDj}}}}}{{Df{Cd}}}}{{{f{BDn}}{f{BE`}}}{{Df{Cd}}}}{{{f{BDn}}{f{BDn}}}{{Df{Cd}}}}{{{f{BDn}}{f{BDl}}}{{Df{Cd}}}}{{{f{BDn}}{f{{f{BDl}}}}}{{Df{Cd}}}}{{{f{BDn}}{f{{BDh{BDl}}}}}{{Df{Cd}}}}{{{f{BDn}}{f{BDj}}}{{Df{Cd}}}}{{{f{BDn}}{f{{f{BDj}}}}}{{Df{Cd}}}}{{{f{{f{BDl}}}}{f{{BDh{BDl}}}}}{{Df{Cd}}}}{{{f{BDl}}{f{BDl}}}{{Df{Cd}}}}{{{f{{f{BDl}}}}{f{{BDh{BDj}}}}}{{Df{Cd}}}}{{{f{{f{BDl}}}}{f{BDj}}}{{Df{Cd}}}}{{{f{BDl}}{f{BE`}}}{{Df{Cd}}}}{{{f{BDl}}{f{{BDh{BDj}}}}}{{Df{Cd}}}}{{{f{BDl}}{f{{f{BDj}}}}}{{Df{Cd}}}}{{{f{BDl}}{f{BDj}}}{{Df{Cd}}}}{{{f{{f{BDl}}}}{f{BE`}}}{{Df{Cd}}}}{{{f{{f{BDl}}}}{f{BDn}}}{{Df{Cd}}}}{{{f{BDl}}{f{{BDh{BDl}}}}}{{Df{Cd}}}}{{{f{BDl}}{f{BDn}}}{{Df{Cd}}}}{{{f{DGh}}{f{DGh}}}{{Df{Cd}}}}{{{f{DG`}}{f{DG`}}}{{Df{Cd}}}}{{{f{DGb}}{f{DGb}}}{{Df{Cd}}}}{{{f{DGd}}{f{DGd}}}{{Df{Cd}}}}{{{f{bBDn}}}Af}{{{f{bBDn}}c}j{{B`{BDl}}}}{{{f{BDl}}}{{n{CIbBFb}}}}{{{f{BDl}}}{{n{BDnBFb}}}}{{{f{bBDn}}h}j}0{{{f{bBDn}}c}Af{{B`{BDj}}}}{{{f{bBDn}}c}j{{B`{BDj}}}}2{{{f{bBDn}}}j}{{{f{BDl}}c}Af{{B`{BDl}}}}{{{f{BDl}}c}{{n{{f{BDl}}DGj}}}{{B`{BDl}}}}{{{f{BDl}}}{{n{CGnBFb}}}}{fc{}}{{{f{BDl}}}BDn}11111110{{{f{BDl}}}{{Df{{f{Ll}}}}}}{fI`}0{{{f{BDl}}}{{BDh{Ll}}}}{{{f{BDl}}}{{n{AfBFb}}}}{c{{n{e}}}{}{}}00000000{{}{{n{c}}}{}}00000000{{{f{bBDn}}h}{{n{jBKd}}}}0{fOf}000000000{{{f{BDl}}c}BDn{{B`{BDj}}}}{hBDn}11``{{{Gf{{f{b{Gf{c}}}}}}}{{Gf{{f{b}}}}}AKl}{{{f{b{Gf{c}}}}}{{Gf{{f{b}}}}}AKl}{{{f{{Gf{c}}}}}{{Gf{f}}}AKj}{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{{{f{{Gf{c}}}}}{{Gf{c}}}ACb}{{f{f{bc}}}j{}}{fj}{{{f{{Gf{c}}}}{f{{Gf{c}}}}}CdAKj}{{{f{{Gf{c}}}}}fAKj}{{{f{b{Gf{c}}}}}{{f{b}}}AKl}{{{f{{Gf{c}}}}{f{{Gf{e}}}}}AfAKjAKj}{{{f{{Gf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{Gf{c}}}}{f{bK`}}}{{n{jKb}}}Kd}{{{f{{Gf{c}}}}{f{bK`}}}{{n{jKb}}}Kn}{cc{}}{{{Mj{ce}}}{{Gf{{Mj{ce}}}}}AdJb}5{{{Gf{{f{bc}}}}}{{f{bc}}}{AHdAd}}{{{Gf{{f{c}}}}}{{f{c}}}Ad}{{{Gf{{f{bc}}}}}{{f{bc}}}Ad}8{{{f{{Gf{c}}}}{f{be}}}jAKjAEn}{{}c{}}{{}}0{{{Gf{c}}}cAKj}0{{{Gf{{f{bc}}}}}{{Gf{{f{c}}}}}Ad}=={{{Gf{{f{c}}}}g}{{Gf{{f{e}}}}}AdAd{{Bf{{f{c}}}{{Ah{{f{e}}}}}}}}{{{Gf{{f{bc}}}}g}{{Gf{{f{be}}}}}AdAd{{Bf{{f{bc}}}{{Ah{{f{be}}}}}}}}?{c{{Gf{c}}}AKj}0{{{f{{Gf{c}}}}{f{{Gf{e}}}}}{{Df{Cd}}}AKjAKj}`{{{Gf{{f{b{Gf{c}}}}}}{f{bGh}}}GjAKl}{{{Gf{{f{b{Gf{c}}}}}}{f{bGh}}}{{Gj{Df}}}AKl}{{{Gf{{f{b{Gf{{Mj{eg}}}}}}}}c}AMh{}{{AHb{c}}Ad}Jb}{{{Gf{{f{b{Gf{{f{be}}}}}}}}c}AMh{}{{AHb{c}}Ad}}{{{f{b{Gf{c}}}}}jAKl}{{{f{{Gf{c}}}}}{{G`{h{Df{h}}}}}AKl}{{{f{bc}}}{{Gf{{f{bc}}}}}Ad}{{{f{c}}}{{Gf{{f{c}}}}}Ad}{fc{}}{fI`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{fOf}``{{{f{DBb}}}BEh}{{{f{DB`}}}BEh}{{{f{DBb}}}Oj}{{{f{DB`}}}Oj}{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{{f{b{f{DB`}}}}}{{n{jBFb}}}}{{{f{bDB`}}}{{n{jBFb}}}}{{{f{DBb}}{f{bK`}}}{{n{jKb}}}}{{{f{DB`}}{f{bK`}}}{{n{jKb}}}}{CIdDBb}{cc{}}{CIdDB`}1{OjDBb}{OjDB`}{{}c{}}0{DBbOj}{DB`Oj}{{{f{DBb}}}Af}{{{f{{f{DBb}}}}}Af}{{{f{DB`}}}Af}{{{f{{f{DB`}}}}}Af}{{}{{n{{G`{DBbDB`}}BFb}}}}{{{f{bDBb}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{DBb}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{b{f{DBb}}}}BGb}{{n{jBFb}}}}{{{f{bDBb}}BGb}{{n{jBFb}}}}{{{f{b{f{DBb}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bDBb}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bDBb}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{b{f{DBb}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{DBb}}}{{n{DBbBFb}}}}{{{f{DB`}}}{{n{DB`BFb}}}}{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{fOf}0{{{f{b{f{DB`}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDB`}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDB`}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{DB`}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}``````````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}?`0?```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}};{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{F`}}}h}``=1{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}6{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2810`{{{f{ADb}}{f{c}}}AfAd}8{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}``{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}{{{f{Hn}}}I`}`{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}`````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}?`0?```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}};{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{F`}}}h}``=1{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}6{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2810`{{{f{ADb}}{f{c}}}AfAd}8{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}``{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}{{{f{Hn}}}I`}`{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}``````````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{eCf{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}`10```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}<;{{{f{F`}}}h}``=<{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}5{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2710`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}``{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}{{{f{Hn}}}I`}`{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{{If{}{{Id{e}}}}e}}}{}{}}{{{Ih{}{{Id{c}}}}}{{n{ec}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}```````````````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{eCf{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}`10```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Ej{}{{Ah{c}}{Eh{e}}}}}e{}{{El{}{{Ah{c}}}}}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}}=<{{{f{F`}}}h}``>={{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}5{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2710`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{Gf{{f{b{El{}{{Ah{c}}}}}}}}{f{bGh}}}{{Gj{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}``{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}{{{f{Hn}}}I`}`{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{{If{}{{Id{e}}}}e}}}{}{}}{{{Ih{}{{Id{c}}}}}{{n{ec}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}`````````````````````````````````````````````````{{{f{bd}}h}{{n{j{l{h}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{n{j{l{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{f{b{Ab{}{{A`{c}}}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}`0{{{Ab{}{{A`{c}}}}}{{Al{{Ab{}{{A`{c}}}}}}}{}}{{{f{bAn}}}{{f{bc}}}Ad}{{{f{B`}}}{{f{c}}}Ad}``{{{f{b{Ab{}{{A`{c}}}}}}}{{f{b{Ab{}{{A`{c}}}}}}}{}}{{{f{Bb}}c}eBd{}}{{{f{bAj}}c}eBd{}}{{{Bf{}{{Ah{c}}}}e}c{}Bd}```{{{Ab{}{{A`{c}}}}e}{{Bh{{Ab{}{{A`{c}}}}}}}{}{{Bj{}{{A`{c}}}}}}{{FlFlFl}Fl}{{{f{ACb}}}ACb}{{{f{bACb}}{f{ACb}}}j}{{{f{{Bn{}{{Bl{c}}}}}}{f{bc}}}j{{C`{{Bn{}{{Bl{c}}}}}}}}{{{Ab{}{{A`{c}}}}}{{Cb{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fl}}{f{Fl}}}Cd}{{{Ab{}{{A`{c}}}}e}Cd{}{{Bj{}{{A`{c}}}}}}{{{Ab{}{{A`{c}}}}eg}Cd{}Bj{{Aj{c}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Cf{c}}}}{{{Ab{}{{A`{c}}}}{f{be}}}{{f{be}}}{}{{Ch{c}}}}`````{{{Ab{}{{A`{c}}}}}{{Cj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}}h{}}{{{Ab{}{{A`{c}}}}}{{Cl{{Ab{}{{A`{c}}}}}}}{}}{{}Gb}```{cj{}}{{{f{bCn}}}j}{{{Ab{}{{A`{c}}}}}{{D`{{Ab{}{{A`{c}}}}}}}{}}`{{{f{ADb}}{f{c}}}AfAd}{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{Ab{}{{A`{c}}}}eg}Af{}Bj{{Aj{c}{{Ah{Af}}}}}}{{{f{bCh}}e}j{}{{Bj{}{{A`{c}}}}}}{{{f{bCh}}c}j{}}{{{f{bCh}}h}j}`{{{Ab{}{{A`{c}}}}e}{{Db{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{{Df{e}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Dh{{Ab{}{{A`{c}}}}eg}}}{}Bj{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Dj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}eg}e{}{}{{Aj{ec}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}e}j{}{{Aj{c}}}}``{cDl{}}{{{Ab{}{{A`{c}}}}}{{Dn{{Ab{}{{A`{c}}}}}}}{}}{{{f{Fb}}{f{c}}}AfAd}?`0?```{{{Ab{}{{A`{c}}}}e}{{E`{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}}}}{{{Ab{}{{A`{c}}}}c}{{Eb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Ed{{Ab{}{{A`{c}}}}e}}}{}{{Aj{}{{Ah{c}}}}}}{Efc{}}{{{Bj{}{{A`{c}}{En{e}}}}}e{}{{Ab{}{{A`{c}}}}}}{{{f{F`}}}Af}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}Af{}}{{{Ab{}{{A`{c}}}}e}Af{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}g}Af{}Fb{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}}{{Df{c}}}{}};{{{Ab{}{{A`{c}}}}e}Af{}Bj}{{{f{F`}}}h}``=1{{{Ab{}{{A`{c}}}}g}{{Fd{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{e}}}}}}{{{Ab{}{{A`{c}}}}g}{{Ff{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{c}{{Ah{{Df{e}}}}}}}}{{{Ab{}{{A`{c}}}}g}{{Fh{{Ab{}{{A`{c}}}}g}}}{}{}{{Aj{{f{{Fj{c}}}}}{{Ah{e}}}}}}{{FlFl}Fl}6{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Cd}}}}}}{{{Ab{}{{A`{c}}}}g}{{Df{c}}}{}Fl{{Aj{{f{c}}}{{Ah{e}}}}}}2810`{{{f{ADb}}{f{c}}}AfAd}8{{{f{b{Ab{}{{A`{c}}}}}}}{{Df{c}}}{}}{{{f{bd}}}{{Df{c}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}h}{{Df{c}}}{}}{{{f{bd}}h}{{Df{c}}}{}}`{{{f{Fb}}{f{c}}}{{Df{Cd}}}Ad}{{{Ab{}{{A`{c}}}}e}{{Df{Cd}}}{}Bj}{{{Ab{}{{A`{c}}}}eg}{{Df{Cd}}}{}Bj{{Aj{c}{{Ah{{Df{Cd}}}}}}}}{{{Ab{}{{A`{c}}}}e}{{G`{gg}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}{Gb{Ch{c}}}}{{{Ab{}{{A`{c}}}}g}h{}{}{{Aj{{f{e}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}{{Gd{{Ab{}{{A`{c}}}}}}}{}}{{{f{b{Ab{}{{A`{c}}}}}}e}{{Df{h}}}{}{{Aj{c}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}}e{}{{Gl{c}}}}{{{Ab{}{{A`{c}}}}e}{{Df{c}}}{}{{Aj{cc}{{Ah{c}}}}}}{{{Ab{}{{A`{c}}}}}{{Gn{{Ab{}{{A`{c}}}}}}}{}}{{{f{bd}}e}{{Df{c}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{dcg}c{}{}{{Aj{ce}{{Ah{c}}}}}}5{{{Ab{}{{A`{c}}}}ei}{{H`{{Ab{}{{A`{c}}}}ei}}}{}{}{}{{Aj{{f{be}}c}{{Ah{{Df{g}}}}}}}}{{{f{{Ab{}{{A`{c}}}}}}}{{G`{h{Df{h}}}}}{}}{{}h}{{{f{c}}}hAd}{{{Ab{}{{A`{c}}}}h}{{Hb{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hd{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{Ab{}{{A`{c}}}}h}{{Hf{{Ab{}{{A`{c}}}}}}}{}}`{{{Ab{}{{A`{c}}}}}e{}{{Hh{c}}}}{{{Ab{}{{A`{c}}}}h}{{Hj{{Ab{}{{A`{c}}}}}}}{}}{{{Ab{}{{A`{c}}}}e}{{Hl{{Ab{}{{A`{c}}}}e}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}``{{{f{{Bn{}{{Bl{c}}}}}}}c{{C`{{Bn{}{{Bl{c}}}}}}}}{{{f{Hn}}}I`}`{{{f{b{Ab{}{{A`{c}}}}}}}{}{}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{Af}}}}}{{Aj{{f{c}}}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}ei}g{}{}{{Ib{}{{Ah{e}}}}}{{Aj{ec}{{Ah{g}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}e{}{{Ib{}{{Ah{j}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{b{Ab{}{{A`{c}}}}}}g}{}{}{{Ib{}{{Ah{c}}}}}{{Aj{cc}{{Ah{e}}}}}}{{{f{bd}}ci}g{}{}{{Ib{}{{Ah{c}}}}}{{Aj{ce}{{Ah{g}}}}}}`{{{Ab{}{{A`{c}}}}}{{G`{gk}}}{}{}{Gb{Ch{e}}}{}{Gb{Ch{i}}}}{{{Ab{}{{A`{c}}}}e}{{Ij{{Ab{}{{A`{c}}}}}}}{}Bj}````````````````````````````````{{}Jj}{{{f{bDCf}}c}{{f{bDCf}}}{{B`{BDj}}}}0{{{f{bDCf}}e}{{f{bDCf}}}{{B`{BDj}}}{{Bj{}{{A`{c}}}}}}{{{f{DAf}}}BEh}{{{f{DAj}}}BEh}{{{f{DAl}}}BEh}{{{f{DAf}}}Oj}{{{f{DAj}}}Oj}{{{f{DAl}}}Oj}{f{{f{c}}}{}}00000000000{{{f{b}}}{{f{bc}}}{}}00000000000{{{f{DGn}}}DGn}{{{f{DCj}}}DCj}{{{f{DH`}}}DH`}{{{f{CDj}}}CDj}{{f{f{bc}}}j{}}000{fj}000{{{f{DCj}}}{{Df{Oj}}}}{{{f{DH`}}}{{Df{Oj}}}}{{{f{DH`}}}{{Df{{l{Oj}}}}}}{{{f{DCj}}}Af}{{{f{DH`}}}Af}10{{{f{bDCf}}Af}{{f{bDCf}}}}{{{f{bDCf}}c}{{f{bDCf}}}{{B`{BDl}}}}{{}DCj}{{}CDj}{{{f{bDCf}}ce}{{f{bDCf}}}{{B`{BDj}}}{{B`{BDj}}}}{{{f{bDCf}}}{{f{bDCf}}}}{{{f{bDCf}}c}{{f{bDCf}}}{{B`{BDj}}}}{{{f{bDCf}}g}{{f{bDCf}}}{{B`{BDj}}}{{B`{BDj}}}{{Bj{}{{A`{{G`{ce}}}}}}}}{{{f{DGn}}{f{DGn}}}Af}{{{f{DCj}}{f{DCj}}}Af}{{{f{DH`}}{f{DH`}}}Af}{{{f{bDCf}}}BFb}{OjJj}{{{f{DCj}}}{{n{jDH`}}}}{CDjJj}{{{f{bDAf}}}{{n{jBFb}}}}{{{f{b{f{DAf}}}}}{{n{jBFb}}}}{{{f{DHb}}{f{bK`}}}{{n{jKb}}}}{{{f{DAf}}{f{bK`}}}{{n{jKb}}}}{{{f{DAj}}{f{bK`}}}{{n{jKb}}}}{{{f{DAl}}{f{bK`}}}{{n{jKb}}}}{{{f{DCf}}{f{bK`}}}{{n{jKb}}}}{{{f{DHd}}{f{bK`}}}{{n{jKb}}}}{{{f{DHf}}{f{bK`}}}{{n{jKb}}}}{{{f{DGn}}{f{bK`}}}{{n{jKb}}}}{{{f{DCj}}{f{bK`}}}{{n{jKb}}}}0{{{f{DH`}}{f{bK`}}}{{n{jKb}}}}0{{{f{CDj}}{f{bK`}}}{{n{jKb}}}}{{{f{DHh}}{f{bK`}}}{{n{jKb}}}}{cc{}}0{CIdDAf}{CIdDAj}2{CIdDAl}33{DAfDHd}{CJbDHd}5{DBbDHd}{DAjDHd}{DAlDHd}{CHdDHd}{CIdDHd}{CJfDHd}{DB`DHd}<<<{DH`DCj}={InCDj}>>{OjDCj}{OjDH`}{OjDHd}{{{f{DCf}}}DHf}{{{f{DCf}}}{{Df{{f{BDl}}}}}}{{{f{DCf}}}DHh}{{{f{DCf}}}{{f{BDj}}}}{{{f{bDCf}}Oh}{{f{bDCf}}}}{{{f{bDCf}}{f{{Jd{Oh}}}}}{{f{bDCf}}}}{{}Oh}{{{f{DHb}}}Oh}{{}DHd}{{}c{}}0000000000000{DHb{{n{DBdDHb}}}}{DCjOj}{DH`Oj}{DAfOj}{DAjOj}{DAlOj}{{{f{DH`}}}DCj}{{{f{DHf}}}Af}{{{f{DHh}}}Af}{{{f{DAj}}}Af}{{{f{DAl}}}Af}{{{f{{f{DAf}}}}}Af}{{{f{DAf}}}Af}{{{f{bDHb}}}{{n{jBFb}}}}{{{f{DHf}}}h}{{{f{DHh}}}h}{{{f{DHd}}}Af}{cDCf{{B`{BDj}}}}{{{f{bDHf}}}{{Df{{f{BDj}}}}}}{{{f{bDHh}}}Df}{{}DHd}{{{f{bDCf}}}{{n{DGnBFb}}}}{{{f{DHb}}}{{n{{f{DBd}}BFb}}}}2{{{f{bDCf}}c}{{f{bDCf}}}{{Aj{}{{Ah{{n{jBFb}}}}}}B@fB@h}}{{{f{bDCf}}Oj}{{f{bDCf}}}}{{{f{bDAj}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDAl}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDAj}}BGb}{{n{jBFb}}}}{{{f{bDAl}}BGb}{{n{jBFb}}}}{{{f{bDAj}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bDAl}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{bDAj}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{f{bDAl}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{DHjCDj}{CDjCDj}{{{f{DCj}}}{{Df{Oj}}}}{{{f{DH`}}}{{Df{Oj}}}}{{{f{DHf}}}{{G`{h{Df{h}}}}}}{{{f{DHh}}}{{G`{h{Df{h}}}}}}{{{f{bDCf}}}{{n{DHbBFb}}}}{{{f{bDCf}}}{{n{DCjBFb}}}}`{{{f{bDCf}}c}{{f{bDCf}}}{{Ef{DHd}}}}``0`0``65{{{f{DCj}}}Af}{fc{}}000{fI`}0{c{{n{e}}}{}{}}00000000000{{}{{n{c}}}{}}00000000000{{{f{bDHb}}}{{n{{Df{DCj}}BFb}}}}{fOf}00000000000{{{f{bDCf}}Oh}{{f{bDCf}}}}{{{f{bDHb}}}{{n{DCjBFb}}}}{DHb{{n{DGnBFb}}}}{{{f{b{f{DAf}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDAf}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{bDAf}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}{{{f{b{f{DAf}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}``````{{{Jf{c}}h}{{Jf{c}}}Ad}{{{Jf{c}}}{{l{h}}}Ad}{{}Af}``{{{DHl{c}}}hAd}{{{Jf{c}}h}hAd}{{{f{b{Jf{c}}}}}{{f{bc}}}Ad}{{{Jf{{Jd{c}}}}}{}{}}{{{Jf{{Jd{c}}}}}{{Jf{c}}}{}}{D@j{{l{h}}}}{{{Jf{c}}}{}Ad}{{{f{{Jf{c}}}}}{{f{c}}}Ad}{{{Jf{c}}}{{f{b{BCl{c}}}}}{}}{{{Jf{c}}}{{f{{BCl{c}}}}}{}}{{{Jf{{Jd{c}}}}}{{f{{Jd{{BCl{c}}}}}}}{}}{{{Jf{{Jd{c}}}}}{{f{b{Jd{{BCl{c}}}}}}}{}}{D@jh}{f{{f{c}}}{}}00{{{f{b}}}{{f{bc}}}{}}00{{{Jf{c}}h}{{Jf{c}}}Ad}{{{Jf{c}}AFd}{{Jf{c}}}Ad}{{{Jf{c}}{Jf{e}}}AFdAdAd}2{{{Jf{c}}}{{Jf{e}}}Ad{}}{{{f{{DHl{c}}}}}{{DHl{c}}}Ad}{{{f{{Jf{c}}}}}{{Jf{c}}}Ad}{{{f{D@j}}}D@j}{{f{f{bc}}}j{}}00{fj}00{{{f{{DHl{c}}}}{f{{DHl{c}}}}}CdAd}{{{f{{Jf{c}}}}{f{{Jf{c}}}}}CdAd}{{{f{D@j}}{f{D@j}}}Cd}{hj}{{{Jf{c}}{Jf{c}}h}jAd}0100{{}}{{}{{Jf{c}}}{}}1{{}D@j}{{}j}{{{Jf{c}}}jAd}{{}Af}{{{f{{DHl{c}}}}{f{{DHl{c}}}}}AfAd}{{{f{{Jf{c}}}}{f{{Jf{c}}}}}AfAd}{{{f{D@j}}{f{D@j}}}Af}{{{f{{DHl{c}}}}{f{bK`}}}{{n{jKb}}}Ad}{{{f{{Jf{c}}}}{f{bK`}}}{{n{jKb}}}Ad}0{{{f{D@j}}{f{bK`}}}{{n{jKb}}}}{{ce}AfAIdAId}{cc{}}{{{f{c}}}{{Jf{c}}}Ad}{{{f{bc}}}{{Jf{c}}}Ad}22{{{f{bc}}}{}Ad}{{}}{{{Jf{j}}}{{Jf{c}}}Ad}1{{{f{c}}}{}Ad}{{{Jf{{Jd{c}}}}e}Jf{}{{Mb{{Jd{c}}}}}}{{{f{bc}}}jAEn}{{{f{{DHl{c}}}}{f{be}}}jAdAEn}{{{f{{Jf{c}}}}{f{be}}}jAdAEn}{{{f{D@j}}{f{bc}}}jAEn}{{}c{}}00{{{Jf{c}}}AfAd}{{{Jf{c}}h}AfAd}{{{Jf{{Jd{c}}}}}Af{}}{{{DHl{c}}}IlAd}{{{Jf{{Jd{c}}}}}h{}}{D@jOh}{{{Jf{c}}e}{{Jf{c}}}Ad{{Bf{{l{h}}}{{Ah{{l{h}}}}}}}}{D@jh}{{}}{{}{{Df{{Jf{c}}}}}Ad}{h{{Df{D@j}}}}{{}{{Jf{c}}}Ad}{hD@j}44{{}D@j}{{{Jf{c}}AFd}{{Jf{c}}}Ad}{{{Jf{c}}{Jf{c}}}AFdAd}{{{f{{DHl{c}}}}{f{{DHl{c}}}}}{{Df{Cd}}}Ad}{{{f{{Jf{c}}}}{f{{Jf{c}}}}}{{Df{Cd}}}Ad}{{{f{D@j}}{f{D@j}}}{{Df{Cd}}}}{{}c{}}{{{Jf{c}}}cAd}1010{cc{}}{{{Jf{c}}c}cAd}{{{DHl{c}}}hAd}{hJd}{{{Jf{c}}h}{{Jf{{Jd{c}}}}}{}}1{{{Jf{c}}h}{{Jf{c}}}Ad}{{{Jf{c}}{Jf{c}}}hAd}{{}j}{{{Jf{c}}{Jf{c}}}jAd}{hj}{fc{}}00{{{Jf{c}}}{{G`{{Jf{j}}}}}Ad}{c{{n{e}}}{}{}}0{h{{n{D@j}}}}{{{l{h}}}{{n{D@j}}}}2{{}{{n{c}}}{}}00{fOf}00{{{Jf{c}}{l{h}}}{{Jf{c}}}Ad}{h}000{cj{}}{{{Jf{c}}c}jAd}{{Inh}j}{{{Jf{c}}Inh}jAd}3232```{{{f{{Ob{ce}}}}}{{f{e}}}AdJb}{{{f{{DHn{ce}}}}}{{f{e}}}AdJb}{{{f{{Ob{c}}}}}BEh{BEjAd}}{{{f{{Ob{ce}}}}}{}AdJb}{{{f{{DHn{ce}}}}}{}AdJb}{{{f{{Ob{c}}}}}OjBEl}{{{f{{Ob{ce}}}}}{{f{c}}}AdJb}{{{Ob{{BCl{c}}e}}}{{Ob{ce}}}{}Jb}{{{Ob{{Jd{{BCl{c}}}}e}}}{{Ob{{Jd{c}}e}}}{}Jb}{f{{f{c}}}{}}300{{{f{b}}}{{f{bc}}}{}}00{{{f{{Ob{ce}}}}}{{Ob{ce}}}Ad{JbACb}}{{{f{{DHn{ce}}}}}{{DHn{ce}}}Ad{JbACb}}{{f{f{bc}}}j{}}0{fj}0{{{f{{Ob{ce}}}}{f{{Ob{ce}}}}}Cd{FlAd}Jb}{{}j}{cjJb}{{}{{Ob{Ll}}}}{{}{{Ob{BEf}}}}{{}{{Ob{{Jd{c}}}}}{}}{{}{{Ob{c}}}Gb}{{}{{DHn{c}}}{}}{{{f{{Ob{ce}}}}}{{f{c}}}AdJb}{{{f{{DI`{ce}}}}}{{f{c}}}AdJb}{{{f{b{DI`{ce}}}}}{{f{bc}}}AdJb}{{{Ob{Odc}}}{{n{{Ob{ec}}{Ob{Odc}}}}}JbOd}{{{Ob{Odc}}}{{Ob{ec}}}JbOd}{{{f{{Ob{ce}}}}}{{DHn{ce}}}Ad{ACbJb}}{{{f{{DI`{ce}}}}}{{DHn{ce}}}Ad{JbACb}}{{{f{b{Ob{ce}}}}}jAdJb}{{{f{b{DHn{ce}}}}}jAdJb}{{{f{b{DI`{ce}}}}}jAdJb}{{{f{{Ob{ce}}}}{f{{Ob{ce}}}}}Af{ADbAd}Jb}{{{f{{Ob{ce}}}}{f{bK`}}}{{n{jKb}}}{JnAd}Jb}{{{f{{Ob{ce}}}}{f{bK`}}}{{n{jKb}}}AdJb}{{{f{{Ob{ce}}}}{f{bK`}}}{{n{jKb}}}{KdAd}Jb}{{{f{{DHn{ce}}}}{f{bK`}}}{{n{jKb}}}AdJb}{{{f{{DI`{ce}}}}{f{bK`}}}{{n{jKb}}}{JnAd}{JnJb}}{{{f{BEf}}}{{Ob{BEf}}}}{BE`{{Ob{BDj}}}}{BDn{{Ob{BDl}}}}{{{BEb{ce}}}{{Ob{{Jd{c}}e}}}{}Jb}{{{f{BDl}}}{{Ob{BDl}}}}{I`{{Ob{Ll}}}}{{{f{Ll}}}{{Ob{Ll}}}}{{{BDh{c}}}{{Ob{c}}}{BnAd}}{{{f{{Jd{c}}}}}{{Ob{{Jd{c}}}}}ACb}{{{Fj{c}}}{{Ob{{Jd{c}}}}}{}}{cc{}}{c{{Ob{c}}}{}}{{{Ob{Ll}}}{{Ob{{Jd{In}}}}}}{Jjc{}}{{{Mj{ce}}}{{Ob{ce}}}AdJb}{{{f{BDj}}}{{Ob{BDj}}}}{BEd{{Ob{BEf}}}}66{e{{Ob{{Jd{c}}}}}{}{{Bj{}{{A`{c}}}}}}{{}{{Ob{c}}}Ad}{{}{{DHn{c}}}Ad}{c{{Ob{ec}}}JbAd}{c{{DHn{ec}}}JbAd}{{{f{{Ob{ce}}}}{f{{Ob{ce}}}}}Af{FbAd}Jb}{{{f{b{Ob{ce}}}}}{{Df{{f{bc}}}}}AdJb}{{{f{b{Ob{ce}}}}}{{f{bc}}}AdJb}2{{{f{{Ob{ce}}}}{f{bg}}}j{AF`Ad}JbAEn}{{}j}{cj{ACbJb}}{{}c{}}00{{{Ob{ce}}}{{Df{c}}}{}Jb}{{{Ob{ce}}}{}AdJb}{{{DHn{ce}}}{}AdJb}{{{Ob{ce}}}{{G`{e}}}AdJb}{{{DHn{ce}}}{{G`{e}}}AdJb}{{{DI`{ce}}}{{Ob{ce}}}AdJb}<<{{{f{b{Ob{ce}}}}}{{f{bc}}}{AD`Ad}{JbACb}}{{{f{{Ob{ce}}}}{f{{Ob{ce}}}}}Af{ADbAd}Jb}{c{{Ob{c}}}{}}{{}{{DHn{c}}}{}}{c{{DI`{c}}}{}}{e{{Ob{c}}}{}{{Bf{{f{{DHn{c}}}}}{{Ah{c}}}}}}{{ce}{{Ob{ce}}}{}Jb}{c{{DHn{ec}}}Jb{}}{{ce}{{DI`{ce}}}{}Jb}{{}{{Ob{{BCl{c}}}}}{}}{c{{Ob{{BCl{e}}c}}}Jb{}}{h{{Ob{{Jd{{BCl{c}}}}}}}{}}{{hc}{{Ob{{Jd{{BCl{e}}}}c}}}Jb{}}3210{{{f{{Ob{ce}}}}{f{{Ob{ce}}}}}{{Df{Cd}}}{FbAd}Jb}{c{{Gf{{Ob{c}}}}}{}}{{ce}{{Gf{{Ob{ce}}}}}{}Jb}{{{f{{Ob{ce}}}}{f{{Ob{ce}}}}}AfAdJb}{{{f{{DHn{ce}}}}{f{{DHn{ce}}}}}AfAdJb}{{{f{{Ob{ce}}}}}hAdJb}{{{f{{DHn{ce}}}}}hAdJb}{fc{}}0{fI`}{{{Ob{{Jd{c}}e}}}{{n{{Ob{{Fj{c}}e}}}}}{}Jb}{c{{n{e}}}{}{}}00{{}{{n{c}}}{}}00{c{{n{{Ob{c}}Jh}}}{}}{{ce}{{n{{Ob{ce}}Jh}}}{}Jb}{{}{{n{{Ob{{BCl{c}}}}Jh}}}{}}{c{{n{{Ob{{BCl{e}}c}}Jh}}}Jb{}}10{{{Ob{ce}}}{{n{c{Ob{ce}}}}}{}Jb}{fOf}00{{{Ob{ce}}}cACbJb}{{{f{{DHn{ce}}}}}{{Df{{Ob{ce}}}}}Ad{ACbJb}}>=``````{{{n{ce}}{n{ge}}}{{n{ge}}}{}{}{}}{{{n{ce}}i}{{n{ge}}}{}{}{}{{Bf{c}{{Ah{{n{ge}}}}}}}}{{{f{{n{ce}}}}}{{n{f{f{e}}}}}AKj{}}{{{f{b{n{ce}}}}}{{n{{f{b}}{f{be}}}}}AKl{}}{{{f{b{n{ce}}}}}{{n{{f{bc}}{f{be}}}}}{}{}}{{{f{{n{ce}}}}}{{n{{f{c}}{f{e}}}}}{}{}}{f{{f{c}}}{}}000{{{f{b}}}{{f{bc}}}{}}000{{{n{ce}}}AKf{}{}}{{{f{{n{ce}}}}}{{n{ce}}}ACbACb}{{{f{{DIb{c}}}}}{{DIb{c}}}{}}{{{f{{DId{c}}}}}{{DId{c}}}ACb}{{{f{b{n{ce}}}}{f{{n{ce}}}}}jACbACb}{{f{f{bc}}}j{}}00{fj}00{{{n{{f{c}}e}}}{{n{ce}}}ACb{}}{{{n{{f{bc}}e}}}{{n{ce}}}ACb{}}{{{f{{n{ce}}}}{f{{n{ce}}}}}CdFlFl}{{{n{{f{c}}e}}}{{n{ce}}}AFf{}}{{{n{{f{bc}}e}}}{{n{ce}}}AFf{}}{{{f{{n{ce}}}}{f{{n{ce}}}}}AfADbADb}{{{n{ce}}}{{Df{e}}}{}{}}{{{n{ce}}{f{Ll}}}c{}Jn}{{{n{ce}}{f{Ll}}}eJn{}}{{{n{{n{ce}}e}}}{{n{ce}}}{}{}}{{{f{{n{ce}}}}{f{bK`}}}{{n{jKb}}}JnJn}{{{f{{DIb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DIf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DId{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{DIh{{n{DIjDIl}}}}{{{f{DIh}}}{{n{DIjDIl}}}}{cc{}}000{g{{n{ie}}}{}{}{{Bj{}{{A`{{n{ce}}}}}}}{{Cf{c}}}}{{}{{n{ce}}}{}{}}{{{D@n{c}}}{{n{eg}}}{}{}{{Dl{c}}}}{{{n{BCjc}}}{{n{eg}}}{}{}{{Dl{c}}}}{{{f{{n{ce}}}}{f{bg}}}jAF`AF`AEn}{{{n{ce}}g}{{n{ce}}}{}{}{{Bf{{f{c}}}}}}{{{n{ce}}g}{{n{ce}}}{}{}{{Bf{{f{e}}}}}}{{}c{}}000{{{n{ce}}}e{{Ef{Jj}}}{}}{{{f{{n{ce}}}}}{{DIb{c}}}{}{}}{{{n{ce}}}{{DId{c}}}{}{}}{{{f{b{n{ce}}}}}{{DIf{c}}}{}{}}444{{{n{ce}}}c{}{{Ef{Jj}}}}{{{f{{n{ce}}}}}Af{}{}}{{{n{ce}}g}Af{}{}{{Bf{e}{{Ah{Af}}}}}}1{{{n{ce}}g}Af{}{}{{Bf{c}{{Ah{Af}}}}}}64{{{n{ce}}i}{{n{ge}}}{}{}{}{{Bf{c}{{Ah{g}}}}}}{{{n{ce}}i}{{n{cg}}}{}{}{}{{Bf{e}{{Ah{g}}}}}}{{{n{ce}}gi}g{}{}{}{{Bf{c}{{Ah{g}}}}}}{{{n{ce}}ik}g{}{}{}{{Bf{e}{{Ah{g}}}}}{{Bf{c}{{Ah{g}}}}}}{{{f{b{DIb{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{DIf{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{DId{c}}}}}{{Df{c}}}{}}210{{{n{ce}}}{{Df{c}}}{}{}}{{{n{ce}}{n{cg}}}{{n{cg}}}{}{}{}}{{{n{ce}}i}{{n{cg}}}{}{}{}{{Bf{e}{{Ah{{n{cg}}}}}}}}{{{f{{n{ce}}}}{f{{n{ce}}}}}{{Df{Cd}}}FbFb}{g{{n{ie}}}{}{}{{Ab{}{{A`{{n{ce}}}}}}}{{Gl{c}}}}{{{n{ce}}}CDjDHjJn}{{{f{{DIb{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DIf{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DId{c}}}}}{{G`{h{Df{h}}}}}{}}{g{{n{ie}}}{}{}{{Ab{}{{A`{{n{ce}}}}}}}{{Hh{c}}}}{fc{}}00{{{n{{Df{c}}e}}}{{Df{{n{ce}}}}}{}{}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{fOf}000{{{n{ce}}}c{}Jn}{{{n{ce}}}eJn{}}{{{n{ce}}}e{}{}}{{{n{ce}}c}c{}{}}{{{n{ce}}}cGb{}}{{{n{ce}}g}c{}{}{{Bf{e}{{Ah{c}}}}}}{{{n{ce}}}c{}{}}``````````````{f{{f{c}}}{}}{{{f{b}}}{{f{bc}}}{}}{DInDIn}`{{{AOj{c}}{AOj{c}}}{{AOj{c}}}AOl}{{{AOn{c}}{AOn{c}}}{{AOn{c}}}B@`}222``````````````22{cc{}}{c{{B@d{}{{B@b{c}}}}}{AFfAHdB@fB@h{B`{{Jd{In}}}}{An{{Jd{In}}}}{B@l{}{{B@j{In}}}}}}00````````````````````````````{{}c{}}```````5{{DInDIn}DIn}66```````````````````````````````````{{DInDInDIn}DIn}```7`77{{{AOj{c}}}{{AOj{c}}}AOl}{{{AOn{c}}}{{AOn{c}}}B@`}{{{B@d{}{{B@b{c}}}}}c{AFfAHdB@fB@h{B`{{Jd{In}}}}{An{{Jd{In}}}}{B@l{}{{B@j{In}}}}}}00:{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{fOf}```````````````````````````````````````{{B@nB@nB@n}B@n}{{{BAb{}{{BA`{c}}}}{BAb{}{{BA`{c}}}}}c{}}{{BAdBAd}c{}}000{{B@nB@n}B@n}02`````````````{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}i{}{}{}{}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}i{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}e{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{c{{BAj{}{{BA`{e}}{B@j{g}}{BAf{c}}{BAh{i}}}}}{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}c{}{}{}{}}00{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}c{}{}{}{}}10111{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}g{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}10:{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}e{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}c{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}e{}{}{}{}}210212102102121<3<{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}>10?>{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}};;?6{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}g{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}i{}{}{}{}}1:9:99````````````````````````````````1{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{AFd}}}{{AOj{AFd}}}}{{{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{Oj}}}{{AOj{Oj}}}}{{{AOj{AB`}}}{{AOj{AB`}}}}{{{AOj{ABb}}}{{AOj{ABb}}}}{{{AOj{AAf}}}{{AOj{AAf}}}}{{{AOj{In}}{AOj{In}}}}{{{AOj{A@`}}{AOj{A@`}}}}{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{}AOl}{{{AOj{AAh}}{AOj{AAh}}}}{{{AOj{ABb}}{AOj{ABb}}}}{{{AOj{AB`}}{AOj{AB`}}}}{{{AOj{AAf}}{AOj{AAf}}}}{{{AOj{Oj}}{AOj{Oj}}}}{{{AOj{h}}{AOj{h}}}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{AFd}}{AOj{AFd}}}}{{{AOj{A@d}}{AOj{A@d}}}}{{{AOj{Oh}}{AOj{Oh}}}}{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{f{b{AOj{c}}}}e}jAOl{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}c{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}c{}{}{}{}{}}{AOj}0{{{AOn{c}}}AfB@`}0{{{f{{AOj{c}}}}}{{f{{Fj{c}}}}}AOl}{{{f{b{AOj{c}}}}}{{f{b{Jd{c}}}}}AOl}{{{f{b{AOj{c}}}}}{{f{b{Fj{c}}}}}AOl}02{{{f{{AOj{c}}}}}{{f{{Jd{c}}}}}AOl}{{{AOn{c}}{AOn{c}}}{{AOn{c}}}B@`}{{{AOn{c}}Af}{{AOn{c}}}B@`}{{{AOj{Oj}}{AOj{Oj}}}}{{{AOj{In}}{AOj{In}}}}{{{AOj{ABb}}{AOj{ABb}}}}{{{AOj{A@`}}{AOj{A@`}}}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{AOj{AB`}}{AOj{AB`}}}}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{}AOl}{{{AOj{h}}{AOj{h}}}}{{{AOj{AFd}}{AOj{AFd}}}}{{{AOj{A@d}}{AOj{A@d}}}}{{{AOj{Oh}}{AOj{Oh}}}}{{{f{b{AOn{c}}}}Af}jB@`}{{{f{b{AOn{c}}}}{AOn{c}}}jB@`}{{{f{b{AOj{c}}}}e}jAOl{}}{{{AOn{c}}Af}{{AOn{c}}}B@`}{{{AOn{c}}{AOn{c}}}{{AOn{c}}}B@`}{{{AOj{In}}{AOj{In}}}}=9?678>{{{AOj{Oj}}{AOj{Oj}}}}<{{{AOj{ABb}}{AOj{ABb}}}}<>765{{{AOn{c}}Af}{}B@`}{{{AOn{c}}{AOn{c}}}{}B@`}<>{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}>{{{AOj{A@b}}{AOj{A@b}}}}5{{{AOj{A@`}}{AOj{A@`}}}}7>={{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{AOj{AB`}}{AOj{AB`}}}}7=><{f{{f{c}}}{}}0{{{f{b}}}{{f{bc}}}{}}0{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}i{}{}{}{}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}i{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}e{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{AOn{c}}}{{AOn{e}}}B@`B@`}{{{AOj{A@d}}}}{{{AOj{A@b}}}}{{{AOj{A@`}}}}{{{AOj{AB`}}}}{{{AOj{Oh}}}}{{{AOj{h}}}}{{{AOj{AAf}}}}{{{AOj{AFd}}}}{{{AOj{Oj}}}}{AOj}{{{AOj{AAh}}}}{{{AOj{In}}}}2{{{AOj{ABb}}}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}i{}{}{}{}{}}4{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}i{}{}{}{}{}}5{{{f{{AOn{c}}}}}{{AOn{c}}}B@`}{{{f{{AOj{c}}}}}{{AOj{c}}}AOl}{{f{f{bc}}}j{}}0{fj}0{{{f{{AOj{c}}}}{f{{AOj{c}}}}}Cd{AOlFl}}{{{AOj{c}}{f{b{Jd{c}}}}}jAOl}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{AOj{AAh}}{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{AAf}}{AOj{AAf}}}{{AOj{AAf}}}}{{{AOj{AAf}}}{{AOj{AAf}}}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{}{{AOn{c}}}B@`}{{}{{AOj{c}}}{AOlGb}}{{{AOj{c}}{AOj{c}}}{{G`{{AOj{c}}{AOj{c}}}}}AOl}{{{AOj{Oj}}{AOj{Oj}}}}{{{AOj{AAh}}{AOj{AAh}}}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{Oh}}{AOj{Oh}}}}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{}AOl}{{{AOj{ABb}}{AOj{ABb}}}}{{{AOj{AFd}}{AOj{AFd}}}}{{{AOj{In}}{AOj{In}}}}{{{AOj{A@`}}{AOj{A@`}}}}{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{AOj{AAf}}{AOj{AAf}}}}{{{AOj{A@d}}{AOj{A@d}}}}{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{AOj{AB`}}{AOj{AB`}}}}{{{AOj{h}}{AOj{h}}}}{{{f{b{AOj{c}}}}e}jAOl{}}{{{f{{AOn{c}}}}{f{{AOn{c}}}}}Af{B@`ADb}}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}Af{AOlADb}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{AAf}}}{{AOj{AAf}}}}10{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}c{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}c{}{}{}{}{}}{AOj}0``````````````{{{AOn{c}}}{{Df{h}}}B@`}{{{f{{AOn{c}}}}{f{bK`}}}{{n{jKb}}}{B@`Jn}}{{{f{{AOj{c}}}}{f{bK`}}}{{n{jKb}}}{AOlJn}}67{{{AOn{Oj}}}{{AOn{A@b}}}}{{{AOn{AB`}}}{{AOn{AFd}}}}{cc{}}{{{AOn{Oj}}}{{AOn{ABb}}}}{{{AOn{A@b}}}{{AOn{ABb}}}}{{{AOn{ABb}}}{{AOn{AB`}}}}{{{AOn{Oj}}}{{AOn{AFd}}}}{{{AOn{Oj}}}{{AOn{AB`}}}}{{{AOn{AB`}}}{{AOn{A@b}}}}{{{AOn{A@b}}}{{AOn{AFd}}}}{{{AOn{AB`}}}{{AOn{Oj}}}}{{{AOn{ABb}}}{{AOn{AFd}}}}{{{AOn{A@b}}}{{AOn{Oj}}}}{{{AOn{AB`}}}{{AOn{ABb}}}}{{{AOn{ABb}}}{{AOn{Oj}}}}{{{Fj{Af}}}{{AOn{c}}}B@`}{{{AOn{AFd}}}{{AOn{ABb}}}}{{{AOn{AFd}}}{{AOn{AB`}}}}{{{AOn{AFd}}}{{AOn{Oj}}}}{{{AOn{AFd}}}{{AOn{A@b}}}}{{{AOn{ABb}}}{{AOn{A@b}}}}{{{AOn{A@b}}}{{AOn{AB`}}}}{AAd{{AOj{A@b}}}}{A@f{{AOj{A@b}}}}{A@f{{AOj{ABb}}}}{AAd{{AOj{ABb}}}}{ABd{{AOj{In}}}}{A@f{{AOj{In}}}}{AAd{{AOj{In}}}}{AAd{{AOj{A@`}}}}{ABd{{AOj{A@`}}}}{{{Fj{c}}}{{AOj{c}}}AOl}{ABd{{AOj{ABb}}}}{AAd{{AOj{A@d}}}}{ABd{{AOj{AFd}}}}{A@f{{AOj{AFd}}}}{A@f{{AOj{A@d}}}}{AAd{{AOj{AFd}}}}{ABd{{AOj{A@d}}}}{AAd{{AOj{AB`}}}}{ABd{{AOj{h}}}}{A@f{{AOj{h}}}}{A@f{{AOj{AB`}}}}{A@f{{AOj{A@`}}}}{AAd{{AOj{h}}}}{{{DJ`{c}}}{{AOj{c}}}B@`}{AAd{{AOj{Oh}}}}{ABf{{AOj{AAf}}}}{A@f{{AOj{Oh}}}}{ABd{{AOj{Oh}}}}{AAd{{AOj{Oj}}}}{A@f{{AOj{Oj}}}}{A@j{{AOj{AAf}}}}{cc{}}{AAb{{AOj{AAf}}}}{ABd{{AOj{Oj}}}}{Ol{{AOj{AAh}}}}{A@l{{AOj{AAh}}}}{ABj{{AOj{AAh}}}}{ABd{{AOj{A@b}}}}{ABd{{AOj{AB`}}}}{{{Fj{Af}}}{{AOn{c}}}B@`}{{{Fj{c}}}{{AOj{c}}}AOl}{{}{{AOj{A@d}}}}{{}{{AOj{In}}}}{{}{{AOj{Oj}}}}{{}{{AOj{AAh}}}}{{}{{AOj{ABb}}}}0{{}{{AOj{AAf}}}}033131030{{}{{AOj{AB`}}}}205{{}{{AOj{A@b}}}}3113{{}{{AOj{h}}}}1500701{{}{{AOj{A@`}}}}00032{{}{{AOj{Oh}}}}0900{{}{{AOj{AFd}}}}1:;080;:;;508;:8{A@`{{AOn{c}}}B@`}{{{AOj{In}}}{{AOn{c}}}B@`}{c{{BAj{}{{BA`{e}}{B@j{g}}{BAf{c}}{BAh{i}}}}}{}{}{}{}}{{{AOj{Oh}}}{{AOj{AAh}}}}{{{AOj{A@`}}}{{AOj{AAf}}}}{{{AOj{c}}}{{AOn{c}}}B@`}0{{}{{AOj{A@d}}}}0{{}{{AOj{In}}}}:8:9{{}{{AOj{AAh}}}}9:1;90;9:<=0<1=<<0=:=2:?{{}{{AOj{Oj}}}}2{{}{{AOj{ABb}}}}21{{}{{AOj{AAf}}}}5211402111205{{}{{AOj{AB`}}}}600050052>54?0?4=60?=>5054?5060=={{}{{AOj{h}}}}71656?43{{}{{AOj{A@b}}}}163410174804354{{}{{AOj{Oh}}}}14569660459{{{f{{Jd{c}}}}}{{AOj{c}}}AOl}{{{f{{Jd{c}}}}{AOj{h}}{AOj{c}}}{{AOj{c}}}AOl}{{{f{{Jd{c}}}}{AOj{h}}}{{AOj{c}}}{GbAOl}}{AOj{{AOj{c}}}{GbAOl}}{{{f{{Jd{c}}}}{AOn{AFd}}{AOj{h}}{AOj{c}}}{{AOj{c}}}AOl}{{AOj{AOn{AFd}}{AOj{c}}}{{AOj{c}}}AOl}1{{{f{{AOj{c}}}}{f{be}}}j{AOlAF`}AEn}````````````````````````````{{{f{{AOj{c}}}}e}fAOl{{Mb{{Jd{c}}}}}}{{{f{b{AOj{c}}}}e}{{f{b}}}AOl{{Mb{{Jd{c}}}}}}{{{AOj{c}}{AOj{c}}}{{G`{{AOj{c}}{AOj{c}}}}}AOl}{{}c{}}0{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}c{}{}{}{}}{{{AOj{AAf}}}}{{{AOj{AAh}}}}201210{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}c{}{}{}{}}{{{AOj{A@b}}}}{{{AOj{ABb}}}}{{{AOj{AB`}}}}{{{AOj{Oj}}}}{{{AOj{AFd}}}}867{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}k{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}k{}{}{}{}{}}{AOj}0874653;9:;9:;9:```````{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}g{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}6{{{AOj{In}}}{{AOj{In}}}}6{{{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{A@`}}}{{AOj{A@`}}}}=;{{{AOj{h}}}{{AOj{h}}}}=65;:4<0=>132{{{f{{AOj{c}}}}}hAOl}{{{AOj{AAf}}}{{AOj{AAf}}}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{{f{{Jd{c}}}}{AOj{c}}}{{AOj{c}}}AOl}{{{f{{Jd{c}}}}}{{AOj{c}}}{GbAOl}}{{{f{{Jd{c}}}}AOn{AOj{c}}}{{AOj{c}}}AOl}{{{f{{Jd{c}}}}AOn}{{AOj{c}}}{GbAOl}}{{AOn{AOj{c}}}{{AOj{c}}}AOl}26565```````````````````````````````````{{{AOj{A@`}}{AOj{A@`}}}}{{{AOj{AB`}}{AOj{AB`}}}}{{{AOj{AAf}}{AOj{AAf}}}}{{{AOj{AAh}}{AOj{AAh}}}}{{{AOj{h}}{AOj{h}}}}{{{AOj{Oh}}{AOj{Oh}}}}{{{AOj{A@d}}{AOj{A@d}}}}{{{AOj{In}}{AOj{In}}}}{{{AOj{AFd}}{AOj{AFd}}}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{}AOl}{{{AOj{Oj}}{AOj{Oj}}}}{{{AOj{ABb}}{AOj{ABb}}}}{{{f{b{AOj{c}}}}e}jAOl{}}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}Af{AOlADb}}{{{AOj{ABb}}}}{{{AOj{AB`}}}}{{{AOj{AFd}}}}{{{AOj{A@b}}}}{{{AOj{Oj}}}}{{{AOj{AAh}}}}{{{AOj{AAf}}}}{{{AOn{c}}}{}B@`}37{{{AOj{h}}}}{{{AOj{A@`}}}}{{{AOj{Oh}}}}{{{AOj{A@d}}}}{{{AOj{In}}}}:9;{{{f{{AOn{c}}}}{f{{AOn{c}}}}}{{Df{Cd}}}{B@`Fb}}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{{Df{Cd}}}{AOlFb}}{c{{AOj{ABb}}}{{Ab{}{{A`{{AOj{ABb}}}}}}}}{c{{AOj{AAh}}}{{Ab{}{{A`{{AOj{AAh}}}}}}}}{c{{AOj{AAf}}}{{Ab{}{{A`{{f{{AOj{AAf}}}}}}}}}}{c{{AOj{AFd}}}{{Ab{}{{A`{{AOj{AFd}}}}}}}}{c{{AOj{AFd}}}{{Ab{}{{A`{{f{{AOj{AFd}}}}}}}}}}{c{{AOj{In}}}{{Ab{}{{A`{{f{{AOj{In}}}}}}}}}}{c{{AOj{A@d}}}{{Ab{}{{A`{{AOj{A@d}}}}}}}}{c{{AOj{A@d}}}{{Ab{}{{A`{{f{{AOj{A@d}}}}}}}}}}{c{{AOj{Oh}}}{{Ab{}{{A`{{AOj{Oh}}}}}}}}{c{{AOj{Oh}}}{{Ab{}{{A`{{f{{AOj{Oh}}}}}}}}}}{c{{AOj{A@`}}}{{Ab{}{{A`{{AOj{A@`}}}}}}}}{c{{AOj{AAf}}}{{Ab{}{{A`{{AOj{AAf}}}}}}}}{c{{AOj{h}}}{{Ab{}{{A`{{AOj{h}}}}}}}}{c{{AOj{A@`}}}{{Ab{}{{A`{{f{{AOj{A@`}}}}}}}}}}{c{{AOj{AAh}}}{{Ab{}{{A`{{f{{AOj{AAh}}}}}}}}}}{c{{AOj{Oj}}}{{Ab{}{{A`{{AOj{Oj}}}}}}}}{c{{AOj{In}}}{{Ab{}{{A`{{AOj{In}}}}}}}}{c{{AOj{Oj}}}{{Ab{}{{A`{{f{{AOj{Oj}}}}}}}}}}{c{{AOj{A@b}}}{{Ab{}{{A`{{f{{AOj{A@b}}}}}}}}}}{c{{AOj{ABb}}}{{Ab{}{{A`{{f{{AOj{ABb}}}}}}}}}}{c{{AOj{A@b}}}{{Ab{}{{A`{{AOj{A@b}}}}}}}}{c{{AOj{AB`}}}{{Ab{}{{A`{{AOj{AB`}}}}}}}}{c{{AOj{AB`}}}{{Ab{}{{A`{{f{{AOj{AB`}}}}}}}}}}{c{{AOj{h}}}{{Ab{}{{A`{{f{{AOj{h}}}}}}}}}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{AOj{AAf}}}{{AOj{AAf}}}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}e{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}c{}{}}{{{AOj{A@d}}}}{{{AOj{Oj}}}}{{{AOj{A@`}}}}{{{AOj{AB`}}}}{{{AOj{A@b}}}}{{{AOj{h}}}}{{{AOj{ABb}}}}{{{AOj{In}}}}{{{AOj{AFd}}}}{{{AOj{Oh}}}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}e{}{}{}{}}<;{{{AOj{AAf}}}}2673:89;5{{{AOj{AAh}}}}52>=9<:;57461308>=8<536;:4792>=7;1658430<:92>=1:50;9<67834>=8;<9:43765{{{AOj{A@`}}{AOj{A@`}}}}{{{AOj{ABb}}{AOj{ABb}}}}{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{AOj{h}}{AOj{h}}}}{{{AOj{AAh}}{AOj{AAh}}}}{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{AOj{A@d}}{AOj{A@d}}}}{{{AOj{AAf}}{AOj{AAf}}}}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{}AOl}{{{AOj{In}}{AOj{In}}}}{{{AOj{AFd}}{AOj{AFd}}}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{Oj}}{AOj{Oj}}}}{{{AOj{Oh}}{AOj{Oh}}}}{{{AOj{AB`}}{AOj{AB`}}}}{{{f{b{AOj{c}}}}e}jAOl{}}{{{AOj{c}}c}{{AOj{c}}}AOl}{{{AOj{c}}}{{AOj{c}}}AOl}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}{{{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{AFd}}}{{AOj{AFd}}}}{{{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{ABb}}}{{AOj{ABb}}}}{{{AOj{A@`}}}{{AOj{A@`}}}}{{{AOj{AB`}}}{{AOj{AB`}}}}{{{AOj{In}}}{{AOj{In}}}}{{{AOj{h}}}{{AOj{h}}}}{{{AOj{Oj}}}{{AOj{Oj}}}}<<;30875{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}{{{AOj{Oj}}{AOj{Oj}}}{{AOj{Oj}}}}{{{AOj{A@b}}{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{A@d}}{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{A@`}}{AOj{A@`}}}{{AOj{A@`}}}}{{{AOj{AB`}}{AOj{AB`}}}{{AOj{AB`}}}}{{{AOj{In}}{AOj{In}}}{{AOj{In}}}}{{{AOj{Oh}}{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{ABb}}{AOj{ABb}}}{{AOj{ABb}}}}{{{AOj{h}}{AOj{h}}}{{AOj{h}}}}{{{AOj{AFd}}{AOj{AFd}}}{{AOj{AFd}}}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}={{{AOj{AFd}}}{{AOj{AFd}}}}{{{AOj{ABb}}}{{AOj{ABb}}}}{{{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{AB`}}}{{AOj{AB`}}}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}<79;?:{{{AOj{Oj}}{AOj{Oj}}}{{AOj{Oj}}}}>9?{{{AOj{c}}{f{b{Jd{c}}}}{AOj{h}}}jAOl}{{{AOj{c}}AOj}jAOl}{{{AOj{c}}{f{b{Jd{c}}}}{AOn{AFd}}{AOj{h}}}jAOl}{{{AOj{c}}AOj{AOn{AFd}}}jAOl}1{{{AOn{c}}{AOj{e}}{AOj{e}}}{{AOj{e}}}B@`{{AOl{}{{BA`{c}}}}}}{{{AOn{c}}{AOn{c}}{AOn{c}}}{{AOn{c}}}B@`}{{{f{b{AOn{c}}}}hAf}jB@`}0{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{}AOl}{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{f{{AOj{h}}}}h}}{{{f{{AOj{A@`}}}}A@`}}{{{AOj{A@`}}{f{A@`}}}}{{{AOj{h}}{AOj{h}}}}{{{AOj{A@`}}A@`}}{{{AOj{A@`}}{AOj{A@`}}}}{{{f{{AOj{Oh}}}}{f{Oh}}}}{{{f{{AOj{Oh}}}}Oh}}{{{f{{AOj{A@`}}}}{f{A@`}}}}{{{AOj{Oh}}{f{Oh}}}}{{{AOj{Oh}}Oh}}{{{f{{AOj{A@d}}}}{f{A@d}}}}{{{AOj{ABb}}{AOj{ABb}}}}{{{AOj{AB`}}{AOj{AB`}}}}{{{AOj{h}}h}}{{{f{{AOj{A@d}}}}A@d}}{{{AOj{h}}{f{h}}}}{{{AOj{Oj}}{AOj{Oj}}}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{A@d}}{f{A@d}}}}{{{AOj{A@d}}A@d}}{{{AOj{AFd}}{AOj{AFd}}}}{{{f{{AOj{In}}}}{f{In}}}}{{{f{{AOj{h}}}}{f{h}}}}{{{AOj{In}}{AOj{In}}}}{{{AOj{In}}{f{In}}}}{{{AOj{In}}In}}{{{f{{AOj{AFd}}}}{f{AFd}}}}{{{f{{AOj{AFd}}}}AFd}}{{{AOj{AFd}}{f{AFd}}}}{{{AOj{AFd}}AFd}}{{{f{{AOj{A@b}}}}{f{A@b}}}}{{{f{{AOj{A@b}}}}A@b}}{{{AOj{A@b}}{f{A@b}}}}{{{AOj{A@b}}A@b}}{{{f{{AOj{Oj}}}}{f{Oj}}}}{{{f{{AOj{Oj}}}}Oj}}{{{AOj{Oj}}{f{Oj}}}}{{{AOj{Oj}}Oj}}{{{f{{AOj{AB`}}}}{f{AB`}}}}{{{f{{AOj{AB`}}}}AB`}}{{{AOj{AB`}}{f{AB`}}}}{{{AOj{AB`}}AB`}}{{{f{{AOj{ABb}}}}{f{ABb}}}}{{{f{{AOj{ABb}}}}ABb}}{{{AOj{ABb}}{f{ABb}}}}{{{AOj{ABb}}ABb}}{{{AOj{A@d}}{AOj{A@d}}}}{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{AOj{Oh}}{AOj{Oh}}}}{{{f{{AOj{In}}}}In}}{{{f{b{AOj{c}}}}e}jAOl{}}{{{f{{AOj{h}}}}{f{h}}}}{{{f{{AOj{AFd}}}}{f{AFd}}}}{{{AOj{AFd}}AFd}}{{{f{{AOj{Oh}}}}{f{Oh}}}}{{{AOj{h}}{AOj{h}}}}{{{AOj{A@`}}A@`}}{{{f{{AOj{Oh}}}}Oh}}{{{f{{AOj{A@b}}}}{f{A@b}}}}{{{f{{AOj{A@b}}}}A@b}}{{{AOj{A@b}}{f{A@b}}}}{{{AOj{A@b}}A@b}}{{{f{{AOj{Oj}}}}{f{Oj}}}}{{{f{{AOj{Oj}}}}Oj}}{{{AOj{Oj}}{f{Oj}}}}{{{AOj{A@`}}{f{A@`}}}}{{{AOj{Oj}}Oj}}{{{f{{AOj{A@`}}}}A@`}}{{{f{{AOj{A@`}}}}{f{A@`}}}}{{{f{{AOj{AB`}}}}{f{AB`}}}}{{{AOj{h}}h}}{{{AOj{h}}{f{h}}}}{{{f{{AOj{h}}}}h}}{{{f{{AOj{AB`}}}}AB`}}{{{AOj{ABb}}{AOj{ABb}}}}{{{AOj{AB`}}{AOj{AB`}}}}{{{AOj{Oj}}{AOj{Oj}}}}{{{AOj{AB`}}{f{AB`}}}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{AFd}}{AOj{AFd}}}}{{{AOj{In}}{AOj{In}}}}{{{AOj{AFd}}{f{AFd}}}}{{{AOj{A@d}}{AOj{A@d}}}}{{{AOj{Oh}}{AOj{Oh}}}}{{{AOj{A@`}}{AOj{A@`}}}}{{{AOj{Oh}}{f{Oh}}}}{{{f{{AOj{AFd}}}}AFd}}{{{AOj{Oh}}Oh}}{{{AOj{AB`}}AB`}}{{{f{{AOj{ABb}}}}{f{ABb}}}}{{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{f{{AOj{ABb}}}}ABb}}{{{AOj{ABb}}{f{ABb}}}}{{{AOj{ABb}}ABb}}{{{f{{AOj{A@d}}}}{f{A@d}}}}{{{f{{AOj{A@d}}}}A@d}}{{{AOj{A@d}}{f{A@d}}}}{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{AOj{A@d}}A@d}}{{{f{{AOj{c}}}}{f{{AOj{c}}}}}{}AOl}{{{f{{AOj{In}}}}{f{In}}}}{{{f{{AOj{In}}}}In}}{{{AOj{In}}{f{In}}}}{{{AOj{In}}In}}{{{f{b{AOj{c}}}}e}jAOl{}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{AOj{AAf}}}{{AOj{AAf}}}}{{{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{Oj}}}{{AOj{Oj}}}}{{{AOj{AFd}}}{{AOj{AFd}}}}{{{AOj{AB`}}}{{AOj{AB`}}}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{ABb}}}{{AOj{ABb}}}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{B@nB@nB@n}B@n}{{{AOn{AFd}}{AOn{AFd}}{AOn{AFd}}}{{AOn{AFd}}}}{{{AOn{A@b}}{AOn{A@b}}{AOn{A@b}}}{{AOn{A@b}}}}{{{AOn{ABb}}{AOn{ABb}}{AOn{ABb}}}{{AOn{ABb}}}}{{{AOn{AB`}}{AOn{AB`}}{AOn{AB`}}}{{AOn{AB`}}}}{{{AOn{Oj}}{AOn{Oj}}{AOn{Oj}}}{{AOn{Oj}}}}{{{AOj{AAf}}{AOj{AAf}}{AOj{AAf}}}{{AOj{AAf}}}}{{AOjAOjAOj}AOj}{{{AOj{A@`}}{AOj{A@`}}{AOj{A@`}}}{{AOj{A@`}}}}1{{{AOj{Oj}}{AOj{Oj}}{AOj{Oj}}}{{AOj{Oj}}}}{{{AOj{h}}{AOj{h}}{AOj{h}}}{{AOj{h}}}}{{{AOj{AB`}}{AOj{AB`}}{AOj{AB`}}}{{AOj{AB`}}}}{{{AOj{A@d}}{AOj{A@d}}{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{AFd}}{AOj{AFd}}{AOj{AFd}}}{{AOj{AFd}}}}{{{AOj{Oh}}{AOj{Oh}}{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{In}}{AOj{In}}{AOj{In}}}{{AOj{In}}}}{{{AOj{AAh}}{AOj{AAh}}{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{A@b}}{AOj{A@b}}{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{ABb}}{AOj{ABb}}{AOj{ABb}}}{{AOj{ABb}}}}{{{BAb{}{{BA`{c}}}}{BAb{}{{BA`{c}}}}}c{}}{{{AOn{Oj}}{AOn{Oj}}}}{{{AOn{ABb}}{AOn{ABb}}}}{{{AOn{AB`}}{AOn{AB`}}}}{{{AOn{A@b}}{AOn{A@b}}}}{{{AOn{AFd}}{AOn{AFd}}}}{{{AOj{A@d}}{AOj{A@d}}}}{{{AOj{In}}{AOj{In}}}}{{{AOj{AB`}}{AOj{AB`}}}}{{{AOj{AAh}}{AOj{AAh}}}}{{{AOj{AFd}}{AOj{AFd}}}}{{{AOj{AAf}}{AOj{AAf}}}}{{{AOj{Oh}}{AOj{Oh}}}}{{{AOj{A@`}}{AOj{A@`}}}}{{{AOj{h}}{AOj{h}}}}{{AOjAOj}}{{{AOj{A@b}}{AOj{A@b}}}}{{{AOj{ABb}}{AOj{ABb}}}}2{{{AOj{Oj}}{AOj{Oj}}}}{{BAdBAd}c{}}?{{{AOn{Oj}}{AOn{Oj}}}}?{{{AOn{ABb}}{AOn{ABb}}}}{{{AOn{AB`}}{AOn{AB`}}}}5<8?7>4{{{AOj{A@d}}{AOj{A@d}}}}8:>;7<43{{{AOn{AFd}}{AOn{AFd}}}}3{{{AOn{A@b}}{AOn{A@b}}}}3:98:{{{AOj{In}}{AOj{In}}}}3{{{AOj{AB`}}{AOj{AB`}}}}?{{{AOj{AAf}}{AOj{AAf}}}}{{{AOj{AAh}}{AOj{AAh}}}};?{{{AOj{A@`}}{AOj{A@`}}}}{{{AOj{AFd}}{AOj{AFd}}}}<;697:3{{AOjAOj}}{{{AOj{A@b}}{AOj{A@b}}}}74{{{AOj{h}}{AOj{h}}}}427{{{AOj{ABb}}{AOj{ABb}}}}{{{AOj{Oj}}{AOj{Oj}}}}=5{{{AOj{Oh}}{AOj{Oh}}}}{{BAdBAd}c{}}>{{{AOn{Oj}}{AOn{Oj}}}}>{{{AOn{AB`}}{AOn{AB`}}}}{{{AOn{ABb}}{AOn{ABb}}}}{{{AOj{A@d}}{AOj{A@d}}}}65{{{AOj{In}}{AOj{In}}}}9?8=:>;{{{AOj{AB`}}{AOj{AB`}}}}=<{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{B@nB@n}B@n}{{{AOn{AFd}}{AOn{AFd}}}{{AOn{AFd}}}}{{{AOn{A@b}}{AOn{A@b}}}{{AOn{A@b}}}}{{{AOn{ABb}}{AOn{ABb}}}{{AOn{ABb}}}}{{{AOn{AB`}}{AOn{AB`}}}{{AOn{AB`}}}}{{{AOn{Oj}}{AOn{Oj}}}{{AOn{Oj}}}}{{{AOj{A@`}}{AOj{A@`}}}{{AOj{A@`}}}}{{{AOj{AB`}}{AOj{AB`}}}{{AOj{AB`}}}}{{{AOj{A@d}}{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{Oh}}{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{AAf}}{AOj{AAf}}}{{AOj{AAf}}}}{{{AOj{In}}{AOj{In}}}{{AOj{In}}}}{{{AOj{AAh}}{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{h}}{AOj{h}}}{{AOj{h}}}}{{AOjAOj}AOj}0{{{AOj{ABb}}{AOj{ABb}}}{{AOj{ABb}}}}{{{AOj{A@b}}{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{Oj}}{AOj{Oj}}}{{AOj{Oj}}}}{{{AOj{AFd}}{AOj{AFd}}}{{AOj{AFd}}}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{B@nB@n}B@n}?{{{AOn{ABb}}{AOn{ABb}}}{{AOn{ABb}}}}{{{AOn{AFd}}{AOn{AFd}}}{{AOn{AFd}}}}{{{AOn{AB`}}{AOn{AB`}}}{{AOn{AB`}}}}{{{AOn{A@b}}{AOn{A@b}}}{{AOn{A@b}}}}{{{AOj{A@`}}{AOj{A@`}}}{{AOj{A@`}}}}{{{AOj{A@d}}{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{AB`}}{AOj{AB`}}}{{AOj{AB`}}}}:;9=:{{{AOj{AB`}}{AOj{AB`}}}}8>{{{AOj{ABb}}{AOj{ABb}}}};={{{AOj{Oh}}{AOj{Oh}}}}?{{{f{{AOj{c}}}}{AOj{c}}}{}AOl}{{{AOj{A@`}}{AOj{A@`}}}}={{{AOj{c}}{f{{AOj{c}}}}}{}AOl}{{{f{b{AOj{c}}}}e}jAOl{}}{c{{AOj{Oj}}}{{Ab{}{{A`{{AOj{Oj}}}}}}}}{c{{AOj{h}}}{{Ab{}{{A`{{f{{AOj{h}}}}}}}}}}{c{{AOj{AAf}}}{{Ab{}{{A`{{f{{AOj{AAf}}}}}}}}}}{c{{AOj{In}}}{{Ab{}{{A`{{AOj{In}}}}}}}}{c{{AOj{AFd}}}{{Ab{}{{A`{{AOj{AFd}}}}}}}}{c{{AOj{A@b}}}{{Ab{}{{A`{{f{{AOj{A@b}}}}}}}}}}{c{{AOj{A@b}}}{{Ab{}{{A`{{AOj{A@b}}}}}}}}{c{{AOj{AAf}}}{{Ab{}{{A`{{AOj{AAf}}}}}}}}{c{{AOj{Oj}}}{{Ab{}{{A`{{f{{AOj{Oj}}}}}}}}}}{c{{AOj{AAh}}}{{Ab{}{{A`{{f{{AOj{AAh}}}}}}}}}}{c{{AOj{AAh}}}{{Ab{}{{A`{{AOj{AAh}}}}}}}}{c{{AOj{AB`}}}{{Ab{}{{A`{{f{{AOj{AB`}}}}}}}}}}{c{{AOj{In}}}{{Ab{}{{A`{{f{{AOj{In}}}}}}}}}}{c{{AOj{AB`}}}{{Ab{}{{A`{{AOj{AB`}}}}}}}}{c{{AOj{ABb}}}{{Ab{}{{A`{{f{{AOj{ABb}}}}}}}}}}{c{{AOj{A@d}}}{{Ab{}{{A`{{AOj{A@d}}}}}}}}{c{{AOj{A@d}}}{{Ab{}{{A`{{f{{AOj{A@d}}}}}}}}}}{c{{AOj{Oh}}}{{Ab{}{{A`{{AOj{Oh}}}}}}}}{c{{AOj{Oh}}}{{Ab{}{{A`{{f{{AOj{Oh}}}}}}}}}}{c{{AOj{A@`}}}{{Ab{}{{A`{{AOj{A@`}}}}}}}}{c{{AOj{AFd}}}{{Ab{}{{A`{{f{{AOj{AFd}}}}}}}}}}{c{{AOj{ABb}}}{{Ab{}{{A`{{AOj{ABb}}}}}}}}{c{{AOj{h}}}{{Ab{}{{A`{{AOj{h}}}}}}}}{c{{AOj{A@`}}}{{Ab{}{{A`{{f{{AOj{A@`}}}}}}}}}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}{{{AOj{Oj}}}{{AOj{Oj}}}}{{{AOj{AB`}}}{{AOj{AB`}}}}{{{AOj{ABb}}}{{AOj{ABb}}}}{{{AOj{AFd}}}{{AOj{AFd}}}}{{{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{A@`}}}{{AOj{A@`}}}}{{{AOj{In}}}{{AOj{In}}}}{{{AOj{A@b}}}{{AOj{A@b}}}}{{{AOj{h}}}{{AOj{h}}}}{{{AOj{In}}{AOj{In}}}{{AOj{In}}}}{{{f{{AOn{c}}}}h}AfB@`}0{{{AOn{c}}}{{Fj{Af}}}B@`}{{{AOj{c}}}{{Fj{c}}}AOl}{{{AOj{A@d}}}}{{{AOj{Oh}}}}{{{AOj{A@`}}}}{{{AOj{AFd}}}}101{{{AOj{AB`}}}}{{{AOj{In}}}}1{{{AOj{h}}}}312412312012{{{AOj{ABb}}}}{{{AOj{Oj}}}}{{{AOj{AAf}}}}92291092209129102{{{AOj{AAh}}}}94290{{{AOj{A@b}}}}0101:56:016{{{AOn{c}}}A@`B@`}{{{AOn{c}}}{{AOj{In}}}B@`}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}g{}{}{}{}}{{{AOj{AAh}}}{{AOj{Oh}}}}{{{AOj{AAf}}}{{AOj{A@`}}}}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{AAf}}}{{AOj{AAf}}}}{{{AOn{c}}}{{AOj{c}}}B@`}{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}i{}{}{}{}};<{{{AOj{AB`}}}}0{{{AOj{AFd}}}}{{{AOj{A@`}}}}0011{{{AOj{h}}}}120>{{{AOj{Oh}}}}?{{{AOj{In}}}}1{{{AOj{AAh}}}}2{{{AOj{A@b}}}}101{{{AOj{Oj}}}}542503{{{AOj{ABb}}}}3{{{AOj{A@d}}}}12{{{AOj{AAf}}}}12302112302112;0;666;66;768;;7;56;0;356;2322377562237239561284574194010:1969104:8:68:1{fc{}}0{{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{{BAj{}{{BA`{c}}{B@j{e}}{BAf{g}}{BAh{i}}}}}{}{}{}{}}{{{AOj{AAh}}}{{AOj{AAh}}}}{{{AOj{AAf}}}{{AOj{AAf}}}}{{{BAn{}{{BA`{c}}{B@j{e}}{BAl{g}}{BAh{i}}}}}g{}{}{}{}}{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}{{{AOj{h}}}{{AOj{h}}}}{{{AOj{A@`}}}{{AOj{A@`}}}}{{{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{A@d}}}{{AOj{A@d}}}}>={{{AOj{In}}}{{AOj{In}}}}{{{AOj{AB`}}}}{{{AOj{AFd}}}}?8725?10{{{AOj{A@b}}}}{{{AOj{Oj}}}}856{c{{n{e}}}{}{}}{{{f{{Jd{c}}}}}{{n{{AOj{c}}BCh}}}AOl}{{{f{b{Jd{c}}}}}{{n{{AOj{c}}BCh}}}AOl}2{{}{{n{c}}}{}}0{fOf}0```````````````````````````````````{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}c}{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}c}{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}}{AOjAOj}0{c{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{c{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}}{{}AOj}05433{{{B@l{}{{B@j{c}}{BAh{e}}}}}{{B@l{}{{B@j{c}}{BAh{e}}}}}{}{}}{{{AOj{A@d}}}{{AOj{A@d}}}}{{{AOj{Oh}}}{{AOj{Oh}}}}{{{AOj{In}}}{{AOj{In}}}}{{{AOj{A@`}}}{{AOj{A@`}}}}{{{AOj{h}}}{{AOj{h}}}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}e}{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}e}{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}};;=<;;````````````{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}c{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}c{}{}{}{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}g{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}i{}{}{}{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}i{}{}{}{}{}}54{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}k{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}k{}{}{}{}{}}{{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}c}{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}c}{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}}{c{{BBh{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBf{i}}{BA`{k}}}}}{}{}{}{}{}}{c{{BBl{}{{BB`{c}}{BBb{e}}{BBd{g}}{BBj{i}}{BA`{k}}}}}{}{}{}{}{}}32=<32`````````````````````````````````{{{f{b{BFh{c}}}}h}{{n{j{l{h}}}}}{}}{{{f{b{BFf{c}}}}h}{{n{j{l{h}}}}}{}}10{{{f{b{BFh{c}}}}e}Af{}{{Aj{}{{Ah{Af}}}}}}{{{f{b{BFf{c}}}}e}Af{}{{Aj{}{{Ah{Af}}}}}}10{{{f{b{BFf{c}}}}}{{f{b{Jd{c}}}}}{}}{{{f{{BFh{c}}}}}{{f{{Jd{c}}}}}{}}{{{f{{BFf{c}}}}}{{f{{Jd{c}}}}}{}}10{{{f{{DJb{ce}}}}}{{f{{Jd{c}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{f{{f{c}}}{}}00000000000000000000000000{{{f{b}}}{{f{bc}}}{}}00000000000000000000000000{{{f{{BFh{c}}}}}{{BFh{c}}}{}}{{{f{{DJb{ce}}}}}{{DJb{ce}}}{}{ACb{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DJd{ce}}}}}{{DJd{ce}}}{}{ACb{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DJf{ce}}}}}{{DJf{ce}}}{}{ACb{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{DJh}}}DJh}{{{f{{DJj{c}}}}}{{DJj{c}}}{}}{{{f{{DJl{c}}}}}{{DJl{c}}}{}}{{{f{{DJn{c}}}}}{{DJn{c}}}{}}{{{f{{DK`{c}}}}}{{DK`{c}}}ACb}{{{f{{DKb{c}}}}}{{DKb{c}}}{}}{{{f{{DKd{c}}}}}{{DKd{c}}}{}}{{{f{{DKf{c}}}}}{{DKf{c}}}{}}{{f{f{bc}}}j{}}00000000000{fj}00000000000{{{f{{Ln{}{{Ah{c}}}}}}}c{}}{{{BFh{c}}}h{}}{{{BFf{c}}}h{}}{{{DJj{c}}}h{}}{{{DJl{c}}}h{}}{{{DKh{c}}}h{}}{{{DJn{c}}}h{}}{{{DKj{c}}}h{}}{{{DK`{c}}}h{}}{{{DKb{c}}}h{}}{{{DKl{c}}}h{}}{{{DKd{c}}}h{}}{{{DKn{c}}}h{}}{{{DKf{c}}}h{}}{{{DL`{c}}}h{}}{{}{{BFh{c}}}{}}{{}{{BFf{c}}}{}}{{{f{b{BFh{c}}}}e}Df{}{{Aj{f}{{Ah{Af}}}}}}{{{f{b{BFf{c}}}}e}Df{}{{Aj{f}{{Ah{Af}}}}}}{{{f{b{BFh{c}}}}g}{{Df{e}}}{}{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{b{BFf{c}}}}g}{{Df{e}}}{}{}{{Aj{}{{Ah{{Df{e}}}}}}}}{{{f{{BFh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{BFf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DJb{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DJd{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLb{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLd{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DJf{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLf{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLh{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLj{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLl{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLn{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DM`{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{DMb{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{DJh}}{f{bK`}}}{{n{jKb}}}}0{{{f{{DJj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DJl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DKh{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DJn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DKj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DK`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DKb{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DKl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DKd{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DKn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DKf{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{DL`{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{BFh{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{{BFf{c}}eg}e{}{}{{Aj{e}{{Ah{e}}}}}}{{DJhce}c{}{{Aj{c}{{Ah{c}}}}}}{{{BFh{c}}e}j{}Aj}{{{BFf{c}}e}j{}Aj}{cc{}}00000000000000000000000000{{{f{bc}}}{{f{b{Jd{c}}}}}{}}{M`{{f{b{Jd{c}}}}}{}}{M`{{f{{Jd{c}}}}}{}}{h{{f{{Jd{c}}}}}{}}{h{{f{b{Jd{c}}}}}{}}{{{f{c}}}{{f{{Jd{c}}}}}{}}{{{Mb{}{{Ah{c}}}}{f{e}}}{{Df{{f{c}}}}}AdAd}{{{Mb{}{{Ah{c}}}}{f{be}}}{{Df{{f{bc}}}}}AdAd}{{{Mb{}{{Ah{c}}}}}cAd}0{{{Mb{}{{Ah{c}}}}{f{e}}}{{f{c}}}AdAd}{{{Mb{}{{Ah{c}}}}{f{be}}}{{f{bc}}}AdAd}{{}c{}}00000000000000000000000000000000000000000000000000000{{{DKj{c}}}{{f{b{Jd{c}}}}}{}}{{{DKl{c}}}{{f{b{Jd{c}}}}}{}}{{{DL`{c}}}{{f{b{Jd{c}}}}}{}}{{{BFf{c}}}{{f{b{Jd{c}}}}}{}}{{{f{{BFh{c}}}}}Af{}}{{{f{{BFf{c}}}}}Af{}}{{{f{{DJn{c}}}}}Af{}}{{{f{{DKj{c}}}}}Af{}}{{{f{{DK`{c}}}}}Af{}}{{{f{{DKb{c}}}}}Af{}}{{{f{{DKl{c}}}}}Af{}}{{{f{{DKf{c}}}}}Af{}}{{{f{{DL`{c}}}}}Af{}}{{{BFh{c}}e}Af{}{{Aj{ff}{{Ah{Af}}}}}}{{{f{{Md{}{{Ah{c}}}}}}e}c{}{}}{{{BFh{c}}}{{Df{{f{c}}}}}{}}{{{BFf{c}}}{{Df{{f{bc}}}}}{}}{{{DM`{ce}}}Df{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{DMb{ce}}}Df{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{DJh{{Df{In}}}}{{{DJj{c}}}Df{}}{{{DJl{c}}}Df{}}{{{DKh{c}}}Df{}}{{{DJn{c}}}Df{}}{{{DKj{c}}}Df{}}{{{DK`{c}}}Df{}}{{{DKb{c}}}Df{}}{{{DKl{c}}}Df{}}{{{DKd{c}}}Df{}}{{{DKn{c}}}Df{}}{{{DKf{c}}}Df{}}{{{DL`{c}}}Df{}}{{{f{{BFh{c}}}}}h{}}{{{f{{BFf{c}}}}}h{}}{{{f{b{BFh{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{BFf{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{DJb{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DJd{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLb{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLd{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DJf{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLf{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLh{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLj{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLl{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLn{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DM`{ce}}}}}Df{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{f{b{DMb{ce}}}}}Df{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{f{bDJh}}}{{Df{In}}}}{{{f{b{DJj{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DJl{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DKh{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DJn{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DKj{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DK`{c}}}}}Df{}}{{{f{b{DKb{c}}}}}{{Df{{f{{Fj{c}}}}}}}{}}{{{f{b{DKl{c}}}}}{{Df{{f{b{Fj{c}}}}}}}{}}{{{f{b{DKd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DKn{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DKf{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DL`{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{BFh{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{BFf{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{DJb{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DJd{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLb{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLd{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DJf{ce}}}}}{{Df{{f{{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DLf{ce}}}}}{{Df{{f{b{Jd{c}}}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{DM`{ce}}}}}Df{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{f{b{DMb{ce}}}}}Df{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{f{bDJh}}}{{Df{In}}}}{{{f{b{DJj{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DJl{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DKh{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DJn{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DKj{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DK`{c}}}}}{{Df{{f{{Fj{c}}}}}}}{}}{{{f{b{DKb{c}}}}}{{Df{{f{{Fj{c}}}}}}}{}}{{{f{b{DKl{c}}}}}{{Df{{f{b{Fj{c}}}}}}}{}}{{{f{b{DKd{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DKn{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DKf{c}}}}}{{Df{{f{{Jd{c}}}}}}}{}}{{{f{b{DL`{c}}}}}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{BFh{c}}}}h}{{Df{{f{c}}}}}{}}{{{f{b{BFf{c}}}}h}{{Df{{f{bc}}}}}{}}{{{f{b{DJj{c}}}}h}Df{}}{{{f{b{DJl{c}}}}h}Df{}}{{{f{b{DKh{c}}}}h}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DJn{c}}}}h}Df{}}{{{f{b{DKj{c}}}}h}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DK`{c}}}}h}Df{}}{{{f{b{DKb{c}}}}h}Df{}}{{{f{b{DKl{c}}}}h}Df{}}{{{f{b{DKd{c}}}}h}Df{}}{{{f{b{DKn{c}}}}h}{{Df{{f{b{Jd{c}}}}}}}{}}{{{f{b{DKf{c}}}}h}Df{}}{{{f{b{DL`{c}}}}h}{{Df{{f{b{Jd{c}}}}}}}{}}=<;:{{{f{b{DKh{c}}}}h}Df{}}9{{{f{b{DKj{c}}}}h}Df{}}{{{f{b{DK`{c}}}}h}{{Df{{f{{Fj{c}}}}}}}{}}876{{{f{b{DKn{c}}}}h}Df{}}5{{{f{b{DL`{c}}}}h}Df{}}{{{f{b{BFh{c}}}}e}{{Df{h}}}{}{{Aj{}{{Ah{Af}}}}}}{{{f{b{BFf{c}}}}e}{{Df{h}}}{}{{Aj{}{{Ah{Af}}}}}}{{c{Mf{h}}}{{M`{h}}}{{Mh{h}}}}{{{f{{DJn{c}}}}}{{f{{Jd{c}}}}}{}}{{{f{{DKb{c}}}}}{{f{{Jd{c}}}}}{}}{{{f{{DKf{c}}}}}{{f{{Jd{c}}}}}{}}54{{{f{{BFh{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{BFf{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DJb{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DJd{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLb{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLd{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DJf{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLf{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLh{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLj{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLl{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DLn{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{{DM`{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{f{{DMb{ce}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{c}}{f{c}}}{{Ah{Af}}}}}}{{{f{DJh}}}{{G`{h{Df{h}}}}}}{{{f{{DJj{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DJl{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DKh{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DJn{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DKj{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DK`{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DKb{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DKl{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DKd{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DKn{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DKf{c}}}}}{{G`{h{Df{h}}}}}{}}{{{f{{DL`{c}}}}}{{G`{h{Df{h}}}}}{}}{fc{}}00000000000{fI`}{{{f{bDJh}}cg}e{}{{Ib{}{{Ah{c}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{e}}}{}{}}00000000000000000000000000{{}{{n{c}}}{}}00000000000000000000000000{{c{Mf{h}}}{{Df{{M`{h}}}}}{{Mh{h}}}}{fOf}00000000000000000000000000````````````````````````````{{{f{bDMd}}h}{{n{j{l{h}}}}}}{{{f{bDMf}}c}Af{{Aj{}{{Ah{Af}}}}}}0{{{f{DMd}}}{{f{Ll}}}}{{{f{DMh}}}{{f{Ll}}}}{f{{f{c}}}{}}0000000000000000000000000{{{f{b}}}{{f{bc}}}{}}0000000000000000000000000{{{f{{DMj{c}}}}}{{DMj{c}}}Nf}{{{f{N`}}}N`}{{{f{DMl}}}DMl}{{{f{DMd}}}DMd}{{{f{DMh}}}DMh}{{{f{DMf}}}DMf}{{{f{{DMn{c}}}}}{{DMn{c}}}Nf}{{{f{{DN`{c}}}}}{{DN`{c}}}Nf}{{{f{{DNb{c}}}}}{{DNb{c}}}Nf}{{{f{{DNd{c}}}}}{{DNd{c}}}Nf}{{{f{{DNf{c}}}}}{{DNf{c}}}Nf}{{{f{{DNh{c}}}}}{{DNh{c}}}Nf}{{{f{{DNj{c}}}}}{{DNj{c}}}Nf}{{{f{{DNl{c}}}}}{{DNl{c}}}Nf}{{{f{{DNn{c}}}}}{{DNn{c}}}Nf}{{{f{{DO`{c}}}}}{{DO`{c}}}Nf}{{{f{DOb}}}DOb}{{{f{DOd}}}DOd}{{{f{DOf}}}DOf}{{{f{DOh}}}DOh}{{{f{DOj}}}DOj}{{{f{DOl}}}DOl}{{{f{DOn}}}DOn}{{{f{E@`}}}E@`}{{{f{E@b}}}E@b}{{{f{E@d}}}E@d}{{f{f{bc}}}j{}}0000000000000000000000000{fj}0000000000000000000000000{DMdh}{DMhh}{DMfh}{{{f{N`}}}{{f{Ll}}}}{{{f{DMl}}}{{f{Ll}}}}{{{f{N`}}{f{N`}}}Af}{{{f{DMl}}{f{DMl}}}Af}{{{f{E@b}}{f{E@b}}}Af}{{{f{N`}}}{{Df{h}}}}{{{f{bDMf}}c}Df{{Aj{f}{{Ah{Af}}}}}}{{{f{{DMj{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{N`}}{f{bK`}}}{{n{jKb}}}}0{{{f{DMl}}{f{bK`}}}{{n{jKb}}}}0{{{f{DMd}}{f{bK`}}}{{n{jKb}}}}{{{f{DMh}}{f{bK`}}}{{n{jKb}}}}{{{f{DMf}}{f{bK`}}}{{n{jKb}}}}{{{f{{DMn{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DN`{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DNb{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DNd{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DNf{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DNh{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DNj{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DNl{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DNn{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{{DO`{c}}}}{f{bK`}}}{{n{jKb}}}Nf}{{{f{DOb}}{f{bK`}}}{{n{jKb}}}}{{{f{DOd}}{f{bK`}}}{{n{jKb}}}}{{{f{DOf}}{f{bK`}}}{{n{jKb}}}}{{{f{DOh}}{f{bK`}}}{{n{jKb}}}}{{{f{DOj}}{f{bK`}}}{{n{jKb}}}}{{{f{DOl}}{f{bK`}}}{{n{jKb}}}}0{{{f{DOn}}{f{bK`}}}{{n{jKb}}}}0{{{f{E@`}}{f{bK`}}}{{n{jKb}}}}0{{{f{E@b}}{f{bK`}}}{{n{jKb}}}}{{{f{E@d}}{f{bK`}}}{{n{jKb}}}}{{DOlce}c{}{{Aj{c}{{Ah{c}}}}}}{{DOnce}c{}{{Aj{c}{{Ah{c}}}}}}{{E@`ce}c{}{{Aj{c}{{Ah{c}}}}}}{cc{}}0000000000000000000000000{{{Mj{{Jd{In}}}}}{{Mj{Ll}}}}{{Inh}{{f{Ll}}}}{{Inh}{{f{bLl}}}}{{{f{Ll}}}{{n{{Mn{}{{Ml{c}}}}c}}}{}}{{{f{{Jd{In}}}}}{{n{{f{Ll}}N`}}}}{{{f{b{Jd{In}}}}}{{n{{f{bLl}}N`}}}}{{{f{{Jd{In}}}}}{{f{Ll}}}}{{{f{b{Jd{In}}}}}{{f{bLl}}}}{{}c{}}000000000000000000000000000000000000000000000000{{{f{E@b}}}{{f{{Jd{In}}}}}}{{{f{DMf}}}Af}{DMd{{Df{Lj}}}}{DMh{{Df{{G`{hLj}}}}}}{DMfDf}{DOb{{Df{{f{Ll}}}}}}{DOf{{Df{{f{Ll}}}}}}{DOh{{Df{{f{Ll}}}}}}{{{f{DMf}}}h}{{{f{b{DMj{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{bDMd}}}{{Df{Lj}}}}{{{f{bDMh}}}{{Df{{G`{hLj}}}}}}{{{f{bDMf}}}{{Df{In}}}}{{{f{b{DMn{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DN`{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNb{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNd{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNf{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNh{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNj{c}}}}}{{Df{{G`{h{f{Ll}}}}}}}Nf}{{{f{b{DNl{c}}}}}{{Df{{G`{h{f{Ll}}}}}}}Nf}{{{f{b{DNn{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DO`{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{bDOb}}}{{Df{{f{Ll}}}}}}{{{f{bDOd}}}{{Df{{f{Ll}}}}}}{{{f{bDOf}}}{{Df{{f{Ll}}}}}}{{{f{bDOh}}}{{Df{{f{Ll}}}}}}{{{f{bDOj}}}{{Df{A@d}}}}{{{f{bDOl}}}{{Df{Lj}}}}{{{f{bDOn}}}{{Df{Lj}}}}{{{f{bE@`}}}{{Df{Lj}}}}{{{f{bE@d}}}{{Df{E@b}}}}{{{f{b{DMj{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{bDMd}}}{{Df{Lj}}}}{{{f{bDMh}}}{{Df{{G`{hLj}}}}}}{{{f{bDMf}}}{{Df{In}}}}{{{f{b{DMn{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DN`{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNb{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNd{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DNj{c}}}}}{{Df{{G`{h{f{Ll}}}}}}}Nf}{{{f{b{DNl{c}}}}}{{Df{{G`{h{f{Ll}}}}}}}Nf}{{{f{b{DNn{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{b{DO`{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{bDOb}}}{{Df{{f{Ll}}}}}}{{{f{bDOd}}}{{Df{{f{Ll}}}}}}{{{f{bDOf}}}{{Df{{f{Ll}}}}}}{{{f{bDOh}}}{{Df{{f{Ll}}}}}}{{{f{bDMf}}h}Df}0{{{f{DMh}}}h}`{{{f{bDMf}}c}{{Df{h}}}{{Aj{}{{Ah{Af}}}}}}{{{f{{DMj{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{{DMn{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{{DN`{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{{DNb{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{{DNd{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{{DNf{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{{DNh{c}}}}}{{Df{{f{Ll}}}}}Nf}{{{f{DOb}}}{{Df{{f{Ll}}}}}}{{{f{DOf}}}{{Df{{f{Ll}}}}}}{{{f{DOh}}}{{Df{{f{Ll}}}}}}{{{f{bDMf}}c}Df{{Aj{f}{{Ah{Af}}}}}};{{{f{DMd}}}{{G`{h{Df{h}}}}}}{{{f{DMh}}}{{G`{h{Df{h}}}}}}{{{f{DMf}}}{{G`{h{Df{h}}}}}}{{{f{DOb}}}{{G`{h{Df{h}}}}}}{{{f{DOd}}}{{G`{h{Df{h}}}}}}{{{f{DOf}}}{{G`{h{Df{h}}}}}}{{{f{DOh}}}{{G`{h{Df{h}}}}}}{{{f{DOj}}}{{G`{h{Df{h}}}}}}{{{f{DOl}}}{{G`{h{Df{h}}}}}}{{{f{DOn}}}{{G`{h{Df{h}}}}}}{{{f{E@`}}}{{G`{h{Df{h}}}}}}{fc{}}0000000000000000000000000{fI`}0000{{{f{bDOl}}cg}e{}{{Ib{}{{Ah{c}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{bDOn}}cg}e{}{{Ib{}{{Ah{c}}}}}{{Aj{c}{{Ah{e}}}}}}{{{f{bE@`}}cg}e{}{{Ib{}{{Ah{c}}}}}{{Aj{c}{{Ah{e}}}}}}{c{{n{e}}}{}{}}0000000000000000000000000{{}{{n{c}}}{}}0000000000000000000000000{fOf}0000000000000000000000000{{{f{E@b}}}{{f{Ll}}}}{{{f{N`}}}h}```````````````{f{{f{c}}}{}}000000{{{f{b}}}{{f{bc}}}{}}000000{{{f{Nh}}}Nh}{{{f{E@f}}}E@f}{{{f{E@h}}}E@h}{{{f{E@j}}}E@j}{{{f{E@l}}}E@l}{{{f{{BFl{c}}}}}{{BFl{c}}}{ACb{Aj{Lj}{{Ah{Af}}}}}}{{{f{E@n}}}E@n}{{f{f{bc}}}j{}}000000{fj}000000{{{f{Nh}}{f{Nh}}}Af}{{{f{Nh}}{f{bK`}}}{{n{jKb}}}}{{{f{E@f}}{f{bK`}}}{{n{jKb}}}}{{{f{E@h}}{f{bK`}}}{{n{jKb}}}}{{{f{E@j}}{f{bK`}}}{{n{jKb}}}}{{{f{E@l}}{f{bK`}}}{{n{jKb}}}}{{{f{{BFl{c}}}}{f{bK`}}}{{n{jKb}}}{{Aj{Lj}{{Ah{Af}}}}}}{{{f{E@n}}{f{bK`}}}{{n{jKb}}}}{cc{}}000000{{{f{Nb}}}{{f{Ll}}}}{{{f{E@f}}}{{f{Ll}}}}{{{f{E@h}}}{{f{Ll}}}}{{{f{E@j}}}{{f{Ll}}}}{{{f{E@l}}}{{f{Ll}}}}{{{f{{BFl{c}}}}}{{f{Ll}}}{{Aj{Lj}{{Ah{Af}}}}}}{{{f{E@n}}}{{f{Ll}}}}{{}c{}}000000{{{Nf{}{{Nd{c}}}}{f{Ll}}}cNb}{{{Nf{}{{Nd{c}}}}{f{Ll}}}AfNb}00{{{f{bNb}}}Nh}{{{f{bE@f}}}Nh}{{{f{bE@h}}}Nh}{{{f{bE@j}}}Nh}{{{f{bE@l}}}Nh}{{{f{b{BFl{c}}}}}Nh{{Aj{Lj}{{Ah{Af}}}}}}{{{f{bE@n}}}Nh}{{{f{bNj}}}Nh}654321{{{f{bNb}}}{{Df{{G`{hh}}}}}}{{{f{bE@f}}}{{Df{{G`{hh}}}}}}{{{f{bE@h}}}{{Df{{G`{hh}}}}}}{{{f{bE@j}}}{{Df{{G`{hh}}}}}}{{{f{bE@l}}}{{Df{{G`{hh}}}}}}{{{f{b{BFl{c}}}}}{{Df{{G`{hh}}}}}{{Aj{Lj}{{Ah{Af}}}}}}{{{f{bE@n}}}{{Df{{G`{hh}}}}}}{{{f{bNj}}}{{Df{{G`{hh}}}}}}6543217543205432{{{Nf{}{{Nd{c}}}}{f{Ll}}}{{Df{{f{Ll}}}}}Nb}0{fc{}}000000{c{{n{e}}}{}{}}000000{{}{{n{c}}}{}}000000{fOf}000000``````{{I`{f{Ll}}}I`}{{{f{bI`}}{f{Ll}}}j}{{{f{I`}}}{{f{{Jd{In}}}}}}{{{f{EA`}}}{{f{{Jd{In}}}}}}{{{f{bI`}}}{{f{bLl}}}}0{{{f{bI`}}}{{f{b{BEb{In}}}}}}{{{f{EAb}}}{{f{Ll}}}}{{{f{EAb}}}{{f{{Jd{In}}}}}}5{{{f{I`}}}{{f{Ll}}}}{{{f{I`}}}{{f{BDj}}}}{{{f{I`}}}{{f{BDl}}}}42{f{{f{c}}}{}}3000{{{f{b}}}{{f{bc}}}{}}8000{{{f{I`}}}h}{{{f{bI`}}}j}{{{f{I`}}}I`}{{{f{EA`}}}EA`}{{{f{bI`}}{f{I`}}}j}{{f{f{bc}}}j{}}0{fj}0{{{f{I`}}{f{I`}}}Cd}{{}I`}={{{f{bI`}}}{{f{bLl}}}}{{{f{EA`}}}{{f{Ll}}}}{{{f{EAd}}}{{f{Ll}}}}{{{f{bI`}}c}EAb{{Mh{h}}}}{{{f{bEAb}}}j}{{{f{I`}}{f{{BDh{Ll}}}}}Af}{{{f{I`}}{f{{f{Ll}}}}}Af}{{{f{I`}}{f{Ll}}}Af}{{{f{I`}}{f{I`}}}Af}{{{f{EA`}}{f{EA`}}}Af}{{{f{bI`}}c}j{{Bj{}{{A`{{BDh{Ll}}}}}}}}{{{f{bI`}}e}jJb{{Bj{}{{A`{{Mj{Llc}}}}}}}}{{{f{bI`}}c}j{{Bj{}{{A`{Lj}}}}}}{{{f{bI`}}c}j{{Bj{}{{A`{{f{Lj}}}}}}}}{{{f{bI`}}c}j{{Bj{}{{A`{I`}}}}}}{{{f{bI`}}c}j{{Bj{}{{A`{{f{Ll}}}}}}}}{{{f{bI`}}c}j{{Mh{h}}}}{{{f{bI`}}Lj}j}{{{f{bI`}}I`}j}{{{f{bI`}}{f{Lj}}}j}{{{f{bI`}}{f{Ll}}}j}{{{f{bI`}}{BDh{Ll}}}j}{{{f{bI`}}h}j}0{{{f{EAb}}{f{bK`}}}{{n{jKb}}}}{{{f{I`}}{f{bK`}}}{{n{jKb}}}}0{{{f{EA`}}{f{bK`}}}{{n{jKb}}}}0{{{f{EAd}}{f{bK`}}}{{n{jKb}}}}0{cc{}}{{{f{I`}}}I`}1{{{f{bLl}}}I`}{{{f{Ll}}}I`}{LjI`}{{{Mj{Ll}}}I`}{{{BDh{Ll}}}I`}66{cI`{{Bj{}{{A`{{f{Ll}}}}}}}}{cI`{{Bj{}{{A`{I`}}}}}}{eI`Jb{{Bj{}{{A`{{Mj{Llc}}}}}}}}{cI`{{Bj{}{{A`{Lj}}}}}}{cI`{{Bj{}{{A`{{f{Lj}}}}}}}}{cI`{{Bj{}{{A`{{BDh{Ll}}}}}}}}{{Inhh}I`}{{{f{Ll}}}{{n{I`}}}}{{{f{{Jd{A@d}}}}}{{n{I`EAd}}}}{{{f{{Jd{A@d}}}}}I`}{{{f{{Jd{In}}}}}{{n{I`EAd}}}}{{{f{{Jd{In}}}}}I`}10{{{BEb{In}}}{{n{I`EA`}}}}{{{f{{Jd{In}}}}}{{BDh{Ll}}}}{{{BEb{In}}}I`}{{{f{I`}}{f{bc}}}jAEn}{{{f{I`}}c}f{{Mb{Ll}}}}{{{f{bI`}}c}{{f{b}}}{{Mb{Ll}}}}{{{f{bI`}}hLj}j}{{{f{bI`}}h{f{Ll}}}j}{{}c{}}000{I`{{Mj{Ll}}}}{I`{{BEb{In}}}}{EA`{{BEb{In}}}}3{I`{{G`{Inhh}}}}{{{f{I`}}{f{Ll}}}}{{{f{I`}}{f{Ll}}}Af}{{{f{I`}}}Af}11{EAb{{Df{Lj}}}}{I`{{f{bLl}}}}{{{f{I`}}}h}{{{f{I`}}{f{{f{Ll}}}}}Af}5{{{f{I`}}{f{{BDh{Ll}}}}}Af}{{}I`}{{{f{bEAb}}}{{Df{Lj}}}}0{{{f{I`}}{f{I`}}}{{Df{Cd}}}}{{{f{bI`}}}{{Df{Lj}}}}{{{f{bI`}}Lj}j}{{{f{bI`}}{f{Ll}}}j}{{{f{bI`}}h}Lj}{{{f{bI`}}c}jNf}{{{f{bI`}}c{f{Ll}}}j{{Mh{h}}}}{{{f{bI`}}h}j}0{{{f{bI`}}c}j{{Aj{Lj}{{Ah{Af}}}}}}1{{{f{bI`}}}j}{{{f{EAb}}}{{G`{h{Df{h}}}}}}{{{f{bI`}}h}I`}{{{f{I`}}{f{Ll}}}{{Df{{f{Ll}}}}}}0{fc{}}0{{{f{I`}}}{{n{{BFj{CMj}}BFb}}}}{{{f{Hn}}}I`}{fI`}009{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{{{f{bI`}}h}{{n{jBKd}}}}0{h{{n{I`BKd}}}}{fOf}000{{{f{EA`}}}N`}{hI`}{{{f{bI`}}Lj}{{n{jKb}}}}{{{f{bI`}}{f{Ll}}}{{n{jKb}}}}````````````````````````````````{{{f{{Nn{ce}}}}}{{f{e}}}AdJb}{{{f{{EAf{ce}}}}}{{f{e}}}AdJb}{{{f{{Nn{c}}}}}BEh{BEjAd}}{{{f{{Nn{ce}}}}}{}AdJb}{{{f{{EAf{ce}}}}}{}AdJb}{{{f{{Nn{c}}}}}OjBEl}{{{f{{Nn{ce}}}}}{{f{c}}}AdJb}{{{Nn{{Jd{{BCl{c}}}}e}}}{{Nn{{Jd{c}}e}}}{}Jb}{{{Nn{{BCl{c}}e}}}{{Nn{ce}}}{}Jb}`{f{{f{c}}}{}}00003000000000000000000{{{f{b}}}{{f{bc}}}{}}0000000000000000000000{{{f{b{EAh{e}}}}c}{}Bd{{Aj{c}}}}{{{f{EAj}}c}jBf}{{{EAh{e}}c}{}Bd{{Bf{c}}}}{{{f{EAj}}c}j{{Bf{{f{EAl}}}}}}{{{f{{Nn{c}}}}}{{Df{{f{ADd}}}}}{ADdAd}}{{{f{{EAn{c}}}}}{{Df{{f{ADd}}}}}{}}{{{f{{EB`{c}}}}}jAd}{{{f{{EBb{c}}}}}jAd}{{{f{{Nn{ce}}}}}{{Nn{ce}}}Ad{JbACb}}{{{f{{EAf{ce}}}}}{{EAf{ce}}}Ad{JbACb}}{{{f{{EBd{c}}}}}{{EBd{c}}}ACb}{{{f{EBf}}}EBf}{{f{f{bc}}}j{}}000{fj}000{{{f{{Nn{ce}}}}{f{{Nn{ce}}}}}Cd{FlAd}Jb}{{}j}{cjJb}{{}EBh}{{}{{EBj{c}}}Gb}{{}{{Nn{{Jd{c}}}}}{}}{{}{{Nn{c}}}Gb}{{}{{Nn{BEf}}}}{{}{{Nn{Ll}}}}{{}{{EAf{c}}}{}}{{}{{EB`{c}}}{GbAd}}{{}{{EBd{c}}}{}}{{}{{EBl{c}}}Gb}{{}{{EBb{c}}}Gb}{{}{{EAh{c}}}{GbAd}}{{{f{{EBj{ce}}}}}{{f{c}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{{Nn{ce}}}}}{{f{c}}}AdJb}{{{f{{EBn{c}}}}}{{f{c}}}Ad}{{{f{{EC`{c}}}}}{{f{c}}}Ad}{{{f{{ECb{c}}}}}{{f{c}}}Ad}{{{f{{ECd{c}}}}}{{f{c}}}Ad}{{{f{{ECf{c}}}}}{{f{c}}}Ad}{{{f{{ECh{c}}}}}{{f{c}}}Ad}{{{f{{ECj{c}}}}}{{f{c}}}Ad}{{{f{b{EC`{c}}}}}{{f{bc}}}Ad}{{{f{b{ECb{c}}}}}{{f{bc}}}Ad}{{{f{b{ECf{c}}}}}{{f{bc}}}Ad}{{{f{b{ECj{c}}}}}{{f{bc}}}Ad}{{{f{{Nn{c}}}}}{{f{Ll}}}{ADdAd}}{{{f{{ECl{c}}}}}{{f{Ll}}}{}}{{{f{{EAn{c}}}}}{{f{Ll}}}{}}{{{Nn{Odc}}}{{n{{Nn{ec}}{Nn{Odc}}}}}Jb{OdB@fB@h}}{{{Nn{Odc}}}{{Nn{ec}}}Jb{OdB@fB@h}}{{{f{{Nn{ce}}}}}{{EAf{ce}}}Ad{ACbJb}}{{{f{b{EBj{ce}}}}}j{}{}}{{{f{b{Nn{ce}}}}}jAdJb}{{{f{b{EAf{ce}}}}}jAdJb}{{{f{b{EBd{c}}}}}j{}}{{{f{b{EBn{c}}}}}jAd}{{{f{b{EC`{c}}}}}jAd}{{{f{b{ECb{c}}}}}jAd}{{{f{b{ECd{c}}}}}jAd}{{{f{b{ECf{c}}}}}jAd}{{{f{b{ECh{c}}}}}jAd}{{{f{b{ECj{c}}}}}jAd}{{{f{{Nn{ce}}}}{f{{Nn{ce}}}}}Af{ADbAd}Jb}{{{f{{EBd{c}}}}{f{{EBd{c}}}}}AfADb}{{{f{EBf}}{f{EBf}}}Af}{{{f{b{Nn{CHd}}}}}{{n{jBFb}}}}{{{f{ECn}}{f{bK`}}}{{n{jKb}}}}{{{f{ED`}}{f{bK`}}}{{n{jKb}}}}{{{f{EBh}}{f{bK`}}}{{n{jKb}}}}{{{f{{EBj{ce}}}}{f{bK`}}}{{n{jKb}}}Jn{}}{{{f{{Nn{ce}}}}{f{bK`}}}{{n{jKb}}}AdJb}{{{f{{Nn{ce}}}}{f{bK`}}}{{n{jKb}}}{JnAd}Jb}{{{f{{Nn{ce}}}}{f{bK`}}}{{n{jKb}}}{KdAd}Jb}{{{f{{EAf{ce}}}}{f{bK`}}}{{n{jKb}}}AdJb}{{{f{{EB`{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{EAj}}{f{bK`}}}{{n{jKb}}}}{{{f{EAl}}{f{bK`}}}{{n{jKb}}}}{{{f{{EBd{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{ECl{c}}}}{f{bK`}}}{{n{jKb}}}{}}0{{{f{{EAn{c}}}}{f{bK`}}}{{n{jKb}}}{}}0{{{f{{EBl{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{EBn{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{EBn{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{EBb{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{EBf}}{f{bK`}}}{{n{jKb}}}}{{{f{{EC`{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{EC`{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{ECb{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{ECb{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{ECd{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{ECd{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{ECf{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{ECf{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{ECh{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{ECh{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{ECj{c}}}}{f{bK`}}}{{n{jKb}}}{JnAd}}{{{f{{ECj{c}}}}{f{bK`}}}{{n{jKb}}}{KdAd}}{{{f{{EAh{c}}}}{f{bK`}}}{{n{jKb}}}Ad}{{{f{{EBj{ce}}}}}{{f{c}}}{}{{Bf{}{{Ah{c}}}}}}{cc{}}000{Jjc{}}{c{{Nn{c}}}{}}{{{Fj{c}}}{{Nn{{Jd{c}}}}}{}}{{{f{BDl}}}{{Nn{BDl}}}}{BDn{{Nn{BDl}}}}{{{BEb{ce}}}{{Nn{{Jd{c}}e}}}{}{JbACb}}{{{f{{Jd{c}}}}}{{Nn{{Jd{c}}}}}ACb}{{{f{BDj}}}{{Nn{BDj}}}}{{{Nn{Ll}}}{{Nn{{Jd{In}}}}}}{{{f{Ll}}}{{Nn{Ll}}}}{BEd{{Nn{BEf}}}}{{{f{BEf}}}{{Nn{BEf}}}}{I`{{Nn{Ll}}}}{{{BDh{c}}}{{Nn{c}}}{BnAd}}{BE`{{Nn{BDj}}}}{{{Mj{ce}}}{{Nn{ce}}}AdJb}{cc{}}0{c{{EB`{c}}}{}}1{Jjc{}}2202{c{{EBd{c}}}{}}33{{{ECl{c}}}{{EAn{c}}}{}}2{c{{EBl{c}}}{}}55{c{{EBb{c}}}{}}646666666{c{{EAh{c}}}{}}75{e{{Nn{{Jd{c}}}}}{}{{Bj{}{{A`{c}}}}}}{{{f{bc}}}{{f{b{EAh{c}}}}}Ad}{{{Gf{{f{bc}}}}}{{Gf{{f{b{EAh{c}}}}}}}Ad}{{}{{Nn{c}}}Ad}{{}{{EAf{c}}}Ad}{c{{Nn{ec}}}JbAd}{c{{EAf{ec}}}JbAd}{{{f{{Nn{ce}}}}{f{{Nn{ce}}}}}Af{FbAd}Jb}{{{f{{EBd{c}}}}}{{Df{{f{c}}}}}{}}{{{f{b{Nn{ce}}}}}{{Df{{f{bc}}}}}AdJb}{{{f{b{EB`{c}}}}}{{n{{f{bc}}{ECl{{f{bc}}}}}}}Ad}{{{f{b{EBd{c}}}}}{{Df{{f{bc}}}}}{}}{{{f{b{ECl{c}}}}}{{f{bc}}}{}}{{{f{b{EBl{c}}}}}{{f{bc}}}Ad}{{{f{b{EBb{c}}}}}{{n{{f{bc}}{ECl{{f{bc}}}}}}}Ad}{{{f{b{EAh{c}}}}}{{f{bc}}}Ad}{{{f{b{EBd{c}}}}e}{{f{bc}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{b{EBd{c}}}}g}{{n{{f{bc}}e}}}{}{}{{Bf{}{{Ah{{n{ce}}}}}}}}{{{f{b{Nn{ce}}}}}{{f{bc}}}AdJb}{{{f{{EBd{c}}}}e}{{f{c}}}{}{{Bf{}{{Ah{c}}}}}}{{{f{{EBd{c}}}}g}{{n{{f{c}}e}}}{}{}{{Bf{}{{Ah{{n{ce}}}}}}}}{{{Gf{{f{b{EAh{c}}}}}}}{{Gf{{f{bc}}}}}Ad}{{{f{{ECl{c}}}}}{{f{c}}}{}}?{{{f{{Nn{ce}}}}{f{bg}}}j{AF`Ad}JbAEn}{{}j}{cj{ACbJb}}{{}c{}}0000000000000000000000{{}}{{{EBj{ce}}}{{n{ce}}}{}{{Bf{}{{Ah{c}}}}}}{{{Nn{ce}}}{{Df{c}}}{}Jb}{{{EB`{c}}}{{n{c{ECl{c}}}}}Ad}{{{EBd{c}}}{{Df{c}}}{}}{{{ECl{c}}}c{}}{{{EBl{c}}}c{}}{{{EBb{c}}}{{n{c{ECl{c}}}}}Ad}{{{EAh{c}}}c{}}{{{Nn{ce}}}{}AdJb}{{{EAf{ce}}}{}AdJb}{{{Nn{ce}}}{{G`{e}}}AdJb}{{{EAf{ce}}}{{G`{e}}}AdJb}{{{f{Ll}}}{{BFl{c}}}{}}{{{f{EAj}}}Af}{{{f{Ll}}}Af}{{{f{ED`}}}Af}{{{f{{EB`{c}}}}}AfAd}{{{f{EAl}}}Af}{{{f{{EBb{c}}}}}AfAd}4{{{f{{Nn{CHd}}}}}Af}50{{{f{{Nn{ce}}}}{f{{Nn{ce}}}}}Af{FbAd}Jb}{{{f{{EB`{c}}}}}{{n{{EC`{c}}{ECl{{EC`{c}}}}}}}Ad}{{{f{{EBl{c}}}}}{{EBn{c}}}Ad}2{{{f{b{Nn{ce}}}}}{{f{bc}}}{AD`Ad}{JbACb}}{{{EC`{c}}g}{{ECb{e}}}AdAd{{Bf{{f{bc}}}{{Ah{{f{be}}}}}}}}{{{ECb{c}}g}{{ECb{e}}}AdAd{{Bf{{f{bc}}}{{Ah{{f{be}}}}}}}}{{{ECd{c}}g}{{ECh{e}}}AdAd{{Bf{{f{c}}}{{Ah{{f{e}}}}}}}}{{{ECf{c}}g}{{ECj{e}}}AdAd{{Bf{{f{bc}}}{{Ah{{f{be}}}}}}}}{{{ECh{c}}g}{{ECh{e}}}AdAd{{Bf{{f{c}}}{{Ah{{f{e}}}}}}}}{{{ECj{c}}g}{{ECj{e}}}AdAd{{Bf{{f{bc}}}{{Ah{{f{be}}}}}}}}`{{{f{{Nn{ce}}}}{f{{Nn{ce}}}}}Af{ADbAd}Jb}{hECn}{{}EBh}{e{{EBj{ce}}}{}{{Bf{}{{Ah{c}}}}}}{c{{Nn{c}}}{}}{{}{{EAf{c}}}{}}{c{{EB`{c}}}{}}{{}EAj}{{}{{EBd{c}}}{}}{c{{ECl{c}}}{}}{c{{EBl{c}}}{}}{c{{EBb{c}}}{}}{c{{EAh{c}}}{}}{e{{Nn{c}}}{}{{Bf{{f{{EAf{c}}}}}{{Ah{c}}}}}}{{ce}{{Nn{ce}}}{}Jb}{c{{EAf{ec}}}Jb{}}{{}{{Nn{{BCl{c}}}}}{}}{c{{Nn{{BCl{e}}c}}}Jb{}}{h{{Nn{{Jd{{BCl{c}}}}}}}{}}{{hc}{{Nn{{Jd{{BCl{e}}}}c}}}Jb{}}3210{{{f{EBh}}}j}0{{{f{{Nn{ce}}}}{f{{Nn{ce}}}}}{{Df{Cd}}}{FbAd}Jb}{c{{Gf{{Nn{c}}}}}{}}{{ce}{{Gf{{Nn{ce}}}}}{}Jb}{{{Gf{{f{b{EAh{c}}}}}}{f{bGh}}}Gj{ElAd}}{{{f{{Nn{c}}}}{f{bADh}}}j{ADdAd}}{{{f{{Nn{ce}}}}{f{{Nn{ce}}}}}AfAdJb}{{{f{{EAf{ce}}}}{f{{EAf{ce}}}}}AfAdJb}{{{f{b{Nn{CHd}}}}{f{b{Jd{In}}}}}{{n{hBFb}}}}{{{f{{EBb{c}}}}}{{n{{ECd{c}}{ECl{{ECd{c}}}}}}}Ad}{{{f{b{Nn{CHd}}}}BGb}{{n{jBFb}}}}{{{f{b{Nn{CHd}}}}{f{b{BEb{In}}}}}{{n{hBFb}}}}{{{f{b{Nn{CHd}}}}{f{bI`}}}{{n{hBFb}}}}{{{f{b{Nn{CHd}}}}{f{b{Jd{BGd}}}}}{{n{hBFb}}}}{{{Gf{{f{b{EAh{e}}}}}}c}AMh{}{{AHb{c}}Ad}}{{{f{b{Nn{CHd}}}}BGf}{{n{A@`BFb}}}}{{{f{{EBd{c}}}}c}{{n{jc}}}{}}{{{f{{Nn{c}}}}}{{Df{{f{ADd}}}}}{ADdAd}}{{{f{Ll}}}{{Df{{f{Ll}}}}}}0{{{f{{Nn{ce}}}}}hAdJb}{{{f{{EAf{ce}}}}}hAdJb}{{{f{b{EBd{c}}}}}{{Df{c}}}{}}{{{f{EBf}}}Af}{fc{}}000{fI`}000000000{c{{n{e}}}{}{}}0000{{{Nn{{Jd{c}}e}}}{{n{{Nn{{Fj{c}}e}}}}}{}Jb}111111111111111111{{{f{{EBd{c}}}}c}{{n{{f{c}}{G`{{f{c}}c}}}}}{}}{{}{{n{c}}}{}}0000000000000000000000{{{f{{EB`{c}}}}}{{n{{EC`{c}}{EAn{{EC`{c}}}}}}}Ad}{{{EC`{c}}g}{{n{{ECb{e}}{EC`{c}}}}}AdAd{{Bf{{f{bc}}}{{Ah{{Df{{f{be}}}}}}}}}}{{{ECb{c}}g}{{n{{ECb{e}}{ECb{c}}}}}AdAd{{Bf{{f{bc}}}{{Ah{{Df{{f{be}}}}}}}}}}{{{ECd{c}}g}{{n{{ECh{e}}{ECd{c}}}}}AdAd{{Bf{{f{c}}}{{Ah{{Df{{f{e}}}}}}}}}}{{{ECf{c}}g}{{n{{ECj{e}}{ECf{c}}}}}AdAd{{Bf{{f{bc}}}{{Ah{{Df{{f{be}}}}}}}}}}{{{ECh{c}}g}{{n{{ECh{e}}{ECh{c}}}}}AdAd{{Bf{{f{c}}}{{Ah{{Df{{f{e}}}}}}}}}}{{{ECj{c}}g}{{n{{ECj{e}}{ECj{c}}}}}AdAd{{Bf{{f{bc}}}{{Ah{{Df{{f{be}}}}}}}}}}{c{{n{{Nn{c}}Jh}}}{}}{{ce}{{n{{Nn{ce}}Jh}}}{}Jb}{{}{{n{{Nn{{BCl{c}}}}Jh}}}{}}{c{{n{{Nn{{BCl{e}}c}}Jh}}}Jb{}}10{c{{n{{Gf{{Nn{c}}}}Jh}}}{}}{{ce}{{n{{Gf{{Nn{ce}}}}Jh}}}{}Jb}{{{f{{EBb{c}}}}}{{n{{ECd{c}}{EAn{{ECd{c}}}}}}}Ad}{{{Nn{ce}}}{{n{c{Nn{ce}}}}}{}Jb}{{{f{{EBb{c}}}}}{{n{{ECf{c}}{EAn{{ECf{c}}}}}}}Ad}{fOf}0000000000000000000000{{{Nn{ce}}}cACbJb}{{{f{{EAf{ce}}}}}{{Df{{Nn{ce}}}}}Ad{ACbJb}}{{{f{ECn}}}ED`}{{{f{EBh}}{EC`{c}}}{{n{{EC`{c}}{ECl{{EC`{c}}}}}}}{}}{{{f{EAj}}}j}{{{f{{EBd{c}}}}}{{f{c}}}{}}1{{{f{EBh}}{EC`{c}}CO`}{{n{{G`{{EC`{c}}EBf}}{ECl{{G`{{EC`{c}}EBf}}}}}}}{}}{{{f{EBh}}{EC`{c}}Oh}{{n{{G`{{EC`{c}}Af}}{ECl{{G`{{EC`{c}}Af}}}}}}}{}}{{{f{EBh}}{EC`{c}}CO`e}{{n{{G`{{EC`{c}}EBf}}{ECl{{G`{{EC`{c}}EBf}}}}}}}{}{{Aj{{f{bc}}}{{Ah{Af}}}}}}{{{f{EBh}}{EC`{c}}e}{{n{{EC`{c}}{ECl{{EC`{c}}}}}}}{}{{Aj{{f{bc}}}{{Ah{Af}}}}}}{{{f{{Nn{ce}}}}}hAdJb}{{{f{{EAf{ce}}}}}hAdJb}{{{f{b{Nn{CHd}}}}{f{{Jd{In}}}}}{{n{hBFb}}}}{{{f{{EBb{c}}}}}{{n{{ECf{c}}{ECl{{ECf{c}}}}}}}Ad}{{{f{b{Nn{CHd}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}}`````````````````````{{{f{EDb}}}Af}{{{f{{EDd{c}}}}}{}{}}{{{f{EDf}}}ABb}{{{f{EDh}}}In}{{{f{EDj}}}AB`}{{{f{EDl}}}A@d}{{{f{EDn}}}Oj}{{{f{EE`}}}Oh}{{{f{EEb}}}A@b}{{{f{EEd}}}A@`}{{{f{EEf}}}AFd}{{{f{EEh}}}h}{f{{f{c}}}{}}000000000000{{{f{b}}}{{f{bc}}}{}}000000000000{{{f{AC`}}}AC`}{{f{f{bc}}}j{}}{fj}{{{f{EDb}}AfAfAC`}Af}{{{f{{EDd{c}}}}AC`}{}{}}{{{f{EDf}}ABbABbAC`}ABb}{{{f{EDh}}InInAC`}In}{{{f{EDj}}AB`AB`AC`}AB`}{{{f{EDl}}A@dA@dAC`}A@d}{{{f{EDn}}OjOjAC`}Oj}{{{f{EE`}}OhOhAC`}Oh}{{{f{EEb}}A@bA@bAC`}A@b}{{{f{EEd}}A@`A@`AC`}A@`}{{{f{EEf}}AFdAFdAC`}AFd}{{{f{EEh}}hhAC`}h}{{{f{EDb}}AfAfAC`AC`}{{n{AfAf}}}}{{{f{{EDd{c}}}}AC`AC`}n{}}{{{f{EDf}}ABbABbAC`AC`}{{n{ABbABb}}}}{{{f{EDh}}InInAC`AC`}{{n{InIn}}}}{{{f{EDj}}AB`AB`AC`AC`}{{n{AB`AB`}}}}{{{f{EDl}}A@dA@dAC`AC`}{{n{A@dA@d}}}}{{{f{EDn}}OjOjAC`AC`}{{n{OjOj}}}}{{{f{EE`}}OhOhAC`AC`}{{n{OhOh}}}}{{{f{EEb}}A@bA@bAC`AC`}{{n{A@bA@b}}}}{{{f{EEd}}A@`A@`AC`AC`}{{n{A@`A@`}}}}{{{f{EEf}}AFdAFdAC`AC`}{{n{AFdAFd}}}}{{{f{EEh}}hhAC`AC`}{{n{hh}}}};:9876543210{AC`j}{{}EDb}{{}{{EDd{c}}}{}}{{}EDf}{{}EDh}{{}EDj}{{}EDl}{{}EDn}{{}EE`}{{}EEb}{{}EEd}{{}EEf}{{}EEh}{{{f{AC`}}{f{AC`}}}Af}={{{f{EDf}}ABbAC`}ABb}{{{f{EDh}}InAC`}In}{{{f{EDj}}AB`AC`}AB`}{{{f{EDl}}A@dAC`}A@d}{{{f{EDn}}OjAC`}Oj}{{{f{EE`}}OhAC`}Oh}{{{f{EEb}}A@bAC`}A@b}{{{f{EEd}}A@`AC`}A@`}{{{f{EEf}}AFdAC`}AFd}{{{f{EEh}}hAC`}h}{{{f{EDb}}AfAC`}Af}{{{f{{EDd{c}}}}hAC`}{}{}};:9876543200;:98765432;:987654321;:98765432{{{f{EDb}}AC`}Af}21<;:987654311<;:9876543{{{f{EDb}}AC`AC`c}{{n{AfAf}}}{{Aj{Af}{{Ah{{Df{Af}}}}}}}}{{{f{{EDd{c}}}}AC`AC`e}n{}{{Aj{}{{Ah{Df}}}}}}{{{f{EDf}}AC`AC`c}{{n{ABbABb}}}{{Aj{ABb}{{Ah{{Df{ABb}}}}}}}}{{{f{EDh}}AC`AC`c}{{n{InIn}}}{{Aj{In}{{Ah{{Df{In}}}}}}}}{{{f{EDj}}AC`AC`c}{{n{AB`AB`}}}{{Aj{AB`}{{Ah{{Df{AB`}}}}}}}}{{{f{EDl}}AC`AC`c}{{n{A@dA@d}}}{{Aj{A@d}{{Ah{{Df{A@d}}}}}}}}{{{f{EDn}}AC`AC`c}{{n{OjOj}}}{{Aj{Oj}{{Ah{{Df{Oj}}}}}}}}{{{f{EE`}}AC`AC`c}{{n{OhOh}}}{{Aj{Oh}{{Ah{{Df{Oh}}}}}}}}{{{f{EEb}}AC`AC`c}{{n{A@bA@b}}}{{Aj{A@b}{{Ah{{Df{A@b}}}}}}}}{{{f{EEd}}AC`AC`c}{{n{A@`A@`}}}{{Aj{A@`}{{Ah{{Df{A@`}}}}}}}}{{{f{EEf}}AC`AC`c}{{n{AFdAFd}}}{{Aj{AFd}{{Ah{{Df{AFd}}}}}}}}{{{f{EEh}}AC`AC`c}{{n{hh}}}{{Aj{h}{{Ah{{Df{h}}}}}}}}>={{{f{EDf}}ABbAC`}ABb}{{{f{EDh}}InAC`}In}{{{f{EDj}}AB`AC`}AB`}{{{f{EDl}}A@dAC`}A@d}{{{f{EDn}}OjAC`}Oj}{{{f{EE`}}OhAC`}Oh}{{{f{EEb}}A@bAC`}A@b}{{{f{EEd}}A@`AC`}A@`}{{{f{EEf}}AFdAC`}AFd}{{{f{EEh}}hAC`}h}{{{f{EDb}}{f{bK`}}}{{n{jKb}}}}{{{f{{EDd{c}}}}{f{bK`}}}{{n{jKb}}}{}}0{{{f{AC`}}{f{bK`}}}{{n{jKb}}}}{{{f{EDf}}{f{bK`}}}{{n{jKb}}}}{{{f{EDh}}{f{bK`}}}{{n{jKb}}}}{{{f{EDj}}{f{bK`}}}{{n{jKb}}}}{{{f{EDl}}{f{bK`}}}{{n{jKb}}}}{{{f{EDn}}{f{bK`}}}{{n{jKb}}}}{{{f{EE`}}{f{bK`}}}{{n{jKb}}}}{{{f{EEb}}{f{bK`}}}{{n{jKb}}}}{{{f{EEd}}{f{bK`}}}{{n{jKb}}}}{{{f{EEf}}{f{bK`}}}{{n{jKb}}}}{{{f{EEh}}{f{bK`}}}{{n{jKb}}}}{AfEDb}{cc{}}0{{}{{EDd{c}}}{}}1{ABbEDf}2{InEDh}3{AB`EDj}4{A@dEDl}55{OjEDn}6{OhEE`}7{A@bEEb}8{A@`EEd}{AFdEEf}:{hEEh};{{{f{bAf}}}{{f{bEDb}}}}{{{f{b}}}{{f{b{EDd{c}}}}}{}}{{{f{bABb}}}{{f{bEDf}}}}{{{f{bIn}}}{{f{bEDh}}}}{{{f{bAB`}}}{{f{bEDj}}}}{{{f{bA@d}}}{{f{bEDl}}}}{{{f{bOj}}}{{f{bEDn}}}}{{{f{bOh}}}{{f{bEE`}}}}{{{f{bA@b}}}{{f{bEEb}}}}{{{f{bA@`}}}{{f{bEEd}}}}{{{f{bAFd}}}{{f{bEEf}}}}{{{f{bh}}}{{f{bEEh}}}}{{{f{b{Jd{Af}}}}}{{f{b{Jd{EDb}}}}}}{{{f{bJd}}}{{f{b{Jd{{EDd{c}}}}}}}{}}{{{f{b{Jd{ABb}}}}}{{f{b{Jd{EDf}}}}}}{{{f{b{Jd{In}}}}}{{f{b{Jd{EDh}}}}}}{{{f{b{Jd{AB`}}}}}{{f{b{Jd{EDj}}}}}}{{{f{b{Jd{A@d}}}}}{{f{b{Jd{EDl}}}}}}{{{f{b{Jd{Oj}}}}}{{f{b{Jd{EDn}}}}}}{{{f{b{Jd{Oh}}}}}{{f{b{Jd{EE`}}}}}}{{{f{b{Jd{A@b}}}}}{{f{b{Jd{EEb}}}}}}{{{f{b{Jd{A@`}}}}}{{f{b{Jd{EEd}}}}}}{{{f{b{Jd{AFd}}}}}{{f{b{Jd{EEf}}}}}}{{{f{b{Jd{h}}}}}{{f{b{Jd{EEh}}}}}}{Af{{f{EDb}}}}{{}{{f{{EDd{c}}}}}{}}{ABb{{f{EDf}}}}{In{{f{EDh}}}}{AB`{{f{EDj}}}}{A@d{{f{EDl}}}}{Oj{{f{EDn}}}}{Oh{{f{EE`}}}}{A@b{{f{EEb}}}}{A@`{{f{EEd}}}}{AFd{{f{EEf}}}}{h{{f{EEh}}}}{{{f{bEDb}}}{{f{bAf}}}}{{{f{b{EDd{c}}}}}{{f{b}}}{}}{{{f{bEDf}}}{{f{bABb}}}}{{{f{bEDh}}}{{f{bIn}}}}{{{f{bEDj}}}{{f{bAB`}}}}{{{f{bEDl}}}{{f{bA@d}}}}{{{f{bEDn}}}{{f{bOj}}}}{{{f{bEE`}}}{{f{bOh}}}}{{{f{bEEb}}}{{f{bA@b}}}}{{{f{bEEd}}}{{f{bA@`}}}}{{{f{bEEf}}}{{f{bAFd}}}}{{{f{bEEh}}}{{f{bh}}}}{{{f{b{Jd{EDb}}}}}{{f{b{Jd{Af}}}}}}{{{f{b{Jd{{EDd{c}}}}}}}{{f{bJd}}}{}}{{{f{b{Jd{EDf}}}}}{{f{b{Jd{ABb}}}}}}{{{f{b{Jd{EDh}}}}}{{f{b{Jd{In}}}}}}{{{f{b{Jd{EDj}}}}}{{f{b{Jd{AB`}}}}}}{{{f{b{Jd{EDl}}}}}{{f{b{Jd{A@d}}}}}}{{{f{b{Jd{EDn}}}}}{{f{b{Jd{Oj}}}}}}{{{f{b{Jd{EE`}}}}}{{f{b{Jd{Oh}}}}}}{{{f{b{Jd{EEb}}}}}{{f{b{Jd{A@b}}}}}}{{{f{b{Jd{EEd}}}}}{{f{b{Jd{A@`}}}}}}{{{f{b{Jd{EEf}}}}}{{f{b{Jd{AFd}}}}}}{{{f{b{Jd{EEh}}}}}{{f{b{Jd{h}}}}}}{{{f{AC`}}{f{bc}}}jAEn}{{}c{}}000000000000{EDbAf}{{{EDd{c}}}{}{}}{EDfABb}{EDhIn}{EDjAB`}{EDlA@d}{EDnOj}{EE`Oh}{EEbA@b}{EEdA@`}{EEfAFd}{EEhh}{{{f{EDb}}AC`}Af}{{{f{{EDd{c}}}}AC`}{}{}}{{{f{EDf}}AC`}ABb}{{{f{EDh}}AC`}In}{{{f{EDj}}AC`}AB`}{{{f{EDl}}AC`}A@d}{{{f{EDn}}AC`}Oj}{{{f{EE`}}AC`}Oh}{{{f{EEb}}AC`}A@b}{{{f{EEd}}AC`}A@`}{{{f{EEf}}AC`}AFd}{{{f{EEh}}AC`}h}{AfEDb}{{}{{EDd{c}}}{}}{ABbEDf}{InEDh}{AB`EDj}{A@dEDl}{OjEDn}{OhEE`}{A@bEEb}{A@`EEd}{AFdEEf}{hEEh}{{}j}{{{f{EDb}}AfAC`}j}{{{f{{EDd{c}}}}AC`}j{}}{{{f{EDf}}ABbAC`}j}{{{f{EDh}}InAC`}j}{{{f{EDj}}AB`AC`}j}{{{f{EDl}}A@dAC`}j}{{{f{EDn}}OjAC`}j}{{{f{EE`}}OhAC`}j}{{{f{EEb}}A@bAC`}j}{{{f{EEd}}A@`AC`}j}{{{f{EEf}}AFdAC`}j}{{{f{EEh}}hAC`}j}{{{f{EDb}}AfAC`}Af}{{{f{{EDd{c}}}}AC`}{}{}}{{{f{EDf}}ABbAC`}ABb}{{{f{EDh}}InAC`}In}{{{f{EDj}}AB`AC`}AB`}{{{f{EDl}}A@dAC`}A@d}{{{f{EDn}}OjAC`}Oj}{{{f{EE`}}OhAC`}Oh}{{{f{EEb}}A@bAC`}A@b}{{{f{EEd}}A@`AC`}A@`}{{{f{EEf}}AFdAC`}AFd}{{{f{EEh}}hAC`}h}{fc{}}{c{{n{e}}}{}{}}000000000000{{}{{n{c}}}{}}000000000000{fOf}000000000000`````````````````{f{{f{c}}}{}}0000000000{{{f{b}}}{{f{bc}}}{}}0000000000{{}{{G`{{EEj{c}}{EEl{c}}}}}{}}{{{f{{EEj{c}}}}}{{EEj{c}}}{}}{{{f{{EEn{c}}}}}{{EEn{c}}}{}}{{{f{{EF`{c}}}}}{{EF`{c}}}ACb}{{{f{EFb}}}EFb}{{{f{EFd}}}EFd}{{{f{EFf}}}EFf}{{{f{{EFh{c}}}}}{{EFh{c}}}ACb}{{f{f{bc}}}j{}}000000{fj}000000{{{f{{EF`{c}}}}}{{f{Ll}}}{}}{{{f{EFb}}}{{f{Ll}}}}{{{f{EFd}}}{{f{Ll}}}}{{{f{EFf}}}{{f{Ll}}}}{{{f{{EFh{c}}}}}{{f{Ll}}}{}}{{{f{{EF`{c}}}}{f{{EF`{c}}}}}AfADb}{{{f{EFb}}{f{EFb}}}Af}{{{f{EFd}}{f{EFd}}}Af}{{{f{EFf}}{f{EFf}}}Af}{{{f{{EFh{c}}}}{f{{EFh{c}}}}}AfADb}{{{f{{EEl{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{EEj{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{EEn{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{EFj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{EFl{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{EFn{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{{EF`{c}}}}{f{bK`}}}{{n{jKb}}}{}}0{{{f{EFb}}{f{bK`}}}{{n{jKb}}}}0{{{f{EFd}}{f{bK`}}}{{n{jKb}}}}0{{{f{EFf}}{f{bK`}}}{{n{jKb}}}}0{{{f{{EFh{c}}}}{f{bK`}}}{{n{jKb}}}{}}0{cc{}}00000000{EFbEFd}1{EFbEFf}{{{EF`{c}}}{{EFh{c}}}{}}3{{}c{}}0000000000{{{f{{EEl{c}}}}}{{EFj{c}}}{}}{{{EEl{c}}}{{EFn{c}}}{}}2221{{{f{b{EFj{c}}}}}{{Df{c}}}{}}{{{f{b{EFl{c}}}}}{{Df{c}}}{}}{{{f{b{EFn{c}}}}}{{Df{c}}}{}}{{{f{{EEl{c}}}}}{{n{cEFb}}}{}}{{{f{{EEl{c}}}}EG`}{{n{cEFf}}}{}}{{{f{{EEl{c}}}}CO`}{{n{cEFf}}}{}}{{{f{{EEj{c}}}}c}{{n{j{EF`{c}}}}}{}}{{{f{{EEn{c}}}}c}{{n{j{EF`{c}}}}}{}}{h{{G`{{EEn{c}}{EEl{c}}}}}{}}{fc{}}000000{fI`}0000{c{{n{e}}}{}{}}0000000000{{}{{n{c}}}{}}0000000000{{{f{{EEl{c}}}}}{{EFl{c}}}{}}{{{f{{EEl{c}}}}}{{n{cEFd}}}{}}{{{f{{EEn{c}}}}c}{{n{j{EFh{c}}}}}{}}{fOf}0000000000```````````{{{f{EGb}}}{{f{EGd}}}}{{{f{EGf}}}{{f{EGd}}}}{{{f{EGb}}}{{f{EGf}}}}{f{{f{c}}}{}}000000{{{f{b}}}{{f{bc}}}{}}000000{{{Gj{{n{ce}}}}}AKf{}{}}{{{Gj{{Df{{n{ce}}}}}}}AKf{}{}}{EGhGh}{{{f{EGb}}}EGb}{{{f{EGf}}}EGf}{{{f{{Gj{c}}}}}{{Gj{c}}}ACb}{{{f{EGj}}}EGj}{{{f{bEGb}}{f{EGb}}}j}{{{f{bEGf}}{f{EGf}}}j}{{f{f{bc}}}j{}}000{fj}000{{{f{{Gj{c}}}}{f{{Gj{c}}}}}CdFl}{{{f{EGd}}}j}{{{f{bEGb}}}j}{{{f{bEGf}}}j}{{{f{{Gj{c}}}}{f{{Gj{c}}}}}AfADb}{{{f{EGd}}{f{EGd}}}Af}{{{f{EGj}}{f{EGj}}}Af}{{{f{bGh}}}{{f{bOd}}}}{{EGh{f{bOd}}}EGh}{{{f{Gh}}{f{bK`}}}{{n{jKb}}}}{{{f{EGb}}{f{bK`}}}{{n{jKb}}}}{{{f{EGf}}{f{bK`}}}{{n{jKb}}}}{{{f{{Gj{c}}}}{f{bK`}}}{{n{jKb}}}Jn}{{{f{EGd}}{f{bK`}}}{{n{jKb}}}}{{{f{EGj}}{f{bK`}}}{{n{jKb}}}}{{{f{EGh}}{f{bK`}}}{{n{jKb}}}}{cc{}}{{{Nn{c}}}EGb{NlB@fB@h}}1{{{Ob{c}}}EGfO`}2{c{{Gj{c}}}{}}{Jjc{}}44{{{Nn{c}}}EGd{NlB@fB@h}}{{{Ob{c}}}EGdO`}66{{{f{bGh}}}EGh}{{}{{Gj{{n{ce}}}}}{}{}}{{}{{Gj{{Df{{n{ce}}}}}}}{}{}}{EGdEGb}{EGdEGf}{{{n{BCjc}}}{{Gj{{n{eg}}}}}{}{}{{Dl{c}}}}{{{n{BCjc}}}{{Gj{{Df{{n{eg}}}}}}}{}{}{{Dl{c}}}}{{{f{EGb}}}Gh}{{{f{EGb}}}EGh}{{{f{{Gj{c}}}}{f{be}}}jAF`AEn}{{}c{}}000000{{{f{{Gj{c}}}}}Af{}}0{{{f{Gh}}}{{f{EGf}}}}{{EGh{f{EGf}}}EGh}{{{Gj{c}}g}{{Gj{e}}}{}{}{{Bf{c}{{Ah{e}}}}}}{{{Gj{{Df{{n{ce}}}}}}i}{{Gj{{Df{{n{cg}}}}}}}{}{}{}{{Bf{e}{{Ah{g}}}}}}{{{Gj{{n{ce}}}}i}{{Gj{{n{cg}}}}}{}{}{}{{Bf{e}{{Ah{g}}}}}}{{{Gj{{Df{{n{ce}}}}}}i}{{Gj{{Df{{n{ge}}}}}}}{}{}{}{{Bf{c}{{Ah{g}}}}}}{{{Gj{{n{ce}}}}i}{{Gj{{n{ge}}}}}{}{}{}{{Bf{c}{{Ah{g}}}}}}{{j{f{EGj}}}EGd}{{{AFn{j}{{Ah{EGd}}}}{AFn{j}{{Ah{j}}}}{AFn{j}{{Ah{j}}}}{AFn{j}{{Ah{j}}}}}EGj}{{}{{f{EGb}}}}{{}{{f{EGf}}}}{{{f{{Gj{c}}}}{f{{Gj{c}}}}}{{Df{Cd}}}Fb}`{fc{}}000{c{{n{e}}}{}{}}000000{{}{{n{c}}}{}}000000{fOf}000000{{{f{EGd}}}{{f{EGj}}}}{{{Nn{Nl}}}j}{{{Ob{O`}}}j}{EGbj}{EGfj}{{{f{{Nn{Nl}}}}}j}{{{f{{Ob{O`}}}}}j}{{{f{EGb}}}j}{{{f{EGf}}}j}{{{f{Gh}}}{{f{EGb}}}}{{EGh{f{EGb}}}EGh}{{{f{EGb}}{f{EGb}}}Af}{{{f{EGf}}{f{EGf}}}Af}```````````{{{f{{EGl{c}}}}}A@`{}}{{{f{EGn}}}{{l{A@`}}}}{{}{{n{{l{h}}BFb}}}}{f{{f{c}}}{}}0000000{{{f{b}}}{{f{bc}}}{}}0000000{{{f{EH`}}}EH`}{{{f{EGn}}}EGn}{{{f{EHb}}}EHb}{{f{f{bc}}}j{}}00{fj}00{{}EHb}{{{f{EH`}}{f{EH`}}}Af}{{{f{EGn}}{f{EGn}}}Af}{{{f{EHd}}{f{bK`}}}{{n{jKb}}}}{{{f{{EHf{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{EHh{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{{EGl{c}}}}{f{bK`}}}{{n{jKb}}}{}}{{{f{EH`}}{f{bK`}}}{{n{jKb}}}}0{{{f{EHj}}{f{bK`}}}{{n{jKb}}}}{{{f{EGn}}{f{bK`}}}{{n{jKb}}}}{{{f{EHb}}{f{bK`}}}{{n{jKb}}}}{cc{}}0000000{{{f{{EHh{{BGl{c}}}}}}}cAFf}{{{f{EGn}}{f{bc}}}jAEn}{{{f{EHb}}}EGn}{{}c{}}0000000{{{EGl{c}}}A@`{}}{{{f{{EHf{c}}}}}Af{}}{{{f{{EGl{c}}}}}Af{}}{{{EHf{c}}}{{n{c{Mj{Od}}}}}{}}{{{EGl{c}}}{{n{c{Mj{Od}}}}}{}}{{EHjI`}EHj}{{{f{EHb}}}{{Df{{f{Ll}}}}}}{{}EHj}{{}Af}{{}j}{CO`j}{Ohj}{{{f{{EHh{{BGn{c}}}}}}c}c{}}{{{f{{EHh{{BGl{c}}}}}}c}c{}}{ec{}{{Bf{{f{EHd}}}{{Ah{c}}}}}}{{{f{{EHh{{BGn{c}}}}}}c}j{}}{{{f{{EHh{{BGl{c}}}}}}c}j{}}65{EG`j}{e{{EGl{c}}}B@f{{Bf{}{{Ah{c}}}}B@f}}{{{f{EHd}}e}{{EHf{c}}}B@f{{Bf{}{{Ah{c}}}}B@f}}{{EHje}{{n{{EGl{c}}BFb}}}B@f{{Bf{}{{Ah{c}}}}B@f}}{{EHj{f{EHd}}e}{{n{{EHf{c}}BFb}}}B@f{{Bf{}{{Ah{c}}}}B@f}}1{{EHjh}EHj}{{{f{{EHh{{BGl{c}}}}}}}cGb}{{{f{{EHh{{BGn{c}}}}}}}cGb}{{{f{{EHf{c}}}}}{{f{EHb}}}{}}{{{f{{EGl{c}}}}}{{f{EHb}}}{}}{fc{}}00{fI`}{c{{n{e}}}{}{}}0000000{{}{{n{c}}}{}}0000000{{{f{{EHh{c}}}}g}{{n{eEH`}}}{}{}{{Bf{{f{c}}}{{Ah{e}}}}}}{fOf}0000000{{{f{EHb}}}j}{{{f{{EHh{c}}}}g}e{}{}{{Bf{{f{c}}}{{Ah{e}}}}}}{{{f{{EHh{{BGn{c}}}}}}g}e{}{}{{Bf{{f{c}}}{{Ah{e}}}}}}{{{f{{EHh{{BGn{c}}}}}}g}e{}{}{{Bf{{f{bc}}}{{Ah{e}}}}}}{{}j}`````````````{{CO`CO`}CO`}{{EG`CO`}EG`}{{CH`CO`}CH`}2{{{f{bEG`}}CO`}j}{{{f{bCH`}}CO`}j}{{{f{bCO`}}CO`}j}{{{f{CO`}}}ABn}0{{{f{CO`}}}AAh}{{{f{CO`}}}AAf}2{{{f{CO`}}}A@`}21{f{{f{c}}}{}}0000{{{f{b}}}{{f{bc}}}{}}0000{{{f{EG`}}CO`}{{Df{EG`}}}}{{{f{CH`}}CO`}{{Df{CH`}}}}{{CO`CO`}{{Df{CO`}}}}{{CO`Oh}{{Df{CO`}}}}{{{f{EG`}}EG`}{{Df{CO`}}}}1432{{{f{EG`}}}EG`}{{{f{CH`}}}CH`}{{{f{EHl}}}EHl}{{{f{CO`}}}CO`}{{{f{EHn}}}EHn}{{f{f{bc}}}j{}}0000{fj}0000{{{f{EG`}}{f{EG`}}}Cd}{{{f{CH`}}{f{CH`}}}Cd}{{{f{CO`}}{f{CO`}}}Cd}{{}CO`}{{{f{EHl}}}{{f{Ll}}}}{{CO`Oh}CO`}{{{f{bCO`}}Oh}j}{{CO`CO`}AAh}{{CO`CO`}AAf}{{CO`AAh}CO`}{{CO`AAf}CO`}{{{f{EHl}}}CO`}{{{f{EG`}}EG`}CO`}{{{f{CH`}}CH`}{{n{CO`EHl}}}}{{{f{EG`}}}CO`}{{{f{CH`}}}{{n{CO`EHl}}}}{{{f{EG`}}{f{EG`}}}Af}{{{f{CH`}}{f{CH`}}}Af}{{{f{CO`}}{f{CO`}}}Af}{{{f{EHn}}{f{EHn}}}Af}{{{f{EG`}}{f{bK`}}}{{n{jKb}}}}{{{f{CH`}}{f{bK`}}}{{n{jKb}}}}{{{f{EHl}}{f{bK`}}}{{n{jKb}}}}0{{{f{CO`}}{f{bK`}}}{{n{jKb}}}}{{{f{EHn}}{f{bK`}}}{{n{jKb}}}}0{cc{}}0000{A@`CO`}000000{AAhCO`}{AAfCO`}2{{{f{EG`}}{f{bc}}}jAEn}{{{f{CH`}}{f{bc}}}jAEn}{{{f{CO`}}{f{bc}}}jAEn}{{}c{}}0000{{{f{CO`}}}Af}{{CO`Oh}CO`}{{{f{bCO`}}Oh}j}{{CO`AAh}CO`}{{CO`AAf}CO`}{{A@`Oh}CO`}{{}EG`}{{}CH`}{{{f{EG`}}{f{EG`}}}{{Df{Cd}}}}{{{f{CH`}}{f{CH`}}}{{Df{Cd}}}}{{{f{CO`}}{f{CO`}}}{{Df{Cd}}}}{{CO`CO`}CO`}{{{f{EG`}}EG`}CO`};1{{EG`EG`}CO`}{{EG`CO`}EG`}{{CH`CO`}CH`}4{{{f{bEG`}}CO`}j}{{{f{bCH`}}CO`}j}{{{f{bCO`}}CO`}j}{{{f{CO`}}}Oh}00{cCO`{{Ab{}{{A`{{f{CO`}}}}}}}}{cCO`{{Ab{}{{A`{CO`}}}}}}{fc{}}0000{fI`}0{c{{n{e}}}{}{}}0000{AAh{{n{CO`EHn}}}}{AAf{{n{CO`EHn}}}}{{}{{n{c}}}{}}0000{fOf}0000`````````````````{{{f{b{BFj{ce}}}}h}{{n{j{l{h}}}}}{}Jb}0{{{f{{EI`{ce}}}}}{{f{e}}}{}Jb}{{{f{{BFj{ce}}}}}{{f{e}}}{}Jb}{{{f{{BEb{ce}}}}}{{f{e}}}{}Jb}{{{f{{EIb{ceg}}}}}{{f{g}}}{}{{Aj{{f{bc}}}{{Ah{Af}}}}}Jb}{{{f{b{BEb{ce}}}}{f{b{BEb{ce}}}}}j{}Jb}{{{f{b{BEb{ce}}}}}{{f{b{Jd{c}}}}}{}Jb}{{{f{b{BEb{ce}}}}}{{f{b{BEb{ce}}}}}{}Jb}{{{f{b{BEb{ce}}}}}{}{}Jb}{{{f{b{BFj{ce}}}}}{{f{b{Jd{c}}}}}{}Jb}3{{{f{{BEb{ce}}}}}{}{}Jb}{{{f{{EI`{ce}}}}}{{f{{Jd{c}}}}}{}Jb}{{{f{{BFj{ce}}}}}{{f{{Jd{c}}}}}{}Jb}{{{f{{BEb{ce}}}}}{{f{{Jd{c}}}}}{}Jb}{{{f{{BEb{ce}}}}}{{f{{BEb{ce}}}}}{}Jb}321{f{{f{c}}}{}}02000{{{f{b}}}{{f{bc}}}{}}0:000{{{f{{BEb{ce}}}}}h{}Jb}{{{f{b{BEb{ce}}}}}j{}Jb}{{{f{{BFj{ce}}}}}{{BFj{ce}}}ACb{JbACb}}{{{f{{BEb{ce}}}}}{{BEb{ce}}}ACb{JbACb}}{{{f{b{BEb{ce}}}}{f{{BEb{ce}}}}}jACb{JbACb}}{{f{f{bc}}}j{}}0{fj}0{{{f{{BEb{ce}}}}{f{{BEb{ce}}}}}CdFlJb}{{{BFj{ce}}}h{}Jb}{{{f{b{BEb{ce}}}}}jADbJb}{{{f{b{BEb{ce}}}}g}j{}Jb{{Aj{{f{bc}}{f{bc}}}{{Ah{Af}}}}}}{{{f{b{BEb{ce}}}}i}j{}JbADb{{Aj{{f{bc}}}{{Ah{g}}}}}}{{}{{BFj{ce}}}{}{JbGb}}{{}{{BEb{c}}}{}}{{{f{{BEb{ce}}}}}{{f{{Jd{c}}}}}{}Jb}{{{f{b{BEb{ce}}}}}{{f{b{Jd{c}}}}}{}Jb}{{{f{b{BEb{ce}}}}g}{{EI`{ce}}}{}Jb{{Mh{h}}}}{{{f{b{EI`{ce}}}}}j{}Jb}{{{f{b{BFj{ce}}}}}j{}Jb}{{{f{b{BEb{ce}}}}}j{}Jb}{{{f{b{EIb{ceg}}}}}j{}{{Aj{{f{bc}}}{{Ah{Af}}}}}Jb}{{{f{b{EId{ce}}}}}jAbJb}{{{f{{BEb{eg}}}}{f{{Fj{c}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{f{{Fj{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{BEb{ci}}}}}Af{}{{ADb{c}}}JbJb}{{{f{{BEb{eg}}}}{f{{f{{Jd{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{Jd{c}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{f{b{Jd{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{b{BEb{ce}}}}g}j{}Jb{{Bj{}{{A`{c}}}}}}{{{f{b{BEb{ce}}}}g}jAFfJb{{Bj{}{{A`{{f{c}}}}}}}}{{{f{b{BEb{ce}}}}{f{{Jd{c}}}}}jACbJb}{{{f{b{BEb{ce}}}}g}jACbJb{{Mh{h}}}}{{{f{b{BEb{ce}}}}c}j{}Jb}{{{f{b{BEb{ce}}}}{f{c}}}jAFfJb}{{{f{b{BEb{ce}}}}h}j{}Jb}{{{f{b{BEb{ce}}}}h}jAFfJb}{{{f{b{BEb{ce}}}}g}{{EIb{cge}}}{}Jb{{Aj{{f{bc}}}{{Ah{Af}}}}}}{{{f{b{BEb{Inc}}}}}{{n{jBFb}}}Jb}{{{f{{EI`{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{BFj{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{BEb{ce}}}}{f{bK`}}}{{n{jKb}}}JnJb}{{{f{{EIb{ceg}}}}{f{bK`}}}{{n{jKb}}}Jn{Jn{Aj{{f{bc}}}{{Ah{Af}}}}}{JnJb}}{{{f{{EId{ce}}}}{f{bK`}}}{{n{jKb}}}{JnAb}{JnJb}}{{{BFj{ce}}gi}g{}Jb{}{{Aj{g}{{Ah{g}}}}}}{cc{}}0{{{BJf{ce}}}{{BEb{ce}}}{}Jb}{I`{{BEb{In}}}}{{{BJd{ce}}}{{BEb{ce}}}{}Jb}{{{f{b{Fj{c}}}}}{{BEb{c}}}ACb}{{{Mj{{Jd{c}}e}}}{{BEb{ce}}}{}Jb}{{{BDh{{Jd{c}}}}}{{BEb{c}}}{}}{{{Fj{c}}}{{BEb{c}}}{}}{{{f{b{Jd{c}}}}}{{BEb{c}}}ACb}{BEd{{BEb{In}}}}{{{f{{Fj{c}}}}}{{BEb{c}}}ACb}:{{{f{{Jd{c}}}}}{{BEb{c}}}ACb}{{{f{Ll}}}{{BEb{In}}}}<<{e{{BEb{c}}}{}{{Bj{}{{A`{c}}}}}}{{hh}{{BEb{c}}}{}}{{hhc}{{BEb{ec}}}Jb{}}{{{f{{BEb{ce}}}}{f{bg}}}jAF`JbAEn}{{{f{{BEb{ce}}}}g}f{}Jb{{Mb{{Jd{c}}}}}}{{{f{b{BEb{ce}}}}g}{{f{b}}}{}Jb{{Mb{{Jd{c}}}}}}{{{f{b{BEb{ce}}}}hc}j{}Jb}{{}c{}}0000{{{BEb{ce}}}{{Mj{{Jd{c}}e}}}{}Jb}{{{BEb{{Fj{c}}e}}}{{BEb{ce}}}{}Jb}22{{{f{b{BEb{ce}}}}}{}{}Jb}{{{BEb{ce}}}{}{}Jb}{{{f{{BEb{ce}}}}}{}{}Jb}55{{{BEb{ce}}}{{G`{hh}}}{}Jb}{{{BEb{ce}}}{{G`{hhe}}}{}Jb}{{{f{{EI`{ce}}}}}Af{}Jb}{{{f{{BFj{ce}}}}}Af{}Jb}{{{f{{BEb{ce}}}}}Af{}Jb}{{{f{{BEb{Inc}}}}}AfJb}{{{EI`{ce}}}j{}Jb}{{{BEb{ce}}}{{f{b{Jd{c}}}}}{}Jb}{{{f{{BEb{ce}}}}}h{}Jb}{{{f{{BEb{eg}}}}{f{{f{{Jd{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{BEb{ci}}}}}Af{}{{ADb{c}}}JbJb}{{{f{{BEb{eg}}}}{f{{Jd{c}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{Fj{c}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{f{b{Jd{c}}}}}}}Af{}{{ADb{c}}}Jb}{{{f{{BEb{eg}}}}{f{{f{{Fj{c}}}}}}}Af{}{{ADb{c}}}Jb}{{}{{BEb{c}}}{}}{c{{BEb{ec}}}Jb{}}{{{f{b{EI`{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{BFj{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{EIb{ceg}}}}}{{Df{c}}}{}{{Aj{{f{bc}}}{{Ah{Af}}}}}Jb}{{{f{b{EId{ce}}}}}DfAbJb}320{{{f{b{BFj{ce}}}}}{{n{{Fj{c}}{Fn{c}}}}}{}Jb}{{{f{{BEb{ce}}}}{f{{BEb{cg}}}}}{{Df{Cd}}}FbJbJb}{{{f{b{BEb{ce}}}}}{{Df{c}}}{}Jb}{{{f{b{BEb{ce}}}}g}{{Df{c}}}{}Jb{{Bf{{f{bc}}}{{Ah{Af}}}}}}{{{f{b{BEb{ce}}}}c}j{}Jb}{{{f{b{BEb{ce}}}}c}{{n{jc}}}{}Jb}{{{f{b{BEb{ce}}}}h}c{}Jb}{{{f{b{BEb{ce}}}}h}j{}Jb}0{{{f{b{BEb{ce}}}}hc}jACbJb}{{{f{b{BEb{ce}}}}hg}j{}Jb{{Aj{}{{Ah{c}}}}}}{{{f{b{BEb{ce}}}}g}j{}Jb{{Aj{{f{c}}}{{Ah{Af}}}}}}{{{f{b{BEb{ce}}}}g}j{}Jb{{Aj{{f{bc}}}{{Ah{Af}}}}}}44{{{f{b{BEb{ce}}}}}j{}Jb}{{{f{{EI`{ce}}}}}{{G`{h{Df{h}}}}}{}Jb}{{{f{{BFj{ce}}}}}{{G`{h{Df{h}}}}}{}Jb}{{{f{{EIb{ceg}}}}}{{G`{h{Df{h}}}}}{}{{Aj{{f{bc}}}{{Ah{Af}}}}}Jb}{{{f{{EId{ce}}}}}{{G`{h{Df{h}}}}}AbJb}{{{f{b{BEb{ce}}}}}{{f{b{Jd{{BCl{c}}}}}}}{}Jb}{{{f{b{BEb{ce}}}}gi}{{EId{e}}}{}Jb{{Mh{h}}}{{Bj{}{{A`{c}}}}}}{{{f{b{BEb{ce}}}}}{{G`{{f{b{Jd{c}}}}{f{b{Jd{{BCl{c}}}}}}}}}{}Jb}{{{f{b{BEb{ce}}}}h}{{BEb{ce}}}{}{ACbJb}}>{fc{}}0>{{{f{b{BFj{ce}}}}gk}i{}Jb{}{{Ib{}{{Ah{g}}}}}{{Aj{g}{{Ah{i}}}}}}{c{{n{e}}}{}{}}0000{{}{{n{c}}}{}}0000{{{f{b{BEb{ce}}}}h}{{n{jBKd}}}{}Jb}0{h{{n{{BEb{c}}BKd}}}{}}{{hc}{{n{{BEb{ec}}BKd}}}Jb{}}{fOf}0000{h{{BEb{c}}}{}}{{hc}{{BEb{ec}}}Jb{}}{{{f{b{BEb{Inc}}}}{f{{Jd{In}}}}}{{n{hBFb}}}Jb}{{{f{b{BEb{Inc}}}}{f{{Jd{In}}}}}{{n{jBFb}}}Jb}{{{f{b{BEb{Inc}}}}{f{{Jd{BGj}}}}}{{n{hBFb}}}Jb}","D":"AAM`AA@hA@LlACEnAB@lAA@`A@MhACF`AB@fAANnA@Hf","p":[[0,"mut"],[10,"DoubleEndedIterator",23162,35931],[1,"reference"],[1,"usize"],[1,"unit"],[5,"NonZero",24726,35932],[6,"Result",30920,35933],[17,"Item"],[10,"Iterator",23162,35934],[10,"Sized",24067,35935],[1,"bool"],[17,"Output"],[10,"FnMut",27705,35936],[5,"ArrayChunks",23162,35937],[10,"AsMut",20692,35938],[10,"AsRef",20692,35938],[10,"Fn",27705,35936],[10,"Tuple",24067,35935],[10,"FnOnce",27705,35936],[5,"Chain",23162,35939],[10,"IntoIterator",23162,35940],[17,"Owned"],[10,"ToOwned",18096,35941],[10,"Borrow",18096,35942],[5,"Cloned",23162,35943],[6,"Ordering",18831,35944],[10,"FromIterator",23162,35940],[10,"Extend",23162,35940],[5,"Copied",23162,35945],[5,"Cycle",23162,35946],[10,"Drop",27705,35947],[5,"Enumerate",23162,35948],[5,"Filter",23162,35949],[5,"FilterMap",23162,35950],[6,"Option",28123,35951],[5,"FlatMap",23162,35952],[5,"Flatten",23162,35952],[10,"From",20692,35938],[5,"Fuse",23162,35953],[5,"Inspect",23162,35954],[5,"Intersperse",23162,35955],[5,"IntersperseWith",23162,35955],[10,"Into",20692,35938],[17,"IntoFuture"],[10,"IntoFuture",21841,35956],[10,"Future",21841,35957],[17,"IntoIter"],[10,"ExactSizeIterator",23162,35958],[10,"PartialOrd",18831,35944],[5,"Map",23162,35959],[5,"MapWhile",23162,35960],[5,"MapWindows",23162,35961],[1,"array"],[10,"Ord",18831,35944],[5,"IntoIter",17785,35962],[1,"tuple"],[10,"Default",20731,35963],[5,"Peekable",23162,35964],[5,"Pin",29237,35965],[5,"Context",35280,35966],[6,"Poll",35280,35967],[10,"Product",23162,35968],[5,"Rev",23162,35969],[5,"Scan",23162,35970],[5,"Skip",23162,35971],[5,"SkipWhile",23162,35972],[5,"StepBy",23162,35973],[10,"Sum",23162,35968],[5,"Take",23162,35974],[5,"TakeWhile",23162,35975],[10,"ToString",34005,35976],[5,"String",34005,35976],[10,"Try",27705,35977],[17,"Error"],[10,"TryFrom",20692,35938],[10,"TryInto",20692,35938],[5,"Zip",23162,35978],[5,"Layout",10730,35979],[1,"u8"],[10,"GlobalAlloc",10730,35980],[10,"Allocator",10730,35981],[1,"slice"],[5,"NonNull",30629,35982],[5,"AllocError",10730,35981],[1,"never"],[10,"BorrowMut",18096,35942],[10,"Debug",21405,35983],[5,"Formatter",21405,35983],[5,"Error",21405,35983],[10,"Display",21405,35983],[10,"Octal",21405,35983],[10,"Binary",21405,35983],[10,"LowerHex",21405,35983],[10,"UpperHex",21405,35983],[10,"Pointer",21405,35983],[10,"LowerExp",21405,35983],[10,"UpperExp",21405,35983],[5,"Arguments",21405,35983],[5,"FromFn",21405,35984],[10,"Write",21405,35983],[1,"char"],[1,"str"],[10,"Concat",32847,35985],[5,"Range",27705,35986],[10,"SliceIndex",32847,35987],[10,"Join",32847,35985],[5,"RangeTo",27705,35986],[10,"RangeBounds",27705,35986],[5,"Box",18195,35988],[17,"Err"],[10,"FromStr",33374,35989],[5,"Utf8Error",33374,35990],[10,"Searcher",33854,35991],[17,"Searcher"],[10,"Pattern",33854,35991],[6,"SearchStep",33854,35991],[10,"ReverseSearcher",33854,35991],[10,"Wake",35280,35992],[5,"Arc",34177,35993],[10,"LocalWake",35280,35992],[5,"Rc",30781,35994],[10,"Any",10858,35995],[5,"TypeId",10858,35995],[1,"u32"],[1,"i32"],[5,"__m128",10909,35996],[5,"CpuidResult",10909,35997],[1,"u64"],[1,"i64"],[1,"u16"],[5,"__m256i",10909,35996],[5,"__m256h",10909,35996],[5,"__m256d",10909,35996],[5,"__m256",10909,35996],[5,"bf16",10909,35996],[1,"f16"],[5,"__m128d",10909,35996],[5,"__m128i",10909,35996],[1,"f64"],[1,"f32"],[5,"__m128h",10909,35996],[5,"__m256bh",10909,35996],[5,"__m128bh",10909,35996],[1,"i16"],[1,"i8"],[5,"__m512i",10909,35996],[5,"__m512d",10909,35996],[5,"__m512h",10909,35996],[5,"__m512",10909,35996],[5,"__m512bh",10909,35996],[1,"u128"],[6,"Ordering",34674,35998],[10,"Clone",18825,35999],[5,"EscapeDefault",17838,36000],[5,"FromIter",18033,36001],[17,"IntoAsyncIter"],[10,"IntoAsyncIterator",18033,36002],[10,"AsyncIterator",18033,36002],[5,"DecodeUtf16",18616,36003],[10,"CloneToUninit",18825,35999],[10,"PartialEq",18831,35944],[10,"Error",20855,36004],[5,"Source",7501,36004],[5,"Request",20855,36004],[5,"Bytes",7681,36005],[5,"AsyncDropOwning",36006],[17,"Dropper"],[10,"AsyncDrop",21841,36006],[5,"AsyncDropInPlace",21841,36006],[5,"Pending",21841,36007],[5,"PollFn",21841,36008],[5,"Ready",21841,36009],[17,"Hasher"],[10,"BuildHasher",21910,36010],[10,"Hasher",21910,36010],[10,"Hash",21910,36010],[1,"i128"],[1,"isize"],[10,"Copy",24067,35935],[17,"Metadata"],[10,"AggregateRawPtr",22020,36011],[5,"Location",28854,36012],[1,"fn"],[1,"f128"],[5,"ReturnToArg",22313,36013],[5,"UnwindActionArg",22313,36013],[6,"BasicBlock",22313,36013],[6,"UnwindTerminateReason",22313,36013],[10,"Step",23162,36014],[5,"Empty",23162,36015],[5,"FromCoroutine",36016],[17,"Return"],[10,"Coroutine",27705,36017],[10,"Unpin",24067,35935],[5,"FromFn",23162,36018],[5,"Once",23162,36019],[5,"OnceWith",23162,36020],[5,"Repeat",23162,36021],[5,"RepeatN",23162,36022],[5,"RepeatWith",23162,36023],[5,"Successors",23162,36024],[10,"FnPtr",24067,35935],[5,"Discriminant",24124,36025],[10,"TransmuteFrom",24124,36026],[10,"Add",27705,36027],[10,"AddAssign",27705,36027],[10,"AsyncFn",27705,36028],[17,"CallRefFuture"],[10,"AsyncFnMut",27705,36028],[17,"CallOnceFuture"],[10,"AsyncFnOnce",27705,36028],[10,"BitAnd",27705,36029],[10,"BitAndAssign",27705,36029],[10,"BitOr",27705,36029],[10,"BitOrAssign",27705,36029],[10,"BitXor",27705,36029],[10,"BitXorAssign",27705,36029],[17,"Residual"],[6,"ControlFlow",27705,36030],[17,"Target"],[10,"Deref",27705,36031],[10,"DerefMut",27705,36031],[10,"Div",27705,36027],[10,"DivAssign",27705,36027],[6,"Bound",27705,35986],[10,"FromResidual",27705,35977],[10,"Index",27705,36032],[10,"IndexMut",27705,36032],[10,"Mul",27705,36027],[10,"MulAssign",27705,36027],[10,"Neg",27705,36027],[10,"Not",27705,36029],[10,"Rem",27705,36027],[10,"RemAssign",27705,36027],[17,"Yield"],[6,"CoroutineState",27705,36017],[10,"Shl",27705,36029],[10,"ShlAssign",27705,36029],[10,"Shr",27705,36029],[10,"ShrAssign",27705,36029],[10,"Sub",27705,36027],[10,"SubAssign",27705,36027],[5,"PanicMessage",8609,36033],[5,"PanicInfo",8609,36033],[5,"IterRange",9701,36034],[5,"IterRangeInclusive",9701,36034],[5,"IterRangeFrom",9701,36034],[5,"Range",9701,36035],[5,"RangeInclusive",9701,36035],[5,"RangeFrom",9701,36035],[5,"RangeInclusive",27705,35986],[5,"RangeFrom",27705,35986],[5,"Simd",31298,36036],[10,"SimdElement",31039,36036],[5,"Mask",31298,36037],[10,"MaskElement",31039,36037],[17,"Bytes"],[10,"ToBytes",31039,36038],[10,"Send",24067,35935],[10,"Sync",24067,35935],[17,"Scalar"],[10,"SimdUint",31298,36039],[10,"SimdOrd",31298,36040],[17,"Mask"],[10,"SimdPartialEq",31298,36041],[10,"SimdPartialOrd",31298,36040],[17,"Bits"],[17,"Cast"],[10,"SimdFloat",31298,36042],[17,"Unsigned"],[10,"SimdInt",31298,36043],[17,"Usize"],[17,"Isize"],[17,"CastPtr"],[17,"MutPtr"],[10,"SimdConstPtr",31298,36044],[17,"ConstPtr"],[10,"SimdMutPtr",31298,36045],[10,"SlicePattern",10431,36046],[5,"GetManyMutError",10431,36046],[5,"LayoutError",10730,35979],[5,"System",10730,36047],[5,"Global",10730,36048],[5,"TryFromSliceError",17785,36049],[6,"Infallible",20692,35938],[20,"MaybeUninit",24124,36050],[6,"Char",17838],[10,"AsciiExt",17838,36051],[5,"Backtrace",18058,36052],[6,"BacktraceStatus",18058,36052],[5,"BacktraceFrame",18058,36052],[6,"Cow",18096,35941],[5,"OsStr",21034,36053],[5,"Path",28940,36054],[5,"PathBuf",28940,36054],[5,"OsString",21034,36053],[5,"Vec",35733,36055],[5,"CString",21034,36056],[5,"CStr",21034,36005],[5,"BorrowedFd",28257,36057],[10,"AsFd",28257,36057],[10,"AsRawFd",28257,36058],[10,"BufRead",22449,36059],[5,"ThinBox",18195,36060],[5,"Error",22449,36061],[10,"Write",22449,36059],[5,"IterMut",32847,36062],[5,"Iter",32847,36062],[5,"IntoIter",35733,36063],[5,"CharPredicateSearcher",33854,35991],[10,"Read",22449,36059],[10,"Unsize",24067,35935],[5,"BorrowedCursor",22449,36064],[5,"IoSliceMut",22449,36059],[6,"SeekFrom",22449,36059],[10,"Seek",22449,36059],[5,"IoSlice",22449,36059],[5,"Cell",18407,36065],[5,"RefCell",18407,36065],[5,"Ref",18407,36065],[5,"RefMut",18407,36065],[5,"OnceCell",18407,36066],[5,"LazyCell",18407,36067],[5,"UnsafeCell",18407,36065],[5,"SyncUnsafeCell",18407,36065],[5,"BorrowError",18407,36065],[5,"BorrowMutError",18407,36065],[5,"ToLowercase",18616,36068],[5,"ToUppercase",18616,36068],[5,"EscapeUnicode",18616,36068],[5,"EscapeDefault",18616,36068],[5,"ParseCharError",18616,36069],[5,"CharTryFromError",18616,36069],[5,"DecodeUtf16Error",18616,36003],[5,"EscapeDebug",18616,36068],[5,"TryFromCharError",18616,36068],[5,"Reverse",18831,35944],[5,"BinaryHeap",18911,36070],[5,"VecDeque",18911,36071],[5,"BTreeMap",18911,36072],[5,"BTreeSet",18911,36073],[5,"LinkedList",18911,36074],[5,"HashSet",18911,36075],[10,"Eq",18831,35944],[5,"HashMap",18911,36076],[5,"TryReserveError",18911,36077],[6,"TryReserveErrorKind",18911,36077],[5,"Cursor",20480,36074],[5,"CursorMut",20480,36074],[5,"Difference",20350,36075],[5,"Difference",19843,36073],[5,"Drain",20055,36076],[5,"Drain",19428,36070],[5,"Drain",20350,36075],[5,"Drain",20600,36078],[5,"DrainSorted",19428,36070],[6,"Entry",20055,36076],[6,"Entry",19528,36079],[5,"ExtractIf",20055,36076],[5,"ExtractIf",19528,36072],[5,"ExtractIf",20350,36075],[5,"ExtractIf",19843,36073],[5,"ExtractIf",20480,36074],[5,"OccupiedEntry",19528,36079],[5,"Intersection",20350,36075],[5,"Intersection",19843,36073],[5,"IterMut",20055,36076],[5,"Iter",20055,36076],[5,"IntoIter",20055,36076],[5,"IntoIter",19428,36070],[5,"Iter",19428,36070],[5,"IterMut",19528,36072],[5,"Iter",19528,36072],[5,"IntoIter",19528,36072],[5,"Iter",20350,36075],[5,"IntoIter",20350,36075],[5,"IntoIter",19843,36073],[5,"Iter",19843,36073],[5,"IntoIter",20480,36074],[5,"Iter",20480,36074],[5,"IterMut",20480,36074],[5,"IntoIter",20600,36080],[5,"Iter",20600,36081],[5,"IterMut",20600,36082],[5,"IntoIterSorted",19428,36070],[5,"IntoKeys",20055,36076],[5,"IntoKeys",19528,36072],[5,"IntoValues",20055,36076],[5,"IntoValues",19528,36072],[5,"Keys",20055,36076],[5,"Keys",19528,36072],[5,"Cursor",19528,36072],[5,"Cursor",19843,36073],[5,"CursorMut",19528,36072],[5,"CursorMut",19843,36073],[5,"PeekMut",19428,36070],[5,"Range",19528,36072],[5,"Range",19843,36073],[5,"RangeMut",19528,36072],[5,"RawEntryBuilder",20055,36076],[5,"RawEntryBuilderMut",20055,36076],[5,"SymmetricDifference",20350,36075],[5,"SymmetricDifference",19843,36073],[5,"OccupiedError",20055,36076],[5,"OccupiedError",19528,36079],[5,"Union",20350,36075],[5,"Union",19843,36073],[5,"Values",20055,36076],[5,"Values",19528,36072],[5,"ValuesMut",20055,36076],[5,"ValuesMut",19528,36072],[5,"CursorMutKey",19528,36072],[5,"VacantEntry",19528,36079],[5,"UnorderedKeyError",19843,36072],[5,"CursorMutKey",19843,36073],[6,"RawEntryMut",20055,36076],[5,"RawOccupiedEntryMut",20055,36076],[5,"RawVacantEntryMut",20055,36076],[5,"OccupiedEntry",20055,36076],[5,"VacantEntry",20055,36076],[5,"ExitCode",30374,36083],[5,"Args",20734,36084],[5,"ArgsOs",20734,36084],[6,"VarError",20734,36084],[5,"JoinPathsError",20734,36084],[5,"Vars",20734,36084],[5,"VarsOs",20734,36084],[5,"SplitPaths",20734,36084],[5,"Report",20855,36085],[5,"VaListImpl",21034,36086],[10,"VaArgSafe",36087],[5,"FromVecWithNulError",21034,36056],[5,"VaList",21034,36086],[5,"NulError",21034,36056],[5,"IntoStringError",21034,36056],[5,"FromBytesWithNulError",21034,36005],[5,"FromBytesUntilNulError",21034,36005],[5,"Display",21392,36053],[6,"c_void",21034,36088],[5,"RangeFull",27705,35986],[6,"Alignment",21405,35983],[5,"DebugList",21405,35984],[5,"DebugMap",21405,35984],[5,"DebugSet",21405,35984],[5,"DebugStruct",21405,35984],[5,"DebugTuple",21405,35984],[5,"Metadata",21594,36089],[5,"SystemTime",35558,36090],[5,"OpenOptions",21594,36089],[5,"File",21594,36089],[5,"stat",28368,36091],[5,"FileTimes",21594,36089],[5,"Permissions",21594,36089],[5,"FileType",21594,36089],[5,"DirBuilder",21594,36089],[5,"DirEntry",21594,36089],[5,"ReadDir",21594,36089],[5,"OwnedFd",28257,36057],[5,"RandomState",21910,36092],[5,"DefaultHasher",21910,36092],[5,"BuildHasherDefault",21910,36010],[5,"SipHasher",21910,36093],[5,"Stdin",22449,36094],[5,"StdinLock",22449,36094],[5,"Stdout",22449,36094],[5,"StdoutLock",22449,36094],[5,"Stderr",22449,36094],[5,"StderrLock",22449,36094],[5,"BufReader",22449,36095],[5,"BufWriter",22449,36096],[5,"Bytes",22449,36059],[5,"BorrowedBuf",22449,36064],[5,"Chain",22449,36059],[5,"Cursor",22449,36097],[6,"ErrorKind",22449,36061],[5,"Empty",22449,36098],[5,"Sink",22449,36098],[5,"Take",22449,36059],[5,"WriterPanicked",22449,36096],[5,"IntoInnerError",22449,36099],[5,"LineWriter",22449,36100],[5,"Repeat",22449,36098],[5,"Split",22449,36059],[5,"Lines",22449,36059],[10,"IsTerminal",22449,36094],[5,"ByRefSized",23162,36101],[5,"PhantomData",24067,35935],[5,"PhantomPinned",24067,35935],[5,"Assume",24124,36026],[5,"ManuallyDrop",24124,36102],[5,"TcpListener",24255,36103],[5,"TcpStream",24255,36103],[6,"SocketAddr",24255,36104],[5,"UdpSocket",24255,36105],[5,"Ipv4Addr",24255,36106],[5,"Ipv6Addr",24255,36106],[10,"ToSocketAddrs",24255,36107],[6,"Shutdown",24255,36108],[6,"IpAddr",24255,36106],[6,"Ipv6MulticastScope",24255,36106],[5,"AddrParseError",24255,36109],[5,"SocketAddrV4",24255,36104],[5,"SocketAddrV6",24255,36104],[5,"Duration",35558,36110],[5,"Incoming",24255,36103],[5,"IntoIncoming",24255,36103],[17,"Iter"],[5,"IntoIter",28123,35951],[5,"Saturating",24726,36111],[5,"Wrapping",24726,36112],[10,"ZeroablePrimitive",24726,35932],[5,"ParseFloatError",24726,36113],[5,"TryFromIntError",24726,36114],[5,"ParseIntError",24726,36114],[6,"IntErrorKind",24726,36114],[6,"FpCategory",24726,36115],[5,"Alignment",30629,36116],[5,"RangeToInclusive",27705,35986],[5,"Yeet",27705,35977],[5,"Iter",28123,35951],[5,"IterMut",28123,35951],[5,"UnixStream",28493,36117],[5,"ChildStdin",30374,36083],[5,"UnixListener",28493,36118],[5,"ChildStdout",30374,36083],[5,"ChildStderr",30374,36083],[5,"UnixDatagram",28493,36119],[5,"PipeWriter",29290,36120],[5,"PipeReader",29290,36120],[5,"PidFd",28346,36121],[10,"FromRawFd",28257,36058],[10,"IntoRawFd",28257,36058],[10,"MetadataExt",28317,36122],[10,"SocketAddrExt",28335,36123],[10,"TcpStreamExt",28335,36124],[5,"SocketAddr",28493,36125],[10,"UnixSocketExt",28335,36126],[10,"CommandExt",28346,36121],[5,"Command",30374,36083],[10,"ChildExt",28346,36121],[5,"ExitStatus",30374,36083],[10,"OsStrExt",28747,36127],[10,"OsStringExt",28747,36127],[10,"MetadataExt",28747,36128],[10,"OpenOptionsExt",28747,36128],[10,"DirEntryExt2",28435,36128],[10,"PermissionsExt",28747,36128],[10,"DirEntryExt",28747,36128],[10,"FileTypeExt",28747,36128],[10,"DirBuilderExt",28435,36128],[10,"FileExt",28747,36128],[5,"SocketAncillary",28493,36129],[5,"SocketCred",28493,36129],[5,"UCred",28493,36130],[6,"AncillaryError",28493,36129],[5,"Incoming",28493,36118],[5,"Messages",28493,36129],[5,"ScmRights",28493,36129],[5,"ScmCredentials",28493,36129],[10,"CommandExt",28747,36131],[10,"JoinHandleExt",28747,36132],[10,"ExitStatusExt",28747,36131],[5,"AssertUnwindSafe",28854,36133],[5,"PanicHookInfo",28854,36134],[10,"UnwindSafe",28854,36133],[6,"BacktraceStyle",28854,36134],[5,"Ancestors",28940,36054],[5,"PrefixComponent",28940,36054],[6,"Component",28940,36054],[5,"Components",28940,36054],[5,"Iter",28940,36054],[6,"Prefix",28940,36054],[5,"StripPrefixError",28940,36054],[5,"Display",28940,36054],[5,"Output",30374,36083],[5,"ExitStatusError",30374,36083],[5,"Child",30374,36083],[5,"Stdio",30374,36083],[5,"CommandArgs",30374,36083],[5,"CommandEnvs",30374,36135],[10,"Termination",30374,36083],[5,"DynMetadata",30629,36136],[5,"Weak",30781,35994],[5,"UniqueRc",30781,35994],[5,"Iter",30920,35933],[5,"IntoIter",30920,35933],[5,"IterMut",30920,35933],[5,"StreamResult",36137],[6,"MZStatus",36137],[6,"MZError",36137],[10,"StdFloat",31039,36138],[5,"Mask",36139],[5,"Split",32847,36062],[5,"SplitInclusive",32847,36062],[5,"RSplit",32847,36062],[5,"EscapeAscii",32847,36140],[5,"Windows",32847,36062],[5,"Chunks",32847,36062],[5,"ChunksExact",32847,36062],[5,"ArrayWindows",32847,36062],[5,"ArrayChunks",32847,36062],[5,"RChunks",32847,36062],[5,"RChunksExact",32847,36062],[5,"ChunksMut",32847,36062],[5,"ChunksExactMut",32847,36062],[5,"ArrayChunksMut",32847,36062],[5,"RChunksMut",32847,36062],[5,"RChunksExactMut",32847,36062],[5,"SplitMut",32847,36062],[5,"SplitInclusiveMut",32847,36062],[5,"RSplitMut",32847,36062],[5,"SplitN",32847,36062],[5,"RSplitN",32847,36062],[5,"SplitNMut",32847,36062],[5,"RSplitNMut",32847,36062],[5,"ChunkBy",32847,36062],[5,"ChunkByMut",32847,36062],[5,"Chars",33374,36141],[5,"Bytes",33374,36141],[5,"CharIndices",33374,36141],[5,"SplitInclusive",33374,36141],[5,"ParseBoolError",33374,35990],[5,"Split",33374,36141],[5,"RSplit",33374,36141],[5,"SplitTerminator",33374,36141],[5,"RSplitTerminator",33374,36141],[5,"SplitN",33374,36141],[5,"RSplitN",33374,36141],[5,"MatchIndices",33374,36141],[5,"RMatchIndices",33374,36141],[5,"Matches",33374,36141],[5,"RMatches",33374,36141],[5,"Lines",33374,36141],[5,"LinesAny",33374,36141],[5,"SplitWhitespace",33374,36141],[5,"SplitAsciiWhitespace",33374,36141],[5,"EncodeUtf16",33374,36141],[5,"EscapeDebug",33374,36141],[5,"EscapeDefault",33374,36141],[5,"EscapeUnicode",33374,36141],[5,"Utf8Chunk",33374,36142],[5,"Utf8Chunks",33374,36142],[5,"CharSearcher",33854,35991],[5,"CharArraySearcher",33854,35991],[5,"CharArrayRefSearcher",33854,35991],[5,"CharSliceSearcher",33854,35991],[5,"StrSearcher",33854,35991],[5,"FromUtf8Error",34005,35976],[5,"Drain",34005,35976],[5,"FromUtf16Error",34005,35976],[5,"Weak",34177,35993],[5,"Exclusive",34177,36143],[5,"Once",34177,36144],[5,"OnceState",34177,36144],[6,"TryLockError",34177,36145],[5,"Mutex",34177,36146],[5,"RwLock",34177,36147],[5,"OnceLock",34177,36148],[5,"WaitTimeoutResult",34177,36149],[5,"Condvar",34177,36149],[5,"LazyLock",34177,36150],[5,"ReentrantLock",34177,36151],[5,"ReentrantLockGuard",34177,36151],[5,"MutexGuard",34177,36146],[5,"MappedMutexGuard",34177,36146],[5,"RwLockReadGuard",34177,36147],[5,"RwLockWriteGuard",34177,36147],[5,"MappedRwLockReadGuard",34177,36147],[5,"MappedRwLockWriteGuard",34177,36147],[5,"PoisonError",34177,36145],[5,"Barrier",34177,36152],[5,"BarrierWaitResult",34177,36152],[5,"AtomicBool",34674,35998],[5,"AtomicPtr",34674,35998],[5,"AtomicI8",34674,35998],[5,"AtomicU8",34674,35998],[5,"AtomicI16",34674,35998],[5,"AtomicU16",34674,35998],[5,"AtomicI32",34674,35998],[5,"AtomicU32",34674,35998],[5,"AtomicI64",34674,35998],[5,"AtomicU64",34674,35998],[5,"AtomicIsize",34674,35998],[5,"AtomicUsize",34674,35998],[5,"Sender",35105,36153],[5,"Receiver",35105,36153],[5,"SyncSender",35105,36153],[5,"SendError",35105,36153],[5,"RecvError",35105,36153],[6,"TryRecvError",35105,36153],[6,"RecvTimeoutError",35105,36153],[6,"TrySendError",35105,36153],[5,"Iter",35105,36153],[5,"TryIter",35105,36153],[5,"IntoIter",35105,36153],[5,"Instant",35558,36090],[5,"Waker",35280,35966],[5,"RawWaker",35280,35966],[5,"LocalWaker",35280,35966],[5,"ContextBuilder",35280,35966],[5,"RawWakerVTable",35280,35966],[5,"JoinHandle",35424,36154],[5,"ThreadId",35424,36154],[5,"AccessError",35424,36155],[5,"Thread",35424,36154],[5,"Scope",35424,36156],[5,"ScopedJoinHandle",35424,36156],[5,"LocalKey",35424,36155],[5,"Builder",35424,36154],[5,"SystemTimeError",35558,36090],[5,"TryFromFloatSecsError",35558,36110],[5,"Drain",35733,36157],[5,"ExtractIf",35733,36158],[5,"Splice",35733,36159],[15,"AllocError",261],[8,"Result",21405],[10,"DiscriminantKind",24067],[10,"Residual",27705],[10,"Pointee",30629],[10,"Swizzle",31039],[8,"Result",22449],[6,"AncillaryData",28493],[15,"Unknown",28745],[5,"LaneCount",31039],[8,"LockResult",34177],[8,"TryLockResult",34177],[8,"Result",35424]],"r":[[6,35938],[7,35938],[9,35941],[10,35931],[11,35947],[12,36160],[16,35958],[17,35940],[18,35936],[19,35936],[20,35936],[21,35938],[22,35940],[23,35957],[24,35938],[25,35956],[28,35940],[31,35934],[32,36161],[34,36160],[36,35951],[42,35935],[43,35935],[44,35933],[45,35935],[46,35935],[47,36161],[49,35976],[50,35935],[51,35941],[52,35976],[53,35938],[54,35938],[55,35935],[56,36055],[59,36025],[60,36025],[66,36162],[67,36162],[68,36162],[73,36162],[81,36162],[82,36162],[83,36162],[87,36163],[88,36162],[89,36162],[90,36162],[91,36025],[94,36163],[95,36163],[101,36162],[110,36025],[111,36164],[112,36162],[118,35938],[133,36162],[150,0],[158,36163],[159,36163],[162,36025],[169,36025],[170,36025],[174,36162],[176,36025],[177,36025],[182,36011],[183,36025],[192,36162],[194,36025],[196,36164],[197,36164],[198,36164],[199,36164],[200,36164],[201,36164],[202,36164],[203,36164],[204,36164],[205,36164],[206,36164],[207,36164],[208,36164],[209,36164],[210,36164],[211,35981],[212,35981],[213,36048],[214,35980],[215,35979],[216,35979],[217,35979],[218,36048],[220,36048],[225,36048],[230,36048],[231,36048],[234,35942],[235,35942],[237,35941],[240,35941],[245,35988],[246,36060],[248,36072],[249,36073],[250,36070],[252,36074],[253,36077],[254,36077],[255,36071],[256,36077],[257,36077],[258,36077],[259,36077],[260,36077],[262,36070],[263,36070],[264,36070],[265,36070],[266,36070],[267,36070],[268,36070],[269,36072],[270,36072],[271,36072],[272,36072],[273,36079],[274,36072],[275,36072],[276,36072],[277,36072],[278,36072],[279,36072],[280,36072],[282,36079],[283,36079],[284,36072],[285,36072],[286,36072],[288,36079],[289,36072],[290,36072],[293,36073],[294,36073],[295,36073],[296,36073],[297,36073],[298,36073],[299,36073],[300,36073],[301,36073],[302,36073],[303,36073],[304,36073],[305,36072],[306,36074],[307,36074],[308,36074],[309,36074],[310,36074],[311,36074],[312,36074],[313,36078],[314,36080],[315,36081],[316,36082],[317,36071],[318,36056],[319,36056],[320,36056],[321,36056],[322,36165],[323,36056],[324,36056],[325,36056],[326,36056],[327,35983],[328,35983],[329,35983],[331,35983],[332,36166],[333,35984],[334,35984],[335,35984],[336,35984],[337,35984],[338,35983],[340,35983],[341,35983],[342,35984],[344,35983],[345,35983],[346,35983],[348,35983],[349,35983],[351,35983],[352,35983],[353,35983],[363,36167],[364,35984],[365,35983],[369,35994],[370,35994],[371,35994],[372,36062],[373,36062],[374,36062],[375,36062],[376,36062],[377,36062],[378,36062],[379,36062],[380,36062],[381,35985],[382,36140],[383,36062],[384,36062],[385,35985],[389,36062],[390,36062],[391,36062],[392,36062],[393,36062],[394,36062],[395,36062],[396,36062],[397,35987],[398,36062],[399,36062],[400,36062],[401,36062],[402,36062],[403,36062],[404,36062],[406,36168],[407,36168],[408,36168],[409,36168],[410,36168],[411,36168],[419,35987],[420,35987],[421,36141],[422,36141],[423,36141],[424,36141],[426,36141],[427,36141],[428,36141],[429,35989],[430,36141],[431,36141],[432,36141],[433,36141],[434,35990],[435,36141],[436,36141],[437,36141],[438,36141],[439,36141],[440,36141],[441,36141],[442,36141],[443,36141],[444,36141],[445,36141],[446,36142],[447,36142],[448,35990],[449,36169],[450,36170],[451,36170],[453,36170],[454,36170],[455,36170],[456,36170],[457,36171],[458,35991],[459,35991],[460,35991],[461,35991],[462,35991],[464,35991],[466,35991],[468,35991],[469,35991],[470,35991],[472,35991],[486,35976],[487,35976],[488,35976],[489,35976],[490,35976],[491,35976],[493,35993],[494,35993],[495,35992],[496,35992],[501,36157],[502,36158],[503,36063],[504,36159],[505,36055],[506,36162],[507,36162],[508,36162],[509,36162],[510,36162],[511,36162],[512,36162],[513,36162],[514,36162],[515,36162],[516,36162],[517,36162],[518,36162],[519,36162],[520,36172],[521,36162],[522,36162],[523,36162],[524,36162],[525,36162],[526,36162],[527,36162],[528,36162],[529,36162],[530,36162],[531,36162],[532,36162],[533,36162],[534,36162],[535,36162],[536,36162],[537,36162],[538,36162],[539,36162],[540,36162],[541,36162],[542,36162],[543,36162],[544,36162],[545,36162],[546,36162],[547,36162],[548,36162],[549,36162],[550,36162],[551,36162],[552,36162],[553,36162],[554,36162],[555,36162],[556,36162],[557,36162],[558,36162],[559,36162],[560,36162],[561,36162],[562,36162],[563,36162],[564,36162],[565,36162],[566,36162],[567,36162],[568,36162],[569,36162],[570,36162],[571,36162],[572,36162],[573,36162],[574,36162],[575,36162],[576,36162],[577,36162],[578,36162],[579,36162],[580,36162],[581,36162],[582,36162],[583,36162],[584,36162],[585,36162],[586,36162],[587,36162],[588,36162],[589,36162],[590,36162],[591,36162],[592,36162],[593,36162],[594,36162],[595,36162],[596,36162],[597,36162],[598,36162],[599,36162],[600,36162],[601,36162],[602,36162],[603,36162],[604,36162],[605,35981],[606,35981],[607,35980],[608,35979],[609,35979],[610,35979],[622,35995],[623,35995],[625,35995],[626,35995],[627,36173],[628,36173],[629,36174],[630,35997],[631,36175],[632,36175],[633,36175],[634,36175],[635,36175],[636,36175],[637,36175],[638,36175],[639,36175],[640,36175],[641,36175],[642,36175],[643,36175],[644,36175],[645,36175],[646,36175],[647,36175],[648,36175],[649,36175],[650,36175],[651,36175],[652,36175],[653,36175],[654,36175],[655,36175],[656,36175],[657,36175],[658,36175],[659,36175],[660,36175],[661,36175],[662,36175],[663,35996],[664,36176],[665,36176],[666,36176],[667,36176],[668,36176],[669,36176],[670,36176],[671,36176],[672,36177],[673,36177],[674,36177],[675,36177],[676,36177],[677,36177],[678,36177],[679,36177],[680,36177],[681,36177],[682,36178],[683,36178],[684,36178],[685,36178],[686,36178],[687,36178],[688,36178],[689,36178],[690,36178],[691,36178],[692,36178],[693,36178],[694,36178],[695,36177],[696,36177],[697,36177],[698,36177],[699,36177],[700,36177],[701,36177],[702,36177],[703,36177],[704,36177],[705,35996],[706,35996],[707,36176],[708,36176],[709,36176],[710,36176],[711,36176],[712,36176],[713,36176],[714,36177],[715,36177],[716,36177],[717,36177],[718,36177],[719,36177],[720,36177],[721,36176],[722,36176],[723,36176],[724,36176],[725,36176],[726,36176],[727,36176],[728,36176],[729,36176],[730,36176],[731,36176],[732,36176],[733,36176],[734,36176],[735,36176],[736,36176],[737,36176],[738,36176],[739,36176],[740,36176],[741,36176],[742,36176],[743,36176],[744,36176],[745,36176],[746,36176],[747,36176],[748,36176],[749,36176],[750,36176],[751,36176],[752,36176],[753,36176],[754,36176],[755,36176],[756,36176],[757,36176],[758,36176],[759,36176],[760,36176],[761,36176],[762,36176],[763,36176],[764,36176],[765,36176],[766,36176],[767,36176],[768,36176],[769,36176],[770,36176],[771,36176],[772,36176],[773,36176],[774,36176],[775,36176],[776,36176],[777,36176],[778,36176],[779,36176],[780,36176],[781,36176],[782,36176],[783,36176],[784,36176],[785,36176],[786,36176],[787,36176],[788,36176],[789,36176],[790,36176],[791,36176],[792,36176],[793,36176],[794,36176],[795,36176],[796,36176],[797,36176],[798,36176],[799,36176],[800,36176],[801,36176],[802,36176],[803,36176],[804,36176],[805,36176],[806,36176],[807,36176],[808,36176],[809,36176],[810,36176],[811,36176],[812,36176],[813,36176],[814,36176],[815,36176],[816,36176],[817,36176],[818,36176],[819,36176],[820,36176],[821,36176],[822,36176],[823,36176],[824,36176],[825,36176],[826,36176],[827,36176],[828,36176],[829,36176],[830,36176],[831,36176],[832,36176],[833,36176],[834,36176],[835,36176],[836,36176],[837,36176],[838,36176],[839,36176],[840,36176],[841,36176],[842,36176],[843,36176],[844,36176],[845,36176],[846,36176],[847,36176],[848,36176],[849,36176],[850,36176],[851,36176],[852,36176],[853,36176],[854,36176],[855,36176],[856,36176],[857,36176],[858,36176],[859,36176],[860,36176],[861,36176],[862,36176],[863,36176],[864,36176],[865,36176],[866,36176],[867,36176],[868,36176],[869,36176],[870,36176],[871,36176],[872,36176],[873,36176],[874,36176],[875,36176],[876,36176],[877,36176],[878,36176],[879,36176],[880,36176],[881,36176],[882,36176],[883,36176],[884,36176],[885,36176],[886,36176],[887,36176],[888,36176],[889,36176],[890,36176],[891,36176],[892,36176],[893,36176],[894,36176],[895,36176],[896,36176],[897,36176],[898,36176],[899,36176],[900,36176],[901,36176],[902,36176],[903,36176],[904,36176],[905,36176],[906,36176],[907,36176],[908,36176],[909,36176],[910,36176],[911,36176],[912,36176],[913,36176],[914,36176],[915,36176],[916,36176],[917,36176],[918,36176],[919,36176],[920,36176],[921,36176],[922,36176],[923,36176],[924,36176],[925,36176],[926,36176],[927,36176],[928,36176],[929,36176],[930,36176],[931,36176],[932,36176],[933,36176],[934,36176],[935,36176],[936,36176],[937,36176],[938,36176],[939,36176],[940,36176],[941,36176],[942,36176],[943,36176],[944,36176],[945,36176],[946,36176],[947,36176],[948,36176],[949,36176],[950,36176],[951,36176],[952,36176],[953,36176],[954,36176],[955,36176],[956,36176],[957,36176],[958,36176],[959,36176],[960,36176],[961,36176],[962,36176],[963,36176],[964,36176],[965,36176],[966,36176],[967,36176],[968,36176],[969,36176],[970,36176],[971,36176],[972,36176],[973,36176],[974,36176],[975,36176],[976,36176],[977,35996],[978,36177],[979,36177],[980,36177],[981,36177],[982,36177],[983,36177],[984,36177],[985,36177],[986,36177],[987,36177],[988,36177],[989,36179],[990,36179],[991,36179],[992,36179],[993,36179],[994,36179],[995,36179],[996,36179],[997,36179],[998,36179],[999,36179],[1000,36179],[1001,36179],[1002,36179],[1003,36179],[1004,36179],[1005,36180],[1006,36180],[1007,36180],[1008,36180],[1009,36180],[1010,36180],[1011,36180],[1012,36181],[1013,35997],[1014,35997],[1015,35997],[1016,35996],[1017,35996],[1018,35996],[1019,35996],[1020,35996],[1021,35996],[1022,35996],[1023,35996],[1024,35996],[1025,35996],[1026,35996],[1027,35996],[1028,35996],[1029,35996],[1030,35996],[1031,35996],[1032,35996],[1033,35996],[1034,35996],[1035,36182],[1036,36183],[1037,36184],[1038,36183],[1039,36184],[1040,36185],[1041,36186],[1042,36185],[1043,36186],[1044,36185],[1045,36186],[1046,36187],[1047,36188],[1048,36189],[1049,36190],[1050,36189],[1051,36190],[1052,36189],[1053,36190],[1054,36189],[1055,36190],[1056,36187],[1057,36188],[1058,36187],[1059,36188],[1060,36187],[1061,36188],[1062,36187],[1063,36188],[1064,36187],[1065,36188],[1066,36187],[1067,36188],[1068,36185],[1069,36186],[1070,36187],[1071,36188],[1072,36185],[1073,36186],[1074,36185],[1075,36186],[1076,36191],[1077,36192],[1078,36193],[1079,36194],[1080,36176],[1081,36195],[1082,36196],[1083,36197],[1084,36176],[1085,36195],[1086,36197],[1087,36196],[1088,36198],[1089,36199],[1090,36198],[1091,36199],[1092,36197],[1093,36195],[1094,36195],[1095,36197],[1096,36176],[1097,36195],[1098,36195],[1099,36197],[1100,36176],[1101,36195],[1102,36195],[1103,36197],[1104,36176],[1105,36195],[1106,36195],[1107,36197],[1108,36176],[1109,36195],[1110,36195],[1111,36197],[1112,36176],[1113,36195],[1114,36195],[1115,36197],[1116,36176],[1117,36195],[1118,36195],[1119,36197],[1120,36176],[1121,36195],[1122,36195],[1123,36197],[1124,36176],[1125,36195],[1126,36195],[1127,36197],[1128,36176],[1129,36195],[1130,36195],[1131,36197],[1132,36197],[1133,36195],[1134,36195],[1135,36197],[1136,36197],[1137,36195],[1138,36195],[1139,36197],[1140,36197],[1141,36195],[1142,36195],[1143,36197],[1144,36176],[1145,36195],[1146,36195],[1147,36197],[1148,36176],[1149,36195],[1150,36195],[1151,36197],[1152,36176],[1153,36195],[1154,36195],[1155,36197],[1156,36200],[1157,36201],[1158,36202],[1159,36202],[1160,36176],[1161,36202],[1162,36203],[1163,36202],[1164,36202],[1165,36202],[1166,36202],[1167,36175],[1168,36203],[1169,36175],[1170,36202],[1171,36202],[1172,36202],[1173,36202],[1174,36175],[1175,36175],[1176,36204],[1177,36204],[1178,36204],[1179,36204],[1180,36176],[1181,36176],[1182,36202],[1183,36175],[1184,36175],[1185,36202],[1186,36175],[1187,36175],[1188,36202],[1189,36202],[1190,36202],[1191,36205],[1192,36205],[1193,36206],[1194,36202],[1195,36202],[1196,36175],[1197,36175],[1198,36202],[1199,36175],[1200,36175],[1201,36197],[1202,36176],[1203,36197],[1204,36197],[1205,36176],[1206,36197],[1207,36175],[1208,36175],[1209,36175],[1210,36175],[1211,36202],[1212,36202],[1213,36207],[1214,36207],[1215,36202],[1216,36202],[1217,36202],[1218,36202],[1219,36202],[1220,36202],[1221,36202],[1222,36175],[1223,36175],[1224,36203],[1225,36175],[1226,36175],[1227,36203],[1228,36203],[1229,36203],[1230,36203],[1231,36203],[1232,36175],[1233,36175],[1234,36175],[1235,36203],[1236,36175],[1237,36175],[1238,36175],[1239,36203],[1240,36175],[1241,36175],[1242,36175],[1243,36175],[1244,36208],[1245,36195],[1246,36176],[1247,36176],[1248,36195],[1249,36195],[1250,36176],[1251,36176],[1252,36195],[1253,36175],[1254,36176],[1255,36203],[1256,36175],[1257,36176],[1258,36202],[1259,36195],[1260,36202],[1261,36176],[1262,36202],[1263,36176],[1264,36202],[1265,36195],[1266,36195],[1267,36176],[1268,36176],[1269,36195],[1270,36195],[1271,36176],[1272,36176],[1273,36195],[1274,36195],[1275,36176],[1276,36176],[1277,36195],[1278,36202],[1279,36195],[1280,36202],[1281,36176],[1282,36202],[1283,36176],[1284,36202],[1285,36195],[1286,36195],[1287,36176],[1288,36176],[1289,36195],[1290,36195],[1291,36176],[1292,36176],[1293,36195],[1294,36195],[1295,36176],[1296,36176],[1297,36195],[1298,36195],[1299,36176],[1300,36176],[1301,36195],[1302,36195],[1303,36176],[1304,36176],[1305,36195],[1306,36195],[1307,36176],[1308,36176],[1309,36195],[1310,36195],[1311,36176],[1312,36176],[1313,36195],[1314,36203],[1315,36207],[1316,36207],[1317,36203],[1318,36202],[1319,36202],[1320,36195],[1321,36203],[1322,36176],[1323,36202],[1324,36176],[1325,36175],[1326,36203],[1327,36175],[1328,36176],[1329,36176],[1330,36176],[1331,36197],[1332,36203],[1333,36197],[1334,36202],[1335,36202],[1336,36202],[1337,36202],[1338,36202],[1339,36203],[1340,36202],[1341,36176],[1342,36203],[1343,36197],[1344,36203],[1345,36197],[1346,36202],[1347,36202],[1348,36202],[1349,36209],[1350,36205],[1351,36205],[1352,36205],[1353,36205],[1354,36205],[1355,36209],[1356,36209],[1357,36175],[1358,36197],[1359,36176],[1360,36197],[1361,36203],[1362,36175],[1363,36203],[1364,36203],[1365,36203],[1366,36203],[1367,36203],[1368,36203],[1369,36203],[1370,36210],[1371,36175],[1372,36197],[1373,36176],[1374,36197],[1375,36175],[1376,36210],[1377,36175],[1378,36195],[1379,36176],[1380,36176],[1381,36176],[1382,36176],[1383,36176],[1384,36203],[1385,36175],[1386,36175],[1387,36175],[1388,36197],[1389,36176],[1390,36197],[1391,36203],[1392,36203],[1393,36203],[1394,36203],[1395,36203],[1396,36203],[1397,36175],[1398,36197],[1399,36176],[1400,36197],[1401,36195],[1402,36176],[1403,36176],[1404,36176],[1405,36176],[1406,36176],[1407,36203],[1408,36203],[1409,36195],[1410,36175],[1411,36203],[1412,36175],[1413,36175],[1414,36209],[1415,36211],[1416,36211],[1417,36211],[1418,36211],[1419,36211],[1420,36211],[1421,36211],[1422,36211],[1423,36211],[1424,36211],[1425,36211],[1426,36211],[1427,36211],[1428,36211],[1429,36211],[1430,36211],[1431,36211],[1432,36211],[1433,36211],[1434,36211],[1435,36202],[1436,36175],[1437,36212],[1438,36202],[1439,36175],[1440,36175],[1441,36175],[1442,36176],[1443,36197],[1444,36202],[1445,36176],[1446,36197],[1447,36203],[1448,36203],[1449,36176],[1450,36176],[1451,36175],[1452,36175],[1453,36203],[1454,36213],[1455,36203],[1456,36213],[1457,36213],[1458,36203],[1459,36213],[1460,36213],[1461,36203],[1462,36213],[1463,36213],[1464,36203],[1465,36213],[1466,36203],[1467,36213],[1468,36203],[1469,36213],[1470,36213],[1471,36203],[1472,36213],[1473,36197],[1474,36203],[1475,36197],[1476,36176],[1477,36203],[1478,36176],[1479,36176],[1480,36203],[1481,36176],[1482,36214],[1483,36214],[1484,36214],[1485,36202],[1486,36202],[1487,36175],[1488,36175],[1489,36202],[1490,36202],[1491,36202],[1492,36175],[1493,36175],[1494,36202],[1495,36202],[1496,36202],[1497,36202],[1498,36202],[1499,36176],[1500,36176],[1501,36176],[1502,36176],[1503,36202],[1504,36202],[1505,36202],[1506,36202],[1507,36176],[1508,36176],[1509,36176],[1510,36176],[1511,36175],[1512,36175],[1513,36212],[1514,36175],[1515,36175],[1516,36175],[1517,36175],[1518,36176],[1519,36197],[1520,36202],[1521,36176],[1522,36197],[1523,36175],[1524,36176],[1525,36176],[1526,36175],[1527,36203],[1528,36175],[1529,36175],[1530,36175],[1531,36175],[1532,36175],[1533,36195],[1534,36176],[1535,36176],[1536,36195],[1537,36175],[1538,36203],[1539,36175],[1540,36175],[1541,36207],[1542,36207],[1543,36215],[1544,36215],[1545,36215],[1546,36215],[1547,36202],[1548,36202],[1549,36195],[1550,36176],[1551,36176],[1552,36216],[1553,36176],[1554,36176],[1555,36203],[1556,36203],[1557,36176],[1558,36203],[1559,36176],[1560,36176],[1561,36203],[1562,36176],[1563,36176],[1564,36203],[1565,36176],[1566,36176],[1567,36203],[1568,36176],[1569,36176],[1570,36203],[1571,36176],[1572,36176],[1573,36203],[1574,36176],[1575,36195],[1576,36176],[1577,36176],[1578,36195],[1579,36195],[1580,36176],[1581,36176],[1582,36195],[1583,36176],[1584,36203],[1585,36176],[1586,36195],[1587,36195],[1588,36195],[1589,36195],[1590,36176],[1591,36176],[1592,36195],[1593,36176],[1594,36176],[1595,36197],[1596,36197],[1597,36176],[1598,36176],[1599,36197],[1600,36197],[1601,36195],[1602,36195],[1603,36206],[1604,36195],[1605,36176],[1606,36176],[1607,36195],[1608,36176],[1609,36203],[1610,36176],[1611,36197],[1612,36176],[1613,36197],[1614,36197],[1615,36176],[1616,36197],[1617,36195],[1618,36176],[1619,36176],[1620,36176],[1621,36176],[1622,36195],[1623,36195],[1624,36176],[1625,36176],[1626,36195],[1627,36195],[1628,36176],[1629,36176],[1630,36195],[1631,36176],[1632,36203],[1633,36176],[1634,36195],[1635,36176],[1636,36176],[1637,36195],[1638,36195],[1639,36176],[1640,36176],[1641,36195],[1642,36195],[1643,36176],[1644,36176],[1645,36195],[1646,36195],[1647,36176],[1648,36176],[1649,36195],[1650,36195],[1651,36176],[1652,36176],[1653,36195],[1654,36195],[1655,36176],[1656,36176],[1657,36195],[1658,36195],[1659,36176],[1660,36176],[1661,36195],[1662,36195],[1663,36176],[1664,36176],[1665,36195],[1666,36195],[1667,36176],[1668,36176],[1669,36195],[1670,36195],[1671,36176],[1672,36176],[1673,36195],[1674,36195],[1675,36176],[1676,36176],[1677,36195],[1678,36195],[1679,36176],[1680,36176],[1681,36195],[1682,36203],[1683,36217],[1684,36176],[1685,36176],[1686,36217],[1687,36176],[1688,36176],[1689,36217],[1690,36176],[1691,36176],[1692,36217],[1693,36176],[1694,36176],[1695,36207],[1696,36207],[1697,36203],[1698,36176],[1699,36176],[1700,36176],[1701,36195],[1702,36203],[1703,36195],[1704,36176],[1705,36176],[1706,36176],[1707,36176],[1708,36203],[1709,36176],[1710,36176],[1711,36176],[1712,36176],[1713,36176],[1714,36176],[1715,36197],[1716,36203],[1717,36197],[1718,36176],[1719,36176],[1720,36176],[1721,36195],[1722,36176],[1723,36176],[1724,36176],[1725,36176],[1726,36203],[1727,36176],[1728,36176],[1729,36203],[1730,36197],[1731,36203],[1732,36197],[1733,36195],[1734,36176],[1735,36176],[1736,36209],[1737,36209],[1738,36209],[1739,36176],[1740,36197],[1741,36176],[1742,36197],[1743,36203],[1744,36176],[1745,36203],[1746,36203],[1747,36203],[1748,36203],[1749,36203],[1750,36203],[1751,36203],[1752,36176],[1753,36176],[1754,36197],[1755,36176],[1756,36197],[1757,36176],[1758,36195],[1759,36195],[1760,36176],[1761,36176],[1762,36176],[1763,36176],[1764,36176],[1765,36176],[1766,36176],[1767,36176],[1768,36176],[1769,36176],[1770,36176],[1771,36197],[1772,36176],[1773,36197],[1774,36203],[1775,36203],[1776,36203],[1777,36203],[1778,36203],[1779,36203],[1780,36176],[1781,36197],[1782,36176],[1783,36197],[1784,36195],[1785,36195],[1786,36176],[1787,36176],[1788,36176],[1789,36176],[1790,36176],[1791,36176],[1792,36176],[1793,36176],[1794,36176],[1795,36176],[1796,36203],[1797,36203],[1798,36195],[1799,36176],[1800,36203],[1801,36176],[1802,36209],[1803,36211],[1804,36211],[1805,36211],[1806,36211],[1807,36217],[1808,36176],[1809,36176],[1810,36217],[1811,36176],[1812,36176],[1813,36217],[1814,36176],[1815,36176],[1816,36217],[1817,36176],[1818,36176],[1819,36176],[1820,36197],[1821,36176],[1822,36197],[1823,36203],[1824,36203],[1825,36176],[1826,36176],[1827,36203],[1828,36176],[1829,36203],[1830,36176],[1831,36176],[1832,36203],[1833,36176],[1834,36176],[1835,36203],[1836,36176],[1837,36176],[1838,36203],[1839,36176],[1840,36203],[1841,36176],[1842,36203],[1843,36176],[1844,36176],[1845,36203],[1846,36176],[1847,36197],[1848,36203],[1849,36197],[1850,36176],[1851,36203],[1852,36176],[1853,36176],[1854,36203],[1855,36176],[1856,36214],[1857,36214],[1858,36214],[1859,36202],[1860,36202],[1861,36202],[1862,36202],[1863,36176],[1864,36176],[1865,36176],[1866,36176],[1867,36202],[1868,36202],[1869,36202],[1870,36202],[1871,36176],[1872,36176],[1873,36176],[1874,36176],[1875,36176],[1876,36197],[1877,36176],[1878,36197],[1879,36176],[1880,36176],[1881,36176],[1882,36176],[1883,36195],[1884,36176],[1885,36176],[1886,36195],[1887,36176],[1888,36176],[1889,36207],[1890,36207],[1891,36215],[1892,36215],[1893,36195],[1894,36195],[1895,36195],[1896,36176],[1897,36176],[1898,36195],[1899,36195],[1900,36176],[1901,36176],[1902,36195],[1903,36176],[1904,36203],[1905,36176],[1906,36195],[1907,36176],[1908,36176],[1909,36195],[1910,36195],[1911,36176],[1912,36176],[1913,36195],[1914,36176],[1915,36203],[1916,36176],[1917,36195],[1918,36176],[1919,36176],[1920,36195],[1921,36176],[1922,36176],[1923,36176],[1924,36176],[1925,36176],[1926,36176],[1927,36176],[1928,36203],[1929,36176],[1930,36203],[1931,36176],[1932,36195],[1933,36195],[1934,36195],[1935,36195],[1936,36176],[1937,36197],[1938,36216],[1939,36176],[1940,36176],[1941,36197],[1942,36197],[1943,36195],[1944,36195],[1945,36195],[1946,36195],[1947,36176],[1948,36176],[1949,36176],[1950,36176],[1951,36195],[1952,36176],[1953,36176],[1954,36216],[1955,36176],[1956,36176],[1957,36176],[1958,36176],[1959,36195],[1960,36176],[1961,36176],[1962,36216],[1963,36176],[1964,36176],[1965,36206],[1966,36218],[1967,36218],[1968,36206],[1969,36197],[1970,36197],[1971,36176],[1972,36176],[1973,36203],[1974,36195],[1975,36195],[1976,36195],[1977,36195],[1978,36195],[1979,36195],[1980,36195],[1981,36195],[1982,36195],[1983,36195],[1984,36195],[1985,36195],[1986,36195],[1987,36195],[1988,36195],[1989,36195],[1990,36197],[1991,36203],[1992,36197],[1993,36176],[1994,36176],[1995,36176],[1996,36176],[1997,36176],[1998,36176],[1999,36176],[2000,36176],[2001,36176],[2002,36203],[2003,36176],[2004,36176],[2005,36176],[2006,36203],[2007,36176],[2008,36203],[2009,36176],[2010,36195],[2011,36176],[2012,36176],[2013,36195],[2014,36217],[2015,36217],[2016,36217],[2017,36217],[2018,36217],[2019,36217],[2020,36217],[2021,36217],[2022,36217],[2023,36217],[2024,36217],[2025,36217],[2026,36176],[2027,36195],[2028,36176],[2029,36176],[2030,36176],[2031,36176],[2032,36176],[2033,36176],[2034,36195],[2035,36195],[2036,36195],[2037,36176],[2038,36176],[2039,36195],[2040,36176],[2041,36176],[2042,36195],[2043,36176],[2044,36176],[2045,36176],[2046,36203],[2047,36176],[2048,36195],[2049,36176],[2050,36176],[2051,36195],[2052,36176],[2053,36176],[2054,36195],[2055,36176],[2056,36176],[2057,36195],[2058,36176],[2059,36176],[2060,36195],[2061,36176],[2062,36176],[2063,36195],[2064,36176],[2065,36176],[2066,36176],[2067,36176],[2068,36176],[2069,36176],[2070,36195],[2071,36176],[2072,36176],[2073,36195],[2074,36176],[2075,36176],[2076,36195],[2077,36176],[2078,36176],[2079,36195],[2080,36176],[2081,36203],[2082,36176],[2083,36195],[2084,36195],[2085,36195],[2086,36195],[2087,36176],[2088,36176],[2089,36195],[2090,36176],[2091,36176],[2092,36195],[2093,36195],[2094,36176],[2095,36176],[2096,36195],[2097,36195],[2098,36176],[2099,36176],[2100,36195],[2101,36176],[2102,36176],[2103,36195],[2104,36176],[2105,36176],[2106,36195],[2107,36176],[2108,36176],[2109,36176],[2110,36176],[2111,36197],[2112,36197],[2113,36202],[2114,36202],[2115,36175],[2116,36175],[2117,36202],[2118,36202],[2119,36175],[2120,36175],[2121,36195],[2122,36176],[2123,36176],[2124,36195],[2125,36195],[2126,36176],[2127,36176],[2128,36195],[2129,36176],[2130,36203],[2131,36176],[2132,36195],[2133,36195],[2134,36195],[2135,36195],[2136,36176],[2137,36176],[2138,36195],[2139,36176],[2140,36176],[2141,36197],[2142,36197],[2143,36176],[2144,36176],[2145,36197],[2146,36197],[2147,36195],[2148,36195],[2149,36197],[2150,36176],[2151,36197],[2152,36197],[2153,36176],[2154,36197],[2155,36195],[2156,36176],[2157,36176],[2158,36176],[2159,36176],[2160,36195],[2161,36203],[2162,36217],[2163,36176],[2164,36176],[2165,36217],[2166,36176],[2167,36176],[2168,36207],[2169,36207],[2170,36203],[2171,36176],[2172,36176],[2173,36176],[2174,36195],[2175,36203],[2176,36176],[2177,36176],[2178,36176],[2179,36176],[2180,36203],[2181,36176],[2182,36176],[2183,36176],[2184,36176],[2185,36197],[2186,36203],[2187,36197],[2188,36195],[2189,36176],[2190,36176],[2191,36176],[2192,36176],[2193,36203],[2194,36176],[2195,36176],[2196,36203],[2197,36197],[2198,36203],[2199,36197],[2200,36195],[2201,36176],[2202,36176],[2203,36209],[2204,36209],[2205,36209],[2206,36176],[2207,36197],[2208,36176],[2209,36197],[2210,36203],[2211,36176],[2212,36203],[2213,36203],[2214,36203],[2215,36203],[2216,36203],[2217,36203],[2218,36203],[2219,36176],[2220,36176],[2221,36197],[2222,36176],[2223,36197],[2224,36176],[2225,36195],[2226,36176],[2227,36176],[2228,36176],[2229,36176],[2230,36176],[2231,36176],[2232,36197],[2233,36176],[2234,36197],[2235,36203],[2236,36203],[2237,36203],[2238,36203],[2239,36203],[2240,36203],[2241,36176],[2242,36197],[2243,36176],[2244,36197],[2245,36195],[2246,36176],[2247,36176],[2248,36176],[2249,36176],[2250,36176],[2251,36203],[2252,36203],[2253,36195],[2254,36176],[2255,36203],[2256,36176],[2257,36209],[2258,36211],[2259,36211],[2260,36211],[2261,36211],[2262,36217],[2263,36176],[2264,36176],[2265,36217],[2266,36176],[2267,36176],[2268,36217],[2269,36176],[2270,36176],[2271,36217],[2272,36176],[2273,36176],[2274,36176],[2275,36197],[2276,36176],[2277,36197],[2278,36203],[2279,36203],[2280,36176],[2281,36176],[2282,36203],[2283,36176],[2284,36203],[2285,36176],[2286,36176],[2287,36203],[2288,36176],[2289,36176],[2290,36203],[2291,36176],[2292,36176],[2293,36203],[2294,36176],[2295,36203],[2296,36176],[2297,36203],[2298,36176],[2299,36176],[2300,36203],[2301,36176],[2302,36176],[2303,36203],[2304,36176],[2305,36176],[2306,36203],[2307,36176],[2308,36214],[2309,36214],[2310,36214],[2311,36176],[2312,36197],[2313,36176],[2314,36197],[2315,36176],[2316,36176],[2317,36176],[2318,36176],[2319,36195],[2320,36176],[2321,36176],[2322,36195],[2323,36176],[2324,36176],[2325,36207],[2326,36207],[2327,36215],[2328,36215],[2329,36195],[2330,36195],[2331,36195],[2332,36176],[2333,36176],[2334,36195],[2335,36195],[2336,36176],[2337,36176],[2338,36195],[2339,36176],[2340,36203],[2341,36176],[2342,36195],[2343,36176],[2344,36176],[2345,36195],[2346,36195],[2347,36176],[2348,36176],[2349,36195],[2350,36176],[2351,36203],[2352,36176],[2353,36195],[2354,36176],[2355,36176],[2356,36195],[2357,36176],[2358,36176],[2359,36176],[2360,36176],[2361,36176],[2362,36176],[2363,36176],[2364,36203],[2365,36176],[2366,36203],[2367,36176],[2368,36195],[2369,36195],[2370,36195],[2371,36195],[2372,36176],[2373,36197],[2374,36216],[2375,36176],[2376,36176],[2377,36197],[2378,36197],[2379,36195],[2380,36195],[2381,36195],[2382,36195],[2383,36176],[2384,36176],[2385,36176],[2386,36176],[2387,36195],[2388,36176],[2389,36176],[2390,36216],[2391,36176],[2392,36176],[2393,36176],[2394,36176],[2395,36195],[2396,36176],[2397,36176],[2398,36216],[2399,36176],[2400,36176],[2401,36206],[2402,36218],[2403,36218],[2404,36206],[2405,36197],[2406,36197],[2407,36176],[2408,36176],[2409,36203],[2410,36197],[2411,36203],[2412,36197],[2413,36176],[2414,36176],[2415,36176],[2416,36176],[2417,36176],[2418,36176],[2419,36176],[2420,36176],[2421,36176],[2422,36203],[2423,36176],[2424,36176],[2425,36176],[2426,36203],[2427,36176],[2428,36203],[2429,36176],[2430,36195],[2431,36176],[2432,36176],[2433,36195],[2434,36217],[2435,36217],[2436,36217],[2437,36217],[2438,36217],[2439,36217],[2440,36217],[2441,36217],[2442,36217],[2443,36217],[2444,36217],[2445,36217],[2446,36176],[2447,36195],[2448,36176],[2449,36176],[2450,36176],[2451,36176],[2452,36176],[2453,36176],[2454,36195],[2455,36195],[2456,36195],[2457,36176],[2458,36176],[2459,36195],[2460,36176],[2461,36176],[2462,36195],[2463,36176],[2464,36176],[2465,36176],[2466,36203],[2467,36176],[2468,36195],[2469,36176],[2470,36176],[2471,36195],[2472,36176],[2473,36176],[2474,36195],[2475,36176],[2476,36176],[2477,36195],[2478,36176],[2479,36176],[2480,36195],[2481,36176],[2482,36176],[2483,36195],[2484,36176],[2485,36176],[2486,36195],[2487,36176],[2488,36176],[2489,36195],[2490,36176],[2491,36203],[2492,36176],[2493,36195],[2494,36195],[2495,36195],[2496,36195],[2497,36176],[2498,36176],[2499,36195],[2500,36176],[2501,36176],[2502,36195],[2503,36176],[2504,36176],[2505,36195],[2506,36176],[2507,36176],[2508,36195],[2509,36176],[2510,36176],[2511,36176],[2512,36176],[2513,36197],[2514,36197],[2515,36202],[2516,36202],[2517,36176],[2518,36202],[2519,36202],[2520,36202],[2521,36176],[2522,36202],[2523,36175],[2524,36203],[2525,36175],[2526,36202],[2527,36202],[2528,36176],[2529,36202],[2530,36202],[2531,36202],[2532,36176],[2533,36202],[2534,36175],[2535,36203],[2536,36175],[2537,36176],[2538,36176],[2539,36176],[2540,36176],[2541,36176],[2542,36176],[2543,36176],[2544,36176],[2545,36175],[2546,36175],[2547,36175],[2548,36202],[2549,36175],[2550,36175],[2551,36195],[2552,36197],[2553,36197],[2554,36195],[2555,36195],[2556,36197],[2557,36197],[2558,36195],[2559,36202],[2560,36202],[2561,36202],[2562,36203],[2563,36175],[2564,36203],[2565,36175],[2566,36202],[2567,36202],[2568,36202],[2569,36202],[2570,36202],[2571,36197],[2572,36216],[2573,36176],[2574,36176],[2575,36175],[2576,36175],[2577,36202],[2578,36202],[2579,36202],[2580,36202],[2581,36202],[2582,36175],[2583,36175],[2584,36175],[2585,36202],[2586,36202],[2587,36202],[2588,36175],[2589,36175],[2590,36202],[2591,36202],[2592,36175],[2593,36175],[2594,36195],[2595,36176],[2596,36176],[2597,36216],[2598,36176],[2599,36203],[2600,36176],[2601,36176],[2602,36176],[2603,36195],[2604,36176],[2605,36176],[2606,36216],[2607,36176],[2608,36203],[2609,36176],[2610,36206],[2611,36218],[2612,36218],[2613,36206],[2614,36197],[2615,36197],[2616,36176],[2617,36176],[2618,36203],[2619,36175],[2620,36195],[2621,36195],[2622,36203],[2623,36195],[2624,36195],[2625,36195],[2626,36195],[2627,36195],[2628,36195],[2629,36203],[2630,36195],[2631,36195],[2632,36195],[2633,36195],[2634,36203],[2635,36195],[2636,36195],[2637,36203],[2638,36195],[2639,36195],[2640,36197],[2641,36203],[2642,36197],[2643,36176],[2644,36176],[2645,36176],[2646,36176],[2647,36176],[2648,36176],[2649,36176],[2650,36176],[2651,36175],[2652,36175],[2653,36176],[2654,36203],[2655,36176],[2656,36176],[2657,36176],[2658,36203],[2659,36175],[2660,36202],[2661,36176],[2662,36203],[2663,36176],[2664,36175],[2665,36175],[2666,36175],[2667,36175],[2668,36175],[2669,36203],[2670,36175],[2671,36175],[2672,36175],[2673,36175],[2674,36175],[2675,36175],[2676,36175],[2677,36175],[2678,36175],[2679,36203],[2680,36175],[2681,36175],[2682,36175],[2683,36175],[2684,36175],[2685,36175],[2686,36175],[2687,36175],[2688,36175],[2689,36203],[2690,36175],[2691,36175],[2692,36203],[2693,36175],[2694,36175],[2695,36217],[2696,36217],[2697,36217],[2698,36217],[2699,36217],[2700,36217],[2701,36217],[2702,36217],[2703,36217],[2704,36217],[2705,36217],[2706,36217],[2707,36202],[2708,36202],[2709,36176],[2710,36176],[2711,36176],[2712,36176],[2713,36175],[2714,36175],[2715,36202],[2716,36202],[2717,36202],[2718,36202],[2719,36202],[2720,36202],[2721,36202],[2722,36202],[2723,36202],[2724,36202],[2725,36202],[2726,36202],[2727,36195],[2728,36202],[2729,36202],[2730,36175],[2731,36203],[2732,36175],[2733,36202],[2734,36202],[2735,36176],[2736,36202],[2737,36202],[2738,36176],[2739,36195],[2740,36202],[2741,36176],[2742,36202],[2743,36202],[2744,36202],[2745,36202],[2746,36202],[2747,36202],[2748,36202],[2749,36195],[2750,36202],[2751,36202],[2752,36176],[2753,36176],[2754,36175],[2755,36203],[2756,36175],[2757,36175],[2758,36175],[2759,36175],[2760,36175],[2761,36195],[2762,36176],[2763,36176],[2764,36195],[2765,36175],[2766,36203],[2767,36175],[2768,36175],[2769,36202],[2770,36175],[2771,36175],[2772,36175],[2773,36202],[2774,36202],[2775,36202],[2776,36202],[2777,36175],[2778,36203],[2779,36175],[2780,36202],[2781,36202],[2782,36202],[2783,36202],[2784,36176],[2785,36176],[2786,36195],[2787,36176],[2788,36176],[2789,36195],[2790,36175],[2791,36175],[2792,36175],[2793,36195],[2794,36176],[2795,36176],[2796,36195],[2797,36175],[2798,36175],[2799,36175],[2800,36175],[2801,36175],[2802,36175],[2803,36175],[2804,36203],[2805,36175],[2806,36175],[2807,36202],[2808,36202],[2809,36202],[2810,36202],[2811,36175],[2812,36175],[2813,36202],[2814,36202],[2815,36202],[2816,36202],[2817,36175],[2818,36175],[2819,36176],[2820,36176],[2821,36175],[2822,36175],[2823,36202],[2824,36175],[2825,36175],[2826,36175],[2827,36203],[2828,36175],[2829,36175],[2830,36195],[2831,36176],[2832,36176],[2833,36195],[2834,36176],[2835,36203],[2836,36176],[2837,36195],[2838,36176],[2839,36176],[2840,36195],[2841,36176],[2842,36203],[2843,36176],[2844,36176],[2845,36203],[2846,36176],[2847,36195],[2848,36195],[2849,36195],[2850,36195],[2851,36204],[2852,36204],[2853,36204],[2854,36204],[2855,36176],[2856,36176],[2857,36195],[2858,36176],[2859,36176],[2860,36197],[2861,36197],[2862,36176],[2863,36176],[2864,36176],[2865,36197],[2866,36197],[2867,36176],[2868,36195],[2869,36195],[2870,36206],[2871,36197],[2872,36176],[2873,36197],[2874,36197],[2875,36176],[2876,36197],[2877,36176],[2878,36197],[2879,36197],[2880,36176],[2881,36195],[2882,36176],[2883,36207],[2884,36207],[2885,36176],[2886,36176],[2887,36176],[2888,36195],[2889,36195],[2890,36195],[2891,36176],[2892,36176],[2893,36176],[2894,36176],[2895,36203],[2896,36176],[2897,36176],[2898,36203],[2899,36203],[2900,36203],[2901,36203],[2902,36203],[2903,36203],[2904,36203],[2905,36176],[2906,36176],[2907,36176],[2908,36176],[2909,36176],[2910,36203],[2911,36176],[2912,36176],[2913,36176],[2914,36176],[2915,36203],[2916,36176],[2917,36176],[2918,36176],[2919,36208],[2920,36195],[2921,36176],[2922,36176],[2923,36195],[2924,36195],[2925,36176],[2926,36176],[2927,36195],[2928,36176],[2929,36203],[2930,36176],[2931,36176],[2932,36203],[2933,36176],[2934,36195],[2935,36176],[2936,36176],[2937,36195],[2938,36195],[2939,36176],[2940,36176],[2941,36195],[2942,36176],[2943,36176],[2944,36195],[2945,36176],[2946,36176],[2947,36195],[2948,36195],[2949,36176],[2950,36176],[2951,36195],[2952,36195],[2953,36176],[2954,36176],[2955,36195],[2956,36195],[2957,36176],[2958,36176],[2959,36195],[2960,36195],[2961,36176],[2962,36176],[2963,36195],[2964,36195],[2965,36176],[2966,36176],[2967,36195],[2968,36176],[2969,36176],[2970,36195],[2971,36176],[2972,36176],[2973,36195],[2974,36195],[2975,36176],[2976,36176],[2977,36195],[2978,36176],[2979,36176],[2980,36195],[2981,36176],[2982,36176],[2983,36195],[2984,36195],[2985,36176],[2986,36176],[2987,36195],[2988,36176],[2989,36176],[2990,36176],[2991,36176],[2992,36176],[2993,36176],[2994,36176],[2995,36176],[2996,36176],[2997,36176],[2998,36203],[2999,36203],[3000,36207],[3001,36207],[3002,36203],[3003,36203],[3004,36203],[3005,36176],[3006,36197],[3007,36203],[3008,36197],[3009,36203],[3010,36203],[3011,36176],[3012,36197],[3013,36203],[3014,36197],[3015,36176],[3016,36197],[3017,36176],[3018,36197],[3019,36203],[3020,36176],[3021,36203],[3022,36203],[3023,36203],[3024,36203],[3025,36203],[3026,36203],[3027,36203],[3028,36176],[3029,36176],[3030,36197],[3031,36176],[3032,36197],[3033,36176],[3034,36176],[3035,36176],[3036,36176],[3037,36195],[3038,36203],[3039,36176],[3040,36176],[3041,36176],[3042,36176],[3043,36203],[3044,36176],[3045,36176],[3046,36176],[3047,36176],[3048,36176],[3049,36197],[3050,36203],[3051,36197],[3052,36195],[3053,36176],[3054,36176],[3055,36176],[3056,36176],[3057,36203],[3058,36176],[3059,36176],[3060,36203],[3061,36176],[3062,36176],[3063,36197],[3064,36203],[3065,36197],[3066,36195],[3067,36176],[3068,36176],[3069,36209],[3070,36209],[3071,36209],[3072,36176],[3073,36197],[3074,36176],[3075,36197],[3076,36203],[3077,36176],[3078,36176],[3079,36203],[3080,36203],[3081,36203],[3082,36203],[3083,36203],[3084,36203],[3085,36203],[3086,36176],[3087,36176],[3088,36197],[3089,36176],[3090,36197],[3091,36176],[3092,36176],[3093,36176],[3094,36176],[3095,36195],[3096,36176],[3097,36176],[3098,36176],[3099,36176],[3100,36176],[3101,36203],[3102,36176],[3103,36176],[3104,36176],[3105,36197],[3106,36176],[3107,36197],[3108,36203],[3109,36203],[3110,36203],[3111,36203],[3112,36203],[3113,36203],[3114,36176],[3115,36197],[3116,36176],[3117,36197],[3118,36176],[3119,36197],[3120,36176],[3121,36197],[3122,36203],[3123,36203],[3124,36203],[3125,36203],[3126,36203],[3127,36203],[3128,36176],[3129,36197],[3130,36176],[3131,36197],[3132,36195],[3133,36176],[3134,36176],[3135,36176],[3136,36176],[3137,36176],[3138,36203],[3139,36203],[3140,36203],[3141,36203],[3142,36195],[3143,36176],[3144,36203],[3145,36176],[3146,36176],[3147,36203],[3148,36176],[3149,36209],[3150,36211],[3151,36211],[3152,36211],[3153,36211],[3154,36176],[3155,36197],[3156,36197],[3157,36176],[3158,36176],[3159,36197],[3160,36197],[3161,36176],[3162,36203],[3163,36203],[3164,36203],[3165,36203],[3166,36176],[3167,36176],[3168,36176],[3169,36176],[3170,36203],[3171,36176],[3172,36203],[3173,36176],[3174,36203],[3175,36176],[3176,36203],[3177,36176],[3178,36176],[3179,36203],[3180,36176],[3181,36176],[3182,36203],[3183,36176],[3184,36176],[3185,36203],[3186,36176],[3187,36176],[3188,36203],[3189,36176],[3190,36176],[3191,36203],[3192,36176],[3193,36176],[3194,36203],[3195,36176],[3196,36203],[3197,36203],[3198,36176],[3199,36203],[3200,36176],[3201,36176],[3202,36203],[3203,36176],[3204,36176],[3205,36203],[3206,36176],[3207,36176],[3208,36203],[3209,36176],[3210,36197],[3211,36203],[3212,36197],[3213,36176],[3214,36203],[3215,36176],[3216,36176],[3217,36203],[3218,36176],[3219,36176],[3220,36203],[3221,36176],[3222,36176],[3223,36203],[3224,36176],[3225,36214],[3226,36214],[3227,36214],[3228,36176],[3229,36176],[3230,36176],[3231,36176],[3232,36176],[3233,36176],[3234,36176],[3235,36176],[3236,36176],[3237,36176],[3238,36176],[3239,36176],[3240,36176],[3241,36176],[3242,36176],[3243,36176],[3244,36176],[3245,36176],[3246,36176],[3247,36176],[3248,36176],[3249,36197],[3250,36197],[3251,36176],[3252,36176],[3253,36197],[3254,36197],[3255,36176],[3256,36176],[3257,36176],[3258,36176],[3259,36176],[3260,36176],[3261,36176],[3262,36176],[3263,36176],[3264,36176],[3265,36195],[3266,36195],[3267,36176],[3268,36176],[3269,36176],[3270,36176],[3271,36176],[3272,36203],[3273,36176],[3274,36176],[3275,36195],[3276,36176],[3277,36176],[3278,36195],[3279,36176],[3280,36203],[3281,36176],[3282,36176],[3283,36207],[3284,36207],[3285,36215],[3286,36215],[3287,36195],[3288,36195],[3289,36195],[3290,36176],[3291,36176],[3292,36216],[3293,36176],[3294,36176],[3295,36176],[3296,36203],[3297,36203],[3298,36203],[3299,36176],[3300,36203],[3301,36176],[3302,36203],[3303,36176],[3304,36203],[3305,36176],[3306,36176],[3307,36203],[3308,36176],[3309,36176],[3310,36203],[3311,36176],[3312,36176],[3313,36203],[3314,36176],[3315,36176],[3316,36203],[3317,36176],[3318,36176],[3319,36203],[3320,36176],[3321,36176],[3322,36203],[3323,36176],[3324,36176],[3325,36203],[3326,36176],[3327,36176],[3328,36203],[3329,36176],[3330,36176],[3331,36203],[3332,36176],[3333,36176],[3334,36203],[3335,36176],[3336,36195],[3337,36176],[3338,36176],[3339,36195],[3340,36176],[3341,36176],[3342,36195],[3343,36176],[3344,36176],[3345,36195],[3346,36176],[3347,36203],[3348,36176],[3349,36176],[3350,36203],[3351,36176],[3352,36195],[3353,36195],[3354,36195],[3355,36195],[3356,36176],[3357,36176],[3358,36195],[3359,36176],[3360,36176],[3361,36197],[3362,36197],[3363,36176],[3364,36176],[3365,36197],[3366,36197],[3367,36195],[3368,36195],[3369,36206],[3370,36195],[3371,36176],[3372,36176],[3373,36195],[3374,36176],[3375,36203],[3376,36176],[3377,36197],[3378,36176],[3379,36197],[3380,36197],[3381,36176],[3382,36197],[3383,36176],[3384,36197],[3385,36197],[3386,36176],[3387,36195],[3388,36176],[3389,36176],[3390,36176],[3391,36176],[3392,36195],[3393,36195],[3394,36176],[3395,36176],[3396,36195],[3397,36195],[3398,36176],[3399,36176],[3400,36195],[3401,36176],[3402,36203],[3403,36176],[3404,36176],[3405,36203],[3406,36176],[3407,36195],[3408,36176],[3409,36176],[3410,36195],[3411,36195],[3412,36176],[3413,36176],[3414,36195],[3415,36176],[3416,36176],[3417,36195],[3418,36176],[3419,36176],[3420,36195],[3421,36195],[3422,36176],[3423,36176],[3424,36195],[3425,36195],[3426,36176],[3427,36176],[3428,36195],[3429,36195],[3430,36176],[3431,36176],[3432,36195],[3433,36195],[3434,36176],[3435,36176],[3436,36195],[3437,36195],[3438,36176],[3439,36176],[3440,36195],[3441,36176],[3442,36176],[3443,36195],[3444,36176],[3445,36176],[3446,36195],[3447,36195],[3448,36176],[3449,36176],[3450,36195],[3451,36176],[3452,36176],[3453,36195],[3454,36176],[3455,36176],[3456,36195],[3457,36195],[3458,36176],[3459,36176],[3460,36195],[3461,36176],[3462,36176],[3463,36176],[3464,36176],[3465,36176],[3466,36176],[3467,36176],[3468,36176],[3469,36176],[3470,36176],[3471,36203],[3472,36203],[3473,36217],[3474,36176],[3475,36176],[3476,36217],[3477,36176],[3478,36176],[3479,36217],[3480,36176],[3481,36176],[3482,36217],[3483,36176],[3484,36176],[3485,36207],[3486,36207],[3487,36203],[3488,36203],[3489,36203],[3490,36176],[3491,36197],[3492,36203],[3493,36197],[3494,36203],[3495,36203],[3496,36176],[3497,36197],[3498,36203],[3499,36197],[3500,36176],[3501,36197],[3502,36176],[3503,36197],[3504,36203],[3505,36176],[3506,36203],[3507,36203],[3508,36203],[3509,36203],[3510,36203],[3511,36203],[3512,36203],[3513,36176],[3514,36176],[3515,36197],[3516,36176],[3517,36197],[3518,36176],[3519,36176],[3520,36176],[3521,36176],[3522,36195],[3523,36203],[3524,36195],[3525,36176],[3526,36176],[3527,36176],[3528,36176],[3529,36203],[3530,36176],[3531,36176],[3532,36176],[3533,36176],[3534,36176],[3535,36176],[3536,36176],[3537,36197],[3538,36203],[3539,36197],[3540,36176],[3541,36176],[3542,36176],[3543,36195],[3544,36176],[3545,36176],[3546,36176],[3547,36176],[3548,36203],[3549,36176],[3550,36176],[3551,36203],[3552,36176],[3553,36176],[3554,36197],[3555,36203],[3556,36197],[3557,36195],[3558,36176],[3559,36176],[3560,36209],[3561,36209],[3562,36209],[3563,36176],[3564,36197],[3565,36176],[3566,36197],[3567,36203],[3568,36176],[3569,36176],[3570,36203],[3571,36203],[3572,36203],[3573,36203],[3574,36203],[3575,36203],[3576,36203],[3577,36176],[3578,36176],[3579,36197],[3580,36176],[3581,36197],[3582,36176],[3583,36176],[3584,36176],[3585,36195],[3586,36195],[3587,36176],[3588,36176],[3589,36176],[3590,36176],[3591,36176],[3592,36176],[3593,36176],[3594,36176],[3595,36176],[3596,36176],[3597,36176],[3598,36197],[3599,36176],[3600,36197],[3601,36203],[3602,36203],[3603,36203],[3604,36203],[3605,36203],[3606,36203],[3607,36176],[3608,36197],[3609,36176],[3610,36197],[3611,36176],[3612,36197],[3613,36176],[3614,36197],[3615,36203],[3616,36203],[3617,36203],[3618,36203],[3619,36203],[3620,36203],[3621,36176],[3622,36197],[3623,36176],[3624,36197],[3625,36195],[3626,36195],[3627,36176],[3628,36176],[3629,36176],[3630,36176],[3631,36176],[3632,36176],[3633,36176],[3634,36176],[3635,36176],[3636,36176],[3637,36203],[3638,36203],[3639,36203],[3640,36203],[3641,36195],[3642,36176],[3643,36203],[3644,36176],[3645,36176],[3646,36203],[3647,36176],[3648,36209],[3649,36211],[3650,36211],[3651,36211],[3652,36211],[3653,36217],[3654,36176],[3655,36176],[3656,36217],[3657,36176],[3658,36176],[3659,36217],[3660,36176],[3661,36176],[3662,36217],[3663,36176],[3664,36176],[3665,36176],[3666,36197],[3667,36197],[3668,36176],[3669,36176],[3670,36197],[3671,36197],[3672,36176],[3673,36203],[3674,36203],[3675,36203],[3676,36203],[3677,36176],[3678,36176],[3679,36176],[3680,36176],[3681,36203],[3682,36176],[3683,36203],[3684,36176],[3685,36203],[3686,36176],[3687,36203],[3688,36176],[3689,36176],[3690,36203],[3691,36176],[3692,36176],[3693,36203],[3694,36176],[3695,36176],[3696,36203],[3697,36176],[3698,36176],[3699,36203],[3700,36176],[3701,36176],[3702,36203],[3703,36176],[3704,36176],[3705,36203],[3706,36176],[3707,36203],[3708,36203],[3709,36176],[3710,36203],[3711,36176],[3712,36176],[3713,36203],[3714,36176],[3715,36176],[3716,36203],[3717,36176],[3718,36176],[3719,36203],[3720,36176],[3721,36197],[3722,36203],[3723,36197],[3724,36176],[3725,36203],[3726,36176],[3727,36176],[3728,36203],[3729,36176],[3730,36176],[3731,36203],[3732,36176],[3733,36176],[3734,36203],[3735,36176],[3736,36214],[3737,36214],[3738,36214],[3739,36176],[3740,36176],[3741,36176],[3742,36176],[3743,36176],[3744,36176],[3745,36176],[3746,36176],[3747,36176],[3748,36176],[3749,36176],[3750,36176],[3751,36176],[3752,36176],[3753,36176],[3754,36176],[3755,36176],[3756,36176],[3757,36176],[3758,36176],[3759,36176],[3760,36197],[3761,36197],[3762,36176],[3763,36176],[3764,36197],[3765,36197],[3766,36176],[3767,36176],[3768,36176],[3769,36176],[3770,36176],[3771,36195],[3772,36176],[3773,36176],[3774,36195],[3775,36176],[3776,36176],[3777,36207],[3778,36207],[3779,36215],[3780,36215],[3781,36195],[3782,36195],[3783,36195],[3784,36176],[3785,36176],[3786,36195],[3787,36195],[3788,36176],[3789,36176],[3790,36195],[3791,36176],[3792,36203],[3793,36176],[3794,36176],[3795,36203],[3796,36176],[3797,36195],[3798,36176],[3799,36176],[3800,36195],[3801,36195],[3802,36176],[3803,36176],[3804,36195],[3805,36176],[3806,36203],[3807,36176],[3808,36176],[3809,36203],[3810,36176],[3811,36195],[3812,36176],[3813,36176],[3814,36195],[3815,36176],[3816,36176],[3817,36176],[3818,36176],[3819,36176],[3820,36176],[3821,36176],[3822,36203],[3823,36176],[3824,36203],[3825,36176],[3826,36203],[3827,36176],[3828,36203],[3829,36176],[3830,36195],[3831,36195],[3832,36195],[3833,36195],[3834,36176],[3835,36197],[3836,36176],[3837,36216],[3838,36176],[3839,36176],[3840,36197],[3841,36197],[3842,36195],[3843,36195],[3844,36195],[3845,36195],[3846,36176],[3847,36176],[3848,36176],[3849,36176],[3850,36176],[3851,36195],[3852,36176],[3853,36176],[3854,36216],[3855,36176],[3856,36176],[3857,36176],[3858,36176],[3859,36195],[3860,36176],[3861,36176],[3862,36216],[3863,36176],[3864,36176],[3865,36206],[3866,36218],[3867,36218],[3868,36206],[3869,36197],[3870,36197],[3871,36197],[3872,36197],[3873,36176],[3874,36176],[3875,36203],[3876,36176],[3877,36176],[3878,36176],[3879,36176],[3880,36176],[3881,36176],[3882,36176],[3883,36176],[3884,36176],[3885,36176],[3886,36176],[3887,36176],[3888,36176],[3889,36176],[3890,36176],[3891,36176],[3892,36176],[3893,36176],[3894,36176],[3895,36176],[3896,36176],[3897,36176],[3898,36176],[3899,36176],[3900,36197],[3901,36203],[3902,36197],[3903,36197],[3904,36203],[3905,36197],[3906,36176],[3907,36176],[3908,36176],[3909,36176],[3910,36176],[3911,36176],[3912,36176],[3913,36176],[3914,36176],[3915,36203],[3916,36176],[3917,36176],[3918,36203],[3919,36176],[3920,36176],[3921,36176],[3922,36203],[3923,36176],[3924,36203],[3925,36176],[3926,36176],[3927,36203],[3928,36176],[3929,36195],[3930,36176],[3931,36176],[3932,36195],[3933,36217],[3934,36217],[3935,36217],[3936,36217],[3937,36217],[3938,36217],[3939,36217],[3940,36217],[3941,36217],[3942,36217],[3943,36217],[3944,36217],[3945,36176],[3946,36195],[3947,36176],[3948,36176],[3949,36176],[3950,36176],[3951,36176],[3952,36176],[3953,36195],[3954,36195],[3955,36195],[3956,36176],[3957,36176],[3958,36195],[3959,36176],[3960,36176],[3961,36195],[3962,36176],[3963,36176],[3964,36176],[3965,36203],[3966,36176],[3967,36176],[3968,36203],[3969,36176],[3970,36195],[3971,36176],[3972,36176],[3973,36195],[3974,36176],[3975,36176],[3976,36195],[3977,36176],[3978,36176],[3979,36195],[3980,36176],[3981,36176],[3982,36195],[3983,36176],[3984,36176],[3985,36195],[3986,36176],[3987,36176],[3988,36176],[3989,36176],[3990,36176],[3991,36176],[3992,36195],[3993,36176],[3994,36176],[3995,36195],[3996,36176],[3997,36176],[3998,36195],[3999,36176],[4000,36176],[4001,36195],[4002,36176],[4003,36203],[4004,36176],[4005,36176],[4006,36203],[4007,36176],[4008,36195],[4009,36195],[4010,36195],[4011,36195],[4012,36176],[4013,36176],[4014,36195],[4015,36176],[4016,36176],[4017,36195],[4018,36195],[4019,36176],[4020,36176],[4021,36195],[4022,36195],[4023,36176],[4024,36176],[4025,36195],[4026,36176],[4027,36176],[4028,36195],[4029,36176],[4030,36176],[4031,36195],[4032,36176],[4033,36176],[4034,36176],[4035,36176],[4036,36197],[4037,36197],[4038,36195],[4039,36176],[4040,36176],[4041,36195],[4042,36195],[4043,36176],[4044,36176],[4045,36195],[4046,36176],[4047,36203],[4048,36176],[4049,36176],[4050,36203],[4051,36176],[4052,36195],[4053,36195],[4054,36195],[4055,36195],[4056,36176],[4057,36176],[4058,36195],[4059,36176],[4060,36176],[4061,36197],[4062,36197],[4063,36176],[4064,36176],[4065,36197],[4066,36197],[4067,36195],[4068,36195],[4069,36197],[4070,36176],[4071,36197],[4072,36197],[4073,36176],[4074,36197],[4075,36176],[4076,36197],[4077,36197],[4078,36176],[4079,36195],[4080,36176],[4081,36176],[4082,36176],[4083,36176],[4084,36195],[4085,36203],[4086,36203],[4087,36217],[4088,36176],[4089,36176],[4090,36217],[4091,36176],[4092,36176],[4093,36207],[4094,36207],[4095,36203],[4096,36203],[4097,36203],[4098,36176],[4099,36197],[4100,36203],[4101,36197],[4102,36203],[4103,36203],[4104,36176],[4105,36197],[4106,36203],[4107,36197],[4108,36176],[4109,36197],[4110,36176],[4111,36197],[4112,36203],[4113,36176],[4114,36203],[4115,36203],[4116,36203],[4117,36203],[4118,36203],[4119,36203],[4120,36203],[4121,36176],[4122,36176],[4123,36197],[4124,36176],[4125,36197],[4126,36176],[4127,36176],[4128,36176],[4129,36176],[4130,36195],[4131,36203],[4132,36176],[4133,36176],[4134,36176],[4135,36176],[4136,36203],[4137,36176],[4138,36176],[4139,36176],[4140,36176],[4141,36197],[4142,36203],[4143,36197],[4144,36195],[4145,36176],[4146,36176],[4147,36176],[4148,36176],[4149,36203],[4150,36176],[4151,36176],[4152,36203],[4153,36176],[4154,36197],[4155,36203],[4156,36197],[4157,36195],[4158,36176],[4159,36176],[4160,36209],[4161,36209],[4162,36209],[4163,36176],[4164,36197],[4165,36176],[4166,36197],[4167,36203],[4168,36176],[4169,36203],[4170,36203],[4171,36203],[4172,36203],[4173,36203],[4174,36203],[4175,36203],[4176,36176],[4177,36176],[4178,36197],[4179,36176],[4180,36197],[4181,36176],[4182,36176],[4183,36195],[4184,36176],[4185,36176],[4186,36176],[4187,36176],[4188,36176],[4189,36176],[4190,36197],[4191,36176],[4192,36197],[4193,36203],[4194,36203],[4195,36203],[4196,36203],[4197,36203],[4198,36203],[4199,36176],[4200,36197],[4201,36176],[4202,36197],[4203,36176],[4204,36197],[4205,36176],[4206,36197],[4207,36203],[4208,36203],[4209,36203],[4210,36203],[4211,36203],[4212,36203],[4213,36176],[4214,36197],[4215,36176],[4216,36197],[4217,36195],[4218,36176],[4219,36176],[4220,36176],[4221,36176],[4222,36176],[4223,36203],[4224,36203],[4225,36203],[4226,36203],[4227,36195],[4228,36176],[4229,36203],[4230,36176],[4231,36176],[4232,36203],[4233,36176],[4234,36209],[4235,36211],[4236,36211],[4237,36211],[4238,36211],[4239,36217],[4240,36176],[4241,36176],[4242,36217],[4243,36176],[4244,36176],[4245,36217],[4246,36176],[4247,36176],[4248,36217],[4249,36176],[4250,36176],[4251,36176],[4252,36197],[4253,36197],[4254,36176],[4255,36176],[4256,36197],[4257,36197],[4258,36176],[4259,36203],[4260,36203],[4261,36203],[4262,36203],[4263,36176],[4264,36176],[4265,36176],[4266,36176],[4267,36203],[4268,36176],[4269,36203],[4270,36176],[4271,36203],[4272,36176],[4273,36203],[4274,36176],[4275,36176],[4276,36203],[4277,36176],[4278,36176],[4279,36203],[4280,36176],[4281,36176],[4282,36203],[4283,36176],[4284,36176],[4285,36203],[4286,36176],[4287,36176],[4288,36203],[4289,36176],[4290,36176],[4291,36203],[4292,36176],[4293,36203],[4294,36203],[4295,36176],[4296,36203],[4297,36176],[4298,36176],[4299,36203],[4300,36176],[4301,36176],[4302,36203],[4303,36176],[4304,36176],[4305,36203],[4306,36176],[4307,36176],[4308,36203],[4309,36176],[4310,36176],[4311,36203],[4312,36176],[4313,36176],[4314,36203],[4315,36176],[4316,36176],[4317,36203],[4318,36176],[4319,36214],[4320,36214],[4321,36214],[4322,36176],[4323,36197],[4324,36197],[4325,36176],[4326,36176],[4327,36197],[4328,36197],[4329,36176],[4330,36176],[4331,36176],[4332,36176],[4333,36176],[4334,36195],[4335,36176],[4336,36176],[4337,36195],[4338,36176],[4339,36176],[4340,36207],[4341,36207],[4342,36215],[4343,36215],[4344,36195],[4345,36195],[4346,36195],[4347,36176],[4348,36176],[4349,36195],[4350,36195],[4351,36176],[4352,36176],[4353,36195],[4354,36176],[4355,36203],[4356,36176],[4357,36176],[4358,36203],[4359,36176],[4360,36195],[4361,36176],[4362,36176],[4363,36195],[4364,36195],[4365,36176],[4366,36176],[4367,36195],[4368,36176],[4369,36203],[4370,36176],[4371,36176],[4372,36203],[4373,36176],[4374,36195],[4375,36176],[4376,36176],[4377,36195],[4378,36176],[4379,36176],[4380,36176],[4381,36176],[4382,36176],[4383,36176],[4384,36176],[4385,36203],[4386,36176],[4387,36203],[4388,36176],[4389,36203],[4390,36176],[4391,36203],[4392,36176],[4393,36195],[4394,36195],[4395,36195],[4396,36195],[4397,36176],[4398,36197],[4399,36216],[4400,36176],[4401,36176],[4402,36197],[4403,36197],[4404,36195],[4405,36195],[4406,36195],[4407,36195],[4408,36176],[4409,36176],[4410,36176],[4411,36176],[4412,36195],[4413,36176],[4414,36176],[4415,36216],[4416,36176],[4417,36176],[4418,36176],[4419,36176],[4420,36195],[4421,36176],[4422,36176],[4423,36216],[4424,36176],[4425,36176],[4426,36206],[4427,36218],[4428,36218],[4429,36206],[4430,36197],[4431,36197],[4432,36197],[4433,36197],[4434,36176],[4435,36176],[4436,36203],[4437,36197],[4438,36203],[4439,36197],[4440,36197],[4441,36203],[4442,36197],[4443,36176],[4444,36176],[4445,36176],[4446,36176],[4447,36176],[4448,36176],[4449,36176],[4450,36176],[4451,36176],[4452,36203],[4453,36176],[4454,36176],[4455,36203],[4456,36176],[4457,36176],[4458,36176],[4459,36203],[4460,36176],[4461,36203],[4462,36176],[4463,36176],[4464,36203],[4465,36176],[4466,36195],[4467,36176],[4468,36176],[4469,36195],[4470,36217],[4471,36217],[4472,36217],[4473,36217],[4474,36217],[4475,36217],[4476,36217],[4477,36217],[4478,36217],[4479,36217],[4480,36217],[4481,36217],[4482,36176],[4483,36195],[4484,36176],[4485,36176],[4486,36176],[4487,36176],[4488,36176],[4489,36176],[4490,36195],[4491,36195],[4492,36195],[4493,36176],[4494,36176],[4495,36195],[4496,36176],[4497,36176],[4498,36195],[4499,36176],[4500,36176],[4501,36176],[4502,36203],[4503,36176],[4504,36176],[4505,36203],[4506,36176],[4507,36195],[4508,36176],[4509,36176],[4510,36195],[4511,36176],[4512,36176],[4513,36195],[4514,36176],[4515,36176],[4516,36195],[4517,36176],[4518,36176],[4519,36195],[4520,36176],[4521,36176],[4522,36195],[4523,36176],[4524,36176],[4525,36195],[4526,36176],[4527,36176],[4528,36195],[4529,36176],[4530,36203],[4531,36176],[4532,36176],[4533,36203],[4534,36176],[4535,36195],[4536,36195],[4537,36195],[4538,36195],[4539,36176],[4540,36176],[4541,36195],[4542,36176],[4543,36176],[4544,36195],[4545,36176],[4546,36176],[4547,36195],[4548,36176],[4549,36176],[4550,36195],[4551,36176],[4552,36176],[4553,36176],[4554,36176],[4555,36197],[4556,36197],[4557,36195],[4558,36176],[4559,36176],[4560,36195],[4561,36195],[4562,36176],[4563,36176],[4564,36195],[4565,36176],[4566,36203],[4567,36176],[4568,36176],[4569,36203],[4570,36176],[4571,36195],[4572,36176],[4573,36176],[4574,36195],[4575,36195],[4576,36176],[4577,36176],[4578,36195],[4579,36176],[4580,36203],[4581,36176],[4582,36176],[4583,36203],[4584,36176],[4585,36176],[4586,36176],[4587,36176],[4588,36195],[4589,36197],[4590,36197],[4591,36195],[4592,36195],[4593,36197],[4594,36197],[4595,36195],[4596,36176],[4597,36176],[4598,36203],[4599,36176],[4600,36203],[4601,36176],[4602,36203],[4603,36176],[4604,36203],[4605,36176],[4606,36195],[4607,36195],[4608,36195],[4609,36195],[4610,36176],[4611,36197],[4612,36176],[4613,36216],[4614,36176],[4615,36176],[4616,36197],[4617,36197],[4618,36176],[4619,36195],[4620,36195],[4621,36195],[4622,36195],[4623,36176],[4624,36176],[4625,36176],[4626,36176],[4627,36176],[4628,36195],[4629,36176],[4630,36176],[4631,36216],[4632,36176],[4633,36203],[4634,36176],[4635,36176],[4636,36176],[4637,36195],[4638,36176],[4639,36176],[4640,36216],[4641,36176],[4642,36203],[4643,36176],[4644,36206],[4645,36218],[4646,36218],[4647,36206],[4648,36197],[4649,36197],[4650,36197],[4651,36197],[4652,36176],[4653,36176],[4654,36203],[4655,36176],[4656,36176],[4657,36176],[4658,36203],[4659,36176],[4660,36176],[4661,36176],[4662,36176],[4663,36176],[4664,36176],[4665,36176],[4666,36176],[4667,36203],[4668,36176],[4669,36176],[4670,36176],[4671,36176],[4672,36176],[4673,36176],[4674,36203],[4675,36176],[4676,36176],[4677,36176],[4678,36176],[4679,36203],[4680,36176],[4681,36176],[4682,36176],[4683,36197],[4684,36203],[4685,36197],[4686,36197],[4687,36203],[4688,36197],[4689,36176],[4690,36176],[4691,36176],[4692,36176],[4693,36176],[4694,36176],[4695,36176],[4696,36176],[4697,36176],[4698,36203],[4699,36176],[4700,36176],[4701,36203],[4702,36176],[4703,36176],[4704,36176],[4705,36203],[4706,36195],[4707,36176],[4708,36203],[4709,36176],[4710,36176],[4711,36203],[4712,36176],[4713,36176],[4714,36176],[4715,36176],[4716,36176],[4717,36176],[4718,36203],[4719,36176],[4720,36176],[4721,36176],[4722,36176],[4723,36176],[4724,36176],[4725,36176],[4726,36176],[4727,36176],[4728,36176],[4729,36203],[4730,36176],[4731,36176],[4732,36176],[4733,36176],[4734,36176],[4735,36176],[4736,36176],[4737,36176],[4738,36203],[4739,36176],[4740,36176],[4741,36176],[4742,36176],[4743,36203],[4744,36176],[4745,36176],[4746,36217],[4747,36217],[4748,36217],[4749,36217],[4750,36217],[4751,36217],[4752,36217],[4753,36217],[4754,36217],[4755,36217],[4756,36217],[4757,36217],[4758,36176],[4759,36195],[4760,36176],[4761,36176],[4762,36176],[4763,36176],[4764,36176],[4765,36176],[4766,36195],[4767,36195],[4768,36195],[4769,36176],[4770,36176],[4771,36195],[4772,36176],[4773,36176],[4774,36195],[4775,36176],[4776,36176],[4777,36176],[4778,36203],[4779,36176],[4780,36176],[4781,36203],[4782,36176],[4783,36195],[4784,36176],[4785,36176],[4786,36195],[4787,36176],[4788,36176],[4789,36195],[4790,36176],[4791,36176],[4792,36195],[4793,36176],[4794,36176],[4795,36195],[4796,36176],[4797,36176],[4798,36195],[4799,36176],[4800,36176],[4801,36176],[4802,36176],[4803,36176],[4804,36203],[4805,36176],[4806,36176],[4807,36195],[4808,36176],[4809,36176],[4810,36195],[4811,36176],[4812,36203],[4813,36176],[4814,36176],[4815,36176],[4816,36176],[4817,36176],[4818,36176],[4819,36195],[4820,36176],[4821,36176],[4822,36195],[4823,36176],[4824,36203],[4825,36176],[4826,36176],[4827,36203],[4828,36176],[4829,36195],[4830,36195],[4831,36195],[4832,36195],[4833,36176],[4834,36176],[4835,36195],[4836,36176],[4837,36176],[4838,36195],[4839,36195],[4840,36176],[4841,36176],[4842,36195],[4843,36176],[4844,36176],[4845,36176],[4846,36203],[4847,36176],[4848,36195],[4849,36176],[4850,36176],[4851,36195],[4852,36176],[4853,36176],[4854,36195],[4855,36176],[4856,36176],[4857,36195],[4858,36176],[4859,36176],[4860,36176],[4861,36176],[4862,36197],[4863,36197],[4864,36176],[4865,36176],[4866,36176],[4867,36203],[4868,36203],[4869,36176],[4870,36176],[4871,36176],[4872,36176],[4873,36219],[4874,36219],[4875,36176],[4876,36219],[4877,36203],[4878,36220],[4879,36220],[4880,36220],[4881,36220],[4882,36220],[4883,36203],[4884,36177],[4885,36176],[4886,36203],[4887,36176],[4888,36220],[4889,36203],[4890,36177],[4891,36220],[4892,36220],[4893,36220],[4894,36220],[4895,36221],[4896,36221],[4897,36222],[4898,36222],[4899,36222],[4900,36222],[4901,36222],[4902,36222],[4903,36176],[4904,36176],[4905,36219],[4906,36220],[4907,36177],[4908,36220],[4909,36220],[4910,36177],[4911,36220],[4912,36220],[4913,36220],[4914,36205],[4915,36205],[4916,36206],[4917,36178],[4918,36202],[4919,36178],[4920,36178],[4921,36178],[4922,36178],[4923,36178],[4924,36197],[4925,36175],[4926,36202],[4927,36202],[4928,36207],[4929,36207],[4930,36202],[4931,36202],[4932,36202],[4933,36202],[4934,36202],[4935,36220],[4936,36220],[4937,36203],[4938,36220],[4939,36220],[4940,36203],[4941,36203],[4942,36203],[4943,36220],[4944,36203],[4945,36220],[4946,36220],[4947,36203],[4948,36220],[4949,36178],[4950,36178],[4951,36178],[4952,36178],[4953,36220],[4954,36223],[4955,36195],[4956,36176],[4957,36176],[4958,36195],[4959,36195],[4960,36176],[4961,36176],[4962,36195],[4963,36175],[4964,36176],[4965,36203],[4966,36175],[4967,36176],[4968,36176],[4969,36203],[4970,36176],[4971,36175],[4972,36176],[4973,36203],[4974,36175],[4975,36176],[4976,36220],[4977,36195],[4978,36220],[4979,36176],[4980,36178],[4981,36176],[4982,36220],[4983,36195],[4984,36195],[4985,36176],[4986,36176],[4987,36195],[4988,36220],[4989,36177],[4990,36220],[4991,36177],[4992,36179],[4993,36179],[4994,36179],[4995,36179],[4996,36179],[4997,36179],[4998,36179],[4999,36195],[5000,36176],[5001,36176],[5002,36195],[5003,36195],[5004,36176],[5005,36176],[5006,36195],[5007,36220],[5008,36177],[5009,36220],[5010,36177],[5011,36220],[5012,36195],[5013,36220],[5014,36176],[5015,36179],[5016,36176],[5017,36220],[5018,36195],[5019,36195],[5020,36176],[5021,36176],[5022,36195],[5023,36220],[5024,36177],[5025,36220],[5026,36177],[5027,36179],[5028,36179],[5029,36179],[5030,36179],[5031,36179],[5032,36179],[5033,36179],[5034,36195],[5035,36176],[5036,36176],[5037,36195],[5038,36195],[5039,36176],[5040,36176],[5041,36195],[5042,36220],[5043,36177],[5044,36220],[5045,36177],[5046,36220],[5047,36195],[5048,36220],[5049,36176],[5050,36176],[5051,36220],[5052,36195],[5053,36195],[5054,36176],[5055,36176],[5056,36195],[5057,36220],[5058,36177],[5059,36220],[5060,36177],[5061,36195],[5062,36176],[5063,36176],[5064,36195],[5065,36195],[5066,36176],[5067,36176],[5068,36195],[5069,36220],[5070,36177],[5071,36220],[5072,36177],[5073,36220],[5074,36177],[5075,36220],[5076,36177],[5077,36220],[5078,36177],[5079,36220],[5080,36177],[5081,36220],[5082,36177],[5083,36220],[5084,36177],[5085,36220],[5086,36177],[5087,36220],[5088,36177],[5089,36220],[5090,36177],[5091,36220],[5092,36177],[5093,36220],[5094,36177],[5095,36220],[5096,36177],[5097,36203],[5098,36203],[5099,36203],[5100,36176],[5101,36203],[5102,36176],[5103,36203],[5104,36220],[5105,36203],[5106,36177],[5107,36220],[5108,36203],[5109,36177],[5110,36220],[5111,36203],[5112,36177],[5113,36220],[5114,36203],[5115,36177],[5116,36220],[5117,36203],[5118,36177],[5119,36220],[5120,36203],[5121,36177],[5122,36207],[5123,36207],[5124,36203],[5125,36179],[5126,36179],[5127,36224],[5128,36179],[5129,36203],[5130,36176],[5131,36225],[5132,36226],[5133,36225],[5134,36176],[5135,36225],[5136,36203],[5137,36176],[5138,36225],[5139,36176],[5140,36176],[5141,36225],[5142,36203],[5143,36226],[5144,36203],[5145,36203],[5146,36203],[5147,36226],[5148,36176],[5149,36225],[5150,36225],[5151,36176],[5152,36225],[5153,36176],[5154,36203],[5155,36176],[5156,36225],[5157,36176],[5158,36225],[5159,36203],[5160,36176],[5161,36225],[5162,36226],[5163,36225],[5164,36177],[5165,36177],[5166,36178],[5167,36178],[5168,36195],[5169,36203],[5170,36176],[5171,36178],[5172,36176],[5173,36220],[5174,36203],[5175,36220],[5176,36176],[5177,36176],[5178,36176],[5179,36197],[5180,36203],[5181,36197],[5182,36178],[5183,36178],[5184,36178],[5185,36178],[5186,36178],[5187,36203],[5188,36178],[5189,36176],[5190,36203],[5191,36197],[5192,36203],[5193,36197],[5194,36178],[5195,36178],[5196,36178],[5197,36176],[5198,36203],[5199,36176],[5200,36225],[5201,36226],[5202,36225],[5203,36209],[5204,36205],[5205,36205],[5206,36205],[5207,36205],[5208,36205],[5209,36209],[5210,36209],[5211,36209],[5212,36220],[5213,36197],[5214,36176],[5215,36197],[5216,36203],[5217,36220],[5218,36203],[5219,36203],[5220,36203],[5221,36203],[5222,36203],[5223,36203],[5224,36203],[5225,36210],[5226,36220],[5227,36197],[5228,36176],[5229,36197],[5230,36220],[5231,36210],[5232,36209],[5233,36220],[5234,36176],[5235,36225],[5236,36203],[5237,36220],[5238,36227],[5239,36227],[5240,36220],[5241,36176],[5242,36225],[5243,36195],[5244,36176],[5245,36176],[5246,36176],[5247,36176],[5248,36176],[5249,36203],[5250,36203],[5251,36226],[5252,36203],[5253,36203],[5254,36203],[5255,36226],[5256,36203],[5257,36220],[5258,36227],[5259,36227],[5260,36203],[5261,36220],[5262,36220],[5263,36177],[5264,36227],[5265,36227],[5266,36228],[5267,36227],[5268,36227],[5269,36177],[5270,36176],[5271,36225],[5272,36220],[5273,36203],[5274,36177],[5275,36228],[5276,36176],[5277,36225],[5278,36176],[5279,36225],[5280,36176],[5281,36225],[5282,36176],[5283,36225],[5284,36203],[5285,36226],[5286,36203],[5287,36226],[5288,36176],[5289,36225],[5290,36176],[5291,36225],[5292,36176],[5293,36225],[5294,36177],[5295,36220],[5296,36197],[5297,36176],[5298,36197],[5299,36203],[5300,36203],[5301,36203],[5302,36203],[5303,36203],[5304,36203],[5305,36220],[5306,36197],[5307,36176],[5308,36197],[5309,36176],[5310,36225],[5311,36220],[5312,36227],[5313,36227],[5314,36176],[5315,36225],[5316,36203],[5317,36226],[5318,36203],[5319,36226],[5320,36176],[5321,36225],[5322,36177],[5323,36228],[5324,36176],[5325,36225],[5326,36176],[5327,36203],[5328,36176],[5329,36225],[5330,36226],[5331,36225],[5332,36195],[5333,36176],[5334,36176],[5335,36176],[5336,36176],[5337,36176],[5338,36203],[5339,36203],[5340,36195],[5341,36220],[5342,36203],[5343,36177],[5344,36176],[5345,36203],[5346,36176],[5347,36220],[5348,36203],[5349,36177],[5350,36178],[5351,36178],[5352,36209],[5353,36211],[5354,36211],[5355,36211],[5356,36211],[5357,36211],[5358,36211],[5359,36211],[5360,36211],[5361,36211],[5362,36211],[5363,36211],[5364,36211],[5365,36211],[5366,36211],[5367,36211],[5368,36211],[5369,36211],[5370,36211],[5371,36211],[5372,36211],[5373,36220],[5374,36178],[5375,36229],[5376,36178],[5377,36178],[5378,36230],[5379,36230],[5380,36203],[5381,36203],[5382,36203],[5383,36203],[5384,36203],[5385,36203],[5386,36176],[5387,36176],[5388,36176],[5389,36176],[5390,36176],[5391,36176],[5392,36178],[5393,36178],[5394,36178],[5395,36178],[5396,36203],[5397,36213],[5398,36203],[5399,36213],[5400,36203],[5401,36176],[5402,36203],[5403,36176],[5404,36203],[5405,36213],[5406,36203],[5407,36213],[5408,36213],[5409,36203],[5410,36213],[5411,36213],[5412,36203],[5413,36213],[5414,36176],[5415,36203],[5416,36176],[5417,36213],[5418,36203],[5419,36213],[5420,36213],[5421,36203],[5422,36213],[5423,36203],[5424,36203],[5425,36203],[5426,36213],[5427,36203],[5428,36213],[5429,36176],[5430,36203],[5431,36176],[5432,36213],[5433,36203],[5434,36213],[5435,36213],[5436,36203],[5437,36213],[5438,36176],[5439,36203],[5440,36176],[5441,36213],[5442,36203],[5443,36213],[5444,36197],[5445,36203],[5446,36197],[5447,36197],[5448,36203],[5449,36197],[5450,36177],[5451,36176],[5452,36203],[5453,36176],[5454,36176],[5455,36203],[5456,36176],[5457,36176],[5458,36203],[5459,36176],[5460,36176],[5461,36203],[5462,36176],[5463,36176],[5464,36203],[5465,36176],[5466,36176],[5467,36203],[5468,36176],[5469,36214],[5470,36214],[5471,36214],[5472,36219],[5473,36219],[5474,36221],[5475,36221],[5476,36219],[5477,36219],[5478,36219],[5479,36221],[5480,36221],[5481,36219],[5482,36202],[5483,36202],[5484,36202],[5485,36202],[5486,36176],[5487,36176],[5488,36176],[5489,36176],[5490,36202],[5491,36202],[5492,36202],[5493,36202],[5494,36176],[5495,36176],[5496,36176],[5497,36176],[5498,36220],[5499,36178],[5500,36229],[5501,36178],[5502,36178],[5503,36230],[5504,36230],[5505,36221],[5506,36220],[5507,36220],[5508,36177],[5509,36176],[5510,36176],[5511,36220],[5512,36220],[5513,36203],[5514,36177],[5515,36177],[5516,36220],[5517,36203],[5518,36220],[5519,36177],[5520,36221],[5521,36220],[5522,36220],[5523,36220],[5524,36220],[5525,36177],[5526,36195],[5527,36176],[5528,36176],[5529,36195],[5530,36220],[5531,36203],[5532,36177],[5533,36220],[5534,36220],[5535,36220],[5536,36220],[5537,36207],[5538,36207],[5539,36215],[5540,36215],[5541,36215],[5542,36215],[5543,36220],[5544,36219],[5545,36195],[5546,36176],[5547,36176],[5548,36216],[5549,36176],[5550,36176],[5551,36203],[5552,36203],[5553,36203],[5554,36203],[5555,36176],[5556,36203],[5557,36176],[5558,36203],[5559,36176],[5560,36203],[5561,36176],[5562,36203],[5563,36176],[5564,36203],[5565,36176],[5566,36176],[5567,36203],[5568,36176],[5569,36176],[5570,36203],[5571,36176],[5572,36176],[5573,36203],[5574,36176],[5575,36176],[5576,36203],[5577,36176],[5578,36176],[5579,36203],[5580,36176],[5581,36176],[5582,36203],[5583,36176],[5584,36176],[5585,36203],[5586,36176],[5587,36176],[5588,36203],[5589,36176],[5590,36176],[5591,36203],[5592,36176],[5593,36176],[5594,36203],[5595,36176],[5596,36176],[5597,36203],[5598,36176],[5599,36195],[5600,36176],[5601,36176],[5602,36195],[5603,36195],[5604,36176],[5605,36176],[5606,36195],[5607,36176],[5608,36203],[5609,36176],[5610,36176],[5611,36203],[5612,36176],[5613,36176],[5614,36203],[5615,36176],[5616,36195],[5617,36195],[5618,36195],[5619,36195],[5620,36176],[5621,36176],[5622,36195],[5623,36176],[5624,36176],[5625,36197],[5626,36197],[5627,36176],[5628,36176],[5629,36197],[5630,36197],[5631,36195],[5632,36195],[5633,36206],[5634,36195],[5635,36176],[5636,36176],[5637,36195],[5638,36176],[5639,36203],[5640,36176],[5641,36197],[5642,36195],[5643,36176],[5644,36176],[5645,36176],[5646,36195],[5647,36195],[5648,36176],[5649,36176],[5650,36195],[5651,36195],[5652,36176],[5653,36176],[5654,36195],[5655,36176],[5656,36203],[5657,36176],[5658,36176],[5659,36203],[5660,36176],[5661,36176],[5662,36203],[5663,36176],[5664,36195],[5665,36176],[5666,36176],[5667,36195],[5668,36195],[5669,36176],[5670,36176],[5671,36195],[5672,36195],[5673,36176],[5674,36176],[5675,36195],[5676,36195],[5677,36176],[5678,36176],[5679,36195],[5680,36195],[5681,36176],[5682,36176],[5683,36195],[5684,36195],[5685,36176],[5686,36176],[5687,36195],[5688,36195],[5689,36176],[5690,36176],[5691,36195],[5692,36195],[5693,36176],[5694,36176],[5695,36195],[5696,36195],[5697,36176],[5698,36176],[5699,36195],[5700,36195],[5701,36176],[5702,36176],[5703,36195],[5704,36195],[5705,36176],[5706,36176],[5707,36195],[5708,36195],[5709,36176],[5710,36176],[5711,36195],[5712,36203],[5713,36203],[5714,36203],[5715,36217],[5716,36176],[5717,36176],[5718,36217],[5719,36176],[5720,36176],[5721,36217],[5722,36176],[5723,36176],[5724,36217],[5725,36176],[5726,36176],[5727,36207],[5728,36207],[5729,36203],[5730,36176],[5731,36203],[5732,36176],[5733,36203],[5734,36203],[5735,36176],[5736,36203],[5737,36176],[5738,36176],[5739,36195],[5740,36203],[5741,36195],[5742,36176],[5743,36176],[5744,36176],[5745,36176],[5746,36203],[5747,36176],[5748,36176],[5749,36176],[5750,36176],[5751,36176],[5752,36176],[5753,36197],[5754,36203],[5755,36197],[5756,36176],[5757,36176],[5758,36176],[5759,36195],[5760,36176],[5761,36176],[5762,36176],[5763,36176],[5764,36203],[5765,36176],[5766,36176],[5767,36203],[5768,36197],[5769,36203],[5770,36197],[5771,36195],[5772,36176],[5773,36176],[5774,36209],[5775,36209],[5776,36209],[5777,36176],[5778,36197],[5779,36176],[5780,36197],[5781,36203],[5782,36176],[5783,36203],[5784,36203],[5785,36203],[5786,36203],[5787,36203],[5788,36203],[5789,36203],[5790,36176],[5791,36176],[5792,36197],[5793,36176],[5794,36197],[5795,36176],[5796,36203],[5797,36176],[5798,36195],[5799,36195],[5800,36176],[5801,36176],[5802,36176],[5803,36176],[5804,36176],[5805,36176],[5806,36176],[5807,36176],[5808,36176],[5809,36176],[5810,36203],[5811,36203],[5812,36176],[5813,36203],[5814,36176],[5815,36197],[5816,36176],[5817,36197],[5818,36203],[5819,36203],[5820,36203],[5821,36203],[5822,36203],[5823,36203],[5824,36176],[5825,36197],[5826,36176],[5827,36197],[5828,36195],[5829,36195],[5830,36176],[5831,36176],[5832,36176],[5833,36176],[5834,36176],[5835,36176],[5836,36176],[5837,36176],[5838,36176],[5839,36176],[5840,36203],[5841,36203],[5842,36195],[5843,36176],[5844,36203],[5845,36176],[5846,36176],[5847,36203],[5848,36176],[5849,36176],[5850,36203],[5851,36176],[5852,36209],[5853,36211],[5854,36211],[5855,36211],[5856,36211],[5857,36217],[5858,36176],[5859,36176],[5860,36217],[5861,36176],[5862,36176],[5863,36217],[5864,36176],[5865,36176],[5866,36217],[5867,36176],[5868,36176],[5869,36203],[5870,36203],[5871,36203],[5872,36203],[5873,36203],[5874,36203],[5875,36176],[5876,36176],[5877,36176],[5878,36176],[5879,36176],[5880,36176],[5881,36203],[5882,36176],[5883,36203],[5884,36176],[5885,36203],[5886,36176],[5887,36203],[5888,36176],[5889,36203],[5890,36176],[5891,36203],[5892,36176],[5893,36176],[5894,36203],[5895,36176],[5896,36176],[5897,36203],[5898,36176],[5899,36176],[5900,36203],[5901,36176],[5902,36176],[5903,36203],[5904,36176],[5905,36176],[5906,36203],[5907,36176],[5908,36203],[5909,36203],[5910,36203],[5911,36176],[5912,36203],[5913,36176],[5914,36176],[5915,36203],[5916,36176],[5917,36176],[5918,36203],[5919,36176],[5920,36176],[5921,36203],[5922,36176],[5923,36176],[5924,36203],[5925,36176],[5926,36176],[5927,36203],[5928,36176],[5929,36197],[5930,36203],[5931,36197],[5932,36197],[5933,36203],[5934,36197],[5935,36176],[5936,36203],[5937,36176],[5938,36176],[5939,36203],[5940,36176],[5941,36176],[5942,36203],[5943,36176],[5944,36176],[5945,36203],[5946,36176],[5947,36176],[5948,36203],[5949,36176],[5950,36176],[5951,36203],[5952,36176],[5953,36214],[5954,36214],[5955,36214],[5956,36202],[5957,36202],[5958,36202],[5959,36202],[5960,36176],[5961,36176],[5962,36176],[5963,36176],[5964,36202],[5965,36202],[5966,36202],[5967,36202],[5968,36176],[5969,36176],[5970,36176],[5971,36176],[5972,36176],[5973,36176],[5974,36176],[5975,36176],[5976,36176],[5977,36203],[5978,36176],[5979,36195],[5980,36176],[5981,36176],[5982,36195],[5983,36176],[5984,36176],[5985,36207],[5986,36207],[5987,36215],[5988,36215],[5989,36195],[5990,36195],[5991,36195],[5992,36176],[5993,36176],[5994,36195],[5995,36195],[5996,36176],[5997,36176],[5998,36195],[5999,36176],[6000,36203],[6001,36176],[6002,36176],[6003,36203],[6004,36176],[6005,36176],[6006,36203],[6007,36176],[6008,36195],[6009,36176],[6010,36176],[6011,36195],[6012,36195],[6013,36176],[6014,36176],[6015,36195],[6016,36176],[6017,36203],[6018,36176],[6019,36176],[6020,36203],[6021,36176],[6022,36176],[6023,36203],[6024,36176],[6025,36195],[6026,36176],[6027,36176],[6028,36195],[6029,36176],[6030,36176],[6031,36176],[6032,36203],[6033,36176],[6034,36176],[6035,36176],[6036,36176],[6037,36176],[6038,36176],[6039,36203],[6040,36176],[6041,36203],[6042,36176],[6043,36203],[6044,36176],[6045,36203],[6046,36176],[6047,36203],[6048,36176],[6049,36203],[6050,36176],[6051,36195],[6052,36195],[6053,36195],[6054,36195],[6055,36176],[6056,36197],[6057,36216],[6058,36176],[6059,36176],[6060,36197],[6061,36197],[6062,36195],[6063,36195],[6064,36195],[6065,36195],[6066,36176],[6067,36176],[6068,36176],[6069,36176],[6070,36195],[6071,36176],[6072,36176],[6073,36216],[6074,36176],[6075,36176],[6076,36195],[6077,36216],[6078,36206],[6079,36218],[6080,36218],[6081,36206],[6082,36197],[6083,36197],[6084,36197],[6085,36197],[6086,36197],[6087,36197],[6088,36176],[6089,36176],[6090,36176],[6091,36176],[6092,36203],[6093,36203],[6094,36195],[6095,36195],[6096,36195],[6097,36195],[6098,36195],[6099,36195],[6100,36195],[6101,36195],[6102,36195],[6103,36195],[6104,36195],[6105,36195],[6106,36195],[6107,36195],[6108,36195],[6109,36195],[6110,36197],[6111,36203],[6112,36197],[6113,36197],[6114,36203],[6115,36197],[6116,36197],[6117,36203],[6118,36197],[6119,36176],[6120,36176],[6121,36176],[6122,36176],[6123,36176],[6124,36176],[6125,36176],[6126,36176],[6127,36176],[6128,36203],[6129,36176],[6130,36176],[6131,36203],[6132,36176],[6133,36176],[6134,36203],[6135,36176],[6136,36176],[6137,36176],[6138,36176],[6139,36176],[6140,36203],[6141,36203],[6142,36176],[6143,36203],[6144,36176],[6145,36176],[6146,36203],[6147,36176],[6148,36176],[6149,36203],[6150,36176],[6151,36195],[6152,36176],[6153,36176],[6154,36195],[6155,36217],[6156,36217],[6157,36217],[6158,36217],[6159,36217],[6160,36217],[6161,36217],[6162,36217],[6163,36217],[6164,36217],[6165,36217],[6166,36217],[6167,36176],[6168,36195],[6169,36176],[6170,36176],[6171,36195],[6172,36195],[6173,36195],[6174,36176],[6175,36176],[6176,36195],[6177,36176],[6178,36176],[6179,36195],[6180,36176],[6181,36176],[6182,36176],[6183,36203],[6184,36176],[6185,36176],[6186,36203],[6187,36176],[6188,36176],[6189,36203],[6190,36176],[6191,36195],[6192,36176],[6193,36176],[6194,36195],[6195,36176],[6196,36176],[6197,36195],[6198,36176],[6199,36176],[6200,36195],[6201,36176],[6202,36176],[6203,36195],[6204,36176],[6205,36176],[6206,36195],[6207,36176],[6208,36176],[6209,36176],[6210,36176],[6211,36176],[6212,36176],[6213,36176],[6214,36203],[6215,36176],[6216,36195],[6217,36176],[6218,36176],[6219,36195],[6220,36176],[6221,36176],[6222,36195],[6223,36176],[6224,36176],[6225,36195],[6226,36176],[6227,36203],[6228,36176],[6229,36176],[6230,36203],[6231,36176],[6232,36176],[6233,36203],[6234,36176],[6235,36195],[6236,36195],[6237,36195],[6238,36195],[6239,36176],[6240,36176],[6241,36195],[6242,36176],[6243,36176],[6244,36195],[6245,36195],[6246,36176],[6247,36176],[6248,36195],[6249,36195],[6250,36176],[6251,36176],[6252,36195],[6253,36176],[6254,36176],[6255,36195],[6256,36176],[6257,36176],[6258,36195],[6259,36176],[6260,36176],[6261,36176],[6262,36176],[6263,36197],[6264,36197],[6265,36202],[6266,36202],[6267,36175],[6268,36175],[6269,36220],[6270,36202],[6271,36202],[6272,36175],[6273,36175],[6274,36195],[6275,36176],[6276,36176],[6277,36195],[6278,36195],[6279,36176],[6280,36176],[6281,36195],[6282,36176],[6283,36203],[6284,36176],[6285,36176],[6286,36203],[6287,36176],[6288,36176],[6289,36203],[6290,36176],[6291,36195],[6292,36195],[6293,36195],[6294,36195],[6295,36176],[6296,36176],[6297,36195],[6298,36176],[6299,36176],[6300,36197],[6301,36197],[6302,36176],[6303,36176],[6304,36197],[6305,36197],[6306,36195],[6307,36195],[6308,36197],[6309,36195],[6310,36176],[6311,36176],[6312,36176],[6313,36195],[6314,36203],[6315,36203],[6316,36203],[6317,36217],[6318,36176],[6319,36176],[6320,36217],[6321,36176],[6322,36176],[6323,36207],[6324,36207],[6325,36203],[6326,36176],[6327,36203],[6328,36176],[6329,36203],[6330,36203],[6331,36176],[6332,36203],[6333,36176],[6334,36176],[6335,36195],[6336,36203],[6337,36176],[6338,36176],[6339,36176],[6340,36176],[6341,36203],[6342,36176],[6343,36176],[6344,36176],[6345,36176],[6346,36197],[6347,36203],[6348,36197],[6349,36195],[6350,36176],[6351,36176],[6352,36176],[6353,36176],[6354,36203],[6355,36176],[6356,36176],[6357,36203],[6358,36197],[6359,36203],[6360,36197],[6361,36195],[6362,36176],[6363,36176],[6364,36209],[6365,36209],[6366,36209],[6367,36176],[6368,36197],[6369,36176],[6370,36197],[6371,36203],[6372,36176],[6373,36203],[6374,36203],[6375,36203],[6376,36203],[6377,36203],[6378,36203],[6379,36203],[6380,36176],[6381,36176],[6382,36197],[6383,36176],[6384,36197],[6385,36176],[6386,36203],[6387,36176],[6388,36195],[6389,36176],[6390,36176],[6391,36176],[6392,36176],[6393,36176],[6394,36203],[6395,36203],[6396,36176],[6397,36203],[6398,36176],[6399,36197],[6400,36176],[6401,36197],[6402,36203],[6403,36203],[6404,36203],[6405,36203],[6406,36203],[6407,36203],[6408,36176],[6409,36197],[6410,36176],[6411,36197],[6412,36195],[6413,36176],[6414,36176],[6415,36176],[6416,36176],[6417,36176],[6418,36203],[6419,36203],[6420,36195],[6421,36176],[6422,36203],[6423,36176],[6424,36176],[6425,36203],[6426,36176],[6427,36176],[6428,36203],[6429,36176],[6430,36209],[6431,36211],[6432,36211],[6433,36211],[6434,36211],[6435,36217],[6436,36176],[6437,36176],[6438,36217],[6439,36176],[6440,36176],[6441,36217],[6442,36176],[6443,36176],[6444,36217],[6445,36176],[6446,36176],[6447,36203],[6448,36203],[6449,36203],[6450,36203],[6451,36203],[6452,36203],[6453,36176],[6454,36176],[6455,36176],[6456,36176],[6457,36176],[6458,36176],[6459,36203],[6460,36176],[6461,36203],[6462,36176],[6463,36203],[6464,36176],[6465,36203],[6466,36176],[6467,36203],[6468,36176],[6469,36203],[6470,36176],[6471,36176],[6472,36203],[6473,36176],[6474,36176],[6475,36203],[6476,36176],[6477,36176],[6478,36203],[6479,36176],[6480,36176],[6481,36203],[6482,36176],[6483,36176],[6484,36203],[6485,36176],[6486,36203],[6487,36203],[6488,36203],[6489,36176],[6490,36203],[6491,36176],[6492,36176],[6493,36203],[6494,36176],[6495,36176],[6496,36203],[6497,36176],[6498,36176],[6499,36203],[6500,36176],[6501,36176],[6502,36203],[6503,36176],[6504,36176],[6505,36203],[6506,36176],[6507,36176],[6508,36203],[6509,36176],[6510,36176],[6511,36203],[6512,36176],[6513,36176],[6514,36203],[6515,36176],[6516,36176],[6517,36203],[6518,36176],[6519,36176],[6520,36203],[6521,36176],[6522,36176],[6523,36203],[6524,36176],[6525,36214],[6526,36214],[6527,36214],[6528,36176],[6529,36176],[6530,36176],[6531,36176],[6532,36176],[6533,36203],[6534,36176],[6535,36195],[6536,36176],[6537,36176],[6538,36195],[6539,36176],[6540,36176],[6541,36207],[6542,36207],[6543,36215],[6544,36215],[6545,36195],[6546,36195],[6547,36195],[6548,36176],[6549,36176],[6550,36195],[6551,36195],[6552,36176],[6553,36176],[6554,36195],[6555,36176],[6556,36203],[6557,36176],[6558,36176],[6559,36203],[6560,36176],[6561,36176],[6562,36203],[6563,36176],[6564,36195],[6565,36176],[6566,36176],[6567,36195],[6568,36195],[6569,36176],[6570,36176],[6571,36195],[6572,36176],[6573,36203],[6574,36176],[6575,36176],[6576,36203],[6577,36176],[6578,36176],[6579,36203],[6580,36176],[6581,36195],[6582,36176],[6583,36176],[6584,36195],[6585,36176],[6586,36176],[6587,36176],[6588,36203],[6589,36176],[6590,36176],[6591,36176],[6592,36176],[6593,36176],[6594,36176],[6595,36203],[6596,36176],[6597,36203],[6598,36176],[6599,36203],[6600,36176],[6601,36203],[6602,36176],[6603,36203],[6604,36176],[6605,36203],[6606,36176],[6607,36195],[6608,36195],[6609,36195],[6610,36195],[6611,36176],[6612,36197],[6613,36216],[6614,36176],[6615,36176],[6616,36197],[6617,36197],[6618,36195],[6619,36195],[6620,36195],[6621,36195],[6622,36176],[6623,36176],[6624,36176],[6625,36176],[6626,36195],[6627,36176],[6628,36176],[6629,36216],[6630,36176],[6631,36176],[6632,36195],[6633,36216],[6634,36206],[6635,36218],[6636,36218],[6637,36206],[6638,36197],[6639,36197],[6640,36197],[6641,36197],[6642,36197],[6643,36197],[6644,36176],[6645,36176],[6646,36176],[6647,36176],[6648,36203],[6649,36203],[6650,36197],[6651,36203],[6652,36197],[6653,36197],[6654,36203],[6655,36197],[6656,36197],[6657,36203],[6658,36197],[6659,36176],[6660,36176],[6661,36176],[6662,36176],[6663,36176],[6664,36176],[6665,36176],[6666,36176],[6667,36176],[6668,36203],[6669,36176],[6670,36176],[6671,36203],[6672,36176],[6673,36176],[6674,36203],[6675,36176],[6676,36176],[6677,36176],[6678,36176],[6679,36176],[6680,36203],[6681,36203],[6682,36176],[6683,36203],[6684,36176],[6685,36176],[6686,36203],[6687,36176],[6688,36176],[6689,36203],[6690,36176],[6691,36195],[6692,36176],[6693,36176],[6694,36195],[6695,36217],[6696,36217],[6697,36217],[6698,36217],[6699,36217],[6700,36217],[6701,36217],[6702,36217],[6703,36217],[6704,36217],[6705,36217],[6706,36217],[6707,36176],[6708,36195],[6709,36176],[6710,36176],[6711,36195],[6712,36195],[6713,36195],[6714,36176],[6715,36176],[6716,36195],[6717,36176],[6718,36176],[6719,36195],[6720,36176],[6721,36176],[6722,36176],[6723,36203],[6724,36176],[6725,36176],[6726,36203],[6727,36176],[6728,36176],[6729,36203],[6730,36176],[6731,36195],[6732,36176],[6733,36176],[6734,36195],[6735,36176],[6736,36176],[6737,36195],[6738,36176],[6739,36176],[6740,36195],[6741,36176],[6742,36176],[6743,36195],[6744,36176],[6745,36176],[6746,36195],[6747,36176],[6748,36176],[6749,36195],[6750,36176],[6751,36176],[6752,36195],[6753,36176],[6754,36203],[6755,36176],[6756,36176],[6757,36203],[6758,36176],[6759,36176],[6760,36203],[6761,36176],[6762,36195],[6763,36195],[6764,36195],[6765,36195],[6766,36176],[6767,36176],[6768,36195],[6769,36176],[6770,36176],[6771,36195],[6772,36176],[6773,36176],[6774,36195],[6775,36176],[6776,36176],[6777,36195],[6778,36176],[6779,36176],[6780,36176],[6781,36176],[6782,36197],[6783,36197],[6784,36220],[6785,36178],[6786,36176],[6787,36178],[6788,36178],[6789,36178],[6790,36176],[6791,36220],[6792,36220],[6793,36203],[6794,36177],[6795,36176],[6796,36203],[6797,36176],[6798,36220],[6799,36203],[6800,36177],[6801,36220],[6802,36220],[6803,36178],[6804,36176],[6805,36178],[6806,36178],[6807,36178],[6808,36176],[6809,36220],[6810,36220],[6811,36203],[6812,36177],[6813,36176],[6814,36203],[6815,36176],[6816,36220],[6817,36203],[6818,36177],[6819,36178],[6820,36176],[6821,36176],[6822,36176],[6823,36176],[6824,36176],[6825,36176],[6826,36176],[6827,36176],[6828,36220],[6829,36220],[6830,36203],[6831,36177],[6832,36221],[6833,36221],[6834,36177],[6835,36221],[6836,36177],[6837,36220],[6838,36220],[6839,36177],[6840,36195],[6841,36197],[6842,36197],[6843,36195],[6844,36195],[6845,36197],[6846,36197],[6847,36195],[6848,36178],[6849,36178],[6850,36220],[6851,36203],[6852,36220],[6853,36203],[6854,36177],[6855,36203],[6856,36176],[6857,36203],[6858,36176],[6859,36203],[6860,36220],[6861,36203],[6862,36177],[6863,36220],[6864,36220],[6865,36219],[6866,36220],[6867,36178],[6868,36197],[6869,36216],[6870,36176],[6871,36176],[6872,36220],[6873,36177],[6874,36220],[6875,36220],[6876,36220],[6877,36220],[6878,36178],[6879,36220],[6880,36175],[6881,36175],[6882,36175],[6883,36175],[6884,36195],[6885,36176],[6886,36176],[6887,36216],[6888,36176],[6889,36203],[6890,36176],[6891,36195],[6892,36216],[6893,36203],[6894,36206],[6895,36218],[6896,36218],[6897,36206],[6898,36177],[6899,36197],[6900,36197],[6901,36197],[6902,36197],[6903,36176],[6904,36176],[6905,36176],[6906,36176],[6907,36203],[6908,36177],[6909,36203],[6910,36177],[6911,36195],[6912,36195],[6913,36203],[6914,36195],[6915,36195],[6916,36195],[6917,36195],[6918,36195],[6919,36195],[6920,36203],[6921,36195],[6922,36195],[6923,36195],[6924,36195],[6925,36203],[6926,36195],[6927,36195],[6928,36203],[6929,36195],[6930,36195],[6931,36197],[6932,36203],[6933,36197],[6934,36197],[6935,36203],[6936,36197],[6937,36197],[6938,36203],[6939,36197],[6940,36176],[6941,36176],[6942,36176],[6943,36176],[6944,36176],[6945,36176],[6946,36176],[6947,36176],[6948,36178],[6949,36178],[6950,36178],[6951,36178],[6952,36176],[6953,36203],[6954,36176],[6955,36176],[6956,36203],[6957,36176],[6958,36176],[6959,36203],[6960,36176],[6961,36176],[6962,36176],[6963,36176],[6964,36176],[6965,36203],[6966,36177],[6967,36203],[6968,36177],[6969,36220],[6970,36176],[6971,36203],[6972,36176],[6973,36176],[6974,36203],[6975,36176],[6976,36176],[6977,36203],[6978,36176],[6979,36220],[6980,36220],[6981,36220],[6982,36220],[6983,36220],[6984,36203],[6985,36177],[6986,36220],[6987,36220],[6988,36220],[6989,36220],[6990,36220],[6991,36220],[6992,36203],[6993,36177],[6994,36177],[6995,36220],[6996,36203],[6997,36177],[6998,36177],[6999,36220],[7000,36220],[7001,36220],[7002,36220],[7003,36203],[7004,36177],[7005,36220],[7006,36203],[7007,36177],[7008,36220],[7009,36177],[7010,36231],[7011,36231],[7012,36231],[7013,36231],[7014,36231],[7015,36231],[7016,36231],[7017,36217],[7018,36217],[7019,36217],[7020,36217],[7021,36217],[7022,36217],[7023,36217],[7024,36217],[7025,36217],[7026,36217],[7027,36217],[7028,36217],[7029,36220],[7030,36219],[7031,36220],[7032,36177],[7033,36220],[7034,36220],[7035,36219],[7036,36219],[7037,36219],[7038,36220],[7039,36220],[7040,36220],[7041,36220],[7042,36220],[7043,36220],[7044,36220],[7045,36195],[7046,36202],[7047,36202],[7048,36220],[7049,36203],[7050,36177],[7051,36176],[7052,36203],[7053,36176],[7054,36220],[7055,36203],[7056,36177],[7057,36220],[7058,36220],[7059,36176],[7060,36220],[7061,36220],[7062,36176],[7063,36195],[7064,36202],[7065,36176],[7066,36220],[7067,36220],[7068,36220],[7069,36220],[7070,36220],[7071,36220],[7072,36220],[7073,36195],[7074,36202],[7075,36202],[7076,36220],[7077,36177],[7078,36176],[7079,36176],[7080,36220],[7081,36220],[7082,36203],[7083,36177],[7084,36177],[7085,36220],[7086,36203],[7087,36220],[7088,36177],[7089,36220],[7090,36220],[7091,36220],[7092,36220],[7093,36177],[7094,36195],[7095,36176],[7096,36176],[7097,36195],[7098,36220],[7099,36203],[7100,36177],[7101,36220],[7102,36220],[7103,36220],[7104,36220],[7105,36178],[7106,36220],[7107,36177],[7108,36230],[7109,36220],[7110,36220],[7111,36227],[7112,36230],[7113,36220],[7114,36220],[7115,36220],[7116,36220],[7117,36220],[7118,36203],[7119,36177],[7120,36176],[7121,36203],[7122,36176],[7123,36220],[7124,36203],[7125,36177],[7126,36220],[7127,36220],[7128,36220],[7129,36220],[7130,36176],[7131,36176],[7132,36178],[7133,36178],[7134,36195],[7135,36176],[7136,36176],[7137,36195],[7138,36178],[7139,36175],[7140,36175],[7141,36178],[7142,36195],[7143,36176],[7144,36176],[7145,36195],[7146,36175],[7147,36175],[7148,36178],[7149,36175],[7150,36175],[7151,36178],[7152,36185],[7153,36186],[7154,36220],[7155,36203],[7156,36177],[7157,36220],[7158,36203],[7159,36177],[7160,36220],[7161,36203],[7162,36177],[7163,36220],[7164,36203],[7165,36177],[7166,36220],[7167,36203],[7168,36177],[7169,36220],[7170,36203],[7171,36177],[7172,36220],[7173,36203],[7174,36177],[7175,36220],[7176,36220],[7177,36220],[7178,36220],[7179,36220],[7180,36220],[7181,36177],[7182,36220],[7183,36220],[7184,36220],[7185,36220],[7186,36220],[7187,36177],[7188,36176],[7189,36176],[7190,36220],[7191,36177],[7192,36220],[7193,36193],[7194,36194],[7195,36193],[7196,36194],[7197,36193],[7198,36194],[7199,36200],[7200,36201],[7201,36232],[7202,36232],[7203,36233],[7204,36232],[7205,36232],[7206,36233],[7207,36182],[7208,36176],[7209,36195],[7210,36195],[7211,36197],[7212,36183],[7213,36184],[7214,36187],[7215,36188],[7216,36234],[7217,36234],[7218,36234],[7219,36234],[7220,36234],[7221,36234],[7222,36234],[7223,36234],[7224,36234],[7225,36234],[7226,36234],[7227,36234],[7228,36234],[7229,36234],[7230,36234],[7231,36185],[7232,36185],[7233,36186],[7234,36187],[7235,36188],[7236,36180],[7237,36180],[7238,36180],[7239,36180],[7240,36181],[7241,36181],[7242,36235],[7243,36181],[7244,36235],[7245,36181],[7246,36235],[7247,36181],[7248,36235],[7249,36181],[7250,36235],[7251,36181],[7252,36235],[7253,36181],[7254,36180],[7255,35996],[7256,36236],[7261,35962],[7262,36049],[7263,36049],[7264,36049],[7265,36049],[7266,36049],[7267,36049],[7332,36000],[7398,36000],[7399,36172],[7400,36172],[7401,36002],[7402,36001],[7404,36002],[7407,36001],[7411,35942],[7412,35942],[7415,36065],[7416,36065],[7417,36065],[7418,36067],[7419,36066],[7420,36065],[7421,36065],[7422,36065],[7423,36065],[7424,36065],[7425,36069],[7426,36003],[7427,36003],[7428,36068],[7429,36068],[7430,36068],[7431,36068],[7432,36069],[7433,36068],[7434,36068],[7435,36068],[7436,36068],[7437,36068],[7438,36068],[7439,36068],[7440,36068],[7441,36068],[7442,35999],[7443,35999],[7444,35999],[7448,35944],[7449,35944],[7453,35944],[7454,35944],[7455,35944],[7456,35944],[7457,35944],[7458,35944],[7459,35944],[7460,35944],[7468,35944],[7470,35944],[7471,35944],[7472,35944],[7474,35944],[7475,35944],[7476,35944],[7477,35944],[7478,35944],[7481,35938],[7482,35938],[7485,36237],[7486,35938],[7487,35938],[7488,35938],[7489,35938],[7490,35938],[7494,35938],[7498,35963],[7499,35963],[7501,36004],[7502,36004],[7503,36004],[7517,36004],[7518,36004],[7525,36238],[7526,36239],[7527,36239],[7528,36239],[7529,36239],[7530,36239],[7531,36239],[7532,36239],[7533,36239],[7534,36239],[7535,36239],[7536,36239],[7537,36239],[7538,36239],[7539,36239],[7540,36239],[7541,36239],[7542,36239],[7543,36239],[7544,36239],[7545,36239],[7546,36239],[7547,36239],[7548,36239],[7549,36239],[7550,36239],[7551,36240],[7552,36241],[7553,36241],[7554,36241],[7555,36241],[7556,36241],[7557,36241],[7558,36241],[7559,36241],[7560,36241],[7561,36241],[7562,36241],[7563,36241],[7564,36241],[7565,36241],[7566,36241],[7567,36241],[7568,36241],[7569,36241],[7570,36241],[7571,36241],[7572,36241],[7573,36241],[7574,36241],[7575,36241],[7576,36241],[7577,36242],[7578,36242],[7579,36242],[7580,36242],[7581,36242],[7582,36242],[7583,36242],[7584,36242],[7585,36242],[7586,36242],[7587,36242],[7588,36242],[7589,36242],[7590,36242],[7591,36242],[7592,36243],[7593,36243],[7594,36243],[7595,36243],[7596,36243],[7597,36243],[7598,36243],[7599,36243],[7600,36243],[7601,36243],[7602,36243],[7603,36243],[7604,36243],[7605,36243],[7606,36243],[7607,36243],[7608,36243],[7609,36243],[7610,36243],[7611,36243],[7612,36243],[7613,36243],[7614,36243],[7615,36243],[7616,36243],[7617,36244],[7618,36244],[7619,36244],[7620,36244],[7621,36244],[7622,36244],[7623,36244],[7624,36244],[7625,36244],[7626,36244],[7627,36244],[7628,36244],[7629,36244],[7630,36244],[7631,36244],[7632,36245],[7633,36245],[7634,36245],[7635,36245],[7636,36245],[7637,36245],[7638,36245],[7639,36245],[7640,36245],[7641,36245],[7642,36245],[7643,36245],[7644,36245],[7645,36245],[7646,36245],[7647,36245],[7648,36245],[7649,36245],[7650,36245],[7651,36245],[7652,36245],[7653,36245],[7654,36245],[7655,36245],[7656,36245],[7657,36005],[7658,36005],[7659,36005],[7660,36086],[7661,36086],[7662,36088],[7663,36088],[7664,36088],[7665,36088],[7666,36088],[7667,36088],[7668,36088],[7669,36088],[7670,36088],[7671,36088],[7672,36088],[7673,36088],[7674,36088],[7675,36088],[7676,36088],[7677,36088],[7678,36088],[7679,36088],[7680,36088],[7681,36005],[7682,36005],[7683,36005],[7684,36005],[7701,36086],[7702,36086],[7703,35983],[7704,35983],[7705,35983],[7707,35983],[7708,36166],[7709,35984],[7710,35984],[7711,35984],[7712,35984],[7713,35984],[7714,35983],[7716,35983],[7717,35983],[7718,35984],[7720,35983],[7721,35983],[7722,35983],[7724,35983],[7725,35983],[7727,35983],[7728,35983],[7729,35983],[7739,35984],[7740,35983],[7744,36006],[7745,36006],[7747,35957],[7748,35956],[7752,36007],[7753,36008],[7754,36009],[7755,36006],[7757,36006],[7759,36246],[7760,36007],[7762,36008],[7763,36009],[7764,36010],[7765,36010],[7766,36010],[7767,36247],[7768,36010],[7770,36093],[7791,36248],[7792,36248],[7793,36248],[7794,36248],[7795,36248],[7796,36249],[7797,36249],[7798,36250],[7799,36250],[7800,36251],[7801,36251],[7802,36252],[7803,36252],[7804,36253],[7805,36253],[7806,36011],[7808,36011],[7809,36011],[7810,36011],[7811,36011],[7812,36011],[7813,36011],[7814,36011],[7815,36011],[7816,36011],[7817,36011],[7818,36011],[7819,36011],[7820,36011],[7821,36011],[7822,36011],[7823,36011],[7824,36011],[7825,36011],[7826,36011],[7827,36011],[7828,36011],[7829,36011],[7830,36011],[7831,36011],[7832,36011],[7833,36011],[7834,36011],[7835,36011],[7836,36011],[7837,36011],[7838,36011],[7839,36011],[7840,36011],[7841,36011],[7842,36011],[7843,36011],[7844,36011],[7845,36011],[7846,36011],[7847,36011],[7848,36011],[7849,36011],[7850,36011],[7851,36011],[7852,36011],[7853,36011],[7854,36011],[7855,36011],[7856,36011],[7857,36011],[7858,36011],[7859,36011],[7860,36011],[7861,36011],[7862,36011],[7863,36011],[7864,36011],[7865,36011],[7866,36011],[7867,36011],[7868,36011],[7869,36011],[7870,36011],[7871,36011],[7872,36011],[7873,36011],[7874,36011],[7875,36011],[7876,36011],[7877,36011],[7878,36011],[7879,36011],[7880,36011],[7881,36011],[7882,36011],[7883,36011],[7884,36011],[7885,36011],[7886,36011],[7887,36011],[7888,36011],[7889,36011],[7890,36011],[7891,36011],[7892,36011],[7893,36011],[7894,36011],[7895,36011],[7896,36011],[7897,36011],[7898,36011],[7899,36011],[7900,36011],[7901,36011],[7902,36011],[7903,36011],[7904,36011],[7905,36011],[7906,36011],[7907,36011],[7908,36011],[7909,36011],[7910,36011],[7911,36011],[7912,36011],[7913,36011],[7914,36011],[7915,36011],[7916,36011],[7917,36011],[7918,36011],[7919,36011],[7920,36011],[7921,36011],[7922,36011],[7923,36011],[7924,36011],[7925,36011],[7926,36011],[7927,36011],[7928,36011],[7929,36011],[7930,36011],[7931,36011],[7932,36011],[7933,36011],[7934,36011],[7935,36011],[7936,36011],[7937,36011],[7938,36011],[7939,36011],[7940,36011],[7941,36011],[7942,36011],[7943,36011],[7944,36011],[7945,36011],[7946,36011],[7947,36011],[7948,36011],[7949,36011],[7950,36011],[7951,36011],[7952,36011],[7953,36011],[7954,36011],[7955,36011],[7956,36011],[7957,36011],[7958,36011],[7959,36011],[7960,36011],[7961,36011],[7962,36011],[7963,36011],[7964,36011],[7965,36011],[7966,36011],[7967,36011],[7968,36011],[7969,36011],[7970,36011],[7971,36011],[7972,36011],[7973,36011],[7974,36011],[7975,36011],[7976,36011],[7977,36011],[7978,36011],[7979,36011],[7980,36011],[7981,36011],[7982,36011],[7983,36011],[7984,36011],[7985,36011],[7986,36011],[7987,36011],[7988,36011],[7989,36011],[7990,36011],[7991,36011],[7992,36011],[7993,36011],[7994,36011],[7995,36011],[7996,36011],[7997,36011],[7998,36011],[7999,36011],[8000,36011],[8001,36011],[8002,36011],[8003,36011],[8004,36011],[8005,36011],[8006,36011],[8007,36011],[8008,36011],[8009,36011],[8010,36011],[8011,36011],[8012,36011],[8013,36011],[8014,36011],[8015,36011],[8016,36011],[8017,36011],[8018,36011],[8019,36011],[8020,36011],[8021,36011],[8022,36011],[8023,36011],[8024,36011],[8025,36011],[8026,36011],[8027,36011],[8028,36011],[8029,36011],[8030,36011],[8031,36011],[8032,36011],[8033,36011],[8034,36011],[8035,36011],[8036,36011],[8037,36011],[8038,36011],[8039,36011],[8040,36011],[8041,36011],[8042,36011],[8043,36011],[8044,36011],[8045,36011],[8046,36011],[8047,36011],[8048,36011],[8049,36011],[8050,36011],[8051,36011],[8052,36011],[8053,36011],[8054,36011],[8055,36011],[8056,36011],[8057,36011],[8058,36011],[8059,36011],[8060,36011],[8061,36011],[8062,36011],[8063,36011],[8064,36011],[8065,36011],[8066,36011],[8067,36011],[8068,36011],[8069,36011],[8070,36011],[8071,36011],[8072,36011],[8073,36011],[8074,36011],[8075,36011],[8076,36011],[8077,36011],[8078,36011],[8079,36011],[8080,36011],[8081,36011],[8082,36011],[8083,36011],[8084,36011],[8085,36011],[8086,36011],[8087,36011],[8088,36011],[8089,36011],[8090,36011],[8091,36011],[8092,36011],[8093,36011],[8094,36011],[8095,36011],[8096,36011],[8097,36011],[8098,36011],[8100,36013],[8101,36013],[8102,36013],[8103,36013],[8104,36013],[8105,36013],[8107,36013],[8108,36013],[8109,36013],[8110,36013],[8111,36013],[8112,36013],[8114,36013],[8115,36013],[8117,36013],[8118,36013],[8119,36013],[8120,36013],[8121,36013],[8122,36013],[8123,36013],[8124,36013],[8125,36013],[8126,36013],[8127,36013],[8128,36013],[8129,36013],[8130,36013],[8131,36013],[8132,36013],[8133,36013],[8134,36013],[8135,36013],[8136,36013],[8137,36013],[8138,36013],[8139,36013],[8140,36254],[8141,36254],[8142,36254],[8143,36254],[8144,36254],[8145,36254],[8146,36254],[8147,36254],[8148,36254],[8149,36254],[8150,36254],[8151,36254],[8152,36254],[8153,36254],[8154,36254],[8155,36254],[8156,36254],[8157,36254],[8158,36254],[8159,36254],[8160,36254],[8161,36254],[8162,36254],[8163,36254],[8164,36254],[8165,36254],[8166,36254],[8167,36254],[8168,36254],[8169,36254],[8170,36254],[8171,36254],[8172,36254],[8173,36254],[8174,36254],[8175,36254],[8176,36254],[8177,36254],[8178,36254],[8179,36254],[8180,36254],[8181,36254],[8182,36254],[8183,36254],[8184,36254],[8185,36254],[8186,36254],[8187,36254],[8188,36254],[8189,36254],[8190,36254],[8191,36254],[8192,36254],[8193,36254],[8194,36254],[8195,36254],[8196,36254],[8197,36254],[8198,36254],[8199,36254],[8200,36254],[8201,36254],[8202,36254],[8203,36254],[8204,36254],[8205,36254],[8206,36254],[8207,36064],[8208,36064],[8209,36255],[8210,36255],[8211,35937],[8212,36101],[8213,35939],[8214,35943],[8215,35945],[8216,35946],[8217,35931],[8218,36015],[8219,35948],[8220,35958],[8221,35940],[8222,35949],[8223,35950],[8224,35952],[8225,35952],[8226,36018],[8227,35940],[8228,35953],[8229,36256],[8230,35954],[8231,35955],[8232,35955],[8234,35940],[8237,35934],[8238,35959],[8239,35960],[8240,35961],[8241,36019],[8242,36020],[8243,35964],[8244,35968],[8245,36021],[8246,36022],[8247,36023],[8248,35969],[8249,35970],[8250,35971],[8251,35972],[8252,36014],[8253,35973],[8254,36024],[8255,35968],[8256,35974],[8257,35975],[8258,36256],[8259,36256],[8260,35978],[8270,35939],[8280,36015],[8298,36016],[8299,36018],[8332,36019],[8333,36020],[8343,36021],[8344,36022],[8345,36023],[8356,36024],[8368,35978],[8370,35935],[8371,35935],[8372,35935],[8373,35935],[8374,35935],[8376,35935],[8377,35935],[8378,35935],[8379,35935],[8380,35935],[8381,35935],[8382,35935],[8383,35935],[8384,35935],[8385,35935],[8386,35935],[8387,35935],[8388,35935],[8389,35935],[8390,35935],[8391,35935],[8393,36026],[8394,36025],[8395,36102],[8396,36050],[8397,36026],[8398,36025],[8399,36025],[8400,36025],[8402,36025],[8403,36025],[8404,36025],[8405,36025],[8406,36025],[8408,36025],[8409,36025],[8410,36025],[8411,36025],[8412,36025],[8414,36025],[8415,36025],[8416,36025],[8417,36025],[8418,36025],[8419,36011],[8421,36025],[8422,36025],[8424,36025],[8425,36025],[8426,36109],[8430,36106],[8431,36106],[8432,36106],[8433,36106],[8438,36104],[8439,36104],[8440,36104],[8446,36115],[8448,36114],[8452,35932],[8453,35932],[8454,35932],[8455,35932],[8456,35932],[8457,35932],[8458,35932],[8459,35932],[8460,35932],[8461,35932],[8462,35932],[8463,35932],[8464,35932],[8466,36113],[8467,36114],[8469,36111],[8471,36114],[8472,36112],[8475,35932],[8476,36027],[8477,36027],[8478,36028],[8479,36028],[8480,36028],[8481,36029],[8482,36029],[8483,36029],[8484,36029],[8485,36029],[8486,36029],[8487,35986],[8491,36257],[8494,36030],[8495,36017],[8496,36017],[8497,36031],[8498,36031],[8499,36031],[8500,36257],[8501,36027],[8502,36027],[8503,35947],[8505,35936],[8506,35936],[8507,35936],[8508,35977],[8510,36032],[8511,36032],[8512,36027],[8513,36027],[8514,36027],[8515,36029],[8516,35986],[8533,35986],[8534,35986],[8535,35986],[8536,35986],[8537,35986],[8538,35986],[8539,35986],[8540,36027],[8541,36027],[8542,35977],[8545,36029],[8546,36029],[8547,36029],[8548,36029],[8549,36027],[8550,36027],[8552,35977],[8555,35977],[8603,35951],[8604,35951],[8605,35951],[8607,35951],[8609,36133],[8610,36012],[8611,36033],[8612,36033],[8613,36133],[8614,36133],[8640,36258],[8641,36258],[8642,36258],[8643,36258],[8644,36258],[8645,36258],[8646,36258],[8647,36258],[8648,36258],[8649,36258],[8650,36258],[8651,36259],[8652,36259],[8653,36259],[8654,36259],[8655,36259],[8656,36259],[8657,36259],[8658,36259],[8659,36259],[8660,36259],[8661,36259],[8662,36259],[8663,36259],[8664,36259],[8665,36259],[8666,36259],[8667,36259],[8668,36259],[8669,35965],[8670,35965],[8671,35965],[8672,36260],[8673,36260],[8674,36260],[8675,36260],[8676,36260],[8677,35938],[8678,35938],[8679,35999],[8680,35999],[8681,35935],[8682,35935],[8683,36166],[8684,35963],[8685,35963],[8686,35931],[8687,35947],[8688,35944],[8689,35944],[8691,35958],[8692,35940],[8693,35936],[8694,35936],[8695,35936],[8696,35938],[8697,36247],[8698,35938],[8700,35940],[8703,35934],[8706,35951],[8707,35944],[8708,35944],[8710,35944],[8711,35944],[8712,35944],[8713,35944],[8714,35933],[8715,35935],[8716,35935],[8718,35935],[8719,35935],[8722,36025],[8723,36025],[8725,36261],[8730,36162],[8731,36261],[8736,36162],[8737,36261],[8738,36261],[8749,36162],[8750,36162],[8751,36162],[8752,36162],[8753,36162],[8758,36261],[8759,36261],[8760,36261],[8761,36025],[8764,36162],[8771,36162],[8780,36162],[8781,36162],[8786,36261],[8789,36162],[8790,36162],[8791,36162],[8806,36162],[8807,36162],[8821,36162],[8829,36162],[8845,36025],[8846,36025],[8850,36162],[8854,36261],[8855,36261],[8856,36162],[8863,36261],[8866,35938],[8867,35938],[8868,35999],[8869,35999],[8870,35935],[8871,35935],[8872,36166],[8873,35963],[8874,35963],[8875,35931],[8876,35947],[8877,35944],[8878,35944],[8880,35958],[8881,35940],[8882,35936],[8883,35936],[8884,35936],[8885,35938],[8886,36247],[8887,35938],[8889,35940],[8892,35934],[8895,35951],[8896,35944],[8897,35944],[8899,35944],[8900,35944],[8901,35944],[8902,35944],[8903,35933],[8904,35935],[8905,35935],[8907,35935],[8908,35935],[8911,36025],[8912,36025],[8914,36261],[8919,36162],[8920,36261],[8925,36162],[8926,36261],[8927,36261],[8938,36162],[8939,36162],[8940,36162],[8941,36162],[8942,36162],[8947,36261],[8948,36261],[8949,36261],[8950,36025],[8953,36162],[8960,36162],[8969,36162],[8970,36162],[8975,36261],[8978,36162],[8979,36162],[8980,36162],[8995,36162],[8996,36162],[9010,36162],[9018,36162],[9034,36025],[9035,36025],[9039,36162],[9043,36261],[9044,36261],[9045,36162],[9052,36261],[9055,35938],[9056,35938],[9057,35999],[9058,35999],[9059,35935],[9060,35935],[9061,36166],[9062,35963],[9063,35963],[9064,35931],[9065,35947],[9066,35944],[9067,35944],[9071,35958],[9072,35940],[9073,35936],[9074,35936],[9075,35936],[9076,35938],[9077,35940],[9078,36247],[9079,35938],[9081,35940],[9084,35934],[9087,35951],[9088,35944],[9089,35944],[9091,35944],[9092,35944],[9093,35944],[9094,35944],[9095,35933],[9096,35935],[9097,35935],[9099,35935],[9100,35938],[9101,35938],[9102,35935],[9105,36025],[9106,36025],[9108,36261],[9113,36162],[9114,36261],[9119,36162],[9120,36261],[9121,36261],[9132,36162],[9133,36162],[9134,36162],[9135,36162],[9136,36162],[9141,36261],[9142,36261],[9143,36261],[9144,36025],[9147,36162],[9154,36162],[9163,36162],[9164,36162],[9170,36261],[9173,36162],[9174,36162],[9175,36162],[9190,36162],[9191,36162],[9205,36162],[9213,36162],[9229,36025],[9230,36025],[9234,36162],[9238,36261],[9239,36261],[9240,36162],[9249,36261],[9252,35938],[9253,35938],[9254,35999],[9255,35999],[9256,35935],[9257,35935],[9258,36166],[9259,35963],[9260,35963],[9261,35931],[9262,35947],[9263,35944],[9264,35944],[9268,35958],[9269,35940],[9270,35936],[9271,35936],[9272,35936],[9273,35938],[9274,35940],[9275,35957],[9276,36247],[9277,35938],[9278,35956],[9281,35940],[9284,35934],[9287,35951],[9288,35944],[9289,35944],[9293,35944],[9294,35944],[9295,35944],[9296,35944],[9297,35933],[9298,35935],[9299,35935],[9301,35935],[9302,35938],[9303,35938],[9304,35935],[9307,36025],[9308,36025],[9310,36261],[9315,36162],[9316,36261],[9321,36162],[9322,36261],[9323,36261],[9334,36162],[9335,36162],[9336,36162],[9337,36162],[9338,36162],[9343,36261],[9344,36261],[9345,36261],[9346,36025],[9349,36162],[9356,36162],[9365,36162],[9366,36162],[9372,36261],[9375,36162],[9376,36162],[9377,36162],[9393,36162],[9394,36162],[9408,36162],[9416,36162],[9433,36025],[9434,36025],[9438,36162],[9442,36261],[9443,36261],[9444,36162],[9453,36261],[9456,35938],[9457,35938],[9458,35999],[9459,35999],[9460,35935],[9461,35935],[9462,36166],[9463,35963],[9464,35963],[9465,35931],[9466,35947],[9467,35944],[9468,35944],[9470,35958],[9471,35940],[9472,35936],[9473,35936],[9474,35936],[9475,35938],[9476,36247],[9477,35938],[9479,35940],[9482,35934],[9485,35951],[9486,35944],[9487,35944],[9489,35944],[9490,35944],[9491,35944],[9492,35944],[9493,35933],[9494,35935],[9495,35935],[9497,35935],[9498,35935],[9501,36025],[9502,36025],[9504,36261],[9509,36162],[9510,36261],[9515,36162],[9516,36261],[9517,36261],[9528,36162],[9529,36162],[9530,36162],[9531,36162],[9532,36162],[9537,36261],[9538,36261],[9539,36261],[9540,36025],[9543,36162],[9550,36162],[9559,36162],[9560,36162],[9565,36261],[9568,36162],[9569,36162],[9570,36162],[9585,36162],[9586,36162],[9600,36162],[9608,36162],[9624,36025],[9625,36025],[9629,36162],[9633,36261],[9634,36261],[9635,36162],[9642,36261],[9662,36116],[9663,36136],[9665,35982],[9666,36136],[9667,36262],[9668,36262],[9669,36262],[9670,36011],[9671,36011],[9672,36262],[9673,36262],[9674,36262],[9675,36262],[9676,36262],[9677,36262],[9678,36136],[9679,36136],[9680,36262],[9681,36262],[9682,36136],[9683,36262],[9684,36262],[9685,36262],[9686,36262],[9687,36262],[9688,36262],[9689,36262],[9690,36262],[9691,36262],[9692,36262],[9693,36262],[9694,36262],[9695,36262],[9696,36262],[9697,36262],[9698,36011],[9699,36262],[9700,36262],[9701,35986],[9704,36034],[9705,36034],[9706,36034],[9707,35986],[9708,36035],[9709,35986],[9710,36035],[9711,35986],[9712,36035],[9713,35986],[9714,35986],[9715,36014],[9853,36035],[9909,35986],[9910,35986],[9911,35986],[9916,35933],[9917,35933],[9918,35933],[9920,35933],[9923,36263],[9924,36037],[9926,36037],[9927,36036],[9928,36264],[9929,36036],[9930,36263],[9931,36265],[9932,36038],[9933,36266],[9936,36267],[9937,36267],[9938,36267],[9939,36267],[9940,36267],[9941,36267],[9942,36267],[9943,36267],[9944,36267],[9945,36267],[9946,36267],[9947,36267],[9948,36267],[9949,36267],[9953,36267],[9954,36267],[9955,36267],[9956,36267],[9957,36267],[9958,36267],[9959,36267],[9960,36267],[9961,36267],[9962,36267],[9963,36267],[9964,36267],[9965,36267],[9966,36267],[9967,36267],[9968,36267],[9969,36267],[9970,36267],[9971,36267],[9972,36267],[9973,36267],[9974,36267],[9975,36267],[9976,36267],[9977,36267],[9978,36267],[9979,36267],[9980,36267],[9981,36267],[9982,36267],[9983,36267],[9984,36267],[9985,36267],[9986,36267],[9987,36267],[9988,36267],[9989,36267],[9990,36267],[9991,36267],[9992,36267],[9993,36267],[9994,36267],[9995,36267],[9996,36267],[9997,36267],[9998,36267],[9999,36267],[10000,36267],[10001,36267],[10002,36267],[10003,36267],[10004,36267],[10005,36267],[10006,36267],[10007,36267],[10008,36267],[10009,36267],[10010,36267],[10011,36267],[10012,36267],[10013,36267],[10014,36267],[10015,36267],[10016,36267],[10017,36267],[10018,36267],[10019,36267],[10020,36267],[10021,36267],[10022,36267],[10023,36266],[10024,36266],[10025,36266],[10026,36265],[10032,36267],[10033,36267],[10034,36267],[10035,36267],[10036,36267],[10037,36267],[10038,36267],[10039,36267],[10040,36267],[10041,36267],[10042,36267],[10043,36267],[10044,36267],[10045,36267],[10046,36267],[10047,36267],[10048,36267],[10049,36267],[10050,36267],[10051,36267],[10052,36267],[10053,36267],[10054,36267],[10055,36267],[10056,36267],[10057,36267],[10058,36267],[10059,36267],[10060,36267],[10061,36267],[10062,36267],[10063,36267],[10064,36267],[10065,36267],[10066,36267],[10068,36040],[10069,36041],[10070,36040],[10089,36042],[10090,36043],[10091,36039],[10165,36037],[10175,36036],[10176,36044],[10177,36042],[10178,36043],[10179,36045],[10180,36040],[10181,36041],[10182,36040],[10183,36039],[10201,36267],[10202,36267],[10203,36267],[10204,36267],[10205,36267],[10206,36267],[10207,36267],[10208,36267],[10209,36267],[10210,36267],[10211,36267],[10212,36267],[10213,36267],[10214,36267],[10216,36267],[10217,36267],[10218,36267],[10219,36267],[10220,36267],[10221,36267],[10222,36267],[10223,36267],[10224,36267],[10225,36267],[10226,36267],[10227,36267],[10228,36267],[10229,36267],[10230,36267],[10231,36267],[10232,36267],[10233,36267],[10234,36267],[10235,36267],[10236,36267],[10237,36267],[10238,36267],[10239,36267],[10240,36267],[10241,36267],[10242,36267],[10243,36267],[10255,36267],[10256,36267],[10257,36267],[10258,36267],[10259,36267],[10260,36267],[10261,36267],[10266,36267],[10267,36267],[10268,36267],[10269,36267],[10270,36267],[10271,36267],[10272,36267],[10273,36267],[10274,36267],[10275,36267],[10276,36267],[10277,36267],[10278,36267],[10279,36267],[10280,36267],[10281,36267],[10282,36267],[10283,36267],[10284,36267],[10285,36267],[10286,36267],[10287,36267],[10288,36267],[10289,36267],[10290,36267],[10291,36267],[10292,36267],[10293,36267],[10294,36267],[10295,36267],[10296,36267],[10297,36267],[10298,36267],[10299,36267],[10300,36267],[10342,36265],[10353,36267],[10354,36267],[10355,36267],[10356,36267],[10357,36267],[10358,36267],[10359,36267],[10360,36267],[10361,36267],[10362,36267],[10363,36267],[10364,36267],[10365,36267],[10366,36267],[10367,36267],[10368,36267],[10369,36267],[10370,36267],[10371,36267],[10372,36267],[10373,36267],[10374,36267],[10375,36267],[10376,36267],[10377,36267],[10378,36267],[10379,36267],[10380,36267],[10381,36267],[10382,36267],[10383,36267],[10384,36267],[10385,36267],[10386,36267],[10387,36267],[10407,36044],[10408,36045],[10431,36062],[10432,36062],[10433,36062],[10434,36062],[10435,36062],[10436,36062],[10437,36062],[10438,36062],[10439,36062],[10440,36140],[10441,36046],[10443,36062],[10444,36062],[10446,36062],[10447,36062],[10448,36062],[10449,36062],[10450,36062],[10451,36062],[10452,36062],[10453,36062],[10454,35987],[10455,36046],[10456,36062],[10457,36062],[10458,36062],[10459,36062],[10460,36062],[10461,36062],[10462,36062],[10469,36168],[10470,36168],[10471,36168],[10472,36168],[10473,36168],[10474,36168],[10482,36046],[10483,35987],[10487,35987],[10489,36268],[10490,36268],[10491,36141],[10492,36141],[10493,36141],[10494,36141],[10496,36141],[10497,36141],[10498,36141],[10499,35989],[10500,36141],[10501,36141],[10502,36141],[10503,36141],[10504,35990],[10505,36141],[10506,36141],[10507,36141],[10508,36141],[10509,36141],[10510,36141],[10511,36141],[10512,36141],[10513,36141],[10514,36141],[10515,36141],[10516,36142],[10517,36142],[10518,35990],[10519,36170],[10520,36170],[10522,36170],[10523,36170],[10524,36170],[10525,36170],[10526,36269],[10527,36171],[10528,36269],[10529,35991],[10530,35991],[10531,35991],[10532,35991],[10533,35991],[10535,35991],[10537,35991],[10539,35991],[10540,35991],[10541,35991],[10543,35991],[10557,36143],[10558,36270],[10559,35998],[10560,35998],[10561,35998],[10564,35998],[10565,35998],[10566,35998],[10567,35998],[10568,35998],[10569,35998],[10570,35998],[10571,35998],[10572,35998],[10573,35998],[10574,35998],[10575,35998],[10576,35998],[10580,35998],[10581,35998],[10582,35998],[10583,35966],[10584,35966],[10585,35966],[10587,35967],[10588,35966],[10589,35966],[10591,35966],[10592,36271],[10593,36110],[10594,36110],[10595,36272],[10596,36272],[10597,36273],[10598,36273],[10599,36274],[10600,36274],[10601,36275],[10602,36275],[10603,36276],[10604,36276],[10605,36162],[10609,36277],[10610,36278],[10611,36279],[10612,36279],[10613,36280],[10614,36280],[10615,36163],[10616,36162],[10617,36163],[10618,36162],[10619,36163],[10620,36162],[10621,36162],[10622,36162],[10623,36162],[10624,36162],[10625,36163],[10626,36164],[10627,36164],[10628,36162],[10629,36162],[10630,36172],[10631,36162],[10632,36162],[10633,36162],[10634,36163],[10635,36162],[10636,36162],[10637,36162],[10638,36162],[10639,36162],[10640,36162],[10641,36162],[10642,36163],[10643,36162],[10644,36162],[10645,36162],[10646,36162],[10647,36163],[10648,36162],[10649,36163],[10650,36163],[10651,36163],[10652,36163],[10653,36163],[10654,36163],[10655,36163],[10656,36163],[10657,36162],[10658,36164],[10659,36164],[10660,36162],[10661,36162],[10662,36163],[10663,36162],[10664,36163],[10665,36162],[10666,36162],[10667,36162],[10668,36162],[10669,36162],[10670,36162],[10671,36162],[10672,36162],[10673,36162],[10674,36162],[10675,36163],[10676,36281],[10677,36162],[10678,36162],[10679,36162],[10680,36162],[10681,36162],[10682,36162],[10683,36162],[10684,36162],[10685,36163],[10686,36163],[10687,36162],[10688,36162],[10689,36162],[10690,36163],[10691,36163],[10692,36163],[10693,36163],[10694,36163],[10695,36162],[10696,36163],[10697,36163],[10698,36162],[10699,36163],[10700,36163],[10701,36163],[10702,36162],[10703,36164],[10704,36162],[10705,36163],[10706,36164],[10707,36164],[10708,36164],[10709,36162],[10710,36163],[10711,36163],[10712,36163],[10713,36163],[10714,36163],[10715,36162],[10716,36162],[10717,36162],[10718,36162],[10719,36162],[10720,36162],[10721,36162],[10722,36162],[10723,36162],[10724,36162],[10725,36162],[10726,36164],[10727,36164],[10728,36162],[10729,36162],[10730,35981],[10731,35981],[10732,36048],[10733,35980],[10734,35979],[10735,35979],[10736,35979],[10737,36047],[10740,36048],[10743,36048],[10780,36048],[10815,36048],[10825,36048],[10830,36047],[10835,36047],[10858,35995],[10859,35995],[10896,35995],[10897,35995],[10898,36173],[10899,36173],[10900,36281],[10901,36281],[10902,36281],[10903,36281],[10904,36281],[10905,36281],[10906,36281],[10907,36281],[10908,36174],[10909,35997],[10910,36175],[10911,36175],[10912,36175],[10913,36175],[10914,36175],[10915,36175],[10916,36175],[10917,36175],[10918,36175],[10919,36175],[10920,36175],[10921,36175],[10922,36175],[10923,36175],[10924,36175],[10925,36175],[10926,36175],[10927,36175],[10928,36175],[10929,36175],[10930,36175],[10931,36175],[10932,36175],[10933,36175],[10934,36175],[10935,36175],[10936,36175],[10937,36175],[10938,36175],[10939,36175],[10940,36175],[10941,36175],[10942,35996],[10943,36176],[10944,36176],[10945,36176],[10946,36176],[10947,36176],[10948,36176],[10949,36176],[10950,36176],[10951,36177],[10952,36177],[10953,36177],[10954,36177],[10955,36177],[10956,36177],[10957,36177],[10958,36177],[10959,36177],[10960,36177],[10961,36178],[10962,36178],[10963,36178],[10964,36178],[10965,36178],[10966,36178],[10967,36178],[10968,36178],[10969,36178],[10970,36178],[10971,36178],[10972,36178],[10973,36178],[10974,36177],[10975,36177],[10976,36177],[10977,36177],[10978,36177],[10979,36177],[10980,36177],[10981,36177],[10982,36177],[10983,36177],[10984,35996],[10985,35996],[10986,36176],[10987,36176],[10988,36176],[10989,36176],[10990,36176],[10991,36176],[10992,36176],[10993,36177],[10994,36177],[10995,36177],[10996,36177],[10997,36177],[10998,36177],[10999,36177],[11000,36176],[11001,36176],[11002,36176],[11003,36176],[11004,36176],[11005,36176],[11006,36176],[11007,36176],[11008,36176],[11009,36176],[11010,36176],[11011,36176],[11012,36176],[11013,36176],[11014,36176],[11015,36176],[11016,36176],[11017,36176],[11018,36176],[11019,36176],[11020,36176],[11021,36176],[11022,36176],[11023,36176],[11024,36176],[11025,36176],[11026,36176],[11027,36176],[11028,36176],[11029,36176],[11030,36176],[11031,36176],[11032,36176],[11033,36176],[11034,36176],[11035,36176],[11036,36176],[11037,36176],[11038,36176],[11039,36176],[11040,36176],[11041,36176],[11042,36176],[11043,36176],[11044,36176],[11045,36176],[11046,36176],[11047,36176],[11048,36176],[11049,36176],[11050,36176],[11051,36176],[11052,36176],[11053,36176],[11054,36176],[11055,36176],[11056,36176],[11057,36176],[11058,36176],[11059,36176],[11060,36176],[11061,36176],[11062,36176],[11063,36176],[11064,36176],[11065,36176],[11066,36176],[11067,36176],[11068,36176],[11069,36176],[11070,36176],[11071,36176],[11072,36176],[11073,36176],[11074,36176],[11075,36176],[11076,36176],[11077,36176],[11078,36176],[11079,36176],[11080,36176],[11081,36176],[11082,36176],[11083,36176],[11084,36176],[11085,36176],[11086,36176],[11087,36176],[11088,36176],[11089,36176],[11090,36176],[11091,36176],[11092,36176],[11093,36176],[11094,36176],[11095,36176],[11096,36176],[11097,36176],[11098,36176],[11099,36176],[11100,36176],[11101,36176],[11102,36176],[11103,36176],[11104,36176],[11105,36176],[11106,36176],[11107,36176],[11108,36176],[11109,36176],[11110,36176],[11111,36176],[11112,36176],[11113,36176],[11114,36176],[11115,36176],[11116,36176],[11117,36176],[11118,36176],[11119,36176],[11120,36176],[11121,36176],[11122,36176],[11123,36176],[11124,36176],[11125,36176],[11126,36176],[11127,36176],[11128,36176],[11129,36176],[11130,36176],[11131,36176],[11132,36176],[11133,36176],[11134,36176],[11135,36176],[11136,36176],[11137,36176],[11138,36176],[11139,36176],[11140,36176],[11141,36176],[11142,36176],[11143,36176],[11144,36176],[11145,36176],[11146,36176],[11147,36176],[11148,36176],[11149,36176],[11150,36176],[11151,36176],[11152,36176],[11153,36176],[11154,36176],[11155,36176],[11156,36176],[11157,36176],[11158,36176],[11159,36176],[11160,36176],[11161,36176],[11162,36176],[11163,36176],[11164,36176],[11165,36176],[11166,36176],[11167,36176],[11168,36176],[11169,36176],[11170,36176],[11171,36176],[11172,36176],[11173,36176],[11174,36176],[11175,36176],[11176,36176],[11177,36176],[11178,36176],[11179,36176],[11180,36176],[11181,36176],[11182,36176],[11183,36176],[11184,36176],[11185,36176],[11186,36176],[11187,36176],[11188,36176],[11189,36176],[11190,36176],[11191,36176],[11192,36176],[11193,36176],[11194,36176],[11195,36176],[11196,36176],[11197,36176],[11198,36176],[11199,36176],[11200,36176],[11201,36176],[11202,36176],[11203,36176],[11204,36176],[11205,36176],[11206,36176],[11207,36176],[11208,36176],[11209,36176],[11210,36176],[11211,36176],[11212,36176],[11213,36176],[11214,36176],[11215,36176],[11216,36176],[11217,36176],[11218,36176],[11219,36176],[11220,36176],[11221,36176],[11222,36176],[11223,36176],[11224,36176],[11225,36176],[11226,36176],[11227,36176],[11228,36176],[11229,36176],[11230,36176],[11231,36176],[11232,36176],[11233,36176],[11234,36176],[11235,36176],[11236,36176],[11237,36176],[11238,36176],[11239,36176],[11240,36176],[11241,36176],[11242,36176],[11243,36176],[11244,36176],[11245,36176],[11246,36176],[11247,36176],[11248,36176],[11249,36176],[11250,36176],[11251,36176],[11252,36176],[11253,36176],[11254,36176],[11255,36176],[11256,35996],[11257,36177],[11258,36177],[11259,36177],[11260,36177],[11261,36177],[11262,36177],[11263,36177],[11264,36177],[11265,36177],[11266,36177],[11267,36177],[11268,36179],[11269,36179],[11270,36179],[11271,36179],[11272,36179],[11273,36179],[11274,36179],[11275,36179],[11276,36179],[11277,36179],[11278,36179],[11279,36179],[11280,36179],[11281,36179],[11282,36179],[11283,36179],[11284,36180],[11285,36180],[11286,36180],[11287,36180],[11288,36180],[11289,36180],[11290,36180],[11291,36181],[11292,35997],[11293,35997],[11294,35997],[11295,35996],[11296,35996],[11297,35996],[11298,35996],[11299,35996],[11300,35996],[11301,35996],[11302,35996],[11303,35996],[11304,35996],[11305,35996],[11306,35996],[11307,35996],[11308,35996],[11309,35996],[11310,35996],[11311,35996],[11312,35996],[11313,35996],[11314,36182],[11315,36183],[11316,36184],[11317,36183],[11318,36184],[11319,36185],[11320,36186],[11321,36185],[11322,36186],[11323,36185],[11324,36186],[11325,36187],[11326,36188],[11327,36189],[11328,36190],[11329,36189],[11330,36190],[11331,36189],[11332,36190],[11333,36189],[11334,36190],[11335,36187],[11336,36188],[11337,36187],[11338,36188],[11339,36187],[11340,36188],[11341,36187],[11342,36188],[11343,36187],[11344,36188],[11345,36187],[11346,36188],[11347,36185],[11348,36186],[11349,36187],[11350,36188],[11351,36185],[11352,36186],[11353,36185],[11354,36186],[11355,36191],[11356,36192],[11357,36193],[11358,36194],[11359,36176],[11360,36195],[11361,36196],[11362,36197],[11363,36176],[11364,36195],[11365,36197],[11366,36196],[11367,36198],[11368,36199],[11369,36198],[11370,36199],[11371,36197],[11372,36195],[11373,36195],[11374,36197],[11375,36176],[11376,36195],[11377,36195],[11378,36197],[11379,36176],[11380,36195],[11381,36195],[11382,36197],[11383,36176],[11384,36195],[11385,36195],[11386,36197],[11387,36176],[11388,36195],[11389,36195],[11390,36197],[11391,36176],[11392,36195],[11393,36195],[11394,36197],[11395,36176],[11396,36195],[11397,36195],[11398,36197],[11399,36176],[11400,36195],[11401,36195],[11402,36197],[11403,36176],[11404,36195],[11405,36195],[11406,36197],[11407,36176],[11408,36195],[11409,36195],[11410,36197],[11411,36197],[11412,36195],[11413,36195],[11414,36197],[11415,36197],[11416,36195],[11417,36195],[11418,36197],[11419,36197],[11420,36195],[11421,36195],[11422,36197],[11423,36176],[11424,36195],[11425,36195],[11426,36197],[11427,36176],[11428,36195],[11429,36195],[11430,36197],[11431,36176],[11432,36195],[11433,36195],[11434,36197],[11435,36200],[11436,36201],[11437,36202],[11438,36202],[11439,36176],[11440,36202],[11441,36203],[11442,36202],[11443,36202],[11444,36202],[11445,36202],[11446,36175],[11447,36203],[11448,36175],[11449,36202],[11450,36202],[11451,36202],[11452,36202],[11453,36175],[11454,36175],[11455,36204],[11456,36204],[11457,36204],[11458,36204],[11459,36176],[11460,36176],[11461,36202],[11462,36175],[11463,36175],[11464,36202],[11465,36175],[11466,36175],[11467,36202],[11468,36202],[11469,36202],[11470,36205],[11471,36205],[11472,36206],[11473,36202],[11474,36202],[11475,36175],[11476,36175],[11477,36202],[11478,36175],[11479,36175],[11480,36197],[11481,36176],[11482,36197],[11483,36197],[11484,36176],[11485,36197],[11486,36175],[11487,36175],[11488,36175],[11489,36175],[11490,36202],[11491,36202],[11492,36207],[11493,36207],[11494,36202],[11495,36202],[11496,36202],[11497,36202],[11498,36202],[11499,36202],[11500,36202],[11501,36175],[11502,36175],[11503,36203],[11504,36175],[11505,36175],[11506,36203],[11507,36203],[11508,36203],[11509,36203],[11510,36203],[11511,36175],[11512,36175],[11513,36175],[11514,36203],[11515,36175],[11516,36175],[11517,36175],[11518,36203],[11519,36175],[11520,36175],[11521,36175],[11522,36175],[11523,36208],[11524,36195],[11525,36176],[11526,36176],[11527,36195],[11528,36195],[11529,36176],[11530,36176],[11531,36195],[11532,36175],[11533,36176],[11534,36203],[11535,36175],[11536,36176],[11537,36202],[11538,36195],[11539,36202],[11540,36176],[11541,36202],[11542,36176],[11543,36202],[11544,36195],[11545,36195],[11546,36176],[11547,36176],[11548,36195],[11549,36195],[11550,36176],[11551,36176],[11552,36195],[11553,36195],[11554,36176],[11555,36176],[11556,36195],[11557,36202],[11558,36195],[11559,36202],[11560,36176],[11561,36202],[11562,36176],[11563,36202],[11564,36195],[11565,36195],[11566,36176],[11567,36176],[11568,36195],[11569,36195],[11570,36176],[11571,36176],[11572,36195],[11573,36195],[11574,36176],[11575,36176],[11576,36195],[11577,36195],[11578,36176],[11579,36176],[11580,36195],[11581,36195],[11582,36176],[11583,36176],[11584,36195],[11585,36195],[11586,36176],[11587,36176],[11588,36195],[11589,36195],[11590,36176],[11591,36176],[11592,36195],[11593,36203],[11594,36207],[11595,36207],[11596,36203],[11597,36202],[11598,36202],[11599,36195],[11600,36203],[11601,36176],[11602,36202],[11603,36176],[11604,36175],[11605,36203],[11606,36175],[11607,36176],[11608,36176],[11609,36176],[11610,36197],[11611,36203],[11612,36197],[11613,36202],[11614,36202],[11615,36202],[11616,36202],[11617,36202],[11618,36203],[11619,36202],[11620,36176],[11621,36203],[11622,36197],[11623,36203],[11624,36197],[11625,36202],[11626,36202],[11627,36202],[11628,36209],[11629,36205],[11630,36205],[11631,36205],[11632,36205],[11633,36205],[11634,36209],[11635,36209],[11636,36175],[11637,36197],[11638,36176],[11639,36197],[11640,36203],[11641,36175],[11642,36203],[11643,36203],[11644,36203],[11645,36203],[11646,36203],[11647,36203],[11648,36203],[11649,36210],[11650,36175],[11651,36197],[11652,36176],[11653,36197],[11654,36175],[11655,36210],[11656,36175],[11657,36195],[11658,36176],[11659,36176],[11660,36176],[11661,36176],[11662,36176],[11663,36203],[11664,36175],[11665,36175],[11666,36175],[11667,36197],[11668,36176],[11669,36197],[11670,36203],[11671,36203],[11672,36203],[11673,36203],[11674,36203],[11675,36203],[11676,36175],[11677,36197],[11678,36176],[11679,36197],[11680,36195],[11681,36176],[11682,36176],[11683,36176],[11684,36176],[11685,36176],[11686,36203],[11687,36203],[11688,36195],[11689,36175],[11690,36203],[11691,36175],[11692,36175],[11693,36209],[11694,36211],[11695,36211],[11696,36211],[11697,36211],[11698,36211],[11699,36211],[11700,36211],[11701,36211],[11702,36211],[11703,36211],[11704,36211],[11705,36211],[11706,36211],[11707,36211],[11708,36211],[11709,36211],[11710,36211],[11711,36211],[11712,36211],[11713,36211],[11714,36202],[11715,36175],[11716,36212],[11717,36202],[11718,36175],[11719,36175],[11720,36175],[11721,36176],[11722,36197],[11723,36202],[11724,36176],[11725,36197],[11726,36203],[11727,36203],[11728,36176],[11729,36176],[11730,36175],[11731,36175],[11732,36203],[11733,36213],[11734,36203],[11735,36213],[11736,36213],[11737,36203],[11738,36213],[11739,36213],[11740,36203],[11741,36213],[11742,36213],[11743,36203],[11744,36213],[11745,36203],[11746,36213],[11747,36203],[11748,36213],[11749,36213],[11750,36203],[11751,36213],[11752,36197],[11753,36203],[11754,36197],[11755,36176],[11756,36203],[11757,36176],[11758,36176],[11759,36203],[11760,36176],[11761,36214],[11762,36214],[11763,36214],[11764,36202],[11765,36202],[11766,36175],[11767,36175],[11768,36202],[11769,36202],[11770,36202],[11771,36175],[11772,36175],[11773,36202],[11774,36202],[11775,36202],[11776,36202],[11777,36202],[11778,36176],[11779,36176],[11780,36176],[11781,36176],[11782,36202],[11783,36202],[11784,36202],[11785,36202],[11786,36176],[11787,36176],[11788,36176],[11789,36176],[11790,36175],[11791,36175],[11792,36212],[11793,36175],[11794,36175],[11795,36175],[11796,36175],[11797,36176],[11798,36197],[11799,36202],[11800,36176],[11801,36197],[11802,36175],[11803,36176],[11804,36176],[11805,36175],[11806,36203],[11807,36175],[11808,36175],[11809,36175],[11810,36175],[11811,36175],[11812,36195],[11813,36176],[11814,36176],[11815,36195],[11816,36175],[11817,36203],[11818,36175],[11819,36175],[11820,36207],[11821,36207],[11822,36215],[11823,36215],[11824,36215],[11825,36215],[11826,36202],[11827,36202],[11828,36195],[11829,36176],[11830,36176],[11831,36216],[11832,36176],[11833,36176],[11834,36203],[11835,36203],[11836,36176],[11837,36203],[11838,36176],[11839,36176],[11840,36203],[11841,36176],[11842,36176],[11843,36203],[11844,36176],[11845,36176],[11846,36203],[11847,36176],[11848,36176],[11849,36203],[11850,36176],[11851,36176],[11852,36203],[11853,36176],[11854,36195],[11855,36176],[11856,36176],[11857,36195],[11858,36195],[11859,36176],[11860,36176],[11861,36195],[11862,36176],[11863,36203],[11864,36176],[11865,36195],[11866,36195],[11867,36195],[11868,36195],[11869,36176],[11870,36176],[11871,36195],[11872,36176],[11873,36176],[11874,36197],[11875,36197],[11876,36176],[11877,36176],[11878,36197],[11879,36197],[11880,36195],[11881,36195],[11882,36206],[11883,36195],[11884,36176],[11885,36176],[11886,36195],[11887,36176],[11888,36203],[11889,36176],[11890,36197],[11891,36176],[11892,36197],[11893,36197],[11894,36176],[11895,36197],[11896,36195],[11897,36176],[11898,36176],[11899,36176],[11900,36176],[11901,36195],[11902,36195],[11903,36176],[11904,36176],[11905,36195],[11906,36195],[11907,36176],[11908,36176],[11909,36195],[11910,36176],[11911,36203],[11912,36176],[11913,36195],[11914,36176],[11915,36176],[11916,36195],[11917,36195],[11918,36176],[11919,36176],[11920,36195],[11921,36195],[11922,36176],[11923,36176],[11924,36195],[11925,36195],[11926,36176],[11927,36176],[11928,36195],[11929,36195],[11930,36176],[11931,36176],[11932,36195],[11933,36195],[11934,36176],[11935,36176],[11936,36195],[11937,36195],[11938,36176],[11939,36176],[11940,36195],[11941,36195],[11942,36176],[11943,36176],[11944,36195],[11945,36195],[11946,36176],[11947,36176],[11948,36195],[11949,36195],[11950,36176],[11951,36176],[11952,36195],[11953,36195],[11954,36176],[11955,36176],[11956,36195],[11957,36195],[11958,36176],[11959,36176],[11960,36195],[11961,36203],[11962,36217],[11963,36176],[11964,36176],[11965,36217],[11966,36176],[11967,36176],[11968,36217],[11969,36176],[11970,36176],[11971,36217],[11972,36176],[11973,36176],[11974,36207],[11975,36207],[11976,36203],[11977,36176],[11978,36176],[11979,36176],[11980,36195],[11981,36203],[11982,36195],[11983,36176],[11984,36176],[11985,36176],[11986,36176],[11987,36203],[11988,36176],[11989,36176],[11990,36176],[11991,36176],[11992,36176],[11993,36176],[11994,36197],[11995,36203],[11996,36197],[11997,36176],[11998,36176],[11999,36176],[12000,36195],[12001,36176],[12002,36176],[12003,36176],[12004,36176],[12005,36203],[12006,36176],[12007,36176],[12008,36203],[12009,36197],[12010,36203],[12011,36197],[12012,36195],[12013,36176],[12014,36176],[12015,36209],[12016,36209],[12017,36209],[12018,36176],[12019,36197],[12020,36176],[12021,36197],[12022,36203],[12023,36176],[12024,36203],[12025,36203],[12026,36203],[12027,36203],[12028,36203],[12029,36203],[12030,36203],[12031,36176],[12032,36176],[12033,36197],[12034,36176],[12035,36197],[12036,36176],[12037,36195],[12038,36195],[12039,36176],[12040,36176],[12041,36176],[12042,36176],[12043,36176],[12044,36176],[12045,36176],[12046,36176],[12047,36176],[12048,36176],[12049,36176],[12050,36197],[12051,36176],[12052,36197],[12053,36203],[12054,36203],[12055,36203],[12056,36203],[12057,36203],[12058,36203],[12059,36176],[12060,36197],[12061,36176],[12062,36197],[12063,36195],[12064,36195],[12065,36176],[12066,36176],[12067,36176],[12068,36176],[12069,36176],[12070,36176],[12071,36176],[12072,36176],[12073,36176],[12074,36176],[12075,36203],[12076,36203],[12077,36195],[12078,36176],[12079,36203],[12080,36176],[12081,36209],[12082,36211],[12083,36211],[12084,36211],[12085,36211],[12086,36217],[12087,36176],[12088,36176],[12089,36217],[12090,36176],[12091,36176],[12092,36217],[12093,36176],[12094,36176],[12095,36217],[12096,36176],[12097,36176],[12098,36176],[12099,36197],[12100,36176],[12101,36197],[12102,36203],[12103,36203],[12104,36176],[12105,36176],[12106,36203],[12107,36176],[12108,36203],[12109,36176],[12110,36176],[12111,36203],[12112,36176],[12113,36176],[12114,36203],[12115,36176],[12116,36176],[12117,36203],[12118,36176],[12119,36203],[12120,36176],[12121,36203],[12122,36176],[12123,36176],[12124,36203],[12125,36176],[12126,36197],[12127,36203],[12128,36197],[12129,36176],[12130,36203],[12131,36176],[12132,36176],[12133,36203],[12134,36176],[12135,36214],[12136,36214],[12137,36214],[12138,36202],[12139,36202],[12140,36202],[12141,36202],[12142,36176],[12143,36176],[12144,36176],[12145,36176],[12146,36202],[12147,36202],[12148,36202],[12149,36202],[12150,36176],[12151,36176],[12152,36176],[12153,36176],[12154,36176],[12155,36197],[12156,36176],[12157,36197],[12158,36176],[12159,36176],[12160,36176],[12161,36176],[12162,36195],[12163,36176],[12164,36176],[12165,36195],[12166,36176],[12167,36176],[12168,36207],[12169,36207],[12170,36215],[12171,36215],[12172,36195],[12173,36195],[12174,36195],[12175,36176],[12176,36176],[12177,36195],[12178,36195],[12179,36176],[12180,36176],[12181,36195],[12182,36176],[12183,36203],[12184,36176],[12185,36195],[12186,36176],[12187,36176],[12188,36195],[12189,36195],[12190,36176],[12191,36176],[12192,36195],[12193,36176],[12194,36203],[12195,36176],[12196,36195],[12197,36176],[12198,36176],[12199,36195],[12200,36176],[12201,36176],[12202,36176],[12203,36176],[12204,36176],[12205,36176],[12206,36176],[12207,36203],[12208,36176],[12209,36203],[12210,36176],[12211,36195],[12212,36195],[12213,36195],[12214,36195],[12215,36176],[12216,36197],[12217,36216],[12218,36176],[12219,36176],[12220,36197],[12221,36197],[12222,36195],[12223,36195],[12224,36195],[12225,36195],[12226,36176],[12227,36176],[12228,36176],[12229,36176],[12230,36195],[12231,36176],[12232,36176],[12233,36216],[12234,36176],[12235,36176],[12236,36176],[12237,36176],[12238,36195],[12239,36176],[12240,36176],[12241,36216],[12242,36176],[12243,36176],[12244,36206],[12245,36218],[12246,36218],[12247,36206],[12248,36197],[12249,36197],[12250,36176],[12251,36176],[12252,36203],[12253,36195],[12254,36195],[12255,36195],[12256,36195],[12257,36195],[12258,36195],[12259,36195],[12260,36195],[12261,36195],[12262,36195],[12263,36195],[12264,36195],[12265,36195],[12266,36195],[12267,36195],[12268,36195],[12269,36197],[12270,36203],[12271,36197],[12272,36176],[12273,36176],[12274,36176],[12275,36176],[12276,36176],[12277,36176],[12278,36176],[12279,36176],[12280,36176],[12281,36203],[12282,36176],[12283,36176],[12284,36176],[12285,36203],[12286,36176],[12287,36203],[12288,36176],[12289,36195],[12290,36176],[12291,36176],[12292,36195],[12293,36217],[12294,36217],[12295,36217],[12296,36217],[12297,36217],[12298,36217],[12299,36217],[12300,36217],[12301,36217],[12302,36217],[12303,36217],[12304,36217],[12305,36176],[12306,36195],[12307,36176],[12308,36176],[12309,36176],[12310,36176],[12311,36176],[12312,36176],[12313,36195],[12314,36195],[12315,36195],[12316,36176],[12317,36176],[12318,36195],[12319,36176],[12320,36176],[12321,36195],[12322,36176],[12323,36176],[12324,36176],[12325,36203],[12326,36176],[12327,36195],[12328,36176],[12329,36176],[12330,36195],[12331,36176],[12332,36176],[12333,36195],[12334,36176],[12335,36176],[12336,36195],[12337,36176],[12338,36176],[12339,36195],[12340,36176],[12341,36176],[12342,36195],[12343,36176],[12344,36176],[12345,36176],[12346,36176],[12347,36176],[12348,36176],[12349,36195],[12350,36176],[12351,36176],[12352,36195],[12353,36176],[12354,36176],[12355,36195],[12356,36176],[12357,36176],[12358,36195],[12359,36176],[12360,36203],[12361,36176],[12362,36195],[12363,36195],[12364,36195],[12365,36195],[12366,36176],[12367,36176],[12368,36195],[12369,36176],[12370,36176],[12371,36195],[12372,36195],[12373,36176],[12374,36176],[12375,36195],[12376,36195],[12377,36176],[12378,36176],[12379,36195],[12380,36176],[12381,36176],[12382,36195],[12383,36176],[12384,36176],[12385,36195],[12386,36176],[12387,36176],[12388,36176],[12389,36176],[12390,36197],[12391,36197],[12392,36202],[12393,36202],[12394,36175],[12395,36175],[12396,36202],[12397,36202],[12398,36175],[12399,36175],[12400,36195],[12401,36176],[12402,36176],[12403,36195],[12404,36195],[12405,36176],[12406,36176],[12407,36195],[12408,36176],[12409,36203],[12410,36176],[12411,36195],[12412,36195],[12413,36195],[12414,36195],[12415,36176],[12416,36176],[12417,36195],[12418,36176],[12419,36176],[12420,36197],[12421,36197],[12422,36176],[12423,36176],[12424,36197],[12425,36197],[12426,36195],[12427,36195],[12428,36197],[12429,36176],[12430,36197],[12431,36197],[12432,36176],[12433,36197],[12434,36195],[12435,36176],[12436,36176],[12437,36176],[12438,36176],[12439,36195],[12440,36203],[12441,36217],[12442,36176],[12443,36176],[12444,36217],[12445,36176],[12446,36176],[12447,36207],[12448,36207],[12449,36203],[12450,36176],[12451,36176],[12452,36176],[12453,36195],[12454,36203],[12455,36176],[12456,36176],[12457,36176],[12458,36176],[12459,36203],[12460,36176],[12461,36176],[12462,36176],[12463,36176],[12464,36197],[12465,36203],[12466,36197],[12467,36195],[12468,36176],[12469,36176],[12470,36176],[12471,36176],[12472,36203],[12473,36176],[12474,36176],[12475,36203],[12476,36197],[12477,36203],[12478,36197],[12479,36195],[12480,36176],[12481,36176],[12482,36209],[12483,36209],[12484,36209],[12485,36176],[12486,36197],[12487,36176],[12488,36197],[12489,36203],[12490,36176],[12491,36203],[12492,36203],[12493,36203],[12494,36203],[12495,36203],[12496,36203],[12497,36203],[12498,36176],[12499,36176],[12500,36197],[12501,36176],[12502,36197],[12503,36176],[12504,36195],[12505,36176],[12506,36176],[12507,36176],[12508,36176],[12509,36176],[12510,36176],[12511,36197],[12512,36176],[12513,36197],[12514,36203],[12515,36203],[12516,36203],[12517,36203],[12518,36203],[12519,36203],[12520,36176],[12521,36197],[12522,36176],[12523,36197],[12524,36195],[12525,36176],[12526,36176],[12527,36176],[12528,36176],[12529,36176],[12530,36203],[12531,36203],[12532,36195],[12533,36176],[12534,36203],[12535,36176],[12536,36209],[12537,36211],[12538,36211],[12539,36211],[12540,36211],[12541,36217],[12542,36176],[12543,36176],[12544,36217],[12545,36176],[12546,36176],[12547,36217],[12548,36176],[12549,36176],[12550,36217],[12551,36176],[12552,36176],[12553,36176],[12554,36197],[12555,36176],[12556,36197],[12557,36203],[12558,36203],[12559,36176],[12560,36176],[12561,36203],[12562,36176],[12563,36203],[12564,36176],[12565,36176],[12566,36203],[12567,36176],[12568,36176],[12569,36203],[12570,36176],[12571,36176],[12572,36203],[12573,36176],[12574,36203],[12575,36176],[12576,36203],[12577,36176],[12578,36176],[12579,36203],[12580,36176],[12581,36176],[12582,36203],[12583,36176],[12584,36176],[12585,36203],[12586,36176],[12587,36214],[12588,36214],[12589,36214],[12590,36176],[12591,36197],[12592,36176],[12593,36197],[12594,36176],[12595,36176],[12596,36176],[12597,36176],[12598,36195],[12599,36176],[12600,36176],[12601,36195],[12602,36176],[12603,36176],[12604,36207],[12605,36207],[12606,36215],[12607,36215],[12608,36195],[12609,36195],[12610,36195],[12611,36176],[12612,36176],[12613,36195],[12614,36195],[12615,36176],[12616,36176],[12617,36195],[12618,36176],[12619,36203],[12620,36176],[12621,36195],[12622,36176],[12623,36176],[12624,36195],[12625,36195],[12626,36176],[12627,36176],[12628,36195],[12629,36176],[12630,36203],[12631,36176],[12632,36195],[12633,36176],[12634,36176],[12635,36195],[12636,36176],[12637,36176],[12638,36176],[12639,36176],[12640,36176],[12641,36176],[12642,36176],[12643,36203],[12644,36176],[12645,36203],[12646,36176],[12647,36195],[12648,36195],[12649,36195],[12650,36195],[12651,36176],[12652,36197],[12653,36216],[12654,36176],[12655,36176],[12656,36197],[12657,36197],[12658,36195],[12659,36195],[12660,36195],[12661,36195],[12662,36176],[12663,36176],[12664,36176],[12665,36176],[12666,36195],[12667,36176],[12668,36176],[12669,36216],[12670,36176],[12671,36176],[12672,36176],[12673,36176],[12674,36195],[12675,36176],[12676,36176],[12677,36216],[12678,36176],[12679,36176],[12680,36206],[12681,36218],[12682,36218],[12683,36206],[12684,36197],[12685,36197],[12686,36176],[12687,36176],[12688,36203],[12689,36197],[12690,36203],[12691,36197],[12692,36176],[12693,36176],[12694,36176],[12695,36176],[12696,36176],[12697,36176],[12698,36176],[12699,36176],[12700,36176],[12701,36203],[12702,36176],[12703,36176],[12704,36176],[12705,36203],[12706,36176],[12707,36203],[12708,36176],[12709,36195],[12710,36176],[12711,36176],[12712,36195],[12713,36217],[12714,36217],[12715,36217],[12716,36217],[12717,36217],[12718,36217],[12719,36217],[12720,36217],[12721,36217],[12722,36217],[12723,36217],[12724,36217],[12725,36176],[12726,36195],[12727,36176],[12728,36176],[12729,36176],[12730,36176],[12731,36176],[12732,36176],[12733,36195],[12734,36195],[12735,36195],[12736,36176],[12737,36176],[12738,36195],[12739,36176],[12740,36176],[12741,36195],[12742,36176],[12743,36176],[12744,36176],[12745,36203],[12746,36176],[12747,36195],[12748,36176],[12749,36176],[12750,36195],[12751,36176],[12752,36176],[12753,36195],[12754,36176],[12755,36176],[12756,36195],[12757,36176],[12758,36176],[12759,36195],[12760,36176],[12761,36176],[12762,36195],[12763,36176],[12764,36176],[12765,36195],[12766,36176],[12767,36176],[12768,36195],[12769,36176],[12770,36203],[12771,36176],[12772,36195],[12773,36195],[12774,36195],[12775,36195],[12776,36176],[12777,36176],[12778,36195],[12779,36176],[12780,36176],[12781,36195],[12782,36176],[12783,36176],[12784,36195],[12785,36176],[12786,36176],[12787,36195],[12788,36176],[12789,36176],[12790,36176],[12791,36176],[12792,36197],[12793,36197],[12794,36202],[12795,36202],[12796,36176],[12797,36202],[12798,36202],[12799,36202],[12800,36176],[12801,36202],[12802,36175],[12803,36203],[12804,36175],[12805,36202],[12806,36202],[12807,36176],[12808,36202],[12809,36202],[12810,36202],[12811,36176],[12812,36202],[12813,36175],[12814,36203],[12815,36175],[12816,36176],[12817,36176],[12818,36176],[12819,36176],[12820,36176],[12821,36176],[12822,36176],[12823,36176],[12824,36175],[12825,36175],[12826,36175],[12827,36202],[12828,36175],[12829,36175],[12830,36195],[12831,36197],[12832,36197],[12833,36195],[12834,36195],[12835,36197],[12836,36197],[12837,36195],[12838,36202],[12839,36202],[12840,36202],[12841,36203],[12842,36175],[12843,36203],[12844,36175],[12845,36202],[12846,36202],[12847,36202],[12848,36202],[12849,36202],[12850,36197],[12851,36216],[12852,36176],[12853,36176],[12854,36175],[12855,36175],[12856,36202],[12857,36202],[12858,36202],[12859,36202],[12860,36202],[12861,36175],[12862,36175],[12863,36175],[12864,36202],[12865,36202],[12866,36202],[12867,36175],[12868,36175],[12869,36202],[12870,36202],[12871,36175],[12872,36175],[12873,36195],[12874,36176],[12875,36176],[12876,36216],[12877,36176],[12878,36203],[12879,36176],[12880,36176],[12881,36176],[12882,36195],[12883,36176],[12884,36176],[12885,36216],[12886,36176],[12887,36203],[12888,36176],[12889,36206],[12890,36218],[12891,36218],[12892,36206],[12893,36197],[12894,36197],[12895,36176],[12896,36176],[12897,36203],[12898,36175],[12899,36195],[12900,36195],[12901,36203],[12902,36195],[12903,36195],[12904,36195],[12905,36195],[12906,36195],[12907,36195],[12908,36203],[12909,36195],[12910,36195],[12911,36195],[12912,36195],[12913,36203],[12914,36195],[12915,36195],[12916,36203],[12917,36195],[12918,36195],[12919,36197],[12920,36203],[12921,36197],[12922,36176],[12923,36176],[12924,36176],[12925,36176],[12926,36176],[12927,36176],[12928,36176],[12929,36176],[12930,36175],[12931,36175],[12932,36176],[12933,36203],[12934,36176],[12935,36176],[12936,36176],[12937,36203],[12938,36175],[12939,36202],[12940,36176],[12941,36203],[12942,36176],[12943,36175],[12944,36175],[12945,36175],[12946,36175],[12947,36175],[12948,36203],[12949,36175],[12950,36175],[12951,36175],[12952,36175],[12953,36175],[12954,36175],[12955,36175],[12956,36175],[12957,36175],[12958,36203],[12959,36175],[12960,36175],[12961,36175],[12962,36175],[12963,36175],[12964,36175],[12965,36175],[12966,36175],[12967,36175],[12968,36203],[12969,36175],[12970,36175],[12971,36203],[12972,36175],[12973,36175],[12974,36217],[12975,36217],[12976,36217],[12977,36217],[12978,36217],[12979,36217],[12980,36217],[12981,36217],[12982,36217],[12983,36217],[12984,36217],[12985,36217],[12986,36202],[12987,36202],[12988,36176],[12989,36176],[12990,36176],[12991,36176],[12992,36175],[12993,36175],[12994,36202],[12995,36202],[12996,36202],[12997,36202],[12998,36202],[12999,36202],[13000,36202],[13001,36202],[13002,36202],[13003,36202],[13004,36202],[13005,36202],[13006,36195],[13007,36202],[13008,36202],[13009,36175],[13010,36203],[13011,36175],[13012,36202],[13013,36202],[13014,36176],[13015,36202],[13016,36202],[13017,36176],[13018,36195],[13019,36202],[13020,36176],[13021,36202],[13022,36202],[13023,36202],[13024,36202],[13025,36202],[13026,36202],[13027,36202],[13028,36195],[13029,36202],[13030,36202],[13031,36176],[13032,36176],[13033,36175],[13034,36203],[13035,36175],[13036,36175],[13037,36175],[13038,36175],[13039,36175],[13040,36195],[13041,36176],[13042,36176],[13043,36195],[13044,36175],[13045,36203],[13046,36175],[13047,36175],[13048,36202],[13049,36175],[13050,36175],[13051,36175],[13052,36202],[13053,36202],[13054,36202],[13055,36202],[13056,36175],[13057,36203],[13058,36175],[13059,36202],[13060,36202],[13061,36202],[13062,36202],[13063,36176],[13064,36176],[13065,36195],[13066,36176],[13067,36176],[13068,36195],[13069,36175],[13070,36175],[13071,36175],[13072,36195],[13073,36176],[13074,36176],[13075,36195],[13076,36175],[13077,36175],[13078,36175],[13079,36175],[13080,36175],[13081,36175],[13082,36175],[13083,36203],[13084,36175],[13085,36175],[13086,36202],[13087,36202],[13088,36202],[13089,36202],[13090,36175],[13091,36175],[13092,36202],[13093,36202],[13094,36202],[13095,36202],[13096,36175],[13097,36175],[13098,36176],[13099,36176],[13100,36175],[13101,36175],[13102,36202],[13103,36175],[13104,36175],[13105,36175],[13106,36203],[13107,36175],[13108,36175],[13109,36195],[13110,36176],[13111,36176],[13112,36195],[13113,36176],[13114,36203],[13115,36176],[13116,36195],[13117,36176],[13118,36176],[13119,36195],[13120,36176],[13121,36203],[13122,36176],[13123,36176],[13124,36203],[13125,36176],[13126,36195],[13127,36195],[13128,36195],[13129,36195],[13130,36204],[13131,36204],[13132,36204],[13133,36204],[13134,36176],[13135,36176],[13136,36195],[13137,36176],[13138,36176],[13139,36197],[13140,36197],[13141,36176],[13142,36176],[13143,36176],[13144,36197],[13145,36197],[13146,36176],[13147,36195],[13148,36195],[13149,36206],[13150,36197],[13151,36176],[13152,36197],[13153,36197],[13154,36176],[13155,36197],[13156,36176],[13157,36197],[13158,36197],[13159,36176],[13160,36195],[13161,36176],[13162,36207],[13163,36207],[13164,36176],[13165,36176],[13166,36176],[13167,36195],[13168,36195],[13169,36195],[13170,36176],[13171,36176],[13172,36176],[13173,36176],[13174,36203],[13175,36176],[13176,36176],[13177,36203],[13178,36203],[13179,36203],[13180,36203],[13181,36203],[13182,36203],[13183,36203],[13184,36176],[13185,36176],[13186,36176],[13187,36176],[13188,36176],[13189,36203],[13190,36176],[13191,36176],[13192,36176],[13193,36176],[13194,36203],[13195,36176],[13196,36176],[13197,36176],[13198,36208],[13199,36195],[13200,36176],[13201,36176],[13202,36195],[13203,36195],[13204,36176],[13205,36176],[13206,36195],[13207,36176],[13208,36203],[13209,36176],[13210,36176],[13211,36203],[13212,36176],[13213,36195],[13214,36176],[13215,36176],[13216,36195],[13217,36195],[13218,36176],[13219,36176],[13220,36195],[13221,36176],[13222,36176],[13223,36195],[13224,36176],[13225,36176],[13226,36195],[13227,36195],[13228,36176],[13229,36176],[13230,36195],[13231,36195],[13232,36176],[13233,36176],[13234,36195],[13235,36195],[13236,36176],[13237,36176],[13238,36195],[13239,36195],[13240,36176],[13241,36176],[13242,36195],[13243,36195],[13244,36176],[13245,36176],[13246,36195],[13247,36176],[13248,36176],[13249,36195],[13250,36176],[13251,36176],[13252,36195],[13253,36195],[13254,36176],[13255,36176],[13256,36195],[13257,36176],[13258,36176],[13259,36195],[13260,36176],[13261,36176],[13262,36195],[13263,36195],[13264,36176],[13265,36176],[13266,36195],[13267,36176],[13268,36176],[13269,36176],[13270,36176],[13271,36176],[13272,36176],[13273,36176],[13274,36176],[13275,36176],[13276,36176],[13277,36203],[13278,36203],[13279,36207],[13280,36207],[13281,36203],[13282,36203],[13283,36203],[13284,36176],[13285,36197],[13286,36203],[13287,36197],[13288,36203],[13289,36203],[13290,36176],[13291,36197],[13292,36203],[13293,36197],[13294,36176],[13295,36197],[13296,36176],[13297,36197],[13298,36203],[13299,36176],[13300,36203],[13301,36203],[13302,36203],[13303,36203],[13304,36203],[13305,36203],[13306,36203],[13307,36176],[13308,36176],[13309,36197],[13310,36176],[13311,36197],[13312,36176],[13313,36176],[13314,36176],[13315,36176],[13316,36195],[13317,36203],[13318,36176],[13319,36176],[13320,36176],[13321,36176],[13322,36203],[13323,36176],[13324,36176],[13325,36176],[13326,36176],[13327,36176],[13328,36197],[13329,36203],[13330,36197],[13331,36195],[13332,36176],[13333,36176],[13334,36176],[13335,36176],[13336,36203],[13337,36176],[13338,36176],[13339,36203],[13340,36176],[13341,36176],[13342,36197],[13343,36203],[13344,36197],[13345,36195],[13346,36176],[13347,36176],[13348,36209],[13349,36209],[13350,36209],[13351,36176],[13352,36197],[13353,36176],[13354,36197],[13355,36203],[13356,36176],[13357,36176],[13358,36203],[13359,36203],[13360,36203],[13361,36203],[13362,36203],[13363,36203],[13364,36203],[13365,36176],[13366,36176],[13367,36197],[13368,36176],[13369,36197],[13370,36176],[13371,36176],[13372,36176],[13373,36176],[13374,36195],[13375,36176],[13376,36176],[13377,36176],[13378,36176],[13379,36176],[13380,36203],[13381,36176],[13382,36176],[13383,36176],[13384,36197],[13385,36176],[13386,36197],[13387,36203],[13388,36203],[13389,36203],[13390,36203],[13391,36203],[13392,36203],[13393,36176],[13394,36197],[13395,36176],[13396,36197],[13397,36176],[13398,36197],[13399,36176],[13400,36197],[13401,36203],[13402,36203],[13403,36203],[13404,36203],[13405,36203],[13406,36203],[13407,36176],[13408,36197],[13409,36176],[13410,36197],[13411,36195],[13412,36176],[13413,36176],[13414,36176],[13415,36176],[13416,36176],[13417,36203],[13418,36203],[13419,36203],[13420,36203],[13421,36195],[13422,36176],[13423,36203],[13424,36176],[13425,36176],[13426,36203],[13427,36176],[13428,36209],[13429,36211],[13430,36211],[13431,36211],[13432,36211],[13433,36176],[13434,36197],[13435,36197],[13436,36176],[13437,36176],[13438,36197],[13439,36197],[13440,36176],[13441,36203],[13442,36203],[13443,36203],[13444,36203],[13445,36176],[13446,36176],[13447,36176],[13448,36176],[13449,36203],[13450,36176],[13451,36203],[13452,36176],[13453,36203],[13454,36176],[13455,36203],[13456,36176],[13457,36176],[13458,36203],[13459,36176],[13460,36176],[13461,36203],[13462,36176],[13463,36176],[13464,36203],[13465,36176],[13466,36176],[13467,36203],[13468,36176],[13469,36176],[13470,36203],[13471,36176],[13472,36176],[13473,36203],[13474,36176],[13475,36203],[13476,36203],[13477,36176],[13478,36203],[13479,36176],[13480,36176],[13481,36203],[13482,36176],[13483,36176],[13484,36203],[13485,36176],[13486,36176],[13487,36203],[13488,36176],[13489,36197],[13490,36203],[13491,36197],[13492,36176],[13493,36203],[13494,36176],[13495,36176],[13496,36203],[13497,36176],[13498,36176],[13499,36203],[13500,36176],[13501,36176],[13502,36203],[13503,36176],[13504,36214],[13505,36214],[13506,36214],[13507,36176],[13508,36176],[13509,36176],[13510,36176],[13511,36176],[13512,36176],[13513,36176],[13514,36176],[13515,36176],[13516,36176],[13517,36176],[13518,36176],[13519,36176],[13520,36176],[13521,36176],[13522,36176],[13523,36176],[13524,36176],[13525,36176],[13526,36176],[13527,36176],[13528,36197],[13529,36197],[13530,36176],[13531,36176],[13532,36197],[13533,36197],[13534,36176],[13535,36176],[13536,36176],[13537,36176],[13538,36176],[13539,36176],[13540,36176],[13541,36176],[13542,36176],[13543,36176],[13544,36195],[13545,36195],[13546,36176],[13547,36176],[13548,36176],[13549,36176],[13550,36176],[13551,36203],[13552,36176],[13553,36176],[13554,36195],[13555,36176],[13556,36176],[13557,36195],[13558,36176],[13559,36203],[13560,36176],[13561,36176],[13562,36207],[13563,36207],[13564,36215],[13565,36215],[13566,36195],[13567,36195],[13568,36195],[13569,36176],[13570,36176],[13571,36216],[13572,36176],[13573,36176],[13574,36176],[13575,36203],[13576,36203],[13577,36203],[13578,36176],[13579,36203],[13580,36176],[13581,36203],[13582,36176],[13583,36203],[13584,36176],[13585,36176],[13586,36203],[13587,36176],[13588,36176],[13589,36203],[13590,36176],[13591,36176],[13592,36203],[13593,36176],[13594,36176],[13595,36203],[13596,36176],[13597,36176],[13598,36203],[13599,36176],[13600,36176],[13601,36203],[13602,36176],[13603,36176],[13604,36203],[13605,36176],[13606,36176],[13607,36203],[13608,36176],[13609,36176],[13610,36203],[13611,36176],[13612,36176],[13613,36203],[13614,36176],[13615,36195],[13616,36176],[13617,36176],[13618,36195],[13619,36176],[13620,36176],[13621,36195],[13622,36176],[13623,36176],[13624,36195],[13625,36176],[13626,36203],[13627,36176],[13628,36176],[13629,36203],[13630,36176],[13631,36195],[13632,36195],[13633,36195],[13634,36195],[13635,36176],[13636,36176],[13637,36195],[13638,36176],[13639,36176],[13640,36197],[13641,36197],[13642,36176],[13643,36176],[13644,36197],[13645,36197],[13646,36195],[13647,36195],[13648,36206],[13649,36195],[13650,36176],[13651,36176],[13652,36195],[13653,36176],[13654,36203],[13655,36176],[13656,36197],[13657,36176],[13658,36197],[13659,36197],[13660,36176],[13661,36197],[13662,36176],[13663,36197],[13664,36197],[13665,36176],[13666,36195],[13667,36176],[13668,36176],[13669,36176],[13670,36176],[13671,36195],[13672,36195],[13673,36176],[13674,36176],[13675,36195],[13676,36195],[13677,36176],[13678,36176],[13679,36195],[13680,36176],[13681,36203],[13682,36176],[13683,36176],[13684,36203],[13685,36176],[13686,36195],[13687,36176],[13688,36176],[13689,36195],[13690,36195],[13691,36176],[13692,36176],[13693,36195],[13694,36176],[13695,36176],[13696,36195],[13697,36176],[13698,36176],[13699,36195],[13700,36195],[13701,36176],[13702,36176],[13703,36195],[13704,36195],[13705,36176],[13706,36176],[13707,36195],[13708,36195],[13709,36176],[13710,36176],[13711,36195],[13712,36195],[13713,36176],[13714,36176],[13715,36195],[13716,36195],[13717,36176],[13718,36176],[13719,36195],[13720,36176],[13721,36176],[13722,36195],[13723,36176],[13724,36176],[13725,36195],[13726,36195],[13727,36176],[13728,36176],[13729,36195],[13730,36176],[13731,36176],[13732,36195],[13733,36176],[13734,36176],[13735,36195],[13736,36195],[13737,36176],[13738,36176],[13739,36195],[13740,36176],[13741,36176],[13742,36176],[13743,36176],[13744,36176],[13745,36176],[13746,36176],[13747,36176],[13748,36176],[13749,36176],[13750,36203],[13751,36203],[13752,36217],[13753,36176],[13754,36176],[13755,36217],[13756,36176],[13757,36176],[13758,36217],[13759,36176],[13760,36176],[13761,36217],[13762,36176],[13763,36176],[13764,36207],[13765,36207],[13766,36203],[13767,36203],[13768,36203],[13769,36176],[13770,36197],[13771,36203],[13772,36197],[13773,36203],[13774,36203],[13775,36176],[13776,36197],[13777,36203],[13778,36197],[13779,36176],[13780,36197],[13781,36176],[13782,36197],[13783,36203],[13784,36176],[13785,36203],[13786,36203],[13787,36203],[13788,36203],[13789,36203],[13790,36203],[13791,36203],[13792,36176],[13793,36176],[13794,36197],[13795,36176],[13796,36197],[13797,36176],[13798,36176],[13799,36176],[13800,36176],[13801,36195],[13802,36203],[13803,36195],[13804,36176],[13805,36176],[13806,36176],[13807,36176],[13808,36203],[13809,36176],[13810,36176],[13811,36176],[13812,36176],[13813,36176],[13814,36176],[13815,36176],[13816,36197],[13817,36203],[13818,36197],[13819,36176],[13820,36176],[13821,36176],[13822,36195],[13823,36176],[13824,36176],[13825,36176],[13826,36176],[13827,36203],[13828,36176],[13829,36176],[13830,36203],[13831,36176],[13832,36176],[13833,36197],[13834,36203],[13835,36197],[13836,36195],[13837,36176],[13838,36176],[13839,36209],[13840,36209],[13841,36209],[13842,36176],[13843,36197],[13844,36176],[13845,36197],[13846,36203],[13847,36176],[13848,36176],[13849,36203],[13850,36203],[13851,36203],[13852,36203],[13853,36203],[13854,36203],[13855,36203],[13856,36176],[13857,36176],[13858,36197],[13859,36176],[13860,36197],[13861,36176],[13862,36176],[13863,36176],[13864,36195],[13865,36195],[13866,36176],[13867,36176],[13868,36176],[13869,36176],[13870,36176],[13871,36176],[13872,36176],[13873,36176],[13874,36176],[13875,36176],[13876,36176],[13877,36197],[13878,36176],[13879,36197],[13880,36203],[13881,36203],[13882,36203],[13883,36203],[13884,36203],[13885,36203],[13886,36176],[13887,36197],[13888,36176],[13889,36197],[13890,36176],[13891,36197],[13892,36176],[13893,36197],[13894,36203],[13895,36203],[13896,36203],[13897,36203],[13898,36203],[13899,36203],[13900,36176],[13901,36197],[13902,36176],[13903,36197],[13904,36195],[13905,36195],[13906,36176],[13907,36176],[13908,36176],[13909,36176],[13910,36176],[13911,36176],[13912,36176],[13913,36176],[13914,36176],[13915,36176],[13916,36203],[13917,36203],[13918,36203],[13919,36203],[13920,36195],[13921,36176],[13922,36203],[13923,36176],[13924,36176],[13925,36203],[13926,36176],[13927,36209],[13928,36211],[13929,36211],[13930,36211],[13931,36211],[13932,36217],[13933,36176],[13934,36176],[13935,36217],[13936,36176],[13937,36176],[13938,36217],[13939,36176],[13940,36176],[13941,36217],[13942,36176],[13943,36176],[13944,36176],[13945,36197],[13946,36197],[13947,36176],[13948,36176],[13949,36197],[13950,36197],[13951,36176],[13952,36203],[13953,36203],[13954,36203],[13955,36203],[13956,36176],[13957,36176],[13958,36176],[13959,36176],[13960,36203],[13961,36176],[13962,36203],[13963,36176],[13964,36203],[13965,36176],[13966,36203],[13967,36176],[13968,36176],[13969,36203],[13970,36176],[13971,36176],[13972,36203],[13973,36176],[13974,36176],[13975,36203],[13976,36176],[13977,36176],[13978,36203],[13979,36176],[13980,36176],[13981,36203],[13982,36176],[13983,36176],[13984,36203],[13985,36176],[13986,36203],[13987,36203],[13988,36176],[13989,36203],[13990,36176],[13991,36176],[13992,36203],[13993,36176],[13994,36176],[13995,36203],[13996,36176],[13997,36176],[13998,36203],[13999,36176],[14000,36197],[14001,36203],[14002,36197],[14003,36176],[14004,36203],[14005,36176],[14006,36176],[14007,36203],[14008,36176],[14009,36176],[14010,36203],[14011,36176],[14012,36176],[14013,36203],[14014,36176],[14015,36214],[14016,36214],[14017,36214],[14018,36176],[14019,36176],[14020,36176],[14021,36176],[14022,36176],[14023,36176],[14024,36176],[14025,36176],[14026,36176],[14027,36176],[14028,36176],[14029,36176],[14030,36176],[14031,36176],[14032,36176],[14033,36176],[14034,36176],[14035,36176],[14036,36176],[14037,36176],[14038,36176],[14039,36197],[14040,36197],[14041,36176],[14042,36176],[14043,36197],[14044,36197],[14045,36176],[14046,36176],[14047,36176],[14048,36176],[14049,36176],[14050,36195],[14051,36176],[14052,36176],[14053,36195],[14054,36176],[14055,36176],[14056,36207],[14057,36207],[14058,36215],[14059,36215],[14060,36195],[14061,36195],[14062,36195],[14063,36176],[14064,36176],[14065,36195],[14066,36195],[14067,36176],[14068,36176],[14069,36195],[14070,36176],[14071,36203],[14072,36176],[14073,36176],[14074,36203],[14075,36176],[14076,36195],[14077,36176],[14078,36176],[14079,36195],[14080,36195],[14081,36176],[14082,36176],[14083,36195],[14084,36176],[14085,36203],[14086,36176],[14087,36176],[14088,36203],[14089,36176],[14090,36195],[14091,36176],[14092,36176],[14093,36195],[14094,36176],[14095,36176],[14096,36176],[14097,36176],[14098,36176],[14099,36176],[14100,36176],[14101,36203],[14102,36176],[14103,36203],[14104,36176],[14105,36203],[14106,36176],[14107,36203],[14108,36176],[14109,36195],[14110,36195],[14111,36195],[14112,36195],[14113,36176],[14114,36197],[14115,36176],[14116,36216],[14117,36176],[14118,36176],[14119,36197],[14120,36197],[14121,36195],[14122,36195],[14123,36195],[14124,36195],[14125,36176],[14126,36176],[14127,36176],[14128,36176],[14129,36176],[14130,36195],[14131,36176],[14132,36176],[14133,36216],[14134,36176],[14135,36176],[14136,36176],[14137,36176],[14138,36195],[14139,36176],[14140,36176],[14141,36216],[14142,36176],[14143,36176],[14144,36206],[14145,36218],[14146,36218],[14147,36206],[14148,36197],[14149,36197],[14150,36197],[14151,36197],[14152,36176],[14153,36176],[14154,36203],[14155,36176],[14156,36176],[14157,36176],[14158,36176],[14159,36176],[14160,36176],[14161,36176],[14162,36176],[14163,36176],[14164,36176],[14165,36176],[14166,36176],[14167,36176],[14168,36176],[14169,36176],[14170,36176],[14171,36176],[14172,36176],[14173,36176],[14174,36176],[14175,36176],[14176,36176],[14177,36176],[14178,36176],[14179,36197],[14180,36203],[14181,36197],[14182,36197],[14183,36203],[14184,36197],[14185,36176],[14186,36176],[14187,36176],[14188,36176],[14189,36176],[14190,36176],[14191,36176],[14192,36176],[14193,36176],[14194,36203],[14195,36176],[14196,36176],[14197,36203],[14198,36176],[14199,36176],[14200,36176],[14201,36203],[14202,36176],[14203,36203],[14204,36176],[14205,36176],[14206,36203],[14207,36176],[14208,36195],[14209,36176],[14210,36176],[14211,36195],[14212,36217],[14213,36217],[14214,36217],[14215,36217],[14216,36217],[14217,36217],[14218,36217],[14219,36217],[14220,36217],[14221,36217],[14222,36217],[14223,36217],[14224,36176],[14225,36195],[14226,36176],[14227,36176],[14228,36176],[14229,36176],[14230,36176],[14231,36176],[14232,36195],[14233,36195],[14234,36195],[14235,36176],[14236,36176],[14237,36195],[14238,36176],[14239,36176],[14240,36195],[14241,36176],[14242,36176],[14243,36176],[14244,36203],[14245,36176],[14246,36176],[14247,36203],[14248,36176],[14249,36195],[14250,36176],[14251,36176],[14252,36195],[14253,36176],[14254,36176],[14255,36195],[14256,36176],[14257,36176],[14258,36195],[14259,36176],[14260,36176],[14261,36195],[14262,36176],[14263,36176],[14264,36195],[14265,36176],[14266,36176],[14267,36176],[14268,36176],[14269,36176],[14270,36176],[14271,36195],[14272,36176],[14273,36176],[14274,36195],[14275,36176],[14276,36176],[14277,36195],[14278,36176],[14279,36176],[14280,36195],[14281,36176],[14282,36203],[14283,36176],[14284,36176],[14285,36203],[14286,36176],[14287,36195],[14288,36195],[14289,36195],[14290,36195],[14291,36176],[14292,36176],[14293,36195],[14294,36176],[14295,36176],[14296,36195],[14297,36195],[14298,36176],[14299,36176],[14300,36195],[14301,36195],[14302,36176],[14303,36176],[14304,36195],[14305,36176],[14306,36176],[14307,36195],[14308,36176],[14309,36176],[14310,36195],[14311,36176],[14312,36176],[14313,36176],[14314,36176],[14315,36197],[14316,36197],[14317,36195],[14318,36176],[14319,36176],[14320,36195],[14321,36195],[14322,36176],[14323,36176],[14324,36195],[14325,36176],[14326,36203],[14327,36176],[14328,36176],[14329,36203],[14330,36176],[14331,36195],[14332,36195],[14333,36195],[14334,36195],[14335,36176],[14336,36176],[14337,36195],[14338,36176],[14339,36176],[14340,36197],[14341,36197],[14342,36176],[14343,36176],[14344,36197],[14345,36197],[14346,36195],[14347,36195],[14348,36197],[14349,36176],[14350,36197],[14351,36197],[14352,36176],[14353,36197],[14354,36176],[14355,36197],[14356,36197],[14357,36176],[14358,36195],[14359,36176],[14360,36176],[14361,36176],[14362,36176],[14363,36195],[14364,36203],[14365,36203],[14366,36217],[14367,36176],[14368,36176],[14369,36217],[14370,36176],[14371,36176],[14372,36207],[14373,36207],[14374,36203],[14375,36203],[14376,36203],[14377,36176],[14378,36197],[14379,36203],[14380,36197],[14381,36203],[14382,36203],[14383,36176],[14384,36197],[14385,36203],[14386,36197],[14387,36176],[14388,36197],[14389,36176],[14390,36197],[14391,36203],[14392,36176],[14393,36203],[14394,36203],[14395,36203],[14396,36203],[14397,36203],[14398,36203],[14399,36203],[14400,36176],[14401,36176],[14402,36197],[14403,36176],[14404,36197],[14405,36176],[14406,36176],[14407,36176],[14408,36176],[14409,36195],[14410,36203],[14411,36176],[14412,36176],[14413,36176],[14414,36176],[14415,36203],[14416,36176],[14417,36176],[14418,36176],[14419,36176],[14420,36197],[14421,36203],[14422,36197],[14423,36195],[14424,36176],[14425,36176],[14426,36176],[14427,36176],[14428,36203],[14429,36176],[14430,36176],[14431,36203],[14432,36176],[14433,36197],[14434,36203],[14435,36197],[14436,36195],[14437,36176],[14438,36176],[14439,36209],[14440,36209],[14441,36209],[14442,36176],[14443,36197],[14444,36176],[14445,36197],[14446,36203],[14447,36176],[14448,36203],[14449,36203],[14450,36203],[14451,36203],[14452,36203],[14453,36203],[14454,36203],[14455,36176],[14456,36176],[14457,36197],[14458,36176],[14459,36197],[14460,36176],[14461,36176],[14462,36195],[14463,36176],[14464,36176],[14465,36176],[14466,36176],[14467,36176],[14468,36176],[14469,36197],[14470,36176],[14471,36197],[14472,36203],[14473,36203],[14474,36203],[14475,36203],[14476,36203],[14477,36203],[14478,36176],[14479,36197],[14480,36176],[14481,36197],[14482,36176],[14483,36197],[14484,36176],[14485,36197],[14486,36203],[14487,36203],[14488,36203],[14489,36203],[14490,36203],[14491,36203],[14492,36176],[14493,36197],[14494,36176],[14495,36197],[14496,36195],[14497,36176],[14498,36176],[14499,36176],[14500,36176],[14501,36176],[14502,36203],[14503,36203],[14504,36203],[14505,36203],[14506,36195],[14507,36176],[14508,36203],[14509,36176],[14510,36176],[14511,36203],[14512,36176],[14513,36209],[14514,36211],[14515,36211],[14516,36211],[14517,36211],[14518,36217],[14519,36176],[14520,36176],[14521,36217],[14522,36176],[14523,36176],[14524,36217],[14525,36176],[14526,36176],[14527,36217],[14528,36176],[14529,36176],[14530,36176],[14531,36197],[14532,36197],[14533,36176],[14534,36176],[14535,36197],[14536,36197],[14537,36176],[14538,36203],[14539,36203],[14540,36203],[14541,36203],[14542,36176],[14543,36176],[14544,36176],[14545,36176],[14546,36203],[14547,36176],[14548,36203],[14549,36176],[14550,36203],[14551,36176],[14552,36203],[14553,36176],[14554,36176],[14555,36203],[14556,36176],[14557,36176],[14558,36203],[14559,36176],[14560,36176],[14561,36203],[14562,36176],[14563,36176],[14564,36203],[14565,36176],[14566,36176],[14567,36203],[14568,36176],[14569,36176],[14570,36203],[14571,36176],[14572,36203],[14573,36203],[14574,36176],[14575,36203],[14576,36176],[14577,36176],[14578,36203],[14579,36176],[14580,36176],[14581,36203],[14582,36176],[14583,36176],[14584,36203],[14585,36176],[14586,36176],[14587,36203],[14588,36176],[14589,36176],[14590,36203],[14591,36176],[14592,36176],[14593,36203],[14594,36176],[14595,36176],[14596,36203],[14597,36176],[14598,36214],[14599,36214],[14600,36214],[14601,36176],[14602,36197],[14603,36197],[14604,36176],[14605,36176],[14606,36197],[14607,36197],[14608,36176],[14609,36176],[14610,36176],[14611,36176],[14612,36176],[14613,36195],[14614,36176],[14615,36176],[14616,36195],[14617,36176],[14618,36176],[14619,36207],[14620,36207],[14621,36215],[14622,36215],[14623,36195],[14624,36195],[14625,36195],[14626,36176],[14627,36176],[14628,36195],[14629,36195],[14630,36176],[14631,36176],[14632,36195],[14633,36176],[14634,36203],[14635,36176],[14636,36176],[14637,36203],[14638,36176],[14639,36195],[14640,36176],[14641,36176],[14642,36195],[14643,36195],[14644,36176],[14645,36176],[14646,36195],[14647,36176],[14648,36203],[14649,36176],[14650,36176],[14651,36203],[14652,36176],[14653,36195],[14654,36176],[14655,36176],[14656,36195],[14657,36176],[14658,36176],[14659,36176],[14660,36176],[14661,36176],[14662,36176],[14663,36176],[14664,36203],[14665,36176],[14666,36203],[14667,36176],[14668,36203],[14669,36176],[14670,36203],[14671,36176],[14672,36195],[14673,36195],[14674,36195],[14675,36195],[14676,36176],[14677,36197],[14678,36216],[14679,36176],[14680,36176],[14681,36197],[14682,36197],[14683,36195],[14684,36195],[14685,36195],[14686,36195],[14687,36176],[14688,36176],[14689,36176],[14690,36176],[14691,36195],[14692,36176],[14693,36176],[14694,36216],[14695,36176],[14696,36176],[14697,36176],[14698,36176],[14699,36195],[14700,36176],[14701,36176],[14702,36216],[14703,36176],[14704,36176],[14705,36206],[14706,36218],[14707,36218],[14708,36206],[14709,36197],[14710,36197],[14711,36197],[14712,36197],[14713,36176],[14714,36176],[14715,36203],[14716,36197],[14717,36203],[14718,36197],[14719,36197],[14720,36203],[14721,36197],[14722,36176],[14723,36176],[14724,36176],[14725,36176],[14726,36176],[14727,36176],[14728,36176],[14729,36176],[14730,36176],[14731,36203],[14732,36176],[14733,36176],[14734,36203],[14735,36176],[14736,36176],[14737,36176],[14738,36203],[14739,36176],[14740,36203],[14741,36176],[14742,36176],[14743,36203],[14744,36176],[14745,36195],[14746,36176],[14747,36176],[14748,36195],[14749,36217],[14750,36217],[14751,36217],[14752,36217],[14753,36217],[14754,36217],[14755,36217],[14756,36217],[14757,36217],[14758,36217],[14759,36217],[14760,36217],[14761,36176],[14762,36195],[14763,36176],[14764,36176],[14765,36176],[14766,36176],[14767,36176],[14768,36176],[14769,36195],[14770,36195],[14771,36195],[14772,36176],[14773,36176],[14774,36195],[14775,36176],[14776,36176],[14777,36195],[14778,36176],[14779,36176],[14780,36176],[14781,36203],[14782,36176],[14783,36176],[14784,36203],[14785,36176],[14786,36195],[14787,36176],[14788,36176],[14789,36195],[14790,36176],[14791,36176],[14792,36195],[14793,36176],[14794,36176],[14795,36195],[14796,36176],[14797,36176],[14798,36195],[14799,36176],[14800,36176],[14801,36195],[14802,36176],[14803,36176],[14804,36195],[14805,36176],[14806,36176],[14807,36195],[14808,36176],[14809,36203],[14810,36176],[14811,36176],[14812,36203],[14813,36176],[14814,36195],[14815,36195],[14816,36195],[14817,36195],[14818,36176],[14819,36176],[14820,36195],[14821,36176],[14822,36176],[14823,36195],[14824,36176],[14825,36176],[14826,36195],[14827,36176],[14828,36176],[14829,36195],[14830,36176],[14831,36176],[14832,36176],[14833,36176],[14834,36197],[14835,36197],[14836,36195],[14837,36176],[14838,36176],[14839,36195],[14840,36195],[14841,36176],[14842,36176],[14843,36195],[14844,36176],[14845,36203],[14846,36176],[14847,36176],[14848,36203],[14849,36176],[14850,36195],[14851,36176],[14852,36176],[14853,36195],[14854,36195],[14855,36176],[14856,36176],[14857,36195],[14858,36176],[14859,36203],[14860,36176],[14861,36176],[14862,36203],[14863,36176],[14864,36176],[14865,36176],[14866,36176],[14867,36195],[14868,36197],[14869,36197],[14870,36195],[14871,36195],[14872,36197],[14873,36197],[14874,36195],[14875,36176],[14876,36176],[14877,36203],[14878,36176],[14879,36203],[14880,36176],[14881,36203],[14882,36176],[14883,36203],[14884,36176],[14885,36195],[14886,36195],[14887,36195],[14888,36195],[14889,36176],[14890,36197],[14891,36176],[14892,36216],[14893,36176],[14894,36176],[14895,36197],[14896,36197],[14897,36176],[14898,36195],[14899,36195],[14900,36195],[14901,36195],[14902,36176],[14903,36176],[14904,36176],[14905,36176],[14906,36176],[14907,36195],[14908,36176],[14909,36176],[14910,36216],[14911,36176],[14912,36203],[14913,36176],[14914,36176],[14915,36176],[14916,36195],[14917,36176],[14918,36176],[14919,36216],[14920,36176],[14921,36203],[14922,36176],[14923,36206],[14924,36218],[14925,36218],[14926,36206],[14927,36197],[14928,36197],[14929,36197],[14930,36197],[14931,36176],[14932,36176],[14933,36203],[14934,36176],[14935,36176],[14936,36176],[14937,36203],[14938,36176],[14939,36176],[14940,36176],[14941,36176],[14942,36176],[14943,36176],[14944,36176],[14945,36176],[14946,36203],[14947,36176],[14948,36176],[14949,36176],[14950,36176],[14951,36176],[14952,36176],[14953,36203],[14954,36176],[14955,36176],[14956,36176],[14957,36176],[14958,36203],[14959,36176],[14960,36176],[14961,36176],[14962,36197],[14963,36203],[14964,36197],[14965,36197],[14966,36203],[14967,36197],[14968,36176],[14969,36176],[14970,36176],[14971,36176],[14972,36176],[14973,36176],[14974,36176],[14975,36176],[14976,36176],[14977,36203],[14978,36176],[14979,36176],[14980,36203],[14981,36176],[14982,36176],[14983,36176],[14984,36203],[14985,36195],[14986,36176],[14987,36203],[14988,36176],[14989,36176],[14990,36203],[14991,36176],[14992,36176],[14993,36176],[14994,36176],[14995,36176],[14996,36176],[14997,36203],[14998,36176],[14999,36176],[15000,36176],[15001,36176],[15002,36176],[15003,36176],[15004,36176],[15005,36176],[15006,36176],[15007,36176],[15008,36203],[15009,36176],[15010,36176],[15011,36176],[15012,36176],[15013,36176],[15014,36176],[15015,36176],[15016,36176],[15017,36203],[15018,36176],[15019,36176],[15020,36176],[15021,36176],[15022,36203],[15023,36176],[15024,36176],[15025,36217],[15026,36217],[15027,36217],[15028,36217],[15029,36217],[15030,36217],[15031,36217],[15032,36217],[15033,36217],[15034,36217],[15035,36217],[15036,36217],[15037,36176],[15038,36195],[15039,36176],[15040,36176],[15041,36176],[15042,36176],[15043,36176],[15044,36176],[15045,36195],[15046,36195],[15047,36195],[15048,36176],[15049,36176],[15050,36195],[15051,36176],[15052,36176],[15053,36195],[15054,36176],[15055,36176],[15056,36176],[15057,36203],[15058,36176],[15059,36176],[15060,36203],[15061,36176],[15062,36195],[15063,36176],[15064,36176],[15065,36195],[15066,36176],[15067,36176],[15068,36195],[15069,36176],[15070,36176],[15071,36195],[15072,36176],[15073,36176],[15074,36195],[15075,36176],[15076,36176],[15077,36195],[15078,36176],[15079,36176],[15080,36176],[15081,36176],[15082,36176],[15083,36203],[15084,36176],[15085,36176],[15086,36195],[15087,36176],[15088,36176],[15089,36195],[15090,36176],[15091,36203],[15092,36176],[15093,36176],[15094,36176],[15095,36176],[15096,36176],[15097,36176],[15098,36195],[15099,36176],[15100,36176],[15101,36195],[15102,36176],[15103,36203],[15104,36176],[15105,36176],[15106,36203],[15107,36176],[15108,36195],[15109,36195],[15110,36195],[15111,36195],[15112,36176],[15113,36176],[15114,36195],[15115,36176],[15116,36176],[15117,36195],[15118,36195],[15119,36176],[15120,36176],[15121,36195],[15122,36176],[15123,36176],[15124,36176],[15125,36203],[15126,36176],[15127,36195],[15128,36176],[15129,36176],[15130,36195],[15131,36176],[15132,36176],[15133,36195],[15134,36176],[15135,36176],[15136,36195],[15137,36176],[15138,36176],[15139,36176],[15140,36176],[15141,36197],[15142,36197],[15143,36176],[15144,36176],[15145,36176],[15146,36203],[15147,36203],[15148,36176],[15149,36176],[15150,36176],[15151,36176],[15152,36219],[15153,36219],[15154,36176],[15155,36219],[15156,36203],[15157,36220],[15158,36220],[15159,36220],[15160,36220],[15161,36220],[15162,36203],[15163,36177],[15164,36176],[15165,36203],[15166,36176],[15167,36220],[15168,36203],[15169,36177],[15170,36220],[15171,36220],[15172,36220],[15173,36220],[15174,36221],[15175,36221],[15176,36222],[15177,36222],[15178,36222],[15179,36222],[15180,36222],[15181,36222],[15182,36176],[15183,36176],[15184,36219],[15185,36220],[15186,36177],[15187,36220],[15188,36220],[15189,36177],[15190,36220],[15191,36220],[15192,36220],[15193,36205],[15194,36205],[15195,36206],[15196,36178],[15197,36202],[15198,36178],[15199,36178],[15200,36178],[15201,36178],[15202,36178],[15203,36197],[15204,36175],[15205,36202],[15206,36202],[15207,36207],[15208,36207],[15209,36202],[15210,36202],[15211,36202],[15212,36202],[15213,36202],[15214,36220],[15215,36220],[15216,36203],[15217,36220],[15218,36220],[15219,36203],[15220,36203],[15221,36203],[15222,36220],[15223,36203],[15224,36220],[15225,36220],[15226,36203],[15227,36220],[15228,36178],[15229,36178],[15230,36178],[15231,36178],[15232,36220],[15233,36223],[15234,36195],[15235,36176],[15236,36176],[15237,36195],[15238,36195],[15239,36176],[15240,36176],[15241,36195],[15242,36175],[15243,36176],[15244,36203],[15245,36175],[15246,36176],[15247,36176],[15248,36203],[15249,36176],[15250,36175],[15251,36176],[15252,36203],[15253,36175],[15254,36176],[15255,36220],[15256,36195],[15257,36220],[15258,36176],[15259,36178],[15260,36176],[15261,36220],[15262,36195],[15263,36195],[15264,36176],[15265,36176],[15266,36195],[15267,36220],[15268,36177],[15269,36220],[15270,36177],[15271,36179],[15272,36179],[15273,36179],[15274,36179],[15275,36179],[15276,36179],[15277,36179],[15278,36195],[15279,36176],[15280,36176],[15281,36195],[15282,36195],[15283,36176],[15284,36176],[15285,36195],[15286,36220],[15287,36177],[15288,36220],[15289,36177],[15290,36220],[15291,36195],[15292,36220],[15293,36176],[15294,36179],[15295,36176],[15296,36220],[15297,36195],[15298,36195],[15299,36176],[15300,36176],[15301,36195],[15302,36220],[15303,36177],[15304,36220],[15305,36177],[15306,36179],[15307,36179],[15308,36179],[15309,36179],[15310,36179],[15311,36179],[15312,36179],[15313,36195],[15314,36176],[15315,36176],[15316,36195],[15317,36195],[15318,36176],[15319,36176],[15320,36195],[15321,36220],[15322,36177],[15323,36220],[15324,36177],[15325,36220],[15326,36195],[15327,36220],[15328,36176],[15329,36176],[15330,36220],[15331,36195],[15332,36195],[15333,36176],[15334,36176],[15335,36195],[15336,36220],[15337,36177],[15338,36220],[15339,36177],[15340,36195],[15341,36176],[15342,36176],[15343,36195],[15344,36195],[15345,36176],[15346,36176],[15347,36195],[15348,36220],[15349,36177],[15350,36220],[15351,36177],[15352,36220],[15353,36177],[15354,36220],[15355,36177],[15356,36220],[15357,36177],[15358,36220],[15359,36177],[15360,36220],[15361,36177],[15362,36220],[15363,36177],[15364,36220],[15365,36177],[15366,36220],[15367,36177],[15368,36220],[15369,36177],[15370,36220],[15371,36177],[15372,36220],[15373,36177],[15374,36220],[15375,36177],[15376,36203],[15377,36203],[15378,36203],[15379,36176],[15380,36203],[15381,36176],[15382,36203],[15383,36220],[15384,36203],[15385,36177],[15386,36220],[15387,36203],[15388,36177],[15389,36220],[15390,36203],[15391,36177],[15392,36220],[15393,36203],[15394,36177],[15395,36220],[15396,36203],[15397,36177],[15398,36220],[15399,36203],[15400,36177],[15401,36207],[15402,36207],[15403,36203],[15404,36179],[15405,36179],[15406,36224],[15407,36179],[15408,36203],[15409,36176],[15410,36225],[15411,36226],[15412,36225],[15413,36176],[15414,36225],[15415,36203],[15416,36176],[15417,36225],[15418,36176],[15419,36176],[15420,36225],[15421,36203],[15422,36226],[15423,36203],[15424,36203],[15425,36203],[15426,36226],[15427,36176],[15428,36225],[15429,36225],[15430,36176],[15431,36225],[15432,36176],[15433,36203],[15434,36176],[15435,36225],[15436,36176],[15437,36225],[15438,36203],[15439,36176],[15440,36225],[15441,36226],[15442,36225],[15443,36177],[15444,36177],[15445,36178],[15446,36178],[15447,36195],[15448,36203],[15449,36176],[15450,36178],[15451,36176],[15452,36220],[15453,36203],[15454,36220],[15455,36176],[15456,36176],[15457,36176],[15458,36197],[15459,36203],[15460,36197],[15461,36178],[15462,36178],[15463,36178],[15464,36178],[15465,36178],[15466,36203],[15467,36178],[15468,36176],[15469,36203],[15470,36197],[15471,36203],[15472,36197],[15473,36178],[15474,36178],[15475,36178],[15476,36176],[15477,36203],[15478,36176],[15479,36225],[15480,36226],[15481,36225],[15482,36209],[15483,36205],[15484,36205],[15485,36205],[15486,36205],[15487,36205],[15488,36209],[15489,36209],[15490,36209],[15491,36220],[15492,36197],[15493,36176],[15494,36197],[15495,36203],[15496,36220],[15497,36203],[15498,36203],[15499,36203],[15500,36203],[15501,36203],[15502,36203],[15503,36203],[15504,36210],[15505,36220],[15506,36197],[15507,36176],[15508,36197],[15509,36220],[15510,36210],[15511,36209],[15512,36220],[15513,36176],[15514,36225],[15515,36203],[15516,36220],[15517,36227],[15518,36227],[15519,36220],[15520,36176],[15521,36225],[15522,36195],[15523,36176],[15524,36176],[15525,36176],[15526,36176],[15527,36176],[15528,36203],[15529,36203],[15530,36226],[15531,36203],[15532,36203],[15533,36203],[15534,36226],[15535,36203],[15536,36220],[15537,36227],[15538,36227],[15539,36203],[15540,36220],[15541,36220],[15542,36177],[15543,36227],[15544,36227],[15545,36228],[15546,36227],[15547,36227],[15548,36177],[15549,36176],[15550,36225],[15551,36220],[15552,36203],[15553,36177],[15554,36228],[15555,36176],[15556,36225],[15557,36176],[15558,36225],[15559,36176],[15560,36225],[15561,36176],[15562,36225],[15563,36203],[15564,36226],[15565,36203],[15566,36226],[15567,36176],[15568,36225],[15569,36176],[15570,36225],[15571,36176],[15572,36225],[15573,36177],[15574,36220],[15575,36197],[15576,36176],[15577,36197],[15578,36203],[15579,36203],[15580,36203],[15581,36203],[15582,36203],[15583,36203],[15584,36220],[15585,36197],[15586,36176],[15587,36197],[15588,36176],[15589,36225],[15590,36220],[15591,36227],[15592,36227],[15593,36176],[15594,36225],[15595,36203],[15596,36226],[15597,36203],[15598,36226],[15599,36176],[15600,36225],[15601,36177],[15602,36228],[15603,36176],[15604,36225],[15605,36176],[15606,36203],[15607,36176],[15608,36225],[15609,36226],[15610,36225],[15611,36195],[15612,36176],[15613,36176],[15614,36176],[15615,36176],[15616,36176],[15617,36203],[15618,36203],[15619,36195],[15620,36220],[15621,36203],[15622,36177],[15623,36176],[15624,36203],[15625,36176],[15626,36220],[15627,36203],[15628,36177],[15629,36178],[15630,36178],[15631,36209],[15632,36211],[15633,36211],[15634,36211],[15635,36211],[15636,36211],[15637,36211],[15638,36211],[15639,36211],[15640,36211],[15641,36211],[15642,36211],[15643,36211],[15644,36211],[15645,36211],[15646,36211],[15647,36211],[15648,36211],[15649,36211],[15650,36211],[15651,36211],[15652,36220],[15653,36178],[15654,36229],[15655,36178],[15656,36178],[15657,36230],[15658,36230],[15659,36203],[15660,36203],[15661,36203],[15662,36203],[15663,36203],[15664,36203],[15665,36176],[15666,36176],[15667,36176],[15668,36176],[15669,36176],[15670,36176],[15671,36178],[15672,36178],[15673,36178],[15674,36178],[15675,36203],[15676,36213],[15677,36203],[15678,36213],[15679,36203],[15680,36176],[15681,36203],[15682,36176],[15683,36203],[15684,36213],[15685,36203],[15686,36213],[15687,36213],[15688,36203],[15689,36213],[15690,36213],[15691,36203],[15692,36213],[15693,36176],[15694,36203],[15695,36176],[15696,36213],[15697,36203],[15698,36213],[15699,36213],[15700,36203],[15701,36213],[15702,36203],[15703,36203],[15704,36203],[15705,36213],[15706,36203],[15707,36213],[15708,36176],[15709,36203],[15710,36176],[15711,36213],[15712,36203],[15713,36213],[15714,36213],[15715,36203],[15716,36213],[15717,36176],[15718,36203],[15719,36176],[15720,36213],[15721,36203],[15722,36213],[15723,36197],[15724,36203],[15725,36197],[15726,36197],[15727,36203],[15728,36197],[15729,36177],[15730,36176],[15731,36203],[15732,36176],[15733,36176],[15734,36203],[15735,36176],[15736,36176],[15737,36203],[15738,36176],[15739,36176],[15740,36203],[15741,36176],[15742,36176],[15743,36203],[15744,36176],[15745,36176],[15746,36203],[15747,36176],[15748,36214],[15749,36214],[15750,36214],[15751,36219],[15752,36219],[15753,36221],[15754,36221],[15755,36219],[15756,36219],[15757,36219],[15758,36221],[15759,36221],[15760,36219],[15761,36202],[15762,36202],[15763,36202],[15764,36202],[15765,36176],[15766,36176],[15767,36176],[15768,36176],[15769,36202],[15770,36202],[15771,36202],[15772,36202],[15773,36176],[15774,36176],[15775,36176],[15776,36176],[15777,36220],[15778,36178],[15779,36229],[15780,36178],[15781,36178],[15782,36230],[15783,36230],[15784,36221],[15785,36220],[15786,36220],[15787,36177],[15788,36176],[15789,36176],[15790,36220],[15791,36220],[15792,36203],[15793,36177],[15794,36177],[15795,36220],[15796,36203],[15797,36220],[15798,36177],[15799,36221],[15800,36220],[15801,36220],[15802,36220],[15803,36220],[15804,36177],[15805,36195],[15806,36176],[15807,36176],[15808,36195],[15809,36220],[15810,36203],[15811,36177],[15812,36220],[15813,36220],[15814,36220],[15815,36220],[15816,36207],[15817,36207],[15818,36215],[15819,36215],[15820,36215],[15821,36215],[15822,36220],[15823,36219],[15824,36195],[15825,36176],[15826,36176],[15827,36216],[15828,36176],[15829,36176],[15830,36203],[15831,36203],[15832,36203],[15833,36203],[15834,36176],[15835,36203],[15836,36176],[15837,36203],[15838,36176],[15839,36203],[15840,36176],[15841,36203],[15842,36176],[15843,36203],[15844,36176],[15845,36176],[15846,36203],[15847,36176],[15848,36176],[15849,36203],[15850,36176],[15851,36176],[15852,36203],[15853,36176],[15854,36176],[15855,36203],[15856,36176],[15857,36176],[15858,36203],[15859,36176],[15860,36176],[15861,36203],[15862,36176],[15863,36176],[15864,36203],[15865,36176],[15866,36176],[15867,36203],[15868,36176],[15869,36176],[15870,36203],[15871,36176],[15872,36176],[15873,36203],[15874,36176],[15875,36176],[15876,36203],[15877,36176],[15878,36195],[15879,36176],[15880,36176],[15881,36195],[15882,36195],[15883,36176],[15884,36176],[15885,36195],[15886,36176],[15887,36203],[15888,36176],[15889,36176],[15890,36203],[15891,36176],[15892,36176],[15893,36203],[15894,36176],[15895,36195],[15896,36195],[15897,36195],[15898,36195],[15899,36176],[15900,36176],[15901,36195],[15902,36176],[15903,36176],[15904,36197],[15905,36197],[15906,36176],[15907,36176],[15908,36197],[15909,36197],[15910,36195],[15911,36195],[15912,36206],[15913,36195],[15914,36176],[15915,36176],[15916,36195],[15917,36176],[15918,36203],[15919,36176],[15920,36197],[15921,36195],[15922,36176],[15923,36176],[15924,36176],[15925,36195],[15926,36195],[15927,36176],[15928,36176],[15929,36195],[15930,36195],[15931,36176],[15932,36176],[15933,36195],[15934,36176],[15935,36203],[15936,36176],[15937,36176],[15938,36203],[15939,36176],[15940,36176],[15941,36203],[15942,36176],[15943,36195],[15944,36176],[15945,36176],[15946,36195],[15947,36195],[15948,36176],[15949,36176],[15950,36195],[15951,36195],[15952,36176],[15953,36176],[15954,36195],[15955,36195],[15956,36176],[15957,36176],[15958,36195],[15959,36195],[15960,36176],[15961,36176],[15962,36195],[15963,36195],[15964,36176],[15965,36176],[15966,36195],[15967,36195],[15968,36176],[15969,36176],[15970,36195],[15971,36195],[15972,36176],[15973,36176],[15974,36195],[15975,36195],[15976,36176],[15977,36176],[15978,36195],[15979,36195],[15980,36176],[15981,36176],[15982,36195],[15983,36195],[15984,36176],[15985,36176],[15986,36195],[15987,36195],[15988,36176],[15989,36176],[15990,36195],[15991,36203],[15992,36203],[15993,36203],[15994,36217],[15995,36176],[15996,36176],[15997,36217],[15998,36176],[15999,36176],[16000,36217],[16001,36176],[16002,36176],[16003,36217],[16004,36176],[16005,36176],[16006,36207],[16007,36207],[16008,36203],[16009,36176],[16010,36203],[16011,36176],[16012,36203],[16013,36203],[16014,36176],[16015,36203],[16016,36176],[16017,36176],[16018,36195],[16019,36203],[16020,36195],[16021,36176],[16022,36176],[16023,36176],[16024,36176],[16025,36203],[16026,36176],[16027,36176],[16028,36176],[16029,36176],[16030,36176],[16031,36176],[16032,36197],[16033,36203],[16034,36197],[16035,36176],[16036,36176],[16037,36176],[16038,36195],[16039,36176],[16040,36176],[16041,36176],[16042,36176],[16043,36203],[16044,36176],[16045,36176],[16046,36203],[16047,36197],[16048,36203],[16049,36197],[16050,36195],[16051,36176],[16052,36176],[16053,36209],[16054,36209],[16055,36209],[16056,36176],[16057,36197],[16058,36176],[16059,36197],[16060,36203],[16061,36176],[16062,36203],[16063,36203],[16064,36203],[16065,36203],[16066,36203],[16067,36203],[16068,36203],[16069,36176],[16070,36176],[16071,36197],[16072,36176],[16073,36197],[16074,36176],[16075,36203],[16076,36176],[16077,36195],[16078,36195],[16079,36176],[16080,36176],[16081,36176],[16082,36176],[16083,36176],[16084,36176],[16085,36176],[16086,36176],[16087,36176],[16088,36176],[16089,36203],[16090,36203],[16091,36176],[16092,36203],[16093,36176],[16094,36197],[16095,36176],[16096,36197],[16097,36203],[16098,36203],[16099,36203],[16100,36203],[16101,36203],[16102,36203],[16103,36176],[16104,36197],[16105,36176],[16106,36197],[16107,36195],[16108,36195],[16109,36176],[16110,36176],[16111,36176],[16112,36176],[16113,36176],[16114,36176],[16115,36176],[16116,36176],[16117,36176],[16118,36176],[16119,36203],[16120,36203],[16121,36195],[16122,36176],[16123,36203],[16124,36176],[16125,36176],[16126,36203],[16127,36176],[16128,36176],[16129,36203],[16130,36176],[16131,36209],[16132,36211],[16133,36211],[16134,36211],[16135,36211],[16136,36217],[16137,36176],[16138,36176],[16139,36217],[16140,36176],[16141,36176],[16142,36217],[16143,36176],[16144,36176],[16145,36217],[16146,36176],[16147,36176],[16148,36203],[16149,36203],[16150,36203],[16151,36203],[16152,36203],[16153,36203],[16154,36176],[16155,36176],[16156,36176],[16157,36176],[16158,36176],[16159,36176],[16160,36203],[16161,36176],[16162,36203],[16163,36176],[16164,36203],[16165,36176],[16166,36203],[16167,36176],[16168,36203],[16169,36176],[16170,36203],[16171,36176],[16172,36176],[16173,36203],[16174,36176],[16175,36176],[16176,36203],[16177,36176],[16178,36176],[16179,36203],[16180,36176],[16181,36176],[16182,36203],[16183,36176],[16184,36176],[16185,36203],[16186,36176],[16187,36203],[16188,36203],[16189,36203],[16190,36176],[16191,36203],[16192,36176],[16193,36176],[16194,36203],[16195,36176],[16196,36176],[16197,36203],[16198,36176],[16199,36176],[16200,36203],[16201,36176],[16202,36176],[16203,36203],[16204,36176],[16205,36176],[16206,36203],[16207,36176],[16208,36197],[16209,36203],[16210,36197],[16211,36197],[16212,36203],[16213,36197],[16214,36176],[16215,36203],[16216,36176],[16217,36176],[16218,36203],[16219,36176],[16220,36176],[16221,36203],[16222,36176],[16223,36176],[16224,36203],[16225,36176],[16226,36176],[16227,36203],[16228,36176],[16229,36176],[16230,36203],[16231,36176],[16232,36214],[16233,36214],[16234,36214],[16235,36202],[16236,36202],[16237,36202],[16238,36202],[16239,36176],[16240,36176],[16241,36176],[16242,36176],[16243,36202],[16244,36202],[16245,36202],[16246,36202],[16247,36176],[16248,36176],[16249,36176],[16250,36176],[16251,36176],[16252,36176],[16253,36176],[16254,36176],[16255,36176],[16256,36203],[16257,36176],[16258,36195],[16259,36176],[16260,36176],[16261,36195],[16262,36176],[16263,36176],[16264,36207],[16265,36207],[16266,36215],[16267,36215],[16268,36195],[16269,36195],[16270,36195],[16271,36176],[16272,36176],[16273,36195],[16274,36195],[16275,36176],[16276,36176],[16277,36195],[16278,36176],[16279,36203],[16280,36176],[16281,36176],[16282,36203],[16283,36176],[16284,36176],[16285,36203],[16286,36176],[16287,36195],[16288,36176],[16289,36176],[16290,36195],[16291,36195],[16292,36176],[16293,36176],[16294,36195],[16295,36176],[16296,36203],[16297,36176],[16298,36176],[16299,36203],[16300,36176],[16301,36176],[16302,36203],[16303,36176],[16304,36195],[16305,36176],[16306,36176],[16307,36195],[16308,36176],[16309,36176],[16310,36176],[16311,36203],[16312,36176],[16313,36176],[16314,36176],[16315,36176],[16316,36176],[16317,36176],[16318,36203],[16319,36176],[16320,36203],[16321,36176],[16322,36203],[16323,36176],[16324,36203],[16325,36176],[16326,36203],[16327,36176],[16328,36203],[16329,36176],[16330,36195],[16331,36195],[16332,36195],[16333,36195],[16334,36176],[16335,36197],[16336,36216],[16337,36176],[16338,36176],[16339,36197],[16340,36197],[16341,36195],[16342,36195],[16343,36195],[16344,36195],[16345,36176],[16346,36176],[16347,36176],[16348,36176],[16349,36195],[16350,36176],[16351,36176],[16352,36216],[16353,36176],[16354,36176],[16355,36195],[16356,36216],[16357,36206],[16358,36218],[16359,36218],[16360,36206],[16361,36197],[16362,36197],[16363,36197],[16364,36197],[16365,36197],[16366,36197],[16367,36176],[16368,36176],[16369,36176],[16370,36176],[16371,36203],[16372,36203],[16373,36195],[16374,36195],[16375,36195],[16376,36195],[16377,36195],[16378,36195],[16379,36195],[16380,36195],[16381,36195],[16382,36195],[16383,36195],[16384,36195],[16385,36195],[16386,36195],[16387,36195],[16388,36195],[16389,36197],[16390,36203],[16391,36197],[16392,36197],[16393,36203],[16394,36197],[16395,36197],[16396,36203],[16397,36197],[16398,36176],[16399,36176],[16400,36176],[16401,36176],[16402,36176],[16403,36176],[16404,36176],[16405,36176],[16406,36176],[16407,36203],[16408,36176],[16409,36176],[16410,36203],[16411,36176],[16412,36176],[16413,36203],[16414,36176],[16415,36176],[16416,36176],[16417,36176],[16418,36176],[16419,36203],[16420,36203],[16421,36176],[16422,36203],[16423,36176],[16424,36176],[16425,36203],[16426,36176],[16427,36176],[16428,36203],[16429,36176],[16430,36195],[16431,36176],[16432,36176],[16433,36195],[16434,36217],[16435,36217],[16436,36217],[16437,36217],[16438,36217],[16439,36217],[16440,36217],[16441,36217],[16442,36217],[16443,36217],[16444,36217],[16445,36217],[16446,36176],[16447,36195],[16448,36176],[16449,36176],[16450,36195],[16451,36195],[16452,36195],[16453,36176],[16454,36176],[16455,36195],[16456,36176],[16457,36176],[16458,36195],[16459,36176],[16460,36176],[16461,36176],[16462,36203],[16463,36176],[16464,36176],[16465,36203],[16466,36176],[16467,36176],[16468,36203],[16469,36176],[16470,36195],[16471,36176],[16472,36176],[16473,36195],[16474,36176],[16475,36176],[16476,36195],[16477,36176],[16478,36176],[16479,36195],[16480,36176],[16481,36176],[16482,36195],[16483,36176],[16484,36176],[16485,36195],[16486,36176],[16487,36176],[16488,36176],[16489,36176],[16490,36176],[16491,36176],[16492,36176],[16493,36203],[16494,36176],[16495,36195],[16496,36176],[16497,36176],[16498,36195],[16499,36176],[16500,36176],[16501,36195],[16502,36176],[16503,36176],[16504,36195],[16505,36176],[16506,36203],[16507,36176],[16508,36176],[16509,36203],[16510,36176],[16511,36176],[16512,36203],[16513,36176],[16514,36195],[16515,36195],[16516,36195],[16517,36195],[16518,36176],[16519,36176],[16520,36195],[16521,36176],[16522,36176],[16523,36195],[16524,36195],[16525,36176],[16526,36176],[16527,36195],[16528,36195],[16529,36176],[16530,36176],[16531,36195],[16532,36176],[16533,36176],[16534,36195],[16535,36176],[16536,36176],[16537,36195],[16538,36176],[16539,36176],[16540,36176],[16541,36176],[16542,36197],[16543,36197],[16544,36202],[16545,36202],[16546,36175],[16547,36175],[16548,36220],[16549,36202],[16550,36202],[16551,36175],[16552,36175],[16553,36195],[16554,36176],[16555,36176],[16556,36195],[16557,36195],[16558,36176],[16559,36176],[16560,36195],[16561,36176],[16562,36203],[16563,36176],[16564,36176],[16565,36203],[16566,36176],[16567,36176],[16568,36203],[16569,36176],[16570,36195],[16571,36195],[16572,36195],[16573,36195],[16574,36176],[16575,36176],[16576,36195],[16577,36176],[16578,36176],[16579,36197],[16580,36197],[16581,36176],[16582,36176],[16583,36197],[16584,36197],[16585,36195],[16586,36195],[16587,36197],[16588,36195],[16589,36176],[16590,36176],[16591,36176],[16592,36195],[16593,36203],[16594,36203],[16595,36203],[16596,36217],[16597,36176],[16598,36176],[16599,36217],[16600,36176],[16601,36176],[16602,36207],[16603,36207],[16604,36203],[16605,36176],[16606,36203],[16607,36176],[16608,36203],[16609,36203],[16610,36176],[16611,36203],[16612,36176],[16613,36176],[16614,36195],[16615,36203],[16616,36176],[16617,36176],[16618,36176],[16619,36176],[16620,36203],[16621,36176],[16622,36176],[16623,36176],[16624,36176],[16625,36197],[16626,36203],[16627,36197],[16628,36195],[16629,36176],[16630,36176],[16631,36176],[16632,36176],[16633,36203],[16634,36176],[16635,36176],[16636,36203],[16637,36197],[16638,36203],[16639,36197],[16640,36195],[16641,36176],[16642,36176],[16643,36209],[16644,36209],[16645,36209],[16646,36176],[16647,36197],[16648,36176],[16649,36197],[16650,36203],[16651,36176],[16652,36203],[16653,36203],[16654,36203],[16655,36203],[16656,36203],[16657,36203],[16658,36203],[16659,36176],[16660,36176],[16661,36197],[16662,36176],[16663,36197],[16664,36176],[16665,36203],[16666,36176],[16667,36195],[16668,36176],[16669,36176],[16670,36176],[16671,36176],[16672,36176],[16673,36203],[16674,36203],[16675,36176],[16676,36203],[16677,36176],[16678,36197],[16679,36176],[16680,36197],[16681,36203],[16682,36203],[16683,36203],[16684,36203],[16685,36203],[16686,36203],[16687,36176],[16688,36197],[16689,36176],[16690,36197],[16691,36195],[16692,36176],[16693,36176],[16694,36176],[16695,36176],[16696,36176],[16697,36203],[16698,36203],[16699,36195],[16700,36176],[16701,36203],[16702,36176],[16703,36176],[16704,36203],[16705,36176],[16706,36176],[16707,36203],[16708,36176],[16709,36209],[16710,36211],[16711,36211],[16712,36211],[16713,36211],[16714,36217],[16715,36176],[16716,36176],[16717,36217],[16718,36176],[16719,36176],[16720,36217],[16721,36176],[16722,36176],[16723,36217],[16724,36176],[16725,36176],[16726,36203],[16727,36203],[16728,36203],[16729,36203],[16730,36203],[16731,36203],[16732,36176],[16733,36176],[16734,36176],[16735,36176],[16736,36176],[16737,36176],[16738,36203],[16739,36176],[16740,36203],[16741,36176],[16742,36203],[16743,36176],[16744,36203],[16745,36176],[16746,36203],[16747,36176],[16748,36203],[16749,36176],[16750,36176],[16751,36203],[16752,36176],[16753,36176],[16754,36203],[16755,36176],[16756,36176],[16757,36203],[16758,36176],[16759,36176],[16760,36203],[16761,36176],[16762,36176],[16763,36203],[16764,36176],[16765,36203],[16766,36203],[16767,36203],[16768,36176],[16769,36203],[16770,36176],[16771,36176],[16772,36203],[16773,36176],[16774,36176],[16775,36203],[16776,36176],[16777,36176],[16778,36203],[16779,36176],[16780,36176],[16781,36203],[16782,36176],[16783,36176],[16784,36203],[16785,36176],[16786,36176],[16787,36203],[16788,36176],[16789,36176],[16790,36203],[16791,36176],[16792,36176],[16793,36203],[16794,36176],[16795,36176],[16796,36203],[16797,36176],[16798,36176],[16799,36203],[16800,36176],[16801,36176],[16802,36203],[16803,36176],[16804,36214],[16805,36214],[16806,36214],[16807,36176],[16808,36176],[16809,36176],[16810,36176],[16811,36176],[16812,36203],[16813,36176],[16814,36195],[16815,36176],[16816,36176],[16817,36195],[16818,36176],[16819,36176],[16820,36207],[16821,36207],[16822,36215],[16823,36215],[16824,36195],[16825,36195],[16826,36195],[16827,36176],[16828,36176],[16829,36195],[16830,36195],[16831,36176],[16832,36176],[16833,36195],[16834,36176],[16835,36203],[16836,36176],[16837,36176],[16838,36203],[16839,36176],[16840,36176],[16841,36203],[16842,36176],[16843,36195],[16844,36176],[16845,36176],[16846,36195],[16847,36195],[16848,36176],[16849,36176],[16850,36195],[16851,36176],[16852,36203],[16853,36176],[16854,36176],[16855,36203],[16856,36176],[16857,36176],[16858,36203],[16859,36176],[16860,36195],[16861,36176],[16862,36176],[16863,36195],[16864,36176],[16865,36176],[16866,36176],[16867,36203],[16868,36176],[16869,36176],[16870,36176],[16871,36176],[16872,36176],[16873,36176],[16874,36203],[16875,36176],[16876,36203],[16877,36176],[16878,36203],[16879,36176],[16880,36203],[16881,36176],[16882,36203],[16883,36176],[16884,36203],[16885,36176],[16886,36195],[16887,36195],[16888,36195],[16889,36195],[16890,36176],[16891,36197],[16892,36216],[16893,36176],[16894,36176],[16895,36197],[16896,36197],[16897,36195],[16898,36195],[16899,36195],[16900,36195],[16901,36176],[16902,36176],[16903,36176],[16904,36176],[16905,36195],[16906,36176],[16907,36176],[16908,36216],[16909,36176],[16910,36176],[16911,36195],[16912,36216],[16913,36206],[16914,36218],[16915,36218],[16916,36206],[16917,36197],[16918,36197],[16919,36197],[16920,36197],[16921,36197],[16922,36197],[16923,36176],[16924,36176],[16925,36176],[16926,36176],[16927,36203],[16928,36203],[16929,36197],[16930,36203],[16931,36197],[16932,36197],[16933,36203],[16934,36197],[16935,36197],[16936,36203],[16937,36197],[16938,36176],[16939,36176],[16940,36176],[16941,36176],[16942,36176],[16943,36176],[16944,36176],[16945,36176],[16946,36176],[16947,36203],[16948,36176],[16949,36176],[16950,36203],[16951,36176],[16952,36176],[16953,36203],[16954,36176],[16955,36176],[16956,36176],[16957,36176],[16958,36176],[16959,36203],[16960,36203],[16961,36176],[16962,36203],[16963,36176],[16964,36176],[16965,36203],[16966,36176],[16967,36176],[16968,36203],[16969,36176],[16970,36195],[16971,36176],[16972,36176],[16973,36195],[16974,36217],[16975,36217],[16976,36217],[16977,36217],[16978,36217],[16979,36217],[16980,36217],[16981,36217],[16982,36217],[16983,36217],[16984,36217],[16985,36217],[16986,36176],[16987,36195],[16988,36176],[16989,36176],[16990,36195],[16991,36195],[16992,36195],[16993,36176],[16994,36176],[16995,36195],[16996,36176],[16997,36176],[16998,36195],[16999,36176],[17000,36176],[17001,36176],[17002,36203],[17003,36176],[17004,36176],[17005,36203],[17006,36176],[17007,36176],[17008,36203],[17009,36176],[17010,36195],[17011,36176],[17012,36176],[17013,36195],[17014,36176],[17015,36176],[17016,36195],[17017,36176],[17018,36176],[17019,36195],[17020,36176],[17021,36176],[17022,36195],[17023,36176],[17024,36176],[17025,36195],[17026,36176],[17027,36176],[17028,36195],[17029,36176],[17030,36176],[17031,36195],[17032,36176],[17033,36203],[17034,36176],[17035,36176],[17036,36203],[17037,36176],[17038,36176],[17039,36203],[17040,36176],[17041,36195],[17042,36195],[17043,36195],[17044,36195],[17045,36176],[17046,36176],[17047,36195],[17048,36176],[17049,36176],[17050,36195],[17051,36176],[17052,36176],[17053,36195],[17054,36176],[17055,36176],[17056,36195],[17057,36176],[17058,36176],[17059,36176],[17060,36176],[17061,36197],[17062,36197],[17063,36220],[17064,36178],[17065,36176],[17066,36178],[17067,36178],[17068,36178],[17069,36176],[17070,36220],[17071,36220],[17072,36203],[17073,36177],[17074,36176],[17075,36203],[17076,36176],[17077,36220],[17078,36203],[17079,36177],[17080,36220],[17081,36220],[17082,36178],[17083,36176],[17084,36178],[17085,36178],[17086,36178],[17087,36176],[17088,36220],[17089,36220],[17090,36203],[17091,36177],[17092,36176],[17093,36203],[17094,36176],[17095,36220],[17096,36203],[17097,36177],[17098,36178],[17099,36176],[17100,36176],[17101,36176],[17102,36176],[17103,36176],[17104,36176],[17105,36176],[17106,36176],[17107,36220],[17108,36220],[17109,36203],[17110,36177],[17111,36221],[17112,36221],[17113,36177],[17114,36221],[17115,36177],[17116,36220],[17117,36220],[17118,36177],[17119,36195],[17120,36197],[17121,36197],[17122,36195],[17123,36195],[17124,36197],[17125,36197],[17126,36195],[17127,36178],[17128,36178],[17129,36220],[17130,36203],[17131,36220],[17132,36203],[17133,36177],[17134,36203],[17135,36176],[17136,36203],[17137,36176],[17138,36203],[17139,36220],[17140,36203],[17141,36177],[17142,36220],[17143,36220],[17144,36219],[17145,36220],[17146,36178],[17147,36197],[17148,36216],[17149,36176],[17150,36176],[17151,36220],[17152,36177],[17153,36220],[17154,36220],[17155,36220],[17156,36220],[17157,36178],[17158,36220],[17159,36175],[17160,36175],[17161,36175],[17162,36175],[17163,36195],[17164,36176],[17165,36176],[17166,36216],[17167,36176],[17168,36203],[17169,36176],[17170,36195],[17171,36216],[17172,36203],[17173,36206],[17174,36218],[17175,36218],[17176,36206],[17177,36177],[17178,36197],[17179,36197],[17180,36197],[17181,36197],[17182,36176],[17183,36176],[17184,36176],[17185,36176],[17186,36203],[17187,36177],[17188,36203],[17189,36177],[17190,36195],[17191,36195],[17192,36203],[17193,36195],[17194,36195],[17195,36195],[17196,36195],[17197,36195],[17198,36195],[17199,36203],[17200,36195],[17201,36195],[17202,36195],[17203,36195],[17204,36203],[17205,36195],[17206,36195],[17207,36203],[17208,36195],[17209,36195],[17210,36197],[17211,36203],[17212,36197],[17213,36197],[17214,36203],[17215,36197],[17216,36197],[17217,36203],[17218,36197],[17219,36176],[17220,36176],[17221,36176],[17222,36176],[17223,36176],[17224,36176],[17225,36176],[17226,36176],[17227,36178],[17228,36178],[17229,36178],[17230,36178],[17231,36176],[17232,36203],[17233,36176],[17234,36176],[17235,36203],[17236,36176],[17237,36176],[17238,36203],[17239,36176],[17240,36176],[17241,36176],[17242,36176],[17243,36176],[17244,36203],[17245,36177],[17246,36203],[17247,36177],[17248,36220],[17249,36176],[17250,36203],[17251,36176],[17252,36176],[17253,36203],[17254,36176],[17255,36176],[17256,36203],[17257,36176],[17258,36220],[17259,36220],[17260,36220],[17261,36220],[17262,36220],[17263,36203],[17264,36177],[17265,36220],[17266,36220],[17267,36220],[17268,36220],[17269,36220],[17270,36220],[17271,36203],[17272,36177],[17273,36177],[17274,36220],[17275,36203],[17276,36177],[17277,36177],[17278,36220],[17279,36220],[17280,36220],[17281,36220],[17282,36203],[17283,36177],[17284,36220],[17285,36203],[17286,36177],[17287,36220],[17288,36177],[17289,36231],[17290,36231],[17291,36231],[17292,36231],[17293,36231],[17294,36231],[17295,36231],[17296,36217],[17297,36217],[17298,36217],[17299,36217],[17300,36217],[17301,36217],[17302,36217],[17303,36217],[17304,36217],[17305,36217],[17306,36217],[17307,36217],[17308,36220],[17309,36219],[17310,36220],[17311,36177],[17312,36220],[17313,36220],[17314,36219],[17315,36219],[17316,36219],[17317,36220],[17318,36220],[17319,36220],[17320,36220],[17321,36220],[17322,36220],[17323,36220],[17324,36195],[17325,36202],[17326,36202],[17327,36220],[17328,36203],[17329,36177],[17330,36176],[17331,36203],[17332,36176],[17333,36220],[17334,36203],[17335,36177],[17336,36220],[17337,36220],[17338,36176],[17339,36220],[17340,36220],[17341,36176],[17342,36195],[17343,36202],[17344,36176],[17345,36220],[17346,36220],[17347,36220],[17348,36220],[17349,36220],[17350,36220],[17351,36220],[17352,36195],[17353,36202],[17354,36202],[17355,36220],[17356,36177],[17357,36176],[17358,36176],[17359,36220],[17360,36220],[17361,36203],[17362,36177],[17363,36177],[17364,36220],[17365,36203],[17366,36220],[17367,36177],[17368,36220],[17369,36220],[17370,36220],[17371,36220],[17372,36177],[17373,36195],[17374,36176],[17375,36176],[17376,36195],[17377,36220],[17378,36203],[17379,36177],[17380,36220],[17381,36220],[17382,36220],[17383,36220],[17384,36178],[17385,36220],[17386,36177],[17387,36230],[17388,36220],[17389,36220],[17390,36227],[17391,36230],[17392,36220],[17393,36220],[17394,36220],[17395,36220],[17396,36220],[17397,36203],[17398,36177],[17399,36176],[17400,36203],[17401,36176],[17402,36220],[17403,36203],[17404,36177],[17405,36220],[17406,36220],[17407,36220],[17408,36220],[17409,36176],[17410,36176],[17411,36178],[17412,36178],[17413,36195],[17414,36176],[17415,36176],[17416,36195],[17417,36178],[17418,36175],[17419,36175],[17420,36178],[17421,36195],[17422,36176],[17423,36176],[17424,36195],[17425,36175],[17426,36175],[17427,36178],[17428,36175],[17429,36175],[17430,36178],[17431,36185],[17432,36186],[17433,36220],[17434,36203],[17435,36177],[17436,36220],[17437,36203],[17438,36177],[17439,36220],[17440,36203],[17441,36177],[17442,36220],[17443,36203],[17444,36177],[17445,36220],[17446,36203],[17447,36177],[17448,36220],[17449,36203],[17450,36177],[17451,36220],[17452,36203],[17453,36177],[17454,36220],[17455,36220],[17456,36220],[17457,36220],[17458,36220],[17459,36220],[17460,36177],[17461,36220],[17462,36220],[17463,36220],[17464,36220],[17465,36220],[17466,36177],[17467,36176],[17468,36176],[17469,36220],[17470,36177],[17471,36220],[17472,36193],[17473,36194],[17474,36193],[17475,36194],[17476,36193],[17477,36194],[17478,36200],[17479,36201],[17480,36232],[17481,36232],[17482,36233],[17483,36232],[17484,36232],[17485,36233],[17486,36182],[17487,36176],[17488,36195],[17489,36195],[17490,36197],[17491,36183],[17492,36184],[17493,36187],[17494,36188],[17495,36234],[17496,36234],[17497,36234],[17498,36234],[17499,36234],[17500,36234],[17501,36234],[17502,36234],[17503,36234],[17504,36234],[17505,36234],[17506,36234],[17507,36234],[17508,36234],[17509,36234],[17510,36185],[17511,36185],[17512,36186],[17513,36187],[17514,36188],[17515,36180],[17516,36180],[17517,36180],[17518,36180],[17519,36181],[17520,36181],[17521,36235],[17522,36181],[17523,36235],[17524,36181],[17525,36235],[17526,36181],[17527,36235],[17528,36181],[17529,36235],[17530,36181],[17531,36235],[17532,36181],[17533,36180],[17534,35996],[17621,36236],[17785,35962],[17786,36049],[17812,36049],[17813,36049],[17814,36049],[17825,36049],[17833,36049],[17841,36051],[17903,36000],[17992,36000],[18031,36172],[18032,36172],[18033,36002],[18034,36001],[18036,36002],[18046,36001],[18058,36052],[18059,36052],[18060,36052],[18096,35942],[18097,35942],[18099,35941],[18102,35941],[18195,35988],[18196,36060],[18407,36065],[18408,36065],[18409,36065],[18410,36067],[18411,36066],[18412,36065],[18413,36065],[18414,36065],[18415,36065],[18416,36065],[18616,36069],[18617,36003],[18618,36003],[18619,36068],[18620,36068],[18621,36068],[18622,36068],[18623,36069],[18624,36068],[18625,36068],[18626,36068],[18627,36068],[18628,36068],[18690,36068],[18729,36068],[18730,36068],[18731,36068],[18825,35999],[18826,35999],[18827,35999],[18831,35944],[18832,35944],[18836,35944],[18837,35944],[18838,35944],[18839,35944],[18840,35944],[18841,35944],[18842,35944],[18843,35944],[18885,35944],[18887,35944],[18888,35944],[18889,35944],[18891,35944],[18892,35944],[18893,35944],[18894,35944],[18895,35944],[18912,36072],[18913,36073],[18914,36070],[18915,35986],[18918,36076],[18919,36075],[18921,36074],[18922,36077],[18923,36077],[18925,36071],[18940,36077],[18968,36077],[18969,36077],[19168,36282],[19169,36282],[19255,36077],[19413,36077],[19428,36070],[19429,36070],[19430,36070],[19431,36070],[19432,36070],[19433,36070],[19434,36070],[19528,36072],[19529,36072],[19530,36072],[19531,36072],[19532,36079],[19533,36072],[19534,36072],[19535,36072],[19536,36072],[19537,36072],[19538,36072],[19539,36072],[19541,36079],[19542,36079],[19543,36072],[19544,36072],[19545,36072],[19547,36079],[19548,36072],[19549,36072],[19843,36073],[19844,36073],[19845,36073],[19846,36073],[19847,36073],[19848,36073],[19849,36073],[19850,36073],[19851,36073],[19852,36073],[19853,36073],[19854,36073],[19855,36072],[20055,36092],[20056,36076],[20057,36076],[20058,36076],[20059,36076],[20060,36076],[20061,36076],[20062,36076],[20063,36076],[20064,36076],[20065,36076],[20068,36076],[20069,36076],[20070,36092],[20071,36076],[20072,36076],[20073,36076],[20074,36076],[20075,36076],[20078,36076],[20079,36076],[20080,36076],[20350,36075],[20351,36075],[20352,36075],[20353,36075],[20354,36075],[20355,36075],[20356,36075],[20357,36075],[20358,36075],[20480,36074],[20481,36074],[20482,36074],[20483,36074],[20484,36074],[20485,36074],[20486,36074],[20600,36078],[20601,36080],[20602,36081],[20603,36082],[20604,36071],[20692,35938],[20693,35938],[20696,36237],[20697,35938],[20698,35938],[20699,35938],[20700,35938],[20701,35938],[20719,35938],[20731,35963],[20732,35963],[20734,36084],[20735,36084],[20736,36084],[20739,36084],[20740,36084],[20741,36084],[20742,36084],[20743,36084],[20744,36084],[20762,36084],[20763,36084],[20764,36084],[20784,36084],[20799,36084],[20809,36084],[20810,36084],[20811,36084],[20817,36084],[20818,36084],[20843,36084],[20844,36084],[20845,36084],[20846,36084],[20847,36283],[20848,36283],[20849,36283],[20850,36283],[20851,36283],[20852,36283],[20853,36283],[20854,36283],[20855,36004],[20856,36085],[20857,36004],[20890,36004],[20891,36004],[20902,36238],[20903,36239],[20904,36239],[20905,36239],[20906,36239],[20907,36239],[20908,36239],[20909,36239],[20910,36239],[20911,36239],[20912,36239],[20913,36239],[20914,36239],[20915,36239],[20916,36239],[20917,36239],[20918,36239],[20919,36239],[20920,36239],[20921,36239],[20922,36239],[20923,36239],[20924,36239],[20925,36239],[20926,36239],[20927,36239],[20928,36240],[20929,36241],[20930,36241],[20931,36241],[20932,36241],[20933,36241],[20934,36241],[20935,36241],[20936,36241],[20937,36241],[20938,36241],[20939,36241],[20940,36241],[20941,36241],[20942,36241],[20943,36241],[20944,36241],[20945,36241],[20946,36241],[20947,36241],[20948,36241],[20949,36241],[20950,36241],[20951,36241],[20952,36241],[20953,36241],[20954,36242],[20955,36242],[20956,36242],[20957,36242],[20958,36242],[20959,36242],[20960,36242],[20961,36242],[20962,36242],[20963,36242],[20964,36242],[20965,36242],[20966,36242],[20967,36242],[20968,36242],[20969,36243],[20970,36243],[20971,36243],[20972,36243],[20973,36243],[20974,36243],[20975,36243],[20976,36243],[20977,36243],[20978,36243],[20979,36243],[20980,36243],[20981,36243],[20982,36243],[20983,36243],[20984,36243],[20985,36243],[20986,36243],[20987,36243],[20988,36243],[20989,36243],[20990,36243],[20991,36243],[20992,36243],[20993,36243],[20994,36244],[20995,36244],[20996,36244],[20997,36244],[20998,36244],[20999,36244],[21000,36244],[21001,36244],[21002,36244],[21003,36244],[21004,36244],[21005,36244],[21006,36244],[21007,36244],[21008,36244],[21009,36245],[21010,36245],[21011,36245],[21012,36245],[21013,36245],[21014,36245],[21015,36245],[21016,36245],[21017,36245],[21018,36245],[21019,36245],[21020,36245],[21021,36245],[21022,36245],[21023,36245],[21024,36245],[21025,36245],[21026,36245],[21027,36245],[21028,36245],[21029,36245],[21030,36245],[21031,36245],[21032,36245],[21033,36245],[21034,36005],[21035,36056],[21036,36005],[21037,36005],[21038,36056],[21039,36056],[21040,36056],[21041,36053],[21042,36053],[21043,36086],[21044,36086],[21088,36088],[21089,36088],[21090,36088],[21091,36088],[21092,36088],[21093,36088],[21094,36088],[21095,36088],[21096,36284],[21097,36088],[21098,36088],[21099,36088],[21100,36088],[21101,36088],[21102,36088],[21291,36284],[21385,36005],[21386,36056],[21387,36005],[21388,36005],[21389,36056],[21390,36056],[21391,36056],[21392,36053],[21393,36053],[21394,36053],[21405,35983],[21406,35983],[21407,35983],[21409,35983],[21410,36166],[21411,35984],[21412,35984],[21413,35984],[21414,35984],[21415,35984],[21416,35983],[21418,35983],[21419,35983],[21420,35984],[21422,35983],[21423,35983],[21424,35983],[21426,35983],[21427,35983],[21429,35983],[21430,35983],[21431,35983],[21514,36167],[21525,35984],[21585,35983],[21594,36089],[21595,36089],[21596,36089],[21597,36089],[21598,36089],[21599,36089],[21600,36089],[21601,36089],[21602,36089],[21630,36089],[21646,36089],[21650,36089],[21651,36089],[21662,36089],[21691,36089],[21722,36089],[21743,36089],[21750,36089],[21751,36089],[21754,36089],[21762,36089],[21763,36089],[21764,36089],[21765,36089],[21773,36089],[21778,36089],[21795,36089],[21833,36089],[21841,36006],[21842,36006],[21844,35957],[21845,35956],[21849,36007],[21850,36008],[21851,36009],[21852,36006],[21854,36006],[21887,36246],[21888,36007],[21894,36008],[21895,36009],[21910,36010],[21911,36010],[21912,36092],[21913,36010],[21914,36247],[21915,36010],[21917,36092],[21918,36093],[22005,36248],[22006,36248],[22007,36248],[22008,36248],[22009,36248],[22010,36249],[22011,36249],[22012,36250],[22013,36250],[22014,36251],[22015,36251],[22016,36252],[22017,36252],[22018,36253],[22019,36253],[22020,36011],[22022,36011],[22023,36011],[22024,36011],[22025,36011],[22026,36011],[22027,36011],[22028,36011],[22029,36011],[22030,36011],[22031,36011],[22032,36011],[22033,36011],[22034,36011],[22035,36011],[22036,36011],[22037,36011],[22038,36011],[22039,36011],[22040,36011],[22041,36011],[22042,36011],[22043,36011],[22044,36011],[22045,36011],[22046,36011],[22047,36011],[22048,36011],[22049,36011],[22050,36011],[22051,36011],[22052,36011],[22053,36011],[22054,36011],[22055,36011],[22056,36011],[22057,36011],[22058,36011],[22059,36011],[22060,36011],[22061,36011],[22062,36011],[22063,36011],[22064,36011],[22065,36011],[22066,36011],[22067,36011],[22068,36011],[22069,36011],[22070,36011],[22071,36011],[22072,36011],[22073,36011],[22074,36011],[22075,36011],[22076,36011],[22077,36011],[22078,36011],[22079,36011],[22080,36011],[22081,36011],[22082,36011],[22083,36011],[22084,36011],[22085,36011],[22086,36011],[22087,36011],[22088,36011],[22089,36011],[22090,36011],[22091,36011],[22092,36011],[22093,36011],[22094,36011],[22095,36011],[22096,36011],[22097,36011],[22098,36011],[22099,36011],[22100,36011],[22101,36011],[22102,36011],[22103,36011],[22104,36011],[22105,36011],[22106,36011],[22107,36011],[22108,36011],[22109,36011],[22110,36011],[22111,36011],[22112,36011],[22113,36011],[22114,36011],[22115,36011],[22116,36011],[22117,36011],[22118,36011],[22119,36011],[22120,36011],[22121,36011],[22122,36011],[22123,36011],[22124,36011],[22125,36011],[22126,36011],[22127,36011],[22128,36011],[22129,36011],[22130,36011],[22131,36011],[22132,36011],[22133,36011],[22134,36011],[22135,36011],[22136,36011],[22137,36011],[22138,36011],[22139,36011],[22140,36011],[22141,36011],[22142,36011],[22143,36011],[22144,36011],[22145,36011],[22146,36011],[22147,36011],[22148,36011],[22149,36011],[22150,36011],[22151,36011],[22152,36011],[22153,36011],[22154,36011],[22155,36011],[22156,36011],[22157,36011],[22158,36011],[22159,36011],[22160,36011],[22161,36011],[22162,36011],[22163,36011],[22164,36011],[22165,36011],[22166,36011],[22167,36011],[22168,36011],[22169,36011],[22170,36011],[22171,36011],[22172,36011],[22173,36011],[22174,36011],[22175,36011],[22176,36011],[22177,36011],[22178,36011],[22179,36011],[22180,36011],[22181,36011],[22182,36011],[22183,36011],[22184,36011],[22185,36011],[22186,36011],[22187,36011],[22188,36011],[22189,36011],[22190,36011],[22191,36011],[22192,36011],[22193,36011],[22194,36011],[22195,36011],[22196,36011],[22197,36011],[22198,36011],[22199,36011],[22200,36011],[22201,36011],[22202,36011],[22203,36011],[22204,36011],[22205,36011],[22206,36011],[22207,36011],[22208,36011],[22209,36011],[22210,36011],[22211,36011],[22212,36011],[22213,36011],[22214,36011],[22215,36011],[22216,36011],[22217,36011],[22218,36011],[22219,36011],[22220,36011],[22221,36011],[22222,36011],[22223,36011],[22224,36011],[22225,36011],[22226,36011],[22227,36011],[22228,36011],[22229,36011],[22230,36011],[22231,36011],[22232,36011],[22233,36011],[22234,36011],[22235,36011],[22236,36011],[22237,36011],[22238,36011],[22239,36011],[22240,36011],[22241,36011],[22242,36011],[22243,36011],[22244,36011],[22245,36011],[22246,36011],[22247,36011],[22248,36011],[22249,36011],[22250,36011],[22251,36011],[22252,36011],[22253,36011],[22254,36011],[22255,36011],[22256,36011],[22257,36011],[22258,36011],[22259,36011],[22260,36011],[22261,36011],[22262,36011],[22263,36011],[22264,36011],[22265,36011],[22266,36011],[22267,36011],[22268,36011],[22269,36011],[22270,36011],[22271,36011],[22272,36011],[22273,36011],[22274,36011],[22275,36011],[22276,36011],[22277,36011],[22278,36011],[22279,36011],[22280,36011],[22281,36011],[22282,36011],[22283,36011],[22284,36011],[22285,36011],[22286,36011],[22287,36011],[22288,36011],[22289,36011],[22290,36011],[22291,36011],[22292,36011],[22293,36011],[22294,36011],[22295,36011],[22296,36011],[22297,36011],[22298,36011],[22299,36011],[22300,36011],[22301,36011],[22302,36011],[22303,36011],[22304,36011],[22305,36011],[22306,36011],[22307,36011],[22308,36011],[22309,36011],[22310,36011],[22311,36011],[22312,36011],[22314,36013],[22315,36013],[22316,36013],[22317,36013],[22318,36013],[22319,36013],[22321,36013],[22322,36013],[22323,36013],[22324,36013],[22325,36013],[22326,36013],[22328,36013],[22329,36013],[22331,36013],[22332,36013],[22333,36013],[22334,36013],[22335,36013],[22336,36013],[22337,36013],[22338,36013],[22339,36013],[22340,36013],[22341,36013],[22342,36013],[22343,36013],[22344,36013],[22345,36013],[22346,36013],[22347,36013],[22348,36013],[22349,36013],[22350,36013],[22351,36013],[22368,36013],[22369,36013],[22382,36254],[22383,36254],[22384,36254],[22385,36254],[22386,36254],[22387,36254],[22388,36254],[22389,36254],[22390,36254],[22391,36254],[22392,36254],[22393,36254],[22394,36254],[22395,36254],[22396,36254],[22397,36254],[22398,36254],[22399,36254],[22400,36254],[22401,36254],[22402,36254],[22403,36254],[22404,36254],[22405,36254],[22406,36254],[22407,36254],[22408,36254],[22409,36254],[22410,36254],[22411,36254],[22412,36254],[22413,36254],[22414,36254],[22415,36254],[22416,36254],[22417,36254],[22418,36254],[22419,36254],[22420,36254],[22421,36254],[22422,36254],[22423,36254],[22424,36254],[22425,36254],[22426,36254],[22427,36254],[22428,36254],[22429,36254],[22430,36254],[22431,36254],[22432,36254],[22433,36254],[22434,36254],[22435,36254],[22436,36254],[22437,36254],[22438,36254],[22439,36254],[22440,36254],[22441,36254],[22442,36254],[22443,36254],[22444,36254],[22445,36254],[22446,36254],[22447,36254],[22448,36254],[22453,36064],[22454,36064],[22456,36059],[22457,36095],[22458,36096],[22459,36059],[22460,36059],[22466,36097],[22469,36098],[22472,36061],[22473,36061],[22480,36099],[22484,36059],[22485,36059],[22487,36094],[22488,36100],[22489,36059],[22500,36061],[22501,36059],[22503,36098],[22505,36061],[22506,36059],[22507,36059],[22508,36098],[22509,36059],[22512,36094],[22513,36094],[22514,36094],[22515,36094],[22516,36094],[22517,36094],[22519,36059],[22525,36059],[22527,36096],[22641,36285],[22653,36098],[22869,36059],[22914,36059],[22934,36098],[22948,36098],[22955,36094],[22956,36094],[22957,36094],[23123,36059],[23124,36059],[23125,36059],[23126,36059],[23160,36255],[23161,36255],[23162,35937],[23163,36101],[23164,35939],[23165,35943],[23166,35945],[23167,35946],[23168,35931],[23169,36015],[23170,35948],[23171,35958],[23172,35940],[23173,35949],[23174,35950],[23175,35952],[23176,35952],[23177,36018],[23178,35940],[23179,35953],[23180,36256],[23181,35954],[23182,35955],[23183,35955],[23185,35940],[23188,35934],[23189,35959],[23190,35960],[23191,35961],[23192,36019],[23193,36020],[23194,35964],[23195,35968],[23196,36021],[23197,36022],[23198,36023],[23199,35969],[23200,35970],[23201,35971],[23202,35972],[23203,36014],[23204,35973],[23205,36024],[23206,35968],[23207,35974],[23208,35975],[23209,36256],[23210,36256],[23211,35978],[23315,35939],[23448,36015],[23565,36016],[23566,36018],[23789,36019],[23790,36020],[23802,36021],[23803,36022],[23804,36023],[23871,36024],[24065,35978],[24067,35935],[24068,35935],[24069,35935],[24070,35935],[24071,35935],[24073,35935],[24074,35935],[24075,35935],[24076,35935],[24077,35935],[24078,35935],[24079,35935],[24080,35935],[24081,35935],[24082,35935],[24083,35935],[24084,35935],[24085,35935],[24086,35935],[24087,35935],[24088,35935],[24125,36026],[24126,36025],[24128,36102],[24129,36050],[24132,36026],[24135,36025],[24136,36025],[24137,36025],[24173,36025],[24178,36025],[24179,36025],[24191,36025],[24192,36025],[24205,36025],[24206,36025],[24207,36025],[24210,36025],[24212,36025],[24214,36025],[24215,36025],[24216,36025],[24224,36025],[24225,36025],[24231,36011],[24233,36025],[24249,36025],[24251,36025],[24253,36025],[24255,36109],[24262,36103],[24264,36103],[24265,36106],[24266,36106],[24267,36106],[24268,36106],[24276,36108],[24278,36104],[24279,36104],[24280,36104],[24281,36103],[24282,36103],[24283,36107],[24286,36105],[24763,36115],[24765,36114],[24841,35932],[24842,35932],[24843,35932],[24844,35932],[24845,35932],[24846,35932],[24847,35932],[24848,35932],[24849,35932],[24850,35932],[24851,35932],[24852,35932],[24853,35932],[24855,36113],[24856,36114],[24858,36111],[24860,36114],[24861,36112],[24864,35932],[27705,36027],[27706,36027],[27707,36028],[27708,36028],[27709,36028],[27710,36029],[27711,36029],[27712,36029],[27713,36029],[27714,36029],[27715,36029],[27716,35986],[27720,36257],[27723,36030],[27724,36017],[27725,36017],[27726,36031],[27727,36031],[27728,36031],[27729,36257],[27730,36027],[27731,36027],[27732,35947],[27734,35936],[27735,35936],[27736,35936],[27737,35977],[27739,36032],[27740,36032],[27741,36027],[27742,36027],[27743,36027],[27744,36029],[27745,35986],[27762,35986],[27763,35986],[27764,35986],[27765,35986],[27766,35986],[27767,35986],[27768,35986],[27769,36027],[27770,36027],[27771,35977],[27774,36029],[27775,36029],[27776,36029],[27777,36029],[27778,36027],[27779,36027],[27781,35977],[27784,35977],[28123,35951],[28124,35951],[28125,35951],[28127,35951],[28253,36286],[28254,36286],[28255,36286],[28256,36286],[28257,36057],[28258,36058],[28259,36057],[28260,36058],[28261,36058],[28262,36057],[28263,36058],[28313,36287],[28314,36287],[28315,36287],[28316,36287],[28317,36122],[28335,36123],[28336,36124],[28337,36126],[28346,36121],[28347,36121],[28348,36121],[28370,36091],[28371,36091],[28377,36288],[28379,36091],[28381,36288],[28382,36091],[28383,36091],[28384,36288],[28401,36091],[28402,36091],[28407,36289],[28408,36289],[28409,36289],[28410,36289],[28411,36289],[28412,36289],[28413,36289],[28414,36289],[28415,36289],[28416,36289],[28417,36289],[28418,36289],[28419,36289],[28420,36289],[28421,36290],[28422,36290],[28423,36290],[28424,36290],[28425,36290],[28426,36290],[28427,36290],[28428,36290],[28429,36127],[28430,36127],[28435,36128],[28436,36128],[28437,36128],[28438,36128],[28439,36128],[28440,36128],[28441,36128],[28442,36128],[28447,36128],[28448,36128],[28453,36128],[28463,36128],[28477,36128],[28482,36057],[28483,36058],[28484,36057],[28485,36058],[28486,36058],[28487,36057],[28488,36058],[28493,36129],[28494,36129],[28495,36118],[28496,36129],[28497,36129],[28499,36129],[28501,36125],[28502,36129],[28503,36129],[28504,36130],[28505,36119],[28506,36118],[28507,36117],[28747,36057],[28748,36058],[28749,36057],[28750,36131],[28751,36128],[28752,36131],[28753,36128],[28754,36128],[28755,36058],[28756,36058],[28757,36132],[28758,36128],[28759,36128],[28760,36127],[28761,36127],[28762,36057],[28763,36128],[28764,36058],[28821,36131],[28822,36131],[28832,36131],[28838,36091],[28839,36091],[28840,36288],[28841,36291],[28842,36091],[28843,36288],[28844,36091],[28845,36091],[28846,36291],[28847,36288],[28848,36091],[28849,36291],[28850,36132],[28851,36132],[28854,36133],[28855,36134],[28857,36012],[28859,36134],[28860,36134],[28861,36133],[28863,36133],[28864,36134],[28876,36134],[28901,36134],[28911,36134],[28917,36134],[28918,36134],[28919,36292],[28921,36292],[28938,36292],[28939,36162],[28940,36054],[28941,36054],[28942,36054],[28946,36054],[28947,36054],[28948,36054],[28949,36054],[28952,36054],[28953,36054],[28954,36054],[28956,36054],[28958,36054],[28963,36054],[29135,36054],[29237,35965],[29238,35965],[29276,35965],[29290,36120],[29291,36120],[29318,36120],[29339,36293],[29340,36293],[29341,36293],[29342,36293],[29343,36293],[29344,35938],[29345,35938],[29346,35988],[29347,35999],[29348,35999],[29349,35935],[29350,35935],[29351,36166],[29352,35963],[29353,35963],[29354,35931],[29355,35947],[29356,35944],[29357,35944],[29359,35958],[29360,35940],[29361,35936],[29362,35936],[29363,35936],[29364,35938],[29365,36247],[29366,35938],[29368,35940],[29371,35934],[29374,35951],[29375,35944],[29376,35944],[29379,35944],[29380,35944],[29381,35944],[29382,35944],[29383,35933],[29384,35935],[29385,35935],[29387,35976],[29388,35935],[29389,35941],[29390,35976],[29391,35935],[29392,36055],[29395,36025],[29396,36025],[29398,36261],[29403,36162],[29404,36261],[29409,36162],[29410,36261],[29411,36261],[29423,36162],[29424,36162],[29425,36162],[29426,36162],[29427,36162],[29432,36261],[29433,36261],[29434,36261],[29435,36025],[29438,36162],[29445,36162],[29454,36162],[29455,36162],[29460,36261],[29463,36162],[29464,36162],[29465,36162],[29480,36162],[29481,36162],[29495,36162],[29503,36162],[29519,36025],[29520,36025],[29524,36162],[29528,36261],[29529,36261],[29532,36162],[29539,36261],[29542,35938],[29543,35938],[29544,35988],[29545,35999],[29546,35999],[29547,35935],[29548,35935],[29549,36166],[29550,35963],[29551,35963],[29552,35931],[29553,35947],[29554,35944],[29555,35944],[29557,35958],[29558,35940],[29559,35936],[29560,35936],[29561,35936],[29562,35938],[29563,36247],[29564,35938],[29566,35940],[29569,35934],[29572,35951],[29573,35944],[29574,35944],[29577,35944],[29578,35944],[29579,35944],[29580,35944],[29581,35933],[29582,35935],[29583,35935],[29585,35976],[29586,35935],[29587,35941],[29588,35976],[29589,35935],[29590,36055],[29593,36025],[29594,36025],[29596,36261],[29601,36162],[29602,36261],[29607,36162],[29608,36261],[29609,36261],[29621,36162],[29622,36162],[29623,36162],[29624,36162],[29625,36162],[29630,36261],[29631,36261],[29632,36261],[29633,36025],[29636,36162],[29643,36162],[29652,36162],[29653,36162],[29658,36261],[29661,36162],[29662,36162],[29663,36162],[29678,36162],[29679,36162],[29693,36162],[29701,36162],[29717,36025],[29718,36025],[29722,36162],[29726,36261],[29727,36261],[29730,36162],[29737,36261],[29740,35938],[29741,35938],[29742,35988],[29743,35999],[29744,35999],[29745,35935],[29746,35935],[29747,36166],[29748,35963],[29749,35963],[29750,35931],[29751,35947],[29752,35944],[29753,35944],[29757,35958],[29758,35940],[29759,35936],[29760,35936],[29761,35936],[29762,35938],[29763,35940],[29764,36247],[29765,35938],[29767,35940],[29770,35934],[29773,35951],[29774,35944],[29775,35944],[29778,35944],[29779,35944],[29780,35944],[29781,35944],[29782,35933],[29783,35935],[29784,35935],[29786,35976],[29787,35935],[29788,35941],[29789,35976],[29790,35938],[29791,35938],[29792,35935],[29793,36055],[29796,36025],[29797,36025],[29799,36261],[29804,36162],[29805,36261],[29810,36162],[29811,36261],[29812,36261],[29824,36162],[29825,36162],[29826,36162],[29827,36162],[29828,36162],[29833,36261],[29834,36261],[29835,36261],[29836,36025],[29839,36162],[29846,36162],[29855,36162],[29856,36162],[29862,36261],[29865,36162],[29866,36162],[29867,36162],[29882,36162],[29883,36162],[29897,36162],[29905,36162],[29921,36025],[29922,36025],[29926,36162],[29930,36261],[29931,36261],[29934,36162],[29943,36261],[29946,35938],[29947,35938],[29948,35988],[29949,35999],[29950,35999],[29951,35935],[29952,35935],[29953,36166],[29954,35963],[29955,35963],[29956,35931],[29957,35947],[29958,35944],[29959,35944],[29963,35958],[29964,35940],[29965,35936],[29966,35936],[29967,35936],[29968,35938],[29969,35940],[29970,35957],[29971,36247],[29972,35938],[29973,35956],[29976,35940],[29979,35934],[29982,35951],[29983,35944],[29984,35944],[29989,35944],[29990,35944],[29991,35944],[29992,35944],[29993,35933],[29994,35935],[29995,35935],[29997,35976],[29998,35935],[29999,35941],[30000,35976],[30001,35938],[30002,35938],[30003,35935],[30004,36055],[30007,36025],[30008,36025],[30010,36261],[30015,36162],[30016,36261],[30021,36162],[30022,36261],[30023,36261],[30035,36162],[30036,36162],[30037,36162],[30038,36162],[30039,36162],[30044,36261],[30045,36261],[30046,36261],[30047,36025],[30050,36162],[30057,36162],[30066,36162],[30067,36162],[30073,36261],[30076,36162],[30077,36162],[30078,36162],[30094,36162],[30095,36162],[30109,36162],[30117,36162],[30134,36025],[30135,36025],[30139,36162],[30143,36261],[30144,36261],[30147,36162],[30156,36261],[30159,35938],[30160,35938],[30161,35988],[30162,35999],[30163,35999],[30164,35935],[30165,35935],[30166,36166],[30167,35963],[30168,35963],[30169,35931],[30170,35947],[30171,35944],[30172,35944],[30174,35958],[30175,35940],[30176,35936],[30177,35936],[30178,35936],[30179,35938],[30180,36247],[30181,35938],[30183,35940],[30186,35934],[30189,35951],[30190,35944],[30191,35944],[30194,35944],[30195,35944],[30196,35944],[30197,35944],[30198,35933],[30199,35935],[30200,35935],[30202,35976],[30203,35935],[30204,35941],[30205,35976],[30206,35935],[30207,36055],[30210,36025],[30211,36025],[30213,36261],[30218,36162],[30219,36261],[30224,36162],[30225,36261],[30226,36261],[30238,36162],[30239,36162],[30240,36162],[30241,36162],[30242,36162],[30247,36261],[30248,36261],[30249,36261],[30250,36025],[30253,36162],[30260,36162],[30269,36162],[30270,36162],[30275,36261],[30278,36162],[30279,36162],[30280,36162],[30295,36162],[30296,36162],[30310,36162],[30318,36162],[30334,36025],[30335,36025],[30339,36162],[30343,36261],[30344,36261],[30347,36162],[30354,36261],[30374,36083],[30375,36083],[30376,36083],[30377,36083],[30378,36083],[30379,36083],[30380,36135],[30381,36083],[30382,36083],[30383,36083],[30385,36083],[30387,36083],[30388,36083],[30389,36083],[30454,36083],[30508,36083],[30629,36116],[30630,36136],[30633,35982],[30634,36136],[30637,36262],[30638,36262],[30639,36262],[30676,36011],[30679,36011],[30682,36262],[30684,36262],[30686,36262],[30688,36262],[30696,36262],[30702,36262],[30703,36136],[30705,36136],[30706,36262],[30708,36262],[30723,36136],[30728,36262],[30729,36262],[30736,36262],[30738,36262],[30740,36262],[30742,36262],[30745,36262],[30747,36262],[30750,36262],[30752,36262],[30769,36262],[30770,36262],[30771,36262],[30772,36262],[30773,36262],[30775,36011],[30777,36262],[30779,36262],[30781,35994],[30782,35994],[30783,35994],[30921,35933],[30922,35933],[30923,35933],[30925,35933],[31042,36263],[31043,36037],[31045,36037],[31046,36036],[31047,36264],[31048,36036],[31049,36138],[31050,36263],[31051,36265],[31052,36038],[31056,36266],[31062,36267],[31063,36267],[31064,36267],[31065,36267],[31066,36267],[31067,36267],[31068,36267],[31069,36267],[31070,36267],[31071,36267],[31072,36267],[31073,36267],[31074,36267],[31075,36267],[31082,36267],[31083,36267],[31084,36267],[31085,36267],[31086,36267],[31087,36267],[31088,36267],[31089,36267],[31090,36267],[31091,36267],[31092,36267],[31093,36267],[31094,36267],[31095,36267],[31096,36267],[31097,36267],[31098,36267],[31099,36267],[31100,36267],[31101,36267],[31102,36267],[31103,36267],[31104,36267],[31105,36267],[31106,36267],[31107,36267],[31108,36267],[31109,36267],[31111,36267],[31112,36267],[31113,36267],[31114,36267],[31115,36267],[31116,36267],[31117,36267],[31122,36267],[31123,36267],[31124,36267],[31125,36267],[31126,36267],[31127,36267],[31128,36267],[31129,36267],[31130,36267],[31131,36267],[31132,36267],[31133,36267],[31134,36267],[31135,36267],[31136,36267],[31137,36267],[31138,36267],[31139,36267],[31140,36267],[31141,36267],[31142,36267],[31143,36267],[31144,36267],[31145,36267],[31146,36267],[31147,36267],[31148,36267],[31149,36267],[31150,36267],[31151,36267],[31152,36267],[31153,36267],[31154,36267],[31155,36267],[31156,36267],[31158,36266],[31159,36266],[31160,36266],[31162,36265],[31174,36267],[31175,36267],[31176,36267],[31177,36267],[31178,36267],[31179,36267],[31180,36267],[31181,36267],[31182,36267],[31183,36267],[31184,36267],[31185,36267],[31186,36267],[31187,36267],[31188,36267],[31189,36267],[31190,36267],[31191,36267],[31192,36267],[31193,36267],[31194,36267],[31195,36267],[31196,36267],[31197,36267],[31198,36267],[31199,36267],[31200,36267],[31201,36267],[31202,36267],[31203,36267],[31204,36267],[31205,36267],[31206,36267],[31207,36267],[31208,36267],[31210,36040],[31211,36041],[31212,36040],[31231,36042],[31232,36043],[31233,36039],[31308,36037],[31318,36036],[31319,36044],[31320,36042],[31321,36043],[31322,36045],[31323,36040],[31324,36041],[31325,36040],[31326,36039],[31491,36267],[31492,36267],[31493,36267],[31494,36267],[31495,36267],[31496,36267],[31497,36267],[31498,36267],[31499,36267],[31500,36267],[31501,36267],[31502,36267],[31503,36267],[31504,36267],[31771,36267],[31772,36267],[31773,36267],[31774,36267],[31775,36267],[31776,36267],[31777,36267],[31778,36267],[31779,36267],[31780,36267],[31781,36267],[31782,36267],[31783,36267],[31784,36267],[31785,36267],[31786,36267],[31787,36267],[31788,36267],[31789,36267],[31790,36267],[31791,36267],[31792,36267],[31793,36267],[31794,36267],[31795,36267],[31796,36267],[31797,36267],[31798,36267],[31841,36267],[31842,36267],[31843,36267],[31844,36267],[31845,36267],[31846,36267],[31847,36267],[31885,36267],[31886,36267],[31887,36267],[31888,36267],[31889,36267],[31890,36267],[31891,36267],[31892,36267],[31893,36267],[31894,36267],[31895,36267],[31896,36267],[31897,36267],[31898,36267],[31899,36267],[31900,36267],[31901,36267],[31902,36267],[31903,36267],[31904,36267],[31905,36267],[31906,36267],[31907,36267],[31908,36267],[31909,36267],[31910,36267],[31911,36267],[31912,36267],[31913,36267],[31914,36267],[31915,36267],[31916,36267],[31917,36267],[31918,36267],[31919,36267],[32457,36265],[32754,36267],[32755,36267],[32756,36267],[32757,36267],[32758,36267],[32759,36267],[32760,36267],[32761,36267],[32762,36267],[32763,36267],[32764,36267],[32765,36267],[32766,36267],[32767,36267],[32768,36267],[32769,36267],[32770,36267],[32771,36267],[32772,36267],[32773,36267],[32774,36267],[32775,36267],[32776,36267],[32777,36267],[32778,36267],[32779,36267],[32780,36267],[32781,36267],[32782,36267],[32783,36267],[32784,36267],[32785,36267],[32786,36267],[32787,36267],[32788,36267],[32823,36044],[32824,36045],[32847,36062],[32848,36062],[32849,36062],[32850,36062],[32851,36062],[32852,36062],[32853,36062],[32854,36062],[32855,36062],[32856,35985],[32857,36140],[32858,36062],[32859,36062],[32860,35985],[32864,36062],[32865,36062],[32866,36062],[32867,36062],[32868,36062],[32869,36062],[32870,36062],[32871,36062],[32872,35987],[32873,36062],[32874,36062],[32875,36062],[32876,36062],[32877,36062],[32878,36062],[32879,36062],[33065,36168],[33066,36168],[33067,36168],[33068,36168],[33069,36168],[33070,36168],[33245,35987],[33346,35987],[33374,36141],[33375,36141],[33376,36141],[33377,36141],[33379,36141],[33380,36141],[33381,36141],[33382,35989],[33383,36141],[33384,36141],[33385,36141],[33386,36141],[33387,35990],[33388,36141],[33389,36141],[33390,36141],[33391,36141],[33392,36141],[33393,36141],[33394,36141],[33395,36141],[33396,36141],[33397,36141],[33398,36141],[33399,36142],[33400,36142],[33401,35990],[33607,36169],[33608,36170],[33609,36170],[33611,36170],[33612,36170],[33613,36170],[33614,36170],[33715,36171],[33854,35991],[33855,35991],[33856,35991],[33857,35991],[33858,35991],[33860,35991],[33862,35991],[33864,35991],[33865,35991],[33866,35991],[33868,35991],[34005,35976],[34006,35976],[34007,35976],[34008,35976],[34009,35976],[34010,35976],[34177,35993],[34178,36152],[34179,36152],[34180,36149],[34183,36143],[34184,36150],[34185,36145],[34186,36146],[34187,36147],[34188,36147],[34189,36146],[34190,36146],[34191,36144],[34194,36144],[34195,36148],[34196,36144],[34197,36145],[34199,36151],[34200,36151],[34201,36147],[34202,36147],[34203,36147],[34204,36145],[34205,36145],[34206,36149],[34207,35993],[34218,36270],[34505,36294],[34674,35998],[34675,35998],[34676,35998],[34679,35998],[34680,35998],[34681,35998],[34682,35998],[34683,35998],[34684,35998],[34685,35998],[34686,35998],[34687,35998],[34688,35998],[34689,35998],[34690,35998],[34691,35998],[34772,35998],[34786,35998],[35040,35998],[35110,36153],[35111,36153],[35112,36153],[35113,36153],[35114,36153],[35115,36153],[35116,36153],[35117,36153],[35119,36153],[35120,36153],[35121,36153],[35144,36153],[35231,36153],[35280,35966],[35281,35966],[35282,35992],[35283,35966],[35285,35967],[35286,35966],[35287,35966],[35289,35992],[35290,35966],[35385,36271],[35424,36155],[35425,36154],[35427,36154],[35428,36155],[35430,36154],[35431,36156],[35432,36156],[35433,36154],[35434,36154],[35437,36154],[35463,36154],[35502,36154],[35503,36154],[35504,36154],[35505,36154],[35508,36156],[35511,36154],[35512,36154],[35513,36154],[35514,36154],[35557,36154],[35558,36110],[35559,36090],[35565,36090],[35566,36090],[35567,36110],[35568,36090],[35721,36272],[35722,36272],[35723,36273],[35724,36273],[35725,36274],[35726,36274],[35727,36275],[35728,36275],[35729,36276],[35730,36276],[35731,36280],[35732,36280],[35733,36157],[35734,36158],[35735,36063],[35736,36159],[35737,36055]],"b":[[8621,"impl-Debug-for-PanicMessage%3C\'_%3E"],[8622,"impl-Display-for-PanicMessage%3C\'_%3E"],[8623,"impl-Debug-for-PanicInfo%3C\'a%3E"],[8624,"impl-Display-for-PanicInfo%3C\'_%3E"],[9766,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[9767,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[9768,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[9769,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[9770,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[9771,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[9793,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[9794,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[9795,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[9796,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[9797,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[9798,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[9799,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[9800,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[9801,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[9802,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[9803,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[9804,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[9805,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[9806,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[9807,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[9808,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[9809,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[9810,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[9811,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[9812,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[9813,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[9814,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[9815,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[9816,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[9820,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[9821,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[9822,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[9823,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[9824,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[9825,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[9826,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[9827,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[9828,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[9829,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[9830,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[9831,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[9878,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[9879,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[9880,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[9881,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[9882,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[9883,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[10466,"impl-Debug-for-GetManyMutError%3CN%3E"],[10467,"impl-Display-for-GetManyMutError%3CN%3E"],[10796,"impl-Debug-for-LayoutError"],[10797,"impl-Display-for-LayoutError"],[10798,"impl-Display-for-AllocError"],[10799,"impl-Debug-for-AllocError"],[10866,"impl-dyn+Any+%2B+Send"],[10867,"impl-dyn+Any"],[10868,"impl-dyn+Any+%2B+Send+%2B+Sync"],[10869,"impl-dyn+Any"],[10870,"impl-dyn+Any+%2B+Send"],[10871,"impl-dyn+Any+%2B+Send+%2B+Sync"],[10872,"impl-dyn+Any+%2B+Send+%2B+Sync"],[10873,"impl-dyn+Any"],[10874,"impl-dyn+Any+%2B+Send"],[10875,"impl-dyn+Any+%2B+Send"],[10876,"impl-dyn+Any+%2B+Send+%2B+Sync"],[10877,"impl-dyn+Any"],[10879,"impl-Debug-for-dyn+Any+%2B+Send+%2B+Sync"],[10880,"impl-Debug-for-dyn+Any"],[10881,"impl-Debug-for-dyn+Any+%2B+Send"],[10886,"impl-dyn+Any+%2B+Send+%2B+Sync"],[10887,"impl-dyn+Any+%2B+Send"],[10888,"impl-dyn+Any"],[17644,"impl-From%3CSimd%3Ci64,+2%3E%3E-for-__m128i"],[17645,"impl-From%3CSimd%3Cusize,+2%3E%3E-for-__m128i"],[17646,"impl-From%3CSimd%3Cu16,+8%3E%3E-for-__m128i"],[17647,"impl-From%3CSimd%3Cu64,+2%3E%3E-for-__m128i"],[17648,"impl-From%3CSimd%3Ci32,+4%3E%3E-for-__m128i"],[17649,"impl-From%3CSimd%3Cu32,+4%3E%3E-for-__m128i"],[17650,"impl-From%3CSimd%3Ci16,+8%3E%3E-for-__m128i"],[17651,"impl-From%3CSimd%3Cisize,+2%3E%3E-for-__m128i"],[17652,"impl-From%3CSimd%3Ci8,+16%3E%3E-for-__m128i"],[17654,"impl-From%3CSimd%3Cu8,+16%3E%3E-for-__m128i"],[17659,"impl-From%3CSimd%3Ci32,+8%3E%3E-for-__m256i"],[17660,"impl-From%3CSimd%3Ci16,+16%3E%3E-for-__m256i"],[17661,"impl-From%3CSimd%3Ci64,+4%3E%3E-for-__m256i"],[17662,"impl-From%3CSimd%3Cu16,+16%3E%3E-for-__m256i"],[17663,"impl-From%3CSimd%3Cusize,+4%3E%3E-for-__m256i"],[17664,"impl-From%3CSimd%3Cu64,+4%3E%3E-for-__m256i"],[17665,"impl-From%3CSimd%3Cisize,+4%3E%3E-for-__m256i"],[17666,"impl-From%3CSimd%3Cu8,+32%3E%3E-for-__m256i"],[17668,"impl-From%3CSimd%3Ci8,+32%3E%3E-for-__m256i"],[17669,"impl-From%3CSimd%3Cu32,+8%3E%3E-for-__m256i"],[17674,"impl-From%3CSimd%3Cu32,+16%3E%3E-for-__m512i"],[17675,"impl-From%3CSimd%3Ci16,+32%3E%3E-for-__m512i"],[17676,"impl-From%3CSimd%3Ci64,+8%3E%3E-for-__m512i"],[17677,"impl-From%3CSimd%3Ci8,+64%3E%3E-for-__m512i"],[17679,"impl-From%3CSimd%3Cu8,+64%3E%3E-for-__m512i"],[17680,"impl-From%3CSimd%3Cu64,+8%3E%3E-for-__m512i"],[17681,"impl-From%3CSimd%3Ci32,+16%3E%3E-for-__m512i"],[17682,"impl-From%3CSimd%3Cusize,+8%3E%3E-for-__m512i"],[17683,"impl-From%3CSimd%3Cu16,+32%3E%3E-for-__m512i"],[17684,"impl-From%3CSimd%3Cisize,+8%3E%3E-for-__m512i"],[17806,"impl-Display-for-TryFromSliceError"],[17807,"impl-Debug-for-TryFromSliceError"],[17993,"impl-Debug-for-Char"],[17994,"impl-Display-for-Char"],[17995,"impl-Display-for-EscapeDefault"],[17996,"impl-Debug-for-EscapeDefault"],[18073,"impl-Debug-for-Backtrace"],[18074,"impl-Display-for-Backtrace"],[18103,"impl-Add-for-Cow%3C\'a,+str%3E"],[18104,"impl-Add%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18105,"impl-AddAssign%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18106,"impl-AddAssign-for-Cow%3C\'a,+str%3E"],[18107,"impl-AsRef%3CPath%3E-for-Cow%3C\'_,+OsStr%3E"],[18108,"impl-AsRef%3CT%3E-for-Cow%3C\'_,+T%3E"],[18122,"impl-PartialEq%3COsStr%3E-for-Cow%3C\'a,+Path%3E"],[18123,"impl-PartialEq%3CCow%3C\'b,+C%3E%3E-for-Cow%3C\'a,+B%3E"],[18124,"impl-PartialEq%3CPath%3E-for-Cow%3C\'a,+Path%3E"],[18125,"impl-PartialEq%3C%26Path%3E-for-Cow%3C\'a,+Path%3E"],[18126,"impl-PartialEq%3CPathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18127,"impl-PartialEq%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18128,"impl-PartialEq%3C%26OsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18129,"impl-PartialEq%3CPathBuf%3E-for-Cow%3C\'a,+OsStr%3E"],[18130,"impl-PartialEq%3CPath%3E-for-Cow%3C\'a,+OsStr%3E"],[18131,"impl-PartialEq%3COsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18132,"impl-PartialEq%3Cstr%3E-for-Cow%3C\'a,+str%3E"],[18133,"impl-PartialEq%3C%26OsStr%3E-for-Cow%3C\'a,+Path%3E"],[18134,"impl-PartialEq%3COsString%3E-for-Cow%3C\'a,+Path%3E"],[18135,"impl-PartialEq%3COsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18136,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18137,"impl-PartialEq%3C%26%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18138,"impl-PartialEq%3CVec%3CU,+A%3E%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18139,"impl-PartialEq%3CString%3E-for-Cow%3C\'a,+str%3E"],[18140,"impl-PartialEq%3C%26Path%3E-for-Cow%3C\'b,+OsStr%3E"],[18141,"impl-Debug-for-Cow%3C\'_,+B%3E"],[18142,"impl-Display-for-Cow%3C\'_,+B%3E"],[18143,"impl-From%3CCString%3E-for-Cow%3C\'a,+CStr%3E"],[18144,"impl-From%3C%26Path%3E-for-Cow%3C\'a,+Path%3E"],[18145,"impl-From%3C%26CStr%3E-for-Cow%3C\'a,+CStr%3E"],[18146,"impl-From%3C%26%5BT;+N%5D%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18147,"impl-From%3CVec%3CT%3E%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18148,"impl-From%3C%26Vec%3CT%3E%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18149,"impl-From%3C%26String%3E-for-Cow%3C\'a,+str%3E"],[18151,"impl-From%3CString%3E-for-Cow%3C\'a,+str%3E"],[18152,"impl-From%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18153,"impl-From%3C%26CString%3E-for-Cow%3C\'a,+CStr%3E"],[18154,"impl-From%3C%26%5BT%5D%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18155,"impl-From%3C%26PathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18156,"impl-From%3CPathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18157,"impl-From%3COsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18158,"impl-From%3C%26OsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18159,"impl-From%3C%26OsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18160,"impl-FromIterator%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18161,"impl-FromIterator%3CString%3E-for-Cow%3C\'a,+str%3E"],[18162,"impl-FromIterator%3CT%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18163,"impl-FromIterator%3Cchar%3E-for-Cow%3C\'a,+str%3E"],[18169,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18170,"impl-PartialEq%3Cstr%3E-for-Cow%3C\'a,+str%3E"],[18171,"impl-PartialEq%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18172,"impl-PartialEq%3CString%3E-for-Cow%3C\'a,+str%3E"],[18173,"impl-PartialEq%3CVec%3CU,+A%3E%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18174,"impl-PartialEq%3C%26%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18175,"impl-PartialOrd%3C%26Path%3E-for-Cow%3C\'b,+OsStr%3E"],[18176,"impl-PartialOrd%3C%26OsStr%3E-for-Cow%3C\'a,+Path%3E"],[18177,"impl-PartialOrd-for-Cow%3C\'a,+B%3E"],[18178,"impl-PartialOrd%3CPath%3E-for-Cow%3C\'a,+Path%3E"],[18179,"impl-PartialOrd%3CPath%3E-for-Cow%3C\'a,+OsStr%3E"],[18180,"impl-PartialOrd%3COsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18181,"impl-PartialOrd%3COsStr%3E-for-Cow%3C\'a,+Path%3E"],[18182,"impl-PartialOrd%3CPathBuf%3E-for-Cow%3C\'a,+OsStr%3E"],[18183,"impl-PartialOrd%3CPathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18184,"impl-PartialOrd%3COsString%3E-for-Cow%3C\'a,+Path%3E"],[18185,"impl-PartialOrd%3C%26Path%3E-for-Cow%3C\'a,+Path%3E"],[18186,"impl-PartialOrd%3COsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18187,"impl-PartialOrd%3C%26OsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18204,"impl-Box%3CMaybeUninit%3CT%3E,+A%3E"],[18205,"impl-Box%3C%5BMaybeUninit%3CT%3E%5D,+A%3E"],[18219,"impl-Clone-for-Box%3C%5BT%5D,+A%3E"],[18220,"impl-Clone-for-Box%3CT,+A%3E"],[18221,"impl-Clone-for-Box%3COsStr%3E"],[18222,"impl-Clone-for-Box%3CCStr%3E"],[18223,"impl-Clone-for-Box%3Cstr%3E"],[18224,"impl-Clone-for-Box%3CPath%3E"],[18225,"impl-Clone-for-Box%3C%5BT%5D,+A%3E"],[18226,"impl-Clone-for-Box%3CT,+A%3E"],[18231,"impl-Default-for-Box%3COsStr%3E"],[18232,"impl-Default-for-Box%3CT%3E"],[18233,"impl-Default-for-Box%3C%5BT%5D%3E"],[18234,"impl-Default-for-Box%3CCStr%3E"],[18235,"impl-Default-for-Box%3Cstr%3E"],[18241,"impl-Box%3Cdyn+Any+%2B+Send+%2B+Sync,+A%3E"],[18242,"impl-Box%3Cdyn+Any+%2B+Send,+A%3E"],[18243,"impl-Box%3Cdyn+Any,+A%3E"],[18244,"impl-Box%3Cdyn+Any+%2B+Send+%2B+Sync,+A%3E"],[18245,"impl-Box%3Cdyn+Any,+A%3E"],[18246,"impl-Box%3Cdyn+Any+%2B+Send,+A%3E"],[18253,"impl-Debug-for-ThinBox%3CT%3E"],[18254,"impl-Display-for-ThinBox%3CT%3E"],[18255,"impl-Debug-for-Box%3CT,+A%3E"],[18256,"impl-Pointer-for-Box%3CT,+A%3E"],[18257,"impl-Display-for-Box%3CT,+A%3E"],[18259,"impl-From%3CPathBuf%3E-for-Box%3CPath%3E"],[18260,"impl-From%3CBox%3Cstr,+A%3E%3E-for-Box%3C%5Bu8%5D,+A%3E"],[18261,"impl-From%3C%26str%3E-for-Box%3Cdyn+Error%3E"],[18262,"impl-From%3CCow%3C\'b,+str%3E%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18263,"impl-From%3CCow%3C\'b,+str%3E%3E-for-Box%3Cdyn+Error%3E"],[18266,"impl-From%3CCow%3C\'_,+Path%3E%3E-for-Box%3CPath%3E"],[18267,"impl-From%3CString%3E-for-Box%3Cdyn+Error%3E"],[18268,"impl-From%3C%26str%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18269,"impl-From%3CString%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18270,"impl-From%3CT%3E-for-Box%3CT%3E"],[18271,"impl-From%3C%26Path%3E-for-Box%3CPath%3E"],[18272,"impl-From%3CCow%3C\'_,+str%3E%3E-for-Box%3Cstr%3E"],[18273,"impl-From%3COsString%3E-for-Box%3COsStr%3E"],[18274,"impl-From%3C%26CStr%3E-for-Box%3CCStr%3E"],[18275,"impl-From%3CCow%3C\'_,+CStr%3E%3E-for-Box%3CCStr%3E"],[18276,"impl-From%3CVec%3CT,+A%3E%3E-for-Box%3C%5BT%5D,+A%3E"],[18277,"impl-From%3CCow%3C\'_,+OsStr%3E%3E-for-Box%3COsStr%3E"],[18278,"impl-From%3CCString%3E-for-Box%3CCStr%3E"],[18279,"impl-From%3C%26OsStr%3E-for-Box%3COsStr%3E"],[18280,"impl-From%3CCow%3C\'_,+%5BT%5D%3E%3E-for-Box%3C%5BT%5D%3E"],[18281,"impl-From%3C%26str%3E-for-Box%3Cstr%3E"],[18282,"impl-From%3CE%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18283,"impl-From%3CString%3E-for-Box%3Cstr%3E"],[18284,"impl-From%3CE%3E-for-Box%3Cdyn+Error%3E"],[18285,"impl-From%3C%5BT;+N%5D%3E-for-Box%3C%5BT%5D%3E"],[18286,"impl-From%3C%26%5BT%5D%3E-for-Box%3C%5BT%5D%3E"],[18287,"impl-FromIterator%3CCow%3C\'a,+str%3E%3E-for-Box%3Cstr%3E"],[18288,"impl-FromIterator%3CBox%3Cstr,+A%3E%3E-for-Box%3Cstr%3E"],[18289,"impl-FromIterator%3C%26char%3E-for-Box%3Cstr%3E"],[18290,"impl-FromIterator%3CI%3E-for-Box%3C%5BI%5D%3E"],[18291,"impl-FromIterator%3Cchar%3E-for-Box%3Cstr%3E"],[18292,"impl-FromIterator%3C%26str%3E-for-Box%3Cstr%3E"],[18293,"impl-FromIterator%3CString%3E-for-Box%3Cstr%3E"],[18305,"impl-IntoIterator-for-%26mut+Box%3C%5BI%5D,+A%3E"],[18306,"impl-IntoIterator-for-%26Box%3C%5BI%5D,+A%3E"],[18308,"impl-IntoIterator-for-Box%3C%5BI%5D,+A%3E"],[18358,"impl-Iterator-for-Box%3CI,+A%3E"],[18359,"impl-AsyncIterator-for-Box%3CS%3E"],[18369,"impl-TryFrom%3CBox%3C%5BT%5D%3E%3E-for-Box%3C%5BT;+N%5D%3E"],[18371,"impl-TryFrom%3CVec%3CT%3E%3E-for-Box%3C%5BT;+N%5D%3E"],[18387,"impl-Box%3CMaybeUninit%3CT%3E,+A%3E"],[18388,"impl-Write-for-Box%3CW%3E"],[18389,"impl-Hasher-for-Box%3CT,+A%3E"],[18477,"impl-Debug-for-BorrowError"],[18478,"impl-Display-for-BorrowError"],[18479,"impl-Debug-for-BorrowMutError"],[18480,"impl-Display-for-BorrowMutError"],[18481,"impl-Debug-for-Ref%3C\'_,+T%3E"],[18482,"impl-Display-for-Ref%3C\'_,+T%3E"],[18483,"impl-Display-for-RefMut%3C\'_,+T%3E"],[18484,"impl-Debug-for-RefMut%3C\'_,+T%3E"],[18698,"impl-Display-for-ParseCharError"],[18699,"impl-Debug-for-ParseCharError"],[18700,"impl-Debug-for-CharTryFromError"],[18701,"impl-Display-for-CharTryFromError"],[18703,"impl-Debug-for-DecodeUtf16Error"],[18704,"impl-Display-for-DecodeUtf16Error"],[18705,"impl-Display-for-EscapeUnicode"],[18706,"impl-Debug-for-EscapeUnicode"],[18707,"impl-Display-for-EscapeDefault"],[18708,"impl-Debug-for-EscapeDefault"],[18709,"impl-Display-for-EscapeDebug"],[18710,"impl-Debug-for-EscapeDebug"],[18711,"impl-Debug-for-ToLowercase"],[18712,"impl-Display-for-ToLowercase"],[18713,"impl-Display-for-ToUppercase"],[18714,"impl-Debug-for-ToUppercase"],[18715,"impl-Debug-for-TryFromCharError"],[18716,"impl-Display-for-TryFromCharError"],[19053,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-VecDeque%3CT,+A%3E"],[19054,"impl-PartialEq%3C%5BU;+N%5D%3E-for-VecDeque%3CT,+A%3E"],[19055,"impl-PartialEq-for-VecDeque%3CT,+A%3E"],[19056,"impl-PartialEq%3CVec%3CU,+A%3E%3E-for-VecDeque%3CT,+A%3E"],[19057,"impl-PartialEq%3C%26%5BU%5D%3E-for-VecDeque%3CT,+A%3E"],[19058,"impl-PartialEq%3C%26mut+%5BU;+N%5D%3E-for-VecDeque%3CT,+A%3E"],[19059,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-VecDeque%3CT,+A%3E"],[19062,"impl-Extend%3C(K,+V)%3E-for-HashMap%3CK,+V,+S%3E"],[19063,"impl-Extend%3C(%26K,+%26V)%3E-for-HashMap%3CK,+V,+S%3E"],[19064,"impl-Extend%3CT%3E-for-BinaryHeap%3CT,+A%3E"],[19065,"impl-Extend%3C%26T%3E-for-BinaryHeap%3CT,+A%3E"],[19066,"impl-Extend%3C(%26K,+%26V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19067,"impl-Extend%3C(K,+V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19068,"impl-Extend%3C%26T%3E-for-HashSet%3CT,+S%3E"],[19069,"impl-Extend%3CT%3E-for-HashSet%3CT,+S%3E"],[19070,"impl-Extend%3C%26T%3E-for-BTreeSet%3CT,+A%3E"],[19071,"impl-Extend%3CT%3E-for-BTreeSet%3CT,+A%3E"],[19072,"impl-Extend%3CT%3E-for-LinkedList%3CT,+A%3E"],[19073,"impl-Extend%3C%26T%3E-for-LinkedList%3CT,+A%3E"],[19074,"impl-Extend%3CT%3E-for-VecDeque%3CT,+A%3E"],[19075,"impl-Extend%3C%26T%3E-for-VecDeque%3CT,+A%3E"],[19076,"impl-Extend%3C(K,+V)%3E-for-HashMap%3CK,+V,+S%3E"],[19077,"impl-Extend%3C(%26K,+%26V)%3E-for-HashMap%3CK,+V,+S%3E"],[19078,"impl-Extend%3CT%3E-for-BinaryHeap%3CT,+A%3E"],[19079,"impl-Extend%3C%26T%3E-for-BinaryHeap%3CT,+A%3E"],[19080,"impl-Extend%3C(%26K,+%26V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19081,"impl-Extend%3C(K,+V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19082,"impl-Extend%3C%26T%3E-for-HashSet%3CT,+S%3E"],[19083,"impl-Extend%3CT%3E-for-HashSet%3CT,+S%3E"],[19084,"impl-Extend%3C%26T%3E-for-BTreeSet%3CT,+A%3E"],[19085,"impl-Extend%3CT%3E-for-BTreeSet%3CT,+A%3E"],[19086,"impl-Extend%3CT%3E-for-LinkedList%3CT,+A%3E"],[19087,"impl-Extend%3C%26T%3E-for-LinkedList%3CT,+A%3E"],[19088,"impl-Extend%3C%26T%3E-for-VecDeque%3CT,+A%3E"],[19089,"impl-Extend%3CT%3E-for-VecDeque%3CT,+A%3E"],[19090,"impl-Extend%3C(%26K,+%26V)%3E-for-HashMap%3CK,+V,+S%3E"],[19091,"impl-Extend%3C(K,+V)%3E-for-HashMap%3CK,+V,+S%3E"],[19092,"impl-Extend%3C%26T%3E-for-BinaryHeap%3CT,+A%3E"],[19093,"impl-Extend%3CT%3E-for-BinaryHeap%3CT,+A%3E"],[19094,"impl-Extend%3CT%3E-for-HashSet%3CT,+S%3E"],[19095,"impl-Extend%3C%26T%3E-for-HashSet%3CT,+S%3E"],[19096,"impl-Extend%3CT%3E-for-VecDeque%3CT,+A%3E"],[19097,"impl-Extend%3C%26T%3E-for-VecDeque%3CT,+A%3E"],[19115,"impl-Debug-for-TryReserveError"],[19116,"impl-Display-for-TryReserveError"],[19121,"impl-From%3CVec%3CT,+A%3E%3E-for-BinaryHeap%3CT,+A%3E"],[19122,"impl-From%3C%5BT;+N%5D%3E-for-BinaryHeap%3CT%3E"],[19132,"impl-From%3CVec%3CT,+A%3E%3E-for-VecDeque%3CT,+A%3E"],[19133,"impl-From%3C%5BT;+N%5D%3E-for-VecDeque%3CT%3E"],[19192,"impl-IntoIterator-for-%26mut+HashMap%3CK,+V,+S%3E"],[19193,"impl-IntoIterator-for-%26HashMap%3CK,+V,+S%3E"],[19194,"impl-IntoIterator-for-HashMap%3CK,+V,+S%3E"],[19195,"impl-IntoIterator-for-BinaryHeap%3CT,+A%3E"],[19196,"impl-IntoIterator-for-%26BinaryHeap%3CT,+A%3E"],[19197,"impl-IntoIterator-for-%26mut+BTreeMap%3CK,+V,+A%3E"],[19198,"impl-IntoIterator-for-%26BTreeMap%3CK,+V,+A%3E"],[19199,"impl-IntoIterator-for-BTreeMap%3CK,+V,+A%3E"],[19200,"impl-IntoIterator-for-%26HashSet%3CT,+S%3E"],[19201,"impl-IntoIterator-for-HashSet%3CT,+S%3E"],[19202,"impl-IntoIterator-for-BTreeSet%3CT,+A%3E"],[19203,"impl-IntoIterator-for-%26BTreeSet%3CT,+A%3E"],[19204,"impl-IntoIterator-for-LinkedList%3CT,+A%3E"],[19205,"impl-IntoIterator-for-%26LinkedList%3CT,+A%3E"],[19206,"impl-IntoIterator-for-%26mut+LinkedList%3CT,+A%3E"],[19207,"impl-IntoIterator-for-VecDeque%3CT,+A%3E"],[19208,"impl-IntoIterator-for-%26VecDeque%3CT,+A%3E"],[19209,"impl-IntoIterator-for-%26mut+VecDeque%3CT,+A%3E"],[19620,"impl-Debug-for-OccupiedError%3C\'_,+K,+V,+A%3E"],[19621,"impl-Display-for-OccupiedError%3C\'a,+K,+V,+A%3E"],[19918,"impl-Debug-for-UnorderedKeyError"],[19919,"impl-Display-for-UnorderedKeyError"],[20158,"impl-Debug-for-OccupiedError%3C\'_,+K,+V%3E"],[20159,"impl-Display-for-OccupiedError%3C\'a,+K,+V%3E"],[20712,"impl-Display-for-Infallible"],[20713,"impl-Debug-for-Infallible"],[20773,"impl-Display-for-VarError"],[20774,"impl-Debug-for-VarError"],[20775,"impl-Display-for-JoinPathsError"],[20776,"impl-Debug-for-JoinPathsError"],[20864,"impl-dyn+Error+%2B+Send+%2B+Sync"],[20865,"impl-dyn+Error"],[20866,"impl-dyn+Error+%2B+Send"],[20867,"impl-dyn+Error+%2B+Send"],[20868,"impl-dyn+Error+%2B+Send+%2B+Sync"],[20869,"impl-dyn+Error"],[20870,"impl-dyn+Error+%2B+Send"],[20871,"impl-dyn+Error+%2B+Send+%2B+Sync"],[20872,"impl-dyn+Error"],[20873,"impl-Debug-for-Report%3CE%3E"],[20874,"impl-Display-for-Report%3CE%3E"],[20880,"impl-dyn+Error+%2B+Send+%2B+Sync"],[20881,"impl-dyn+Error+%2B+Send"],[20882,"impl-dyn+Error"],[21054,"impl-AsRef%3CPath%3E-for-OsString"],[21055,"impl-AsRef%3COsStr%3E-for-OsString"],[21056,"impl-AsRef%3COsStr%3E-for-OsStr"],[21057,"impl-AsRef%3CPath%3E-for-OsStr"],[21154,"impl-PartialEq%3C%26OsStr%3E-for-OsString"],[21155,"impl-PartialEq%3CPathBuf%3E-for-OsString"],[21156,"impl-PartialEq%3C%26str%3E-for-OsString"],[21157,"impl-PartialEq%3Cstr%3E-for-OsString"],[21158,"impl-PartialEq-for-OsString"],[21159,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-OsString"],[21160,"impl-PartialEq%3C%26Path%3E-for-OsString"],[21161,"impl-PartialEq%3CPath%3E-for-OsString"],[21162,"impl-PartialEq%3COsStr%3E-for-OsString"],[21163,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21164,"impl-PartialEq%3COsString%3E-for-OsStr"],[21165,"impl-PartialEq%3CPathBuf%3E-for-OsStr"],[21166,"impl-PartialEq%3Cstr%3E-for-OsStr"],[21167,"impl-PartialEq%3CPathBuf%3E-for-%26OsStr"],[21168,"impl-PartialEq%3COsString%3E-for-%26OsStr"],[21169,"impl-PartialEq-for-OsStr"],[21170,"impl-PartialEq%3CPath%3E-for-OsStr"],[21171,"impl-PartialEq%3CPath%3E-for-%26OsStr"],[21172,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-%26OsStr"],[21173,"impl-PartialEq%3C%26Path%3E-for-OsStr"],[21174,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-OsStr"],[21175,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-OsStr"],[21176,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-%26OsStr"],[21185,"impl-Extend%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21186,"impl-Extend%3C%26OsStr%3E-for-OsString"],[21187,"impl-Extend%3COsString%3E-for-OsString"],[21192,"impl-Display-for-NulError"],[21193,"impl-Debug-for-NulError"],[21194,"impl-Debug-for-FromVecWithNulError"],[21195,"impl-Display-for-FromVecWithNulError"],[21196,"impl-Display-for-IntoStringError"],[21197,"impl-Debug-for-IntoStringError"],[21199,"impl-Display-for-FromBytesWithNulError"],[21200,"impl-Debug-for-FromBytesWithNulError"],[21201,"impl-Display-for-FromBytesUntilNulError"],[21202,"impl-Debug-for-FromBytesUntilNulError"],[21205,"impl-From%3CPathBuf%3E-for-OsString"],[21207,"impl-From%3CString%3E-for-OsString"],[21208,"impl-From%3CBox%3COsStr%3E%3E-for-OsString"],[21209,"impl-From%3C%26T%3E-for-OsString"],[21210,"impl-From%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21212,"impl-From%3CCow%3C\'a,+CStr%3E%3E-for-CString"],[21214,"impl-From%3CBox%3CCStr%3E%3E-for-CString"],[21215,"impl-From%3CVec%3CNonZero%3Cu8%3E%3E%3E-for-CString"],[21216,"impl-From%3C%26CStr%3E-for-CString"],[21230,"impl-FromIterator%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21231,"impl-FromIterator%3C%26OsStr%3E-for-OsString"],[21232,"impl-FromIterator%3COsString%3E-for-OsString"],[21292,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21293,"impl-PartialOrd%3COsStr%3E-for-OsString"],[21294,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-OsString"],[21295,"impl-PartialOrd%3C%26OsStr%3E-for-OsString"],[21296,"impl-PartialOrd%3CPathBuf%3E-for-OsString"],[21297,"impl-PartialOrd%3Cstr%3E-for-OsString"],[21298,"impl-PartialOrd%3CPath%3E-for-OsString"],[21299,"impl-PartialOrd%3C%26Path%3E-for-OsString"],[21300,"impl-PartialOrd-for-OsString"],[21301,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-OsStr"],[21302,"impl-PartialOrd%3CPathBuf%3E-for-%26OsStr"],[21303,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-%26OsStr"],[21304,"impl-PartialOrd%3C%26Path%3E-for-OsStr"],[21305,"impl-PartialOrd%3COsString%3E-for-%26OsStr"],[21306,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-OsStr"],[21307,"impl-PartialOrd%3CPath%3E-for-%26OsStr"],[21308,"impl-PartialOrd%3CPath%3E-for-OsStr"],[21309,"impl-PartialOrd%3COsString%3E-for-OsStr"],[21310,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-%26OsStr"],[21311,"impl-PartialOrd%3Cstr%3E-for-OsStr"],[21312,"impl-PartialOrd-for-OsStr"],[21313,"impl-PartialOrd%3CPathBuf%3E-for-OsStr"],[21397,"impl-Debug-for-Display%3C\'_%3E"],[21398,"impl-Display-for-Display%3C\'_%3E"],[21507,"impl-Display-for-FromFn%3CF%3E"],[21508,"impl-Debug-for-FromFn%3CF%3E"],[21510,"impl-Debug-for-Error"],[21511,"impl-Display-for-Error"],[21512,"impl-Display-for-Arguments%3C\'_%3E"],[21513,"impl-Debug-for-Arguments%3C\'_%3E"],[21589,"impl-Formatter%3C\'a%3E"],[21590,"impl-Write-for-Formatter%3C\'_%3E"],[21592,"impl-Formatter%3C\'a%3E"],[21593,"impl-Write-for-Formatter%3C\'_%3E"],[21667,"impl-Write-for-File"],[21668,"impl-Write-for-%26File"],[21713,"impl-Read-for-%26File"],[21714,"impl-Read-for-File"],[21719,"impl-Write-for-File"],[21720,"impl-Write-for-%26File"],[21744,"impl-Read-for-File"],[21745,"impl-Read-for-%26File"],[21748,"impl-Read-for-%26File"],[21749,"impl-Read-for-File"],[21752,"impl-Read-for-File"],[21753,"impl-Read-for-%26File"],[21755,"impl-Read-for-File"],[21756,"impl-Read-for-%26File"],[21757,"impl-Read-for-%26File"],[21758,"impl-Read-for-File"],[21766,"impl-Seek-for-%26File"],[21767,"impl-Seek-for-File"],[21834,"impl-Write-for-File"],[21835,"impl-Write-for-%26File"],[21838,"impl-Write-for-File"],[21839,"impl-Write-for-%26File"],[22671,"impl-Write-for-%26Stdout"],[22672,"impl-Write-for-Stdout"],[22674,"impl-Write-for-Stderr"],[22675,"impl-Write-for-%26Stderr"],[22677,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[22678,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[22679,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[22680,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[22681,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[22682,"impl-Write-for-Empty"],[22683,"impl-Write-for-%26Empty"],[22684,"impl-Write-for-Sink"],[22685,"impl-Write-for-%26Sink"],[22689,"impl-Display-for-WriterPanicked"],[22690,"impl-Debug-for-WriterPanicked"],[22692,"impl-Display-for-Error"],[22693,"impl-Debug-for-Error"],[22703,"impl-Display-for-IntoInnerError%3CW%3E"],[22704,"impl-Debug-for-IntoInnerError%3CW%3E"],[22706,"impl-Debug-for-ErrorKind"],[22707,"impl-Display-for-ErrorKind"],[22723,"impl-From%3CErrorKind%3E-for-Error"],[22724,"impl-From%3CTryReserveError%3E-for-Error"],[22725,"impl-From%3CNulError%3E-for-Error"],[22726,"impl-From%3CIntoInnerError%3CW%3E%3E-for-Error"],[22735,"impl-From%3C%26mut+%5Bu8%5D%3E-for-BorrowedBuf%3C\'data%3E"],[22737,"impl-From%3C%26mut+%5BMaybeUninit%3Cu8%3E%5D%3E-for-BorrowedBuf%3C\'data%3E"],[22814,"impl-Read-for-Stdin"],[22815,"impl-Read-for-%26Stdin"],[22830,"impl-Write-for-Stdout"],[22831,"impl-Write-for-%26Stdout"],[22833,"impl-Write-for-%26Stderr"],[22834,"impl-Write-for-Stderr"],[22837,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[22838,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[22839,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[22840,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[22841,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[22842,"impl-Write-for-%26Empty"],[22843,"impl-Write-for-Empty"],[22844,"impl-Write-for-Sink"],[22845,"impl-Write-for-%26Sink"],[22873,"impl-Read-for-%26Stdin"],[22874,"impl-Read-for-Stdin"],[22882,"impl-Read-for-Stdin"],[22883,"impl-Read-for-%26Stdin"],[22892,"impl-Read-for-Stdin"],[22893,"impl-Read-for-%26Stdin"],[22898,"impl-Read-for-%26Stdin"],[22899,"impl-Read-for-Stdin"],[22907,"impl-Read-for-Stdin"],[22908,"impl-Read-for-%26Stdin"],[22916,"impl-Read-for-%26Stdin"],[22917,"impl-Read-for-Stdin"],[22926,"impl-Read-for-%26Stdin"],[22927,"impl-Read-for-Stdin"],[22941,"impl-BufReader%3CR%3E"],[22942,"impl-Seek-for-BufReader%3CR%3E"],[23065,"impl-Write-for-Stdout"],[23066,"impl-Write-for-%26Stdout"],[23068,"impl-Write-for-%26Stderr"],[23069,"impl-Write-for-Stderr"],[23071,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[23072,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[23073,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[23074,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[23075,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[23076,"impl-Write-for-Empty"],[23077,"impl-Write-for-%26Empty"],[23078,"impl-Write-for-%26Sink"],[23079,"impl-Write-for-Sink"],[23083,"impl-Write-for-Stdout"],[23084,"impl-Write-for-%26Stdout"],[23086,"impl-Write-for-%26Stderr"],[23087,"impl-Write-for-Stderr"],[23091,"impl-Write-for-Stdout"],[23092,"impl-Write-for-%26Stdout"],[23094,"impl-Write-for-Stderr"],[23095,"impl-Write-for-%26Stderr"],[23099,"impl-Write-for-%26Stdout"],[23100,"impl-Write-for-Stdout"],[23101,"impl-Write-for-Stderr"],[23102,"impl-Write-for-%26Stderr"],[23106,"impl-Write-for-Stdout"],[23107,"impl-Write-for-%26Stdout"],[23109,"impl-Write-for-%26Stderr"],[23110,"impl-Write-for-Stderr"],[23113,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[23114,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[23115,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[23116,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[23117,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[23118,"impl-Write-for-%26Empty"],[23119,"impl-Write-for-Empty"],[23120,"impl-Write-for-Sink"],[23121,"impl-Write-for-%26Sink"],[23221,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[23222,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[23680,"impl-ExactSizeIterator-for-Take%3CRepeatWith%3CF%3E%3E"],[23681,"impl-ExactSizeIterator-for-Take%3CRepeat%3CT%3E%3E"],[23751,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[23752,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[23785,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[23786,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[23828,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[23829,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[24027,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[24028,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[24305,"impl-BitAnd%3C%26Ipv4Addr%3E-for-%26Ipv4Addr"],[24306,"impl-BitAnd%3CIpv4Addr%3E-for-%26Ipv4Addr"],[24307,"impl-BitAnd%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24308,"impl-BitAnd-for-Ipv4Addr"],[24309,"impl-BitAnd%3C%26Ipv6Addr%3E-for-%26Ipv6Addr"],[24310,"impl-BitAnd%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24311,"impl-BitAnd-for-Ipv6Addr"],[24312,"impl-BitAnd%3CIpv6Addr%3E-for-%26Ipv6Addr"],[24313,"impl-BitAndAssign-for-Ipv4Addr"],[24314,"impl-BitAndAssign%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24315,"impl-BitAndAssign%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24316,"impl-BitAndAssign-for-Ipv6Addr"],[24317,"impl-BitOr-for-Ipv4Addr"],[24318,"impl-BitOr%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24319,"impl-BitOr%3CIpv4Addr%3E-for-%26Ipv4Addr"],[24320,"impl-BitOr%3C%26Ipv4Addr%3E-for-%26Ipv4Addr"],[24321,"impl-BitOr-for-Ipv6Addr"],[24322,"impl-BitOr%3CIpv6Addr%3E-for-%26Ipv6Addr"],[24323,"impl-BitOr%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24324,"impl-BitOr%3C%26Ipv6Addr%3E-for-%26Ipv6Addr"],[24325,"impl-BitOrAssign-for-Ipv4Addr"],[24326,"impl-BitOrAssign%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24327,"impl-BitOrAssign%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24328,"impl-BitOrAssign-for-Ipv6Addr"],[24397,"impl-PartialEq%3CIpv6Addr%3E-for-IpAddr"],[24398,"impl-PartialEq-for-IpAddr"],[24399,"impl-PartialEq%3CIpv4Addr%3E-for-IpAddr"],[24400,"impl-PartialEq-for-Ipv4Addr"],[24401,"impl-PartialEq%3CIpAddr%3E-for-Ipv4Addr"],[24402,"impl-PartialEq%3CIpAddr%3E-for-Ipv6Addr"],[24403,"impl-PartialEq-for-Ipv6Addr"],[24410,"impl-Write-for-%26TcpStream"],[24411,"impl-Write-for-TcpStream"],[24418,"impl-Display-for-IpAddr"],[24419,"impl-Debug-for-IpAddr"],[24420,"impl-Display-for-Ipv4Addr"],[24421,"impl-Debug-for-Ipv4Addr"],[24422,"impl-Debug-for-Ipv6Addr"],[24423,"impl-Display-for-Ipv6Addr"],[24425,"impl-Display-for-AddrParseError"],[24426,"impl-Debug-for-AddrParseError"],[24427,"impl-Debug-for-SocketAddr"],[24428,"impl-Display-for-SocketAddr"],[24429,"impl-Display-for-SocketAddrV4"],[24430,"impl-Debug-for-SocketAddrV4"],[24431,"impl-Debug-for-SocketAddrV6"],[24432,"impl-Display-for-SocketAddrV6"],[24446,"impl-From%3C%5Bu8;+16%5D%3E-for-IpAddr"],[24447,"impl-From%3C%5Bu16;+8%5D%3E-for-IpAddr"],[24449,"impl-From%3C%5Bu8;+4%5D%3E-for-IpAddr"],[24450,"impl-From%3CIpv6Addr%3E-for-IpAddr"],[24451,"impl-From%3CIpv4Addr%3E-for-IpAddr"],[24452,"impl-From%3C%5Bu8;+4%5D%3E-for-Ipv4Addr"],[24453,"impl-From%3Cu32%3E-for-Ipv4Addr"],[24455,"impl-From%3Cu128%3E-for-Ipv6Addr"],[24456,"impl-From%3C%5Bu8;+16%5D%3E-for-Ipv6Addr"],[24457,"impl-From%3C%5Bu16;+8%5D%3E-for-Ipv6Addr"],[24462,"impl-From%3C(I,+u16)%3E-for-SocketAddr"],[24463,"impl-From%3CSocketAddrV6%3E-for-SocketAddr"],[24464,"impl-From%3CSocketAddrV4%3E-for-SocketAddr"],[24532,"impl-Read-for-%26TcpStream"],[24533,"impl-Read-for-TcpStream"],[24543,"impl-Write-for-TcpStream"],[24544,"impl-Write-for-%26TcpStream"],[24565,"impl-Not-for-Ipv4Addr"],[24566,"impl-Not-for-%26Ipv4Addr"],[24567,"impl-Not-for-Ipv6Addr"],[24568,"impl-Not-for-%26Ipv6Addr"],[24578,"impl-PartialOrd-for-IpAddr"],[24579,"impl-PartialOrd%3CIpv4Addr%3E-for-IpAddr"],[24580,"impl-PartialOrd%3CIpv6Addr%3E-for-IpAddr"],[24581,"impl-PartialOrd-for-Ipv4Addr"],[24582,"impl-PartialOrd%3CIpAddr%3E-for-Ipv4Addr"],[24583,"impl-PartialOrd%3CIpAddr%3E-for-Ipv6Addr"],[24584,"impl-PartialOrd-for-Ipv6Addr"],[24597,"impl-Read-for-TcpStream"],[24598,"impl-Read-for-%26TcpStream"],[24599,"impl-Read-for-%26TcpStream"],[24600,"impl-Read-for-TcpStream"],[24603,"impl-Read-for-%26TcpStream"],[24604,"impl-Read-for-TcpStream"],[24720,"impl-Write-for-TcpStream"],[24721,"impl-Write-for-%26TcpStream"],[24724,"impl-Write-for-TcpStream"],[24725,"impl-Write-for-%26TcpStream"],[24726,"impl-NonZero%3Cu16%3E"],[24727,"impl-NonZero%3Ci8%3E"],[24728,"impl-NonZero%3Ci128%3E"],[24729,"impl-NonZero%3Ci64%3E"],[24730,"impl-NonZero%3Cisize%3E"],[24731,"impl-NonZero%3Cu8%3E"],[24732,"impl-NonZero%3Cusize%3E"],[24733,"impl-NonZero%3Cu32%3E"],[24734,"impl-NonZero%3Cu64%3E"],[24735,"impl-NonZero%3Ci32%3E"],[24736,"impl-NonZero%3Ci16%3E"],[24737,"impl-NonZero%3Cu128%3E"],[24738,"impl-Saturating%3Cu64%3E"],[24739,"impl-Saturating%3Cusize%3E"],[24740,"impl-Saturating%3Cu32%3E"],[24741,"impl-Saturating%3Cu16%3E"],[24742,"impl-Saturating%3Cu8%3E"],[24743,"impl-Saturating%3Cisize%3E"],[24744,"impl-Saturating%3Ci64%3E"],[24745,"impl-Saturating%3Ci16%3E"],[24746,"impl-Saturating%3Ci8%3E"],[24747,"impl-Saturating%3Cu128%3E"],[24748,"impl-Saturating%3Ci128%3E"],[24749,"impl-Saturating%3Ci32%3E"],[24750,"impl-Wrapping%3Cu64%3E"],[24751,"impl-Wrapping%3Cu128%3E"],[24752,"impl-Wrapping%3Ci8%3E"],[24753,"impl-Wrapping%3Cusize%3E"],[24754,"impl-Wrapping%3Cu8%3E"],[24755,"impl-Wrapping%3Cu16%3E"],[24756,"impl-Wrapping%3Ci128%3E"],[24757,"impl-Wrapping%3Ci32%3E"],[24758,"impl-Wrapping%3Ci64%3E"],[24759,"impl-Wrapping%3Cu32%3E"],[24760,"impl-Wrapping%3Cisize%3E"],[24761,"impl-Wrapping%3Ci16%3E"],[24767,"impl-NonZero%3Ci32%3E"],[24768,"impl-NonZero%3Cu8%3E"],[24769,"impl-NonZero%3Cusize%3E"],[24770,"impl-NonZero%3Cisize%3E"],[24771,"impl-NonZero%3Cu128%3E"],[24772,"impl-NonZero%3Ci64%3E"],[24773,"impl-NonZero%3Cu64%3E"],[24774,"impl-NonZero%3Ci8%3E"],[24775,"impl-NonZero%3Ci16%3E"],[24776,"impl-NonZero%3Cu32%3E"],[24777,"impl-NonZero%3Cu16%3E"],[24778,"impl-NonZero%3Ci128%3E"],[24779,"impl-Saturating%3Cu64%3E"],[24780,"impl-Saturating%3Cu16%3E"],[24781,"impl-Saturating%3Ci16%3E"],[24782,"impl-Saturating%3Ci64%3E"],[24783,"impl-Saturating%3Cu32%3E"],[24784,"impl-Saturating%3Ci32%3E"],[24785,"impl-Saturating%3Cusize%3E"],[24786,"impl-Saturating%3Cisize%3E"],[24787,"impl-Saturating%3Cu8%3E"],[24788,"impl-Saturating%3Cu128%3E"],[24789,"impl-Saturating%3Ci128%3E"],[24790,"impl-Saturating%3Ci8%3E"],[24791,"impl-Wrapping%3Cu8%3E"],[24792,"impl-Wrapping%3Ci8%3E"],[24793,"impl-Wrapping%3Cu16%3E"],[24794,"impl-Wrapping%3Cisize%3E"],[24795,"impl-Wrapping%3Cu32%3E"],[24796,"impl-Wrapping%3Ci64%3E"],[24797,"impl-Wrapping%3Ci128%3E"],[24798,"impl-Wrapping%3Cusize%3E"],[24799,"impl-Wrapping%3Ci16%3E"],[24800,"impl-Wrapping%3Ci32%3E"],[24801,"impl-Wrapping%3Cu128%3E"],[24802,"impl-Wrapping%3Cu64%3E"],[24803,"impl-NonZero%3Ci64%3E"],[24804,"impl-NonZero%3Cu128%3E"],[24805,"impl-NonZero%3Cu32%3E"],[24806,"impl-NonZero%3Ci128%3E"],[24807,"impl-NonZero%3Cu8%3E"],[24808,"impl-NonZero%3Cusize%3E"],[24809,"impl-NonZero%3Ci8%3E"],[24810,"impl-NonZero%3Ci32%3E"],[24811,"impl-NonZero%3Cu16%3E"],[24812,"impl-NonZero%3Cu64%3E"],[24813,"impl-NonZero%3Ci16%3E"],[24814,"impl-NonZero%3Cisize%3E"],[24815,"impl-Saturating%3Ci16%3E"],[24816,"impl-Saturating%3Cu64%3E"],[24817,"impl-Saturating%3Cu128%3E"],[24818,"impl-Saturating%3Cisize%3E"],[24819,"impl-Saturating%3Ci64%3E"],[24820,"impl-Saturating%3Cu32%3E"],[24821,"impl-Saturating%3Cusize%3E"],[24822,"impl-Saturating%3Ci32%3E"],[24823,"impl-Saturating%3Cu16%3E"],[24824,"impl-Saturating%3Cu8%3E"],[24825,"impl-Saturating%3Ci8%3E"],[24826,"impl-Saturating%3Ci128%3E"],[24827,"impl-Wrapping%3Cu8%3E"],[24828,"impl-Wrapping%3Cusize%3E"],[24829,"impl-Wrapping%3Cu16%3E"],[24830,"impl-Wrapping%3Cu128%3E"],[24831,"impl-Wrapping%3Ci8%3E"],[24832,"impl-Wrapping%3Cu32%3E"],[24833,"impl-Wrapping%3Ci128%3E"],[24834,"impl-Wrapping%3Cisize%3E"],[24835,"impl-Wrapping%3Ci32%3E"],[24836,"impl-Wrapping%3Ci16%3E"],[24837,"impl-Wrapping%3Cu64%3E"],[24838,"impl-Wrapping%3Ci64%3E"],[24865,"impl-NonZero%3Ci16%3E"],[24866,"impl-NonZero%3Cisize%3E"],[24867,"impl-NonZero%3Ci64%3E"],[24868,"impl-NonZero%3Ci128%3E"],[24869,"impl-NonZero%3Ci8%3E"],[24870,"impl-NonZero%3Ci32%3E"],[24871,"impl-Saturating%3Ci16%3E"],[24872,"impl-Saturating%3Ci32%3E"],[24873,"impl-Saturating%3Ci64%3E"],[24874,"impl-Saturating%3Ci8%3E"],[24875,"impl-Saturating%3Cisize%3E"],[24876,"impl-Saturating%3Ci128%3E"],[24877,"impl-Wrapping%3Ci128%3E"],[24878,"impl-Wrapping%3Ci8%3E"],[24879,"impl-Wrapping%3Ci16%3E"],[24880,"impl-Wrapping%3Ci32%3E"],[24881,"impl-Wrapping%3Cisize%3E"],[24882,"impl-Wrapping%3Ci64%3E"],[24883,"impl-Add-for-Saturating%3Cu16%3E"],[24884,"impl-Add%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[24885,"impl-Add%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[24886,"impl-Add-for-Saturating%3Cisize%3E"],[24887,"impl-Add%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[24888,"impl-Add%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[24889,"impl-Add%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[24890,"impl-Add-for-Saturating%3Cu128%3E"],[24891,"impl-Add%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[24892,"impl-Add%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[24893,"impl-Add%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[24894,"impl-Add-for-Saturating%3Cu64%3E"],[24895,"impl-Add%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[24896,"impl-Add-for-Saturating%3Ci8%3E"],[24897,"impl-Add%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[24898,"impl-Add%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[24899,"impl-Add%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[24900,"impl-Add-for-Saturating%3Cu32%3E"],[24901,"impl-Add%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[24902,"impl-Add%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[24903,"impl-Add%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[24904,"impl-Add%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[24905,"impl-Add%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[24906,"impl-Add%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[24907,"impl-Add%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[24908,"impl-Add%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[24909,"impl-Add%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[24910,"impl-Add%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[24911,"impl-Add-for-Saturating%3Cu8%3E"],[24912,"impl-Add%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[24913,"impl-Add%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[24914,"impl-Add%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[24915,"impl-Add-for-Saturating%3Cusize%3E"],[24916,"impl-Add-for-Saturating%3Ci16%3E"],[24917,"impl-Add%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[24918,"impl-Add%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[24919,"impl-Add%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[24920,"impl-Add-for-Saturating%3Ci32%3E"],[24921,"impl-Add%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[24922,"impl-Add%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[24923,"impl-Add%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[24924,"impl-Add-for-Saturating%3Ci64%3E"],[24925,"impl-Add%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[24926,"impl-Add%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[24927,"impl-Add%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[24928,"impl-Add-for-Saturating%3Ci128%3E"],[24929,"impl-Add%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[24930,"impl-Add%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[24931,"impl-Add%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[24932,"impl-Add%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[24933,"impl-Add%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[24934,"impl-Add%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[24935,"impl-Add-for-Wrapping%3Ci16%3E"],[24936,"impl-Add%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[24937,"impl-Add%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[24938,"impl-Add%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[24939,"impl-Add-for-Wrapping%3Cusize%3E"],[24940,"impl-Add%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[24941,"impl-Add%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[24942,"impl-Add-for-Wrapping%3Cu8%3E"],[24943,"impl-Add%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[24944,"impl-Add%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[24945,"impl-Add-for-Wrapping%3Cu128%3E"],[24946,"impl-Add-for-Wrapping%3Cu64%3E"],[24947,"impl-Add%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[24948,"impl-Add%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[24949,"impl-Add%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[24950,"impl-Add%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[24951,"impl-Add%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[24952,"impl-Add-for-Wrapping%3Ci128%3E"],[24953,"impl-Add%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[24954,"impl-Add%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[24955,"impl-Add%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[24956,"impl-Add%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[24957,"impl-Add-for-Wrapping%3Cu32%3E"],[24958,"impl-Add%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[24959,"impl-Add-for-Wrapping%3Cisize%3E"],[24960,"impl-Add%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[24961,"impl-Add%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[24962,"impl-Add%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[24963,"impl-Add%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[24964,"impl-Add%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[24965,"impl-Add-for-Wrapping%3Cu16%3E"],[24966,"impl-Add%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[24967,"impl-Add%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[24968,"impl-Add-for-Wrapping%3Ci8%3E"],[24969,"impl-Add-for-Wrapping%3Ci32%3E"],[24970,"impl-Add%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[24971,"impl-Add%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[24972,"impl-Add%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[24973,"impl-Add%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[24974,"impl-Add-for-Wrapping%3Ci64%3E"],[24975,"impl-Add%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[24976,"impl-Add%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[24977,"impl-Add%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[24978,"impl-Add%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[24979,"impl-AddAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[24980,"impl-AddAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[24981,"impl-AddAssign-for-Saturating%3Ci8%3E"],[24982,"impl-AddAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[24983,"impl-AddAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[24984,"impl-AddAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[24985,"impl-AddAssign-for-Saturating%3Ci16%3E"],[24986,"impl-AddAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[24987,"impl-AddAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[24988,"impl-AddAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[24989,"impl-AddAssign-for-Saturating%3Ci32%3E"],[24990,"impl-AddAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[24991,"impl-AddAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[24992,"impl-AddAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[24993,"impl-AddAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[24994,"impl-AddAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[24995,"impl-AddAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[24996,"impl-AddAssign-for-Saturating%3Ci64%3E"],[24997,"impl-AddAssign-for-Saturating%3Cisize%3E"],[24998,"impl-AddAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[24999,"impl-AddAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25000,"impl-AddAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25001,"impl-AddAssign-for-Saturating%3Cu128%3E"],[25002,"impl-AddAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25003,"impl-AddAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25004,"impl-AddAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25005,"impl-AddAssign-for-Saturating%3Cu64%3E"],[25006,"impl-AddAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25007,"impl-AddAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25008,"impl-AddAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25009,"impl-AddAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25010,"impl-AddAssign-for-Saturating%3Cu32%3E"],[25011,"impl-AddAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25012,"impl-AddAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25013,"impl-AddAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25014,"impl-AddAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25015,"impl-AddAssign-for-Saturating%3Cu16%3E"],[25016,"impl-AddAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25017,"impl-AddAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25018,"impl-AddAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25019,"impl-AddAssign-for-Saturating%3Cu8%3E"],[25020,"impl-AddAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25021,"impl-AddAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25022,"impl-AddAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25023,"impl-AddAssign-for-Saturating%3Cusize%3E"],[25024,"impl-AddAssign-for-Saturating%3Ci128%3E"],[25025,"impl-AddAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25026,"impl-AddAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25027,"impl-AddAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25028,"impl-AddAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25029,"impl-AddAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25030,"impl-AddAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25031,"impl-AddAssign-for-Wrapping%3Cu64%3E"],[25032,"impl-AddAssign-for-Wrapping%3Ci128%3E"],[25033,"impl-AddAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25034,"impl-AddAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25035,"impl-AddAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25036,"impl-AddAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25037,"impl-AddAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25038,"impl-AddAssign-for-Wrapping%3Cu128%3E"],[25039,"impl-AddAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25040,"impl-AddAssign-for-Wrapping%3Cu32%3E"],[25041,"impl-AddAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25042,"impl-AddAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25043,"impl-AddAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25044,"impl-AddAssign-for-Wrapping%3Cisize%3E"],[25045,"impl-AddAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25046,"impl-AddAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25047,"impl-AddAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25048,"impl-AddAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25049,"impl-AddAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25050,"impl-AddAssign-for-Wrapping%3Cu16%3E"],[25051,"impl-AddAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25052,"impl-AddAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25053,"impl-AddAssign-for-Wrapping%3Cusize%3E"],[25054,"impl-AddAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25055,"impl-AddAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25056,"impl-AddAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25057,"impl-AddAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25058,"impl-AddAssign-for-Wrapping%3Ci64%3E"],[25059,"impl-AddAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25060,"impl-AddAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25061,"impl-AddAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25062,"impl-AddAssign-for-Wrapping%3Cu8%3E"],[25063,"impl-AddAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25064,"impl-AddAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25065,"impl-AddAssign-for-Wrapping%3Ci32%3E"],[25066,"impl-AddAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25067,"impl-AddAssign-for-Wrapping%3Ci8%3E"],[25068,"impl-AddAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25069,"impl-AddAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25070,"impl-AddAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25071,"impl-AddAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25072,"impl-AddAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25073,"impl-AddAssign-for-Wrapping%3Ci16%3E"],[25074,"impl-AddAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25075,"impl-BitAnd%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25076,"impl-BitAnd%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25077,"impl-BitAnd%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25078,"impl-BitAnd%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25079,"impl-BitAnd%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25080,"impl-BitAnd%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25081,"impl-BitAnd%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25082,"impl-BitAnd-for-Saturating%3Cisize%3E"],[25083,"impl-BitAnd%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25084,"impl-BitAnd%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25085,"impl-BitAnd-for-Saturating%3Ci16%3E"],[25086,"impl-BitAnd%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25087,"impl-BitAnd%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25088,"impl-BitAnd%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25089,"impl-BitAnd%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25090,"impl-BitAnd-for-Saturating%3Cu128%3E"],[25091,"impl-BitAnd%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25092,"impl-BitAnd%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25093,"impl-BitAnd%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25094,"impl-BitAnd-for-Saturating%3Ci32%3E"],[25095,"impl-BitAnd%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25096,"impl-BitAnd-for-Saturating%3Ci8%3E"],[25097,"impl-BitAnd-for-Saturating%3Cu64%3E"],[25098,"impl-BitAnd%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25099,"impl-BitAnd-for-Saturating%3Cu16%3E"],[25100,"impl-BitAnd%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25101,"impl-BitAnd-for-Saturating%3Ci64%3E"],[25102,"impl-BitAnd%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25103,"impl-BitAnd-for-Saturating%3Cusize%3E"],[25104,"impl-BitAnd%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25105,"impl-BitAnd%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25106,"impl-BitAnd%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25107,"impl-BitAnd-for-Saturating%3Cu32%3E"],[25108,"impl-BitAnd%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25109,"impl-BitAnd%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25110,"impl-BitAnd%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25111,"impl-BitAnd%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25112,"impl-BitAnd%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25113,"impl-BitAnd%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25114,"impl-BitAnd%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25115,"impl-BitAnd-for-Saturating%3Ci128%3E"],[25116,"impl-BitAnd%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25117,"impl-BitAnd%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25118,"impl-BitAnd%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25119,"impl-BitAnd-for-Saturating%3Cu8%3E"],[25120,"impl-BitAnd%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25121,"impl-BitAnd%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25122,"impl-BitAnd%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25123,"impl-BitAnd-for-Wrapping%3Cu16%3E"],[25124,"impl-BitAnd%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25125,"impl-BitAnd%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25126,"impl-BitAnd%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25127,"impl-BitAnd-for-Wrapping%3Ci128%3E"],[25128,"impl-BitAnd%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25129,"impl-BitAnd-for-Wrapping%3Ci64%3E"],[25130,"impl-BitAnd%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25131,"impl-BitAnd%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25132,"impl-BitAnd%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25133,"impl-BitAnd-for-Wrapping%3Ci32%3E"],[25134,"impl-BitAnd%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25135,"impl-BitAnd%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25136,"impl-BitAnd%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25137,"impl-BitAnd-for-Wrapping%3Ci16%3E"],[25138,"impl-BitAnd%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25139,"impl-BitAnd%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25140,"impl-BitAnd%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25141,"impl-BitAnd-for-Wrapping%3Ci8%3E"],[25142,"impl-BitAnd%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25143,"impl-BitAnd%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25144,"impl-BitAnd%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25145,"impl-BitAnd%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25146,"impl-BitAnd%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25147,"impl-BitAnd-for-Wrapping%3Cisize%3E"],[25148,"impl-BitAnd%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25149,"impl-BitAnd%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25150,"impl-BitAnd%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25151,"impl-BitAnd-for-Wrapping%3Cu128%3E"],[25152,"impl-BitAnd%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25153,"impl-BitAnd%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25154,"impl-BitAnd%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25155,"impl-BitAnd-for-Wrapping%3Cu32%3E"],[25156,"impl-BitAnd%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25157,"impl-BitAnd%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25158,"impl-BitAnd-for-Wrapping%3Cusize%3E"],[25159,"impl-BitAnd%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25160,"impl-BitAnd%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25161,"impl-BitAnd%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25162,"impl-BitAnd-for-Wrapping%3Cu8%3E"],[25163,"impl-BitAnd%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25164,"impl-BitAnd%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25165,"impl-BitAnd%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25166,"impl-BitAnd%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25167,"impl-BitAnd-for-Wrapping%3Cu64%3E"],[25168,"impl-BitAnd%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25169,"impl-BitAnd%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25170,"impl-BitAnd%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25171,"impl-BitAndAssign-for-Saturating%3Cu128%3E"],[25172,"impl-BitAndAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25173,"impl-BitAndAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25174,"impl-BitAndAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25175,"impl-BitAndAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25176,"impl-BitAndAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25177,"impl-BitAndAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25178,"impl-BitAndAssign-for-Saturating%3Ci128%3E"],[25179,"impl-BitAndAssign-for-Saturating%3Cu8%3E"],[25180,"impl-BitAndAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25181,"impl-BitAndAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25182,"impl-BitAndAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25183,"impl-BitAndAssign-for-Saturating%3Cu16%3E"],[25184,"impl-BitAndAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25185,"impl-BitAndAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25186,"impl-BitAndAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25187,"impl-BitAndAssign-for-Saturating%3Cu32%3E"],[25188,"impl-BitAndAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25189,"impl-BitAndAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25190,"impl-BitAndAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25191,"impl-BitAndAssign-for-Saturating%3Cu64%3E"],[25192,"impl-BitAndAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25193,"impl-BitAndAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25194,"impl-BitAndAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25195,"impl-BitAndAssign-for-Saturating%3Cusize%3E"],[25196,"impl-BitAndAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25197,"impl-BitAndAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25198,"impl-BitAndAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25199,"impl-BitAndAssign-for-Saturating%3Cisize%3E"],[25200,"impl-BitAndAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25201,"impl-BitAndAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25202,"impl-BitAndAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25203,"impl-BitAndAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25204,"impl-BitAndAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25205,"impl-BitAndAssign-for-Saturating%3Ci8%3E"],[25206,"impl-BitAndAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25207,"impl-BitAndAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25208,"impl-BitAndAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25209,"impl-BitAndAssign-for-Saturating%3Ci16%3E"],[25210,"impl-BitAndAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25211,"impl-BitAndAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25212,"impl-BitAndAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25213,"impl-BitAndAssign-for-Saturating%3Ci32%3E"],[25214,"impl-BitAndAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25215,"impl-BitAndAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25216,"impl-BitAndAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25217,"impl-BitAndAssign-for-Saturating%3Ci64%3E"],[25218,"impl-BitAndAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25219,"impl-BitAndAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25220,"impl-BitAndAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25221,"impl-BitAndAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25222,"impl-BitAndAssign-for-Wrapping%3Cu64%3E"],[25223,"impl-BitAndAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25224,"impl-BitAndAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25225,"impl-BitAndAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25226,"impl-BitAndAssign-for-Wrapping%3Cusize%3E"],[25227,"impl-BitAndAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25228,"impl-BitAndAssign-for-Wrapping%3Cu32%3E"],[25229,"impl-BitAndAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25230,"impl-BitAndAssign-for-Wrapping%3Cu128%3E"],[25231,"impl-BitAndAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25232,"impl-BitAndAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25233,"impl-BitAndAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25234,"impl-BitAndAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25235,"impl-BitAndAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25236,"impl-BitAndAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25237,"impl-BitAndAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25238,"impl-BitAndAssign-for-Wrapping%3Cisize%3E"],[25239,"impl-BitAndAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25240,"impl-BitAndAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25241,"impl-BitAndAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25242,"impl-BitAndAssign-for-Wrapping%3Ci128%3E"],[25243,"impl-BitAndAssign-for-Wrapping%3Ci8%3E"],[25244,"impl-BitAndAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25245,"impl-BitAndAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25246,"impl-BitAndAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25247,"impl-BitAndAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25248,"impl-BitAndAssign-for-Wrapping%3Cu16%3E"],[25249,"impl-BitAndAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25250,"impl-BitAndAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25251,"impl-BitAndAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25252,"impl-BitAndAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25253,"impl-BitAndAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25254,"impl-BitAndAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25255,"impl-BitAndAssign-for-Wrapping%3Cu8%3E"],[25256,"impl-BitAndAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25257,"impl-BitAndAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25258,"impl-BitAndAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25259,"impl-BitAndAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25260,"impl-BitAndAssign-for-Wrapping%3Ci32%3E"],[25261,"impl-BitAndAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25262,"impl-BitAndAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25263,"impl-BitAndAssign-for-Wrapping%3Ci64%3E"],[25264,"impl-BitAndAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25265,"impl-BitAndAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25266,"impl-BitAndAssign-for-Wrapping%3Ci16%3E"],[25267,"impl-BitOr-for-NonZero%3CT%3E"],[25268,"impl-BitOr%3CT%3E-for-NonZero%3CT%3E"],[25269,"impl-BitOr%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25270,"impl-BitOr%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25271,"impl-BitOr%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25272,"impl-BitOr%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25273,"impl-BitOr-for-Saturating%3Ci8%3E"],[25274,"impl-BitOr%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25275,"impl-BitOr%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25276,"impl-BitOr%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25277,"impl-BitOr%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25278,"impl-BitOr-for-Saturating%3Cisize%3E"],[25279,"impl-BitOr%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25280,"impl-BitOr%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25281,"impl-BitOr%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25282,"impl-BitOr%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25283,"impl-BitOr%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25284,"impl-BitOr-for-Saturating%3Cu128%3E"],[25285,"impl-BitOr%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25286,"impl-BitOr%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25287,"impl-BitOr%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25288,"impl-BitOr%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25289,"impl-BitOr%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25290,"impl-BitOr%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25291,"impl-BitOr%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25292,"impl-BitOr%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25293,"impl-BitOr-for-Saturating%3Ci128%3E"],[25294,"impl-BitOr%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25295,"impl-BitOr-for-Saturating%3Cu32%3E"],[25296,"impl-BitOr%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25297,"impl-BitOr%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25298,"impl-BitOr%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25299,"impl-BitOr%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25300,"impl-BitOr%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25301,"impl-BitOr%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25302,"impl-BitOr-for-Saturating%3Cu16%3E"],[25303,"impl-BitOr%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25304,"impl-BitOr%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25305,"impl-BitOr%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25306,"impl-BitOr%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25307,"impl-BitOr-for-Saturating%3Cu8%3E"],[25308,"impl-BitOr-for-Saturating%3Ci16%3E"],[25309,"impl-BitOr-for-Saturating%3Ci64%3E"],[25310,"impl-BitOr%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25311,"impl-BitOr%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25312,"impl-BitOr%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25313,"impl-BitOr-for-Saturating%3Ci32%3E"],[25314,"impl-BitOr%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25315,"impl-BitOr-for-Saturating%3Cusize%3E"],[25316,"impl-BitOr-for-Saturating%3Cu64%3E"],[25317,"impl-BitOr%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25318,"impl-BitOr-for-Wrapping%3Cu64%3E"],[25319,"impl-BitOr%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25320,"impl-BitOr%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25321,"impl-BitOr%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25322,"impl-BitOr-for-Wrapping%3Cu8%3E"],[25323,"impl-BitOr-for-Wrapping%3Ci32%3E"],[25324,"impl-BitOr%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25325,"impl-BitOr%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25326,"impl-BitOr%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25327,"impl-BitOr-for-Wrapping%3Ci64%3E"],[25328,"impl-BitOr%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25329,"impl-BitOr%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25330,"impl-BitOr%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25331,"impl-BitOr%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25332,"impl-BitOr%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25333,"impl-BitOr%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25334,"impl-BitOr%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25335,"impl-BitOr-for-Wrapping%3Ci128%3E"],[25336,"impl-BitOr-for-Wrapping%3Cu16%3E"],[25337,"impl-BitOr%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25338,"impl-BitOr%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25339,"impl-BitOr%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25340,"impl-BitOr%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25341,"impl-BitOr%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25342,"impl-BitOr%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25343,"impl-BitOr-for-Wrapping%3Ci16%3E"],[25344,"impl-BitOr%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25345,"impl-BitOr%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25346,"impl-BitOr%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25347,"impl-BitOr%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25348,"impl-BitOr-for-Wrapping%3Ci8%3E"],[25349,"impl-BitOr%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25350,"impl-BitOr%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25351,"impl-BitOr%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25352,"impl-BitOr-for-Wrapping%3Cisize%3E"],[25353,"impl-BitOr%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25354,"impl-BitOr-for-Wrapping%3Cu32%3E"],[25355,"impl-BitOr%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25356,"impl-BitOr%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25357,"impl-BitOr%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25358,"impl-BitOr-for-Wrapping%3Cu128%3E"],[25359,"impl-BitOr%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25360,"impl-BitOr%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25361,"impl-BitOr%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25362,"impl-BitOr%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25363,"impl-BitOr%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25364,"impl-BitOr-for-Wrapping%3Cusize%3E"],[25365,"impl-BitOrAssign%3CT%3E-for-NonZero%3CT%3E"],[25366,"impl-BitOrAssign-for-NonZero%3CT%3E"],[25367,"impl-BitOrAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25368,"impl-BitOrAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25369,"impl-BitOrAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25370,"impl-BitOrAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25371,"impl-BitOrAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25372,"impl-BitOrAssign-for-Saturating%3Cu32%3E"],[25373,"impl-BitOrAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25374,"impl-BitOrAssign-for-Saturating%3Cu128%3E"],[25375,"impl-BitOrAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25376,"impl-BitOrAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25377,"impl-BitOrAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25378,"impl-BitOrAssign-for-Saturating%3Cu16%3E"],[25379,"impl-BitOrAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25380,"impl-BitOrAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25381,"impl-BitOrAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25382,"impl-BitOrAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25383,"impl-BitOrAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25384,"impl-BitOrAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25385,"impl-BitOrAssign-for-Saturating%3Cu8%3E"],[25386,"impl-BitOrAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25387,"impl-BitOrAssign-for-Saturating%3Cisize%3E"],[25388,"impl-BitOrAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25389,"impl-BitOrAssign-for-Saturating%3Cu64%3E"],[25390,"impl-BitOrAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25391,"impl-BitOrAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25392,"impl-BitOrAssign-for-Saturating%3Ci8%3E"],[25393,"impl-BitOrAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25394,"impl-BitOrAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25395,"impl-BitOrAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25396,"impl-BitOrAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25397,"impl-BitOrAssign-for-Saturating%3Ci16%3E"],[25398,"impl-BitOrAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25399,"impl-BitOrAssign-for-Saturating%3Cusize%3E"],[25400,"impl-BitOrAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25401,"impl-BitOrAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25402,"impl-BitOrAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25403,"impl-BitOrAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25404,"impl-BitOrAssign-for-Saturating%3Ci32%3E"],[25405,"impl-BitOrAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25406,"impl-BitOrAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25407,"impl-BitOrAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25408,"impl-BitOrAssign-for-Saturating%3Ci64%3E"],[25409,"impl-BitOrAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25410,"impl-BitOrAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25411,"impl-BitOrAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25412,"impl-BitOrAssign-for-Saturating%3Ci128%3E"],[25413,"impl-BitOrAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25414,"impl-BitOrAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25415,"impl-BitOrAssign-for-Wrapping%3Ci16%3E"],[25416,"impl-BitOrAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25417,"impl-BitOrAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25418,"impl-BitOrAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25419,"impl-BitOrAssign-for-Wrapping%3Ci64%3E"],[25420,"impl-BitOrAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25421,"impl-BitOrAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25422,"impl-BitOrAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25423,"impl-BitOrAssign-for-Wrapping%3Ci32%3E"],[25424,"impl-BitOrAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25425,"impl-BitOrAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25426,"impl-BitOrAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25427,"impl-BitOrAssign-for-Wrapping%3Cu8%3E"],[25428,"impl-BitOrAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25429,"impl-BitOrAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25430,"impl-BitOrAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25431,"impl-BitOrAssign-for-Wrapping%3Ci8%3E"],[25432,"impl-BitOrAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25433,"impl-BitOrAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25434,"impl-BitOrAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25435,"impl-BitOrAssign-for-Wrapping%3Cisize%3E"],[25436,"impl-BitOrAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25437,"impl-BitOrAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25438,"impl-BitOrAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25439,"impl-BitOrAssign-for-Wrapping%3Cu128%3E"],[25440,"impl-BitOrAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25441,"impl-BitOrAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25442,"impl-BitOrAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25443,"impl-BitOrAssign-for-Wrapping%3Cu64%3E"],[25444,"impl-BitOrAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25445,"impl-BitOrAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25446,"impl-BitOrAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25447,"impl-BitOrAssign-for-Wrapping%3Cu32%3E"],[25448,"impl-BitOrAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25449,"impl-BitOrAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25450,"impl-BitOrAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25451,"impl-BitOrAssign-for-Wrapping%3Cu16%3E"],[25452,"impl-BitOrAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25453,"impl-BitOrAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25454,"impl-BitOrAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25455,"impl-BitOrAssign-for-Wrapping%3Ci128%3E"],[25456,"impl-BitOrAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25457,"impl-BitOrAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25458,"impl-BitOrAssign-for-Wrapping%3Cusize%3E"],[25459,"impl-BitOrAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25460,"impl-BitOrAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25461,"impl-BitOrAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25462,"impl-BitOrAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25463,"impl-BitXor-for-Saturating%3Cu16%3E"],[25464,"impl-BitXor%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25465,"impl-BitXor-for-Saturating%3Cusize%3E"],[25466,"impl-BitXor%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25467,"impl-BitXor%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25468,"impl-BitXor%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25469,"impl-BitXor-for-Saturating%3Cu8%3E"],[25470,"impl-BitXor%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25471,"impl-BitXor%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25472,"impl-BitXor%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25473,"impl-BitXor%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25474,"impl-BitXor%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25475,"impl-BitXor%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25476,"impl-BitXor-for-Saturating%3Cu32%3E"],[25477,"impl-BitXor%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25478,"impl-BitXor%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25479,"impl-BitXor%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25480,"impl-BitXor-for-Saturating%3Cu64%3E"],[25481,"impl-BitXor%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25482,"impl-BitXor%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25483,"impl-BitXor%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25484,"impl-BitXor-for-Saturating%3Ci128%3E"],[25485,"impl-BitXor%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25486,"impl-BitXor%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25487,"impl-BitXor%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25488,"impl-BitXor-for-Saturating%3Cisize%3E"],[25489,"impl-BitXor%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25490,"impl-BitXor%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25491,"impl-BitXor%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25492,"impl-BitXor-for-Saturating%3Ci8%3E"],[25493,"impl-BitXor%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25494,"impl-BitXor%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25495,"impl-BitXor%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25496,"impl-BitXor-for-Saturating%3Ci16%3E"],[25497,"impl-BitXor%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25498,"impl-BitXor%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25499,"impl-BitXor%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25500,"impl-BitXor-for-Saturating%3Ci32%3E"],[25501,"impl-BitXor%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25502,"impl-BitXor%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25503,"impl-BitXor%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25504,"impl-BitXor-for-Saturating%3Ci64%3E"],[25505,"impl-BitXor%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25506,"impl-BitXor%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25507,"impl-BitXor%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25508,"impl-BitXor%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25509,"impl-BitXor%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25510,"impl-BitXor-for-Saturating%3Cu128%3E"],[25511,"impl-BitXor%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25512,"impl-BitXor%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25513,"impl-BitXor%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25514,"impl-BitXor-for-Wrapping%3Cu32%3E"],[25515,"impl-BitXor%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25516,"impl-BitXor%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25517,"impl-BitXor%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25518,"impl-BitXor-for-Wrapping%3Cu16%3E"],[25519,"impl-BitXor%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25520,"impl-BitXor-for-Wrapping%3Cu64%3E"],[25521,"impl-BitXor%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25522,"impl-BitXor%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25523,"impl-BitXor%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25524,"impl-BitXor%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25525,"impl-BitXor-for-Wrapping%3Cu128%3E"],[25526,"impl-BitXor%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25527,"impl-BitXor%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25528,"impl-BitXor%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25529,"impl-BitXor%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25530,"impl-BitXor-for-Wrapping%3Cisize%3E"],[25531,"impl-BitXor%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25532,"impl-BitXor%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25533,"impl-BitXor%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25534,"impl-BitXor%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25535,"impl-BitXor-for-Wrapping%3Cu8%3E"],[25536,"impl-BitXor-for-Wrapping%3Ci8%3E"],[25537,"impl-BitXor%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25538,"impl-BitXor%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25539,"impl-BitXor-for-Wrapping%3Cusize%3E"],[25540,"impl-BitXor%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25541,"impl-BitXor-for-Wrapping%3Ci16%3E"],[25542,"impl-BitXor%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25543,"impl-BitXor%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25544,"impl-BitXor%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25545,"impl-BitXor%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25546,"impl-BitXor%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25547,"impl-BitXor-for-Wrapping%3Ci32%3E"],[25548,"impl-BitXor%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25549,"impl-BitXor%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25550,"impl-BitXor%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25551,"impl-BitXor-for-Wrapping%3Ci64%3E"],[25552,"impl-BitXor%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25553,"impl-BitXor%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25554,"impl-BitXor%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25555,"impl-BitXor%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25556,"impl-BitXor-for-Wrapping%3Ci128%3E"],[25557,"impl-BitXor%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25558,"impl-BitXor%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25559,"impl-BitXorAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25560,"impl-BitXorAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25561,"impl-BitXorAssign-for-Saturating%3Cusize%3E"],[25562,"impl-BitXorAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25563,"impl-BitXorAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25564,"impl-BitXorAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25565,"impl-BitXorAssign-for-Saturating%3Cu8%3E"],[25566,"impl-BitXorAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25567,"impl-BitXorAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25568,"impl-BitXorAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25569,"impl-BitXorAssign-for-Saturating%3Cu16%3E"],[25570,"impl-BitXorAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25571,"impl-BitXorAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25572,"impl-BitXorAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25573,"impl-BitXorAssign-for-Saturating%3Cu32%3E"],[25574,"impl-BitXorAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25575,"impl-BitXorAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25576,"impl-BitXorAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25577,"impl-BitXorAssign-for-Saturating%3Cu64%3E"],[25578,"impl-BitXorAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25579,"impl-BitXorAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25580,"impl-BitXorAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25581,"impl-BitXorAssign-for-Saturating%3Cu128%3E"],[25582,"impl-BitXorAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25583,"impl-BitXorAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25584,"impl-BitXorAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25585,"impl-BitXorAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25586,"impl-BitXorAssign-for-Saturating%3Cisize%3E"],[25587,"impl-BitXorAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25588,"impl-BitXorAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25589,"impl-BitXorAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25590,"impl-BitXorAssign-for-Saturating%3Ci8%3E"],[25591,"impl-BitXorAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25592,"impl-BitXorAssign-for-Saturating%3Ci128%3E"],[25593,"impl-BitXorAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25594,"impl-BitXorAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25595,"impl-BitXorAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25596,"impl-BitXorAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25597,"impl-BitXorAssign-for-Saturating%3Ci16%3E"],[25598,"impl-BitXorAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25599,"impl-BitXorAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25600,"impl-BitXorAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25601,"impl-BitXorAssign-for-Saturating%3Ci32%3E"],[25602,"impl-BitXorAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25603,"impl-BitXorAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25604,"impl-BitXorAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25605,"impl-BitXorAssign-for-Saturating%3Ci64%3E"],[25606,"impl-BitXorAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25607,"impl-BitXorAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25608,"impl-BitXorAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25609,"impl-BitXorAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25610,"impl-BitXorAssign-for-Wrapping%3Cu128%3E"],[25611,"impl-BitXorAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25612,"impl-BitXorAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25613,"impl-BitXorAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25614,"impl-BitXorAssign-for-Wrapping%3Cisize%3E"],[25615,"impl-BitXorAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25616,"impl-BitXorAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25617,"impl-BitXorAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25618,"impl-BitXorAssign-for-Wrapping%3Ci8%3E"],[25619,"impl-BitXorAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25620,"impl-BitXorAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25621,"impl-BitXorAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25622,"impl-BitXorAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25623,"impl-BitXorAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25624,"impl-BitXorAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25625,"impl-BitXorAssign-for-Wrapping%3Ci128%3E"],[25626,"impl-BitXorAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25627,"impl-BitXorAssign-for-Wrapping%3Ci16%3E"],[25628,"impl-BitXorAssign-for-Wrapping%3Cusize%3E"],[25629,"impl-BitXorAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25630,"impl-BitXorAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25631,"impl-BitXorAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25632,"impl-BitXorAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25633,"impl-BitXorAssign-for-Wrapping%3Cu8%3E"],[25634,"impl-BitXorAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25635,"impl-BitXorAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25636,"impl-BitXorAssign-for-Wrapping%3Cu64%3E"],[25637,"impl-BitXorAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25638,"impl-BitXorAssign-for-Wrapping%3Cu16%3E"],[25639,"impl-BitXorAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25640,"impl-BitXorAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25641,"impl-BitXorAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25642,"impl-BitXorAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25643,"impl-BitXorAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25644,"impl-BitXorAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25645,"impl-BitXorAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25646,"impl-BitXorAssign-for-Wrapping%3Ci64%3E"],[25647,"impl-BitXorAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25648,"impl-BitXorAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25649,"impl-BitXorAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25650,"impl-BitXorAssign-for-Wrapping%3Cu32%3E"],[25651,"impl-BitXorAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25652,"impl-BitXorAssign-for-Wrapping%3Ci32%3E"],[25653,"impl-BitXorAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25654,"impl-BitXorAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25671,"impl-NonZero%3Ci128%3E"],[25672,"impl-NonZero%3Cisize%3E"],[25673,"impl-NonZero%3Ci32%3E"],[25674,"impl-NonZero%3Ci64%3E"],[25675,"impl-NonZero%3Ci8%3E"],[25676,"impl-NonZero%3Ci16%3E"],[25677,"impl-NonZero%3Cu128%3E"],[25678,"impl-NonZero%3Cusize%3E"],[25679,"impl-NonZero%3Cu32%3E"],[25680,"impl-NonZero%3Cu16%3E"],[25681,"impl-NonZero%3Cu8%3E"],[25682,"impl-NonZero%3Cu64%3E"],[25683,"impl-NonZero%3Cusize%3E"],[25684,"impl-NonZero%3Ci8%3E"],[25685,"impl-NonZero%3Cisize%3E"],[25686,"impl-NonZero%3Ci32%3E"],[25687,"impl-NonZero%3Cu8%3E"],[25688,"impl-NonZero%3Ci16%3E"],[25689,"impl-NonZero%3Ci64%3E"],[25690,"impl-NonZero%3Cu128%3E"],[25691,"impl-NonZero%3Cu32%3E"],[25692,"impl-NonZero%3Cu64%3E"],[25693,"impl-NonZero%3Cu16%3E"],[25694,"impl-NonZero%3Ci128%3E"],[25695,"impl-NonZero%3Cisize%3E"],[25696,"impl-NonZero%3Ci16%3E"],[25697,"impl-NonZero%3Ci128%3E"],[25698,"impl-NonZero%3Ci8%3E"],[25699,"impl-NonZero%3Ci32%3E"],[25700,"impl-NonZero%3Ci64%3E"],[25701,"impl-NonZero%3Cu8%3E"],[25702,"impl-NonZero%3Cu32%3E"],[25703,"impl-NonZero%3Cu16%3E"],[25704,"impl-NonZero%3Cu128%3E"],[25705,"impl-NonZero%3Cusize%3E"],[25706,"impl-NonZero%3Cu64%3E"],[25707,"impl-NonZero%3Cusize%3E"],[25708,"impl-NonZero%3Cu32%3E"],[25709,"impl-NonZero%3Cu8%3E"],[25710,"impl-NonZero%3Ci16%3E"],[25711,"impl-NonZero%3Ci128%3E"],[25712,"impl-NonZero%3Cisize%3E"],[25713,"impl-NonZero%3Ci8%3E"],[25714,"impl-NonZero%3Ci64%3E"],[25715,"impl-NonZero%3Cu16%3E"],[25716,"impl-NonZero%3Ci32%3E"],[25717,"impl-NonZero%3Cu128%3E"],[25718,"impl-NonZero%3Cu64%3E"],[25747,"impl-NonZero%3Cu16%3E"],[25748,"impl-NonZero%3Cu8%3E"],[25749,"impl-NonZero%3Cusize%3E"],[25750,"impl-NonZero%3Ci8%3E"],[25751,"impl-NonZero%3Ci16%3E"],[25752,"impl-NonZero%3Ci32%3E"],[25753,"impl-NonZero%3Cu32%3E"],[25754,"impl-NonZero%3Cu64%3E"],[25755,"impl-NonZero%3Ci128%3E"],[25756,"impl-NonZero%3Cu128%3E"],[25757,"impl-NonZero%3Cisize%3E"],[25758,"impl-NonZero%3Ci64%3E"],[25759,"impl-Saturating%3Cu128%3E"],[25760,"impl-Saturating%3Cu16%3E"],[25761,"impl-Saturating%3Ci64%3E"],[25762,"impl-Saturating%3Cu64%3E"],[25763,"impl-Saturating%3Cu32%3E"],[25764,"impl-Saturating%3Cu8%3E"],[25765,"impl-Saturating%3Cusize%3E"],[25766,"impl-Saturating%3Ci32%3E"],[25767,"impl-Saturating%3Ci16%3E"],[25768,"impl-Saturating%3Ci8%3E"],[25769,"impl-Saturating%3Ci128%3E"],[25770,"impl-Saturating%3Cisize%3E"],[25771,"impl-Wrapping%3Ci32%3E"],[25772,"impl-Wrapping%3Cu16%3E"],[25773,"impl-Wrapping%3Cisize%3E"],[25774,"impl-Wrapping%3Cu64%3E"],[25775,"impl-Wrapping%3Cusize%3E"],[25776,"impl-Wrapping%3Ci16%3E"],[25777,"impl-Wrapping%3Cu8%3E"],[25778,"impl-Wrapping%3Ci8%3E"],[25779,"impl-Wrapping%3Cu32%3E"],[25780,"impl-Wrapping%3Cu128%3E"],[25781,"impl-Wrapping%3Ci64%3E"],[25782,"impl-Wrapping%3Ci128%3E"],[25783,"impl-Saturating%3Cu16%3E"],[25784,"impl-Saturating%3Ci128%3E"],[25785,"impl-Saturating%3Cu64%3E"],[25786,"impl-Saturating%3Ci64%3E"],[25787,"impl-Saturating%3Cu32%3E"],[25788,"impl-Saturating%3Ci32%3E"],[25789,"impl-Saturating%3Cu128%3E"],[25790,"impl-Saturating%3Cisize%3E"],[25791,"impl-Saturating%3Ci16%3E"],[25792,"impl-Saturating%3Cu8%3E"],[25793,"impl-Saturating%3Ci8%3E"],[25794,"impl-Saturating%3Cusize%3E"],[25795,"impl-Wrapping%3Cu32%3E"],[25796,"impl-Wrapping%3Cusize%3E"],[25797,"impl-Wrapping%3Ci16%3E"],[25798,"impl-Wrapping%3Cisize%3E"],[25799,"impl-Wrapping%3Cu64%3E"],[25800,"impl-Wrapping%3Cu16%3E"],[25801,"impl-Wrapping%3Ci8%3E"],[25802,"impl-Wrapping%3Ci32%3E"],[25803,"impl-Wrapping%3Ci128%3E"],[25804,"impl-Wrapping%3Ci64%3E"],[25805,"impl-Wrapping%3Cu128%3E"],[25806,"impl-Wrapping%3Cu8%3E"],[25812,"impl-Div%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25813,"impl-Div%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25814,"impl-Div%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25815,"impl-Div%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25816,"impl-Div-for-Saturating%3Cu16%3E"],[25817,"impl-Div%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25818,"impl-Div%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25819,"impl-Div%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25820,"impl-Div-for-Saturating%3Cu32%3E"],[25821,"impl-Div%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25822,"impl-Div%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25823,"impl-Div%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25824,"impl-Div-for-Saturating%3Cu64%3E"],[25825,"impl-Div%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25826,"impl-Div%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25827,"impl-Div%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25828,"impl-Div%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25829,"impl-Div-for-Saturating%3Cu8%3E"],[25830,"impl-Div%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25831,"impl-Div%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25832,"impl-Div-for-Saturating%3Cusize%3E"],[25833,"impl-Div%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25834,"impl-Div%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25835,"impl-Div%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25836,"impl-Div%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25837,"impl-Div-for-Saturating%3Cisize%3E"],[25838,"impl-Div%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25839,"impl-Div%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25840,"impl-Div%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25841,"impl-Div-for-Saturating%3Ci8%3E"],[25842,"impl-Div%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25843,"impl-Div%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25844,"impl-Div%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25845,"impl-Div-for-Saturating%3Ci16%3E"],[25846,"impl-Div%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25847,"impl-Div%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25848,"impl-Div%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25849,"impl-Div-for-Saturating%3Ci32%3E"],[25850,"impl-Div%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25851,"impl-Div%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25852,"impl-Div%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25853,"impl-Div-for-Saturating%3Ci64%3E"],[25854,"impl-Div%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25855,"impl-Div%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25856,"impl-Div%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25857,"impl-Div-for-Saturating%3Ci128%3E"],[25858,"impl-Div%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25859,"impl-Div-for-Saturating%3Cu128%3E"],[25860,"impl-Div-for-Wrapping%3Cusize%3E"],[25861,"impl-Div%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25862,"impl-Div%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25863,"impl-Div%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25864,"impl-Div%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25865,"impl-Div%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25866,"impl-Div-for-Wrapping%3Cu8%3E"],[25867,"impl-Div%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25868,"impl-Div%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25869,"impl-Div%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25870,"impl-Div-for-Wrapping%3Cu16%3E"],[25871,"impl-Div%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25872,"impl-Div%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25873,"impl-Div%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25874,"impl-Div-for-Wrapping%3Cu32%3E"],[25875,"impl-Div%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25876,"impl-Div%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25877,"impl-Div%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25878,"impl-Div-for-Wrapping%3Cu64%3E"],[25879,"impl-Div%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25880,"impl-Div%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25881,"impl-Div-for-Wrapping%3Cisize%3E"],[25882,"impl-Div%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25883,"impl-Div%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25884,"impl-Div%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25885,"impl-Div-for-Wrapping%3Cu128%3E"],[25886,"impl-Div-for-Wrapping%3Ci128%3E"],[25887,"impl-Div%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25888,"impl-Div%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25889,"impl-Div%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25890,"impl-Div-for-Wrapping%3Ci64%3E"],[25891,"impl-Div%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25892,"impl-Div%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25893,"impl-Div%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25894,"impl-Div-for-Wrapping%3Ci32%3E"],[25895,"impl-Div%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25896,"impl-Div%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25897,"impl-Div%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25898,"impl-Div%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25899,"impl-Div%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25900,"impl-Div-for-Wrapping%3Ci16%3E"],[25901,"impl-Div%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25902,"impl-Div%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25903,"impl-Div%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25904,"impl-Div-for-Wrapping%3Ci8%3E"],[25905,"impl-Div%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25906,"impl-Div%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25907,"impl-Div%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25908,"impl-DivAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25909,"impl-DivAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25910,"impl-DivAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25911,"impl-DivAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25912,"impl-DivAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25913,"impl-DivAssign-for-Saturating%3Ci128%3E"],[25914,"impl-DivAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25915,"impl-DivAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25916,"impl-DivAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25917,"impl-DivAssign-for-Saturating%3Ci64%3E"],[25918,"impl-DivAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25919,"impl-DivAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25920,"impl-DivAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25921,"impl-DivAssign-for-Saturating%3Ci32%3E"],[25922,"impl-DivAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25923,"impl-DivAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25924,"impl-DivAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25925,"impl-DivAssign-for-Saturating%3Ci16%3E"],[25926,"impl-DivAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25927,"impl-DivAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25928,"impl-DivAssign-for-Saturating%3Ci8%3E"],[25929,"impl-DivAssign-for-Saturating%3Cusize%3E"],[25930,"impl-DivAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25931,"impl-DivAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25932,"impl-DivAssign-for-Saturating%3Cisize%3E"],[25933,"impl-DivAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25934,"impl-DivAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25935,"impl-DivAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25936,"impl-DivAssign-for-Saturating%3Cu128%3E"],[25937,"impl-DivAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25938,"impl-DivAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25939,"impl-DivAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25940,"impl-DivAssign-for-Saturating%3Cu64%3E"],[25941,"impl-DivAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25942,"impl-DivAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25943,"impl-DivAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25944,"impl-DivAssign-for-Saturating%3Cu32%3E"],[25945,"impl-DivAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25946,"impl-DivAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25947,"impl-DivAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25948,"impl-DivAssign-for-Saturating%3Cu16%3E"],[25949,"impl-DivAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25950,"impl-DivAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25951,"impl-DivAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25952,"impl-DivAssign-for-Saturating%3Cu8%3E"],[25953,"impl-DivAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25954,"impl-DivAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25955,"impl-DivAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25956,"impl-DivAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25957,"impl-DivAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25958,"impl-DivAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25959,"impl-DivAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25960,"impl-DivAssign-for-Wrapping%3Ci16%3E"],[25961,"impl-DivAssign-for-Wrapping%3Cusize%3E"],[25962,"impl-DivAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25963,"impl-DivAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25964,"impl-DivAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25965,"impl-DivAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25966,"impl-DivAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25967,"impl-DivAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25968,"impl-DivAssign-for-Wrapping%3Ci8%3E"],[25969,"impl-DivAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25970,"impl-DivAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25971,"impl-DivAssign-for-Wrapping%3Ci64%3E"],[25972,"impl-DivAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25973,"impl-DivAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25974,"impl-DivAssign-for-Wrapping%3Cisize%3E"],[25975,"impl-DivAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25976,"impl-DivAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25977,"impl-DivAssign-for-Wrapping%3Ci128%3E"],[25978,"impl-DivAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25979,"impl-DivAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25980,"impl-DivAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25981,"impl-DivAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25982,"impl-DivAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25983,"impl-DivAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25984,"impl-DivAssign-for-Wrapping%3Cu128%3E"],[25985,"impl-DivAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25986,"impl-DivAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25987,"impl-DivAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25988,"impl-DivAssign-for-Wrapping%3Cu64%3E"],[25989,"impl-DivAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25990,"impl-DivAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25991,"impl-DivAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25992,"impl-DivAssign-for-Wrapping%3Cu32%3E"],[25993,"impl-DivAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25994,"impl-DivAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25995,"impl-DivAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25996,"impl-DivAssign-for-Wrapping%3Cu16%3E"],[25997,"impl-DivAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25998,"impl-DivAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25999,"impl-DivAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26000,"impl-DivAssign-for-Wrapping%3Cu8%3E"],[26001,"impl-DivAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[26002,"impl-DivAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26003,"impl-DivAssign-for-Wrapping%3Ci32%3E"],[26012,"impl-Octal-for-NonZero%3CT%3E"],[26013,"impl-Display-for-NonZero%3CT%3E"],[26014,"impl-Debug-for-NonZero%3CT%3E"],[26015,"impl-LowerHex-for-NonZero%3CT%3E"],[26016,"impl-UpperHex-for-NonZero%3CT%3E"],[26017,"impl-Binary-for-NonZero%3CT%3E"],[26018,"impl-Display-for-ParseFloatError"],[26019,"impl-Debug-for-ParseFloatError"],[26020,"impl-Display-for-TryFromIntError"],[26021,"impl-Debug-for-TryFromIntError"],[26022,"impl-Display-for-ParseIntError"],[26023,"impl-Debug-for-ParseIntError"],[26025,"impl-LowerHex-for-Saturating%3CT%3E"],[26026,"impl-Debug-for-Saturating%3CT%3E"],[26027,"impl-Binary-for-Saturating%3CT%3E"],[26028,"impl-UpperHex-for-Saturating%3CT%3E"],[26029,"impl-Display-for-Saturating%3CT%3E"],[26030,"impl-Octal-for-Saturating%3CT%3E"],[26031,"impl-Display-for-Wrapping%3CT%3E"],[26032,"impl-LowerHex-for-Wrapping%3CT%3E"],[26033,"impl-Binary-for-Wrapping%3CT%3E"],[26034,"impl-Debug-for-Wrapping%3CT%3E"],[26035,"impl-UpperHex-for-Wrapping%3CT%3E"],[26036,"impl-Octal-for-Wrapping%3CT%3E"],[26038,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci16%3E"],[26039,"impl-From%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci128%3E"],[26040,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu64%3E"],[26041,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu64%3E"],[26042,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu32%3E"],[26043,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu16%3E"],[26044,"impl-From%3CAlignment%3E-for-NonZero%3Cusize%3E"],[26045,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu128%3E"],[26046,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cusize%3E"],[26047,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu32%3E"],[26048,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu64%3E"],[26049,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu128%3E"],[26050,"impl-From%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu128%3E"],[26051,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cusize%3E"],[26052,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci32%3E"],[26053,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci64%3E"],[26054,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci128%3E"],[26055,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cisize%3E"],[26056,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci32%3E"],[26057,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci64%3E"],[26058,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci128%3E"],[26059,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cisize%3E"],[26060,"impl-From%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci64%3E"],[26061,"impl-From%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci128%3E"],[26062,"impl-From%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci128%3E"],[26063,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci16%3E"],[26064,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci32%3E"],[26065,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci64%3E"],[26066,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci128%3E"],[26067,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cisize%3E"],[26068,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci32%3E"],[26069,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci64%3E"],[26070,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci128%3E"],[26071,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci64%3E"],[26073,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci128%3E"],[26074,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu128%3E"],[26076,"impl-From%3C!%3E-for-TryFromIntError"],[26078,"impl-From%3CInfallible%3E-for-TryFromIntError"],[26085,"impl-NonZero%3Cu32%3E"],[26086,"impl-NonZero%3Ci64%3E"],[26087,"impl-NonZero%3Cu16%3E"],[26088,"impl-NonZero%3Cu8%3E"],[26089,"impl-NonZero%3Ci8%3E"],[26090,"impl-NonZero%3Cisize%3E"],[26091,"impl-NonZero%3Cu64%3E"],[26092,"impl-NonZero%3Ci32%3E"],[26093,"impl-NonZero%3Cusize%3E"],[26094,"impl-NonZero%3Ci16%3E"],[26095,"impl-NonZero%3Ci128%3E"],[26096,"impl-NonZero%3Cu128%3E"],[26097,"impl-Saturating%3Ci128%3E"],[26098,"impl-Saturating%3Cu128%3E"],[26099,"impl-Saturating%3Ci64%3E"],[26100,"impl-Saturating%3Cu64%3E"],[26101,"impl-Saturating%3Cisize%3E"],[26102,"impl-Saturating%3Cusize%3E"],[26103,"impl-Saturating%3Cu8%3E"],[26104,"impl-Saturating%3Cu16%3E"],[26105,"impl-Saturating%3Cu32%3E"],[26106,"impl-Saturating%3Ci32%3E"],[26107,"impl-Saturating%3Ci8%3E"],[26108,"impl-Saturating%3Ci16%3E"],[26109,"impl-Wrapping%3Cu8%3E"],[26110,"impl-Wrapping%3Ci64%3E"],[26111,"impl-Wrapping%3Ci16%3E"],[26112,"impl-Wrapping%3Ci32%3E"],[26113,"impl-Wrapping%3Cu16%3E"],[26114,"impl-Wrapping%3Cu32%3E"],[26115,"impl-Wrapping%3Cu64%3E"],[26116,"impl-Wrapping%3Cu128%3E"],[26117,"impl-Wrapping%3Cisize%3E"],[26118,"impl-Wrapping%3Ci8%3E"],[26119,"impl-Wrapping%3Ci128%3E"],[26120,"impl-Wrapping%3Cusize%3E"],[26121,"impl-NonZero%3Ci8%3E"],[26122,"impl-NonZero%3Ci64%3E"],[26123,"impl-NonZero%3Cu32%3E"],[26124,"impl-NonZero%3Cu8%3E"],[26125,"impl-NonZero%3Ci128%3E"],[26126,"impl-NonZero%3Cu64%3E"],[26127,"impl-NonZero%3Ci32%3E"],[26128,"impl-NonZero%3Ci16%3E"],[26129,"impl-NonZero%3Cusize%3E"],[26130,"impl-NonZero%3Cisize%3E"],[26131,"impl-NonZero%3Cu128%3E"],[26132,"impl-NonZero%3Cu16%3E"],[26133,"impl-Saturating%3Ci8%3E"],[26134,"impl-Saturating%3Cusize%3E"],[26135,"impl-Saturating%3Ci128%3E"],[26136,"impl-Saturating%3Cu64%3E"],[26137,"impl-Saturating%3Cisize%3E"],[26138,"impl-Saturating%3Cu8%3E"],[26139,"impl-Saturating%3Ci32%3E"],[26140,"impl-Saturating%3Cu16%3E"],[26141,"impl-Saturating%3Ci64%3E"],[26142,"impl-Saturating%3Ci16%3E"],[26143,"impl-Saturating%3Cu32%3E"],[26144,"impl-Saturating%3Cu128%3E"],[26145,"impl-Wrapping%3Cu32%3E"],[26146,"impl-Wrapping%3Ci32%3E"],[26147,"impl-Wrapping%3Cu128%3E"],[26148,"impl-Wrapping%3Ci8%3E"],[26149,"impl-Wrapping%3Cu64%3E"],[26150,"impl-Wrapping%3Cu16%3E"],[26151,"impl-Wrapping%3Ci128%3E"],[26152,"impl-Wrapping%3Ci64%3E"],[26153,"impl-Wrapping%3Cusize%3E"],[26154,"impl-Wrapping%3Cu8%3E"],[26155,"impl-Wrapping%3Ci16%3E"],[26156,"impl-Wrapping%3Cisize%3E"],[26159,"impl-FromStr-for-NonZero%3Cisize%3E"],[26160,"impl-FromStr-for-NonZero%3Ci64%3E"],[26161,"impl-FromStr-for-NonZero%3Cu16%3E"],[26162,"impl-FromStr-for-NonZero%3Ci128%3E"],[26163,"impl-FromStr-for-NonZero%3Ci8%3E"],[26164,"impl-FromStr-for-NonZero%3Ci16%3E"],[26165,"impl-FromStr-for-NonZero%3Cusize%3E"],[26166,"impl-FromStr-for-NonZero%3Cu128%3E"],[26167,"impl-FromStr-for-NonZero%3Cu64%3E"],[26168,"impl-FromStr-for-NonZero%3Ci32%3E"],[26169,"impl-FromStr-for-NonZero%3Cu8%3E"],[26170,"impl-FromStr-for-NonZero%3Cu32%3E"],[26177,"impl-NonZero%3Cusize%3E"],[26178,"impl-NonZero%3Cu32%3E"],[26179,"impl-NonZero%3Cu64%3E"],[26180,"impl-NonZero%3Cu8%3E"],[26181,"impl-NonZero%3Cu16%3E"],[26182,"impl-NonZero%3Cu128%3E"],[26183,"impl-NonZero%3Cu128%3E"],[26184,"impl-NonZero%3Cu8%3E"],[26185,"impl-NonZero%3Cusize%3E"],[26186,"impl-NonZero%3Cu16%3E"],[26187,"impl-NonZero%3Cu64%3E"],[26188,"impl-NonZero%3Cu32%3E"],[26197,"impl-NonZero%3Cisize%3E"],[26198,"impl-NonZero%3Ci16%3E"],[26199,"impl-NonZero%3Ci8%3E"],[26200,"impl-NonZero%3Ci128%3E"],[26201,"impl-NonZero%3Ci64%3E"],[26202,"impl-NonZero%3Ci32%3E"],[26203,"impl-Saturating%3Cisize%3E"],[26204,"impl-Saturating%3Ci16%3E"],[26205,"impl-Saturating%3Ci8%3E"],[26206,"impl-Saturating%3Ci128%3E"],[26207,"impl-Saturating%3Ci32%3E"],[26208,"impl-Saturating%3Ci64%3E"],[26209,"impl-Wrapping%3Ci8%3E"],[26210,"impl-Wrapping%3Ci128%3E"],[26211,"impl-Wrapping%3Ci64%3E"],[26212,"impl-Wrapping%3Cisize%3E"],[26213,"impl-Wrapping%3Ci16%3E"],[26214,"impl-Wrapping%3Ci32%3E"],[26215,"impl-NonZero%3Ci16%3E"],[26216,"impl-NonZero%3Cisize%3E"],[26217,"impl-NonZero%3Ci128%3E"],[26218,"impl-NonZero%3Ci64%3E"],[26219,"impl-NonZero%3Ci32%3E"],[26220,"impl-NonZero%3Ci8%3E"],[26221,"impl-Saturating%3Ci32%3E"],[26222,"impl-Saturating%3Ci64%3E"],[26223,"impl-Saturating%3Ci128%3E"],[26224,"impl-Saturating%3Cisize%3E"],[26225,"impl-Saturating%3Ci8%3E"],[26226,"impl-Saturating%3Ci16%3E"],[26227,"impl-Wrapping%3Ci32%3E"],[26228,"impl-Wrapping%3Ci128%3E"],[26229,"impl-Wrapping%3Ci64%3E"],[26230,"impl-Wrapping%3Ci8%3E"],[26231,"impl-Wrapping%3Ci16%3E"],[26232,"impl-Wrapping%3Cisize%3E"],[26233,"impl-NonZero%3Cu8%3E"],[26234,"impl-NonZero%3Cusize%3E"],[26235,"impl-NonZero%3Cu32%3E"],[26236,"impl-NonZero%3Cu128%3E"],[26237,"impl-NonZero%3Cu64%3E"],[26238,"impl-NonZero%3Cu16%3E"],[26239,"impl-Saturating%3Cusize%3E"],[26240,"impl-Saturating%3Cu32%3E"],[26241,"impl-Saturating%3Cu16%3E"],[26242,"impl-Saturating%3Cu64%3E"],[26243,"impl-Saturating%3Cu128%3E"],[26244,"impl-Saturating%3Cu8%3E"],[26245,"impl-Wrapping%3Cu32%3E"],[26246,"impl-Wrapping%3Cusize%3E"],[26247,"impl-Wrapping%3Cu16%3E"],[26248,"impl-Wrapping%3Cu64%3E"],[26249,"impl-Wrapping%3Cu128%3E"],[26250,"impl-Wrapping%3Cu8%3E"],[26251,"impl-NonZero%3Cu32%3E"],[26252,"impl-NonZero%3Cu128%3E"],[26253,"impl-NonZero%3Cu64%3E"],[26254,"impl-NonZero%3Cusize%3E"],[26255,"impl-NonZero%3Cu8%3E"],[26256,"impl-NonZero%3Cu16%3E"],[26259,"impl-NonZero%3Ci64%3E"],[26260,"impl-NonZero%3Ci32%3E"],[26261,"impl-NonZero%3Cu32%3E"],[26262,"impl-NonZero%3Cisize%3E"],[26263,"impl-NonZero%3Ci16%3E"],[26264,"impl-NonZero%3Ci8%3E"],[26265,"impl-NonZero%3Cusize%3E"],[26266,"impl-NonZero%3Ci128%3E"],[26267,"impl-NonZero%3Cu128%3E"],[26268,"impl-NonZero%3Cu8%3E"],[26269,"impl-NonZero%3Cu16%3E"],[26270,"impl-NonZero%3Cu64%3E"],[26271,"impl-Saturating%3Ci64%3E"],[26272,"impl-Saturating%3Cu128%3E"],[26273,"impl-Saturating%3Cisize%3E"],[26274,"impl-Saturating%3Ci8%3E"],[26275,"impl-Saturating%3Ci32%3E"],[26276,"impl-Saturating%3Ci16%3E"],[26277,"impl-Saturating%3Ci128%3E"],[26278,"impl-Saturating%3Cusize%3E"],[26279,"impl-Saturating%3Cu8%3E"],[26280,"impl-Saturating%3Cu16%3E"],[26281,"impl-Saturating%3Cu32%3E"],[26282,"impl-Saturating%3Cu64%3E"],[26283,"impl-Wrapping%3Ci8%3E"],[26284,"impl-Wrapping%3Cu8%3E"],[26285,"impl-Wrapping%3Cu64%3E"],[26286,"impl-Wrapping%3Cu128%3E"],[26287,"impl-Wrapping%3Ci32%3E"],[26288,"impl-Wrapping%3Ci64%3E"],[26289,"impl-Wrapping%3Cisize%3E"],[26290,"impl-Wrapping%3Ci128%3E"],[26291,"impl-Wrapping%3Cu16%3E"],[26292,"impl-Wrapping%3Ci16%3E"],[26293,"impl-Wrapping%3Cusize%3E"],[26294,"impl-Wrapping%3Cu32%3E"],[26297,"impl-NonZero%3Cu64%3E"],[26298,"impl-NonZero%3Cusize%3E"],[26299,"impl-NonZero%3Cu32%3E"],[26300,"impl-NonZero%3Cu16%3E"],[26301,"impl-NonZero%3Cu8%3E"],[26302,"impl-NonZero%3Cu128%3E"],[26304,"impl-Mul%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26305,"impl-Mul%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26306,"impl-Mul%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26307,"impl-Mul%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26308,"impl-Mul%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26309,"impl-Mul-for-Saturating%3Ci128%3E"],[26310,"impl-Mul%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26311,"impl-Mul%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26312,"impl-Mul%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26313,"impl-Mul-for-Saturating%3Ci64%3E"],[26314,"impl-Mul%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26315,"impl-Mul%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26316,"impl-Mul%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26317,"impl-Mul-for-Saturating%3Ci32%3E"],[26318,"impl-Mul%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26319,"impl-Mul%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26320,"impl-Mul%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26321,"impl-Mul-for-Saturating%3Ci16%3E"],[26322,"impl-Mul%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26323,"impl-Mul%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26324,"impl-Mul%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26325,"impl-Mul-for-Saturating%3Cusize%3E"],[26326,"impl-Mul%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26327,"impl-Mul%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26328,"impl-Mul%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26329,"impl-Mul-for-Saturating%3Cisize%3E"],[26330,"impl-Mul%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26331,"impl-Mul%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26332,"impl-Mul%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26333,"impl-Mul-for-Saturating%3Cu128%3E"],[26334,"impl-Mul%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26335,"impl-Mul%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26336,"impl-Mul%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26337,"impl-Mul-for-Saturating%3Cu64%3E"],[26338,"impl-Mul%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26339,"impl-Mul%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26340,"impl-Mul%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26341,"impl-Mul-for-Saturating%3Cu32%3E"],[26342,"impl-Mul%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26343,"impl-Mul%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26344,"impl-Mul%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26345,"impl-Mul-for-Saturating%3Cu16%3E"],[26346,"impl-Mul%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26347,"impl-Mul%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26348,"impl-Mul-for-Saturating%3Cu8%3E"],[26349,"impl-Mul%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26350,"impl-Mul%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26351,"impl-Mul-for-Saturating%3Ci8%3E"],[26352,"impl-Mul-for-Wrapping%3Ci16%3E"],[26353,"impl-Mul-for-Wrapping%3Cusize%3E"],[26354,"impl-Mul%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26355,"impl-Mul%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26356,"impl-Mul%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26357,"impl-Mul-for-Wrapping%3Cu8%3E"],[26358,"impl-Mul%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26359,"impl-Mul%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26360,"impl-Mul%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26361,"impl-Mul-for-Wrapping%3Cu16%3E"],[26362,"impl-Mul%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26363,"impl-Mul%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26364,"impl-Mul%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26365,"impl-Mul-for-Wrapping%3Cu32%3E"],[26366,"impl-Mul%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26367,"impl-Mul%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26368,"impl-Mul%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26369,"impl-Mul-for-Wrapping%3Cu64%3E"],[26370,"impl-Mul%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26371,"impl-Mul%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26372,"impl-Mul%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26373,"impl-Mul-for-Wrapping%3Cu128%3E"],[26374,"impl-Mul%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26375,"impl-Mul%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26376,"impl-Mul%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26377,"impl-Mul-for-Wrapping%3Cisize%3E"],[26378,"impl-Mul%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26379,"impl-Mul%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26380,"impl-Mul%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26381,"impl-Mul-for-Wrapping%3Ci8%3E"],[26382,"impl-Mul%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26383,"impl-Mul%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26384,"impl-Mul%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26385,"impl-Mul%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26386,"impl-Mul-for-Wrapping%3Ci128%3E"],[26387,"impl-Mul%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26388,"impl-Mul%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26389,"impl-Mul%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26390,"impl-Mul%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26391,"impl-Mul-for-Wrapping%3Ci64%3E"],[26392,"impl-Mul%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26393,"impl-Mul%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26394,"impl-Mul%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26395,"impl-Mul%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26396,"impl-Mul%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26397,"impl-Mul%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26398,"impl-Mul%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26399,"impl-Mul-for-Wrapping%3Ci32%3E"],[26400,"impl-MulAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[26401,"impl-MulAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[26402,"impl-MulAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[26403,"impl-MulAssign-for-Saturating%3Ci8%3E"],[26404,"impl-MulAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26405,"impl-MulAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[26406,"impl-MulAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[26407,"impl-MulAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26408,"impl-MulAssign-for-Saturating%3Cusize%3E"],[26409,"impl-MulAssign-for-Saturating%3Ci16%3E"],[26410,"impl-MulAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26411,"impl-MulAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[26412,"impl-MulAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26413,"impl-MulAssign-for-Saturating%3Cisize%3E"],[26414,"impl-MulAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[26415,"impl-MulAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[26416,"impl-MulAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26417,"impl-MulAssign-for-Saturating%3Cu128%3E"],[26418,"impl-MulAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[26419,"impl-MulAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[26420,"impl-MulAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26421,"impl-MulAssign-for-Saturating%3Cu32%3E"],[26422,"impl-MulAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[26423,"impl-MulAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[26424,"impl-MulAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[26425,"impl-MulAssign-for-Saturating%3Ci32%3E"],[26426,"impl-MulAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26427,"impl-MulAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[26428,"impl-MulAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[26429,"impl-MulAssign-for-Saturating%3Ci64%3E"],[26430,"impl-MulAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26431,"impl-MulAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[26432,"impl-MulAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[26433,"impl-MulAssign-for-Saturating%3Ci128%3E"],[26434,"impl-MulAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26435,"impl-MulAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[26436,"impl-MulAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[26437,"impl-MulAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26438,"impl-MulAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[26439,"impl-MulAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[26440,"impl-MulAssign-for-Saturating%3Cu8%3E"],[26441,"impl-MulAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26442,"impl-MulAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[26443,"impl-MulAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[26444,"impl-MulAssign-for-Saturating%3Cu16%3E"],[26445,"impl-MulAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26446,"impl-MulAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[26447,"impl-MulAssign-for-Saturating%3Cu64%3E"],[26448,"impl-MulAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[26449,"impl-MulAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[26450,"impl-MulAssign-for-Wrapping%3Ci64%3E"],[26451,"impl-MulAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[26452,"impl-MulAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[26453,"impl-MulAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26454,"impl-MulAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[26455,"impl-MulAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[26456,"impl-MulAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[26457,"impl-MulAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26458,"impl-MulAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26459,"impl-MulAssign-for-Wrapping%3Ci32%3E"],[26460,"impl-MulAssign-for-Wrapping%3Cu8%3E"],[26461,"impl-MulAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26462,"impl-MulAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[26463,"impl-MulAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[26464,"impl-MulAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[26465,"impl-MulAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26466,"impl-MulAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[26467,"impl-MulAssign-for-Wrapping%3Cusize%3E"],[26468,"impl-MulAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[26469,"impl-MulAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26470,"impl-MulAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26471,"impl-MulAssign-for-Wrapping%3Ci16%3E"],[26472,"impl-MulAssign-for-Wrapping%3Ci128%3E"],[26473,"impl-MulAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[26474,"impl-MulAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[26475,"impl-MulAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26476,"impl-MulAssign-for-Wrapping%3Ci8%3E"],[26477,"impl-MulAssign-for-Wrapping%3Cu16%3E"],[26478,"impl-MulAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[26479,"impl-MulAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26480,"impl-MulAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[26481,"impl-MulAssign-for-Wrapping%3Cisize%3E"],[26482,"impl-MulAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[26483,"impl-MulAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[26484,"impl-MulAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26485,"impl-MulAssign-for-Wrapping%3Cu128%3E"],[26486,"impl-MulAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[26487,"impl-MulAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[26488,"impl-MulAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26489,"impl-MulAssign-for-Wrapping%3Cu64%3E"],[26490,"impl-MulAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[26491,"impl-MulAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[26492,"impl-MulAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26493,"impl-MulAssign-for-Wrapping%3Cu32%3E"],[26494,"impl-MulAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[26495,"impl-MulAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[26497,"impl-Neg-for-%26NonZero%3Cisize%3E"],[26498,"impl-Neg-for-NonZero%3Ci8%3E"],[26499,"impl-Neg-for-%26NonZero%3Ci8%3E"],[26500,"impl-Neg-for-NonZero%3Ci16%3E"],[26501,"impl-Neg-for-%26NonZero%3Ci16%3E"],[26502,"impl-Neg-for-NonZero%3Ci32%3E"],[26503,"impl-Neg-for-%26NonZero%3Ci32%3E"],[26504,"impl-Neg-for-NonZero%3Ci64%3E"],[26505,"impl-Neg-for-%26NonZero%3Ci64%3E"],[26506,"impl-Neg-for-NonZero%3Ci128%3E"],[26507,"impl-Neg-for-%26NonZero%3Ci128%3E"],[26508,"impl-Neg-for-NonZero%3Cisize%3E"],[26509,"impl-Neg-for-%26Saturating%3Ci128%3E"],[26510,"impl-Neg-for-Saturating%3Ci8%3E"],[26511,"impl-Neg-for-Saturating%3Cisize%3E"],[26512,"impl-Neg-for-Saturating%3Ci16%3E"],[26513,"impl-Neg-for-%26Saturating%3Ci8%3E"],[26514,"impl-Neg-for-%26Saturating%3Ci16%3E"],[26515,"impl-Neg-for-Saturating%3Ci32%3E"],[26516,"impl-Neg-for-%26Saturating%3Cisize%3E"],[26517,"impl-Neg-for-Saturating%3Ci128%3E"],[26518,"impl-Neg-for-%26Saturating%3Ci64%3E"],[26519,"impl-Neg-for-%26Saturating%3Ci32%3E"],[26520,"impl-Neg-for-Saturating%3Ci64%3E"],[26521,"impl-Neg-for-%26Wrapping%3Ci8%3E"],[26522,"impl-Neg-for-Wrapping%3Ci8%3E"],[26523,"impl-Neg-for-Wrapping%3Ci128%3E"],[26524,"impl-Neg-for-%26Wrapping%3Ci64%3E"],[26525,"impl-Neg-for-%26Wrapping%3Cu8%3E"],[26526,"impl-Neg-for-Wrapping%3Ci64%3E"],[26527,"impl-Neg-for-Wrapping%3Cu16%3E"],[26528,"impl-Neg-for-%26Wrapping%3Ci32%3E"],[26529,"impl-Neg-for-Wrapping%3Cu64%3E"],[26530,"impl-Neg-for-%26Wrapping%3Ci128%3E"],[26531,"impl-Neg-for-%26Wrapping%3Ci16%3E"],[26532,"impl-Neg-for-%26Wrapping%3Cu16%3E"],[26533,"impl-Neg-for-Wrapping%3Cu32%3E"],[26534,"impl-Neg-for-Wrapping%3Ci16%3E"],[26535,"impl-Neg-for-Wrapping%3Cu8%3E"],[26536,"impl-Neg-for-%26Wrapping%3Cusize%3E"],[26537,"impl-Neg-for-%26Wrapping%3Cu64%3E"],[26538,"impl-Neg-for-%26Wrapping%3Cu32%3E"],[26539,"impl-Neg-for-Wrapping%3Cu128%3E"],[26540,"impl-Neg-for-Wrapping%3Cusize%3E"],[26541,"impl-Neg-for-%26Wrapping%3Cu128%3E"],[26542,"impl-Neg-for-Wrapping%3Cisize%3E"],[26543,"impl-Neg-for-%26Wrapping%3Cisize%3E"],[26544,"impl-Neg-for-Wrapping%3Ci32%3E"],[26547,"impl-Wrapping%3Cusize%3E"],[26548,"impl-Wrapping%3Cu8%3E"],[26549,"impl-Wrapping%3Cu16%3E"],[26550,"impl-Wrapping%3Cu128%3E"],[26551,"impl-Wrapping%3Cu64%3E"],[26552,"impl-Wrapping%3Cu32%3E"],[26553,"impl-Not-for-Saturating%3Cu32%3E"],[26554,"impl-Not-for-%26Saturating%3Ci32%3E"],[26555,"impl-Not-for-Saturating%3Ci8%3E"],[26556,"impl-Not-for-%26Saturating%3Cisize%3E"],[26557,"impl-Not-for-Saturating%3Cisize%3E"],[26558,"impl-Not-for-%26Saturating%3Cu128%3E"],[26559,"impl-Not-for-Saturating%3Cu128%3E"],[26560,"impl-Not-for-%26Saturating%3Cu64%3E"],[26561,"impl-Not-for-Saturating%3Cu64%3E"],[26562,"impl-Not-for-Saturating%3Ci32%3E"],[26563,"impl-Not-for-%26Saturating%3Ci128%3E"],[26564,"impl-Not-for-Saturating%3Ci128%3E"],[26565,"impl-Not-for-%26Saturating%3Ci8%3E"],[26566,"impl-Not-for-%26Saturating%3Cu16%3E"],[26567,"impl-Not-for-Saturating%3Cu16%3E"],[26568,"impl-Not-for-%26Saturating%3Ci64%3E"],[26569,"impl-Not-for-%26Saturating%3Cu8%3E"],[26570,"impl-Not-for-Saturating%3Cu8%3E"],[26571,"impl-Not-for-%26Saturating%3Cusize%3E"],[26572,"impl-Not-for-Saturating%3Cusize%3E"],[26573,"impl-Not-for-Saturating%3Ci16%3E"],[26574,"impl-Not-for-%26Saturating%3Ci16%3E"],[26575,"impl-Not-for-Saturating%3Ci64%3E"],[26576,"impl-Not-for-%26Saturating%3Cu32%3E"],[26577,"impl-Not-for-%26Wrapping%3Ci16%3E"],[26578,"impl-Not-for-Wrapping%3Cusize%3E"],[26579,"impl-Not-for-%26Wrapping%3Cu32%3E"],[26580,"impl-Not-for-Wrapping%3Ci32%3E"],[26581,"impl-Not-for-%26Wrapping%3Ci32%3E"],[26582,"impl-Not-for-Wrapping%3Ci64%3E"],[26583,"impl-Not-for-%26Wrapping%3Ci64%3E"],[26584,"impl-Not-for-Wrapping%3Ci128%3E"],[26585,"impl-Not-for-%26Wrapping%3Ci128%3E"],[26586,"impl-Not-for-%26Wrapping%3Cusize%3E"],[26587,"impl-Not-for-%26Wrapping%3Cu16%3E"],[26588,"impl-Not-for-Wrapping%3Cu16%3E"],[26589,"impl-Not-for-Wrapping%3Ci16%3E"],[26590,"impl-Not-for-%26Wrapping%3Cu8%3E"],[26591,"impl-Not-for-Wrapping%3Cu8%3E"],[26592,"impl-Not-for-%26Wrapping%3Ci8%3E"],[26593,"impl-Not-for-Wrapping%3Ci8%3E"],[26594,"impl-Not-for-%26Wrapping%3Cisize%3E"],[26595,"impl-Not-for-Wrapping%3Cisize%3E"],[26596,"impl-Not-for-%26Wrapping%3Cu128%3E"],[26597,"impl-Not-for-Wrapping%3Cu128%3E"],[26598,"impl-Not-for-%26Wrapping%3Cu64%3E"],[26599,"impl-Not-for-Wrapping%3Cu64%3E"],[26600,"impl-Not-for-Wrapping%3Cu32%3E"],[26601,"impl-NonZero%3Cisize%3E"],[26602,"impl-NonZero%3Ci8%3E"],[26603,"impl-NonZero%3Ci128%3E"],[26604,"impl-NonZero%3Ci64%3E"],[26605,"impl-NonZero%3Ci32%3E"],[26606,"impl-NonZero%3Ci16%3E"],[26607,"impl-NonZero%3Cisize%3E"],[26608,"impl-NonZero%3Ci8%3E"],[26609,"impl-NonZero%3Ci32%3E"],[26610,"impl-NonZero%3Ci16%3E"],[26611,"impl-NonZero%3Ci64%3E"],[26612,"impl-NonZero%3Ci128%3E"],[26616,"impl-Saturating%3Ci128%3E"],[26617,"impl-Saturating%3Cu64%3E"],[26618,"impl-Saturating%3Cu128%3E"],[26619,"impl-Saturating%3Cisize%3E"],[26620,"impl-Saturating%3Ci8%3E"],[26621,"impl-Saturating%3Ci16%3E"],[26622,"impl-Saturating%3Ci32%3E"],[26623,"impl-Saturating%3Ci64%3E"],[26624,"impl-Saturating%3Cusize%3E"],[26625,"impl-Saturating%3Cu32%3E"],[26626,"impl-Saturating%3Cu8%3E"],[26627,"impl-Saturating%3Cu16%3E"],[26628,"impl-Wrapping%3Ci32%3E"],[26629,"impl-Wrapping%3Cu128%3E"],[26630,"impl-Wrapping%3Cu64%3E"],[26631,"impl-Wrapping%3Ci16%3E"],[26632,"impl-Wrapping%3Cusize%3E"],[26633,"impl-Wrapping%3Ci64%3E"],[26634,"impl-Wrapping%3Cu32%3E"],[26635,"impl-Wrapping%3Ci128%3E"],[26636,"impl-Wrapping%3Cisize%3E"],[26637,"impl-Wrapping%3Cu8%3E"],[26638,"impl-Wrapping%3Ci8%3E"],[26639,"impl-Wrapping%3Cu16%3E"],[26640,"impl-Product%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26641,"impl-Product%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26642,"impl-Product%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26643,"impl-Product%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26644,"impl-Product-for-Wrapping%3Cusize%3E"],[26645,"impl-Product%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26646,"impl-Product-for-Wrapping%3Ci128%3E"],[26647,"impl-Product-for-Wrapping%3Cu128%3E"],[26648,"impl-Product%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26649,"impl-Product-for-Wrapping%3Ci8%3E"],[26650,"impl-Product-for-Wrapping%3Cu64%3E"],[26651,"impl-Product%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26652,"impl-Product-for-Wrapping%3Cu32%3E"],[26653,"impl-Product-for-Wrapping%3Cisize%3E"],[26654,"impl-Product-for-Wrapping%3Ci64%3E"],[26655,"impl-Product%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26656,"impl-Product%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26657,"impl-Product-for-Wrapping%3Ci32%3E"],[26658,"impl-Product-for-Wrapping%3Cu8%3E"],[26659,"impl-Product-for-Wrapping%3Ci16%3E"],[26660,"impl-Product-for-Wrapping%3Cu16%3E"],[26661,"impl-Product%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26662,"impl-Product%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26663,"impl-Product%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26664,"impl-Rem%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26665,"impl-Rem%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26666,"impl-Rem%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26667,"impl-Rem%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26668,"impl-Rem-for-Saturating%3Cu8%3E"],[26669,"impl-Rem%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26670,"impl-Rem%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26671,"impl-Rem%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26672,"impl-Rem-for-Saturating%3Cu16%3E"],[26673,"impl-Rem%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26674,"impl-Rem-for-Saturating%3Cusize%3E"],[26675,"impl-Rem%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26676,"impl-Rem%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26677,"impl-Rem%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26678,"impl-Rem-for-Saturating%3Cu32%3E"],[26679,"impl-Rem%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26680,"impl-Rem%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26681,"impl-Rem%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26682,"impl-Rem-for-Saturating%3Cu64%3E"],[26683,"impl-Rem%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26684,"impl-Rem%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26685,"impl-Rem%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26686,"impl-Rem-for-Saturating%3Cu128%3E"],[26687,"impl-Rem%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26688,"impl-Rem-for-Saturating%3Ci32%3E"],[26689,"impl-Rem%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26690,"impl-Rem%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26691,"impl-Rem%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26692,"impl-Rem-for-Saturating%3Cisize%3E"],[26693,"impl-Rem%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26694,"impl-Rem%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26695,"impl-Rem%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26696,"impl-Rem%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26697,"impl-Rem%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26698,"impl-Rem-for-Saturating%3Ci64%3E"],[26699,"impl-Rem-for-Saturating%3Ci16%3E"],[26700,"impl-Rem%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26701,"impl-Rem%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26702,"impl-Rem%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26703,"impl-Rem%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26704,"impl-Rem-for-Saturating%3Ci8%3E"],[26705,"impl-Rem%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26706,"impl-Rem%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26707,"impl-Rem%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26708,"impl-Rem%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26709,"impl-Rem-for-Saturating%3Ci128%3E"],[26710,"impl-Rem%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26711,"impl-Rem%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26712,"impl-Rem%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26713,"impl-Rem%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26714,"impl-Rem%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26715,"impl-Rem%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26716,"impl-Rem-for-Wrapping%3Cisize%3E"],[26717,"impl-Rem%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26718,"impl-Rem%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26719,"impl-Rem%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26720,"impl-Rem%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26721,"impl-Rem-for-Wrapping%3Cu128%3E"],[26722,"impl-Rem%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26723,"impl-Rem%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26724,"impl-Rem%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26725,"impl-Rem%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26726,"impl-Rem%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26727,"impl-Rem-for-Wrapping%3Cu64%3E"],[26728,"impl-Rem%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26729,"impl-Rem-for-Wrapping%3Ci16%3E"],[26730,"impl-Rem%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26731,"impl-Rem%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26732,"impl-Rem%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26733,"impl-Rem-for-Wrapping%3Ci8%3E"],[26734,"impl-Rem%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26735,"impl-Rem%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26736,"impl-Rem%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26737,"impl-Rem-for-Wrapping%3Cu16%3E"],[26738,"impl-Rem%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26739,"impl-Rem%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26740,"impl-Rem%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26741,"impl-Rem%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26742,"impl-Rem%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26743,"impl-Rem-for-Wrapping%3Cu8%3E"],[26744,"impl-Rem%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26745,"impl-Rem%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26746,"impl-Rem%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26747,"impl-Rem-for-Wrapping%3Ci32%3E"],[26748,"impl-Rem-for-Wrapping%3Cusize%3E"],[26749,"impl-Rem%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26750,"impl-Rem%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26751,"impl-Rem%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26752,"impl-Rem-for-Wrapping%3Ci64%3E"],[26753,"impl-Rem%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26754,"impl-Rem%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26755,"impl-Rem%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26756,"impl-Rem-for-Wrapping%3Ci128%3E"],[26757,"impl-Rem%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26758,"impl-Rem%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26759,"impl-Rem-for-Wrapping%3Cu32%3E"],[26760,"impl-RemAssign-for-Saturating%3Cusize%3E"],[26761,"impl-RemAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[26762,"impl-RemAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26763,"impl-RemAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[26764,"impl-RemAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[26765,"impl-RemAssign-for-Saturating%3Cu8%3E"],[26766,"impl-RemAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26767,"impl-RemAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[26768,"impl-RemAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[26769,"impl-RemAssign-for-Saturating%3Cu16%3E"],[26770,"impl-RemAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26771,"impl-RemAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[26772,"impl-RemAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[26773,"impl-RemAssign-for-Saturating%3Cu32%3E"],[26774,"impl-RemAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26775,"impl-RemAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[26776,"impl-RemAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[26777,"impl-RemAssign-for-Saturating%3Cu64%3E"],[26778,"impl-RemAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26779,"impl-RemAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[26780,"impl-RemAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[26781,"impl-RemAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[26782,"impl-RemAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26783,"impl-RemAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[26784,"impl-RemAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[26785,"impl-RemAssign-for-Saturating%3Cisize%3E"],[26786,"impl-RemAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26787,"impl-RemAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[26788,"impl-RemAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[26789,"impl-RemAssign-for-Saturating%3Ci8%3E"],[26790,"impl-RemAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26791,"impl-RemAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[26792,"impl-RemAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[26793,"impl-RemAssign-for-Saturating%3Ci16%3E"],[26794,"impl-RemAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26795,"impl-RemAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[26796,"impl-RemAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[26797,"impl-RemAssign-for-Saturating%3Ci32%3E"],[26798,"impl-RemAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26799,"impl-RemAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[26800,"impl-RemAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[26801,"impl-RemAssign-for-Saturating%3Ci64%3E"],[26802,"impl-RemAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26803,"impl-RemAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[26804,"impl-RemAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[26805,"impl-RemAssign-for-Saturating%3Ci128%3E"],[26806,"impl-RemAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26807,"impl-RemAssign-for-Saturating%3Cu128%3E"],[26808,"impl-RemAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[26809,"impl-RemAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26810,"impl-RemAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[26811,"impl-RemAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[26812,"impl-RemAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26813,"impl-RemAssign-for-Wrapping%3Ci128%3E"],[26814,"impl-RemAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[26815,"impl-RemAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[26816,"impl-RemAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26817,"impl-RemAssign-for-Wrapping%3Ci64%3E"],[26818,"impl-RemAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[26819,"impl-RemAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[26820,"impl-RemAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26821,"impl-RemAssign-for-Wrapping%3Ci32%3E"],[26822,"impl-RemAssign-for-Wrapping%3Cusize%3E"],[26823,"impl-RemAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[26824,"impl-RemAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[26825,"impl-RemAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26826,"impl-RemAssign-for-Wrapping%3Ci16%3E"],[26827,"impl-RemAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[26828,"impl-RemAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26829,"impl-RemAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26830,"impl-RemAssign-for-Wrapping%3Ci8%3E"],[26831,"impl-RemAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[26832,"impl-RemAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[26833,"impl-RemAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26834,"impl-RemAssign-for-Wrapping%3Cisize%3E"],[26835,"impl-RemAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[26836,"impl-RemAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[26837,"impl-RemAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[26838,"impl-RemAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26839,"impl-RemAssign-for-Wrapping%3Cu128%3E"],[26840,"impl-RemAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[26841,"impl-RemAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[26842,"impl-RemAssign-for-Wrapping%3Cu8%3E"],[26843,"impl-RemAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26844,"impl-RemAssign-for-Wrapping%3Cu64%3E"],[26845,"impl-RemAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[26846,"impl-RemAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[26847,"impl-RemAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26848,"impl-RemAssign-for-Wrapping%3Cu32%3E"],[26849,"impl-RemAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[26850,"impl-RemAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[26851,"impl-RemAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26852,"impl-RemAssign-for-Wrapping%3Cu16%3E"],[26853,"impl-RemAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[26854,"impl-RemAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[26855,"impl-RemAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[26856,"impl-NonZero%3Ci32%3E"],[26857,"impl-NonZero%3Cu128%3E"],[26858,"impl-NonZero%3Cusize%3E"],[26859,"impl-NonZero%3Ci8%3E"],[26860,"impl-NonZero%3Ci64%3E"],[26861,"impl-NonZero%3Cu16%3E"],[26862,"impl-NonZero%3Cu32%3E"],[26863,"impl-NonZero%3Ci128%3E"],[26864,"impl-NonZero%3Cu8%3E"],[26865,"impl-NonZero%3Cu64%3E"],[26866,"impl-NonZero%3Cisize%3E"],[26867,"impl-NonZero%3Ci16%3E"],[26868,"impl-Saturating%3Cisize%3E"],[26869,"impl-Saturating%3Ci64%3E"],[26870,"impl-Saturating%3Cu128%3E"],[26871,"impl-Saturating%3Cu32%3E"],[26872,"impl-Saturating%3Cu64%3E"],[26873,"impl-Saturating%3Cu16%3E"],[26874,"impl-Saturating%3Cu8%3E"],[26875,"impl-Saturating%3Ci128%3E"],[26876,"impl-Saturating%3Ci8%3E"],[26877,"impl-Saturating%3Ci32%3E"],[26878,"impl-Saturating%3Cusize%3E"],[26879,"impl-Saturating%3Ci16%3E"],[26880,"impl-Wrapping%3Ci32%3E"],[26881,"impl-Wrapping%3Cusize%3E"],[26882,"impl-Wrapping%3Cu64%3E"],[26883,"impl-Wrapping%3Ci8%3E"],[26884,"impl-Wrapping%3Ci128%3E"],[26885,"impl-Wrapping%3Cisize%3E"],[26886,"impl-Wrapping%3Cu32%3E"],[26887,"impl-Wrapping%3Ci16%3E"],[26888,"impl-Wrapping%3Cu16%3E"],[26889,"impl-Wrapping%3Cu128%3E"],[26890,"impl-Wrapping%3Cu8%3E"],[26891,"impl-Wrapping%3Ci64%3E"],[26892,"impl-NonZero%3Cu128%3E"],[26893,"impl-NonZero%3Cu32%3E"],[26894,"impl-NonZero%3Ci64%3E"],[26895,"impl-NonZero%3Cu64%3E"],[26896,"impl-NonZero%3Cisize%3E"],[26897,"impl-NonZero%3Ci16%3E"],[26898,"impl-NonZero%3Ci128%3E"],[26899,"impl-NonZero%3Ci8%3E"],[26900,"impl-NonZero%3Cu16%3E"],[26901,"impl-NonZero%3Ci32%3E"],[26902,"impl-NonZero%3Cu8%3E"],[26903,"impl-NonZero%3Cusize%3E"],[26904,"impl-Saturating%3Cusize%3E"],[26905,"impl-Saturating%3Ci8%3E"],[26906,"impl-Saturating%3Cu32%3E"],[26907,"impl-Saturating%3Cu16%3E"],[26908,"impl-Saturating%3Cu64%3E"],[26909,"impl-Saturating%3Ci64%3E"],[26910,"impl-Saturating%3Ci128%3E"],[26911,"impl-Saturating%3Ci16%3E"],[26912,"impl-Saturating%3Cu128%3E"],[26913,"impl-Saturating%3Cu8%3E"],[26914,"impl-Saturating%3Ci32%3E"],[26915,"impl-Saturating%3Cisize%3E"],[26916,"impl-Wrapping%3Cu32%3E"],[26917,"impl-Wrapping%3Ci128%3E"],[26918,"impl-Wrapping%3Ci64%3E"],[26919,"impl-Wrapping%3Cu16%3E"],[26920,"impl-Wrapping%3Cisize%3E"],[26921,"impl-Wrapping%3Ci32%3E"],[26922,"impl-Wrapping%3Cusize%3E"],[26923,"impl-Wrapping%3Cu128%3E"],[26924,"impl-Wrapping%3Cu8%3E"],[26925,"impl-Wrapping%3Ci8%3E"],[26926,"impl-Wrapping%3Cu64%3E"],[26927,"impl-Wrapping%3Ci16%3E"],[26928,"impl-NonZero%3Cu16%3E"],[26929,"impl-NonZero%3Cisize%3E"],[26930,"impl-NonZero%3Cu32%3E"],[26931,"impl-NonZero%3Ci64%3E"],[26932,"impl-NonZero%3Cu64%3E"],[26933,"impl-NonZero%3Ci16%3E"],[26934,"impl-NonZero%3Ci8%3E"],[26935,"impl-NonZero%3Ci32%3E"],[26936,"impl-NonZero%3Cusize%3E"],[26937,"impl-NonZero%3Cu128%3E"],[26938,"impl-NonZero%3Cu8%3E"],[26939,"impl-NonZero%3Ci128%3E"],[26940,"impl-Saturating%3Cu8%3E"],[26941,"impl-Saturating%3Ci8%3E"],[26942,"impl-Saturating%3Cu32%3E"],[26943,"impl-Saturating%3Ci128%3E"],[26944,"impl-Saturating%3Cisize%3E"],[26945,"impl-Saturating%3Ci64%3E"],[26946,"impl-Saturating%3Cu16%3E"],[26947,"impl-Saturating%3Cu64%3E"],[26948,"impl-Saturating%3Ci32%3E"],[26949,"impl-Saturating%3Ci16%3E"],[26950,"impl-Saturating%3Cu128%3E"],[26951,"impl-Saturating%3Cusize%3E"],[26952,"impl-Wrapping%3Ci8%3E"],[26953,"impl-Wrapping%3Cisize%3E"],[26954,"impl-Wrapping%3Ci128%3E"],[26955,"impl-Wrapping%3Ci16%3E"],[26956,"impl-Wrapping%3Cu128%3E"],[26957,"impl-Wrapping%3Cu64%3E"],[26958,"impl-Wrapping%3Ci32%3E"],[26959,"impl-Wrapping%3Cu32%3E"],[26960,"impl-Wrapping%3Cu16%3E"],[26961,"impl-Wrapping%3Cu8%3E"],[26962,"impl-Wrapping%3Cusize%3E"],[26963,"impl-Wrapping%3Ci64%3E"],[26964,"impl-NonZero%3Ci16%3E"],[26965,"impl-NonZero%3Ci64%3E"],[26966,"impl-NonZero%3Ci8%3E"],[26967,"impl-NonZero%3Cisize%3E"],[26968,"impl-NonZero%3Ci128%3E"],[26969,"impl-NonZero%3Ci32%3E"],[26970,"impl-NonZero%3Cu16%3E"],[26971,"impl-NonZero%3Cu64%3E"],[26972,"impl-NonZero%3Cusize%3E"],[26973,"impl-NonZero%3Cu128%3E"],[26974,"impl-NonZero%3Cu8%3E"],[26975,"impl-NonZero%3Cu32%3E"],[26976,"impl-NonZero%3Ci8%3E"],[26977,"impl-NonZero%3Cu8%3E"],[26978,"impl-NonZero%3Ci64%3E"],[26979,"impl-NonZero%3Cu16%3E"],[26980,"impl-NonZero%3Ci16%3E"],[26981,"impl-NonZero%3Cisize%3E"],[26982,"impl-NonZero%3Cu64%3E"],[26983,"impl-NonZero%3Cusize%3E"],[26984,"impl-NonZero%3Cu128%3E"],[26985,"impl-NonZero%3Cu32%3E"],[26986,"impl-NonZero%3Ci128%3E"],[26987,"impl-NonZero%3Ci32%3E"],[26988,"impl-NonZero%3Ci128%3E"],[26989,"impl-NonZero%3Cisize%3E"],[26990,"impl-NonZero%3Ci32%3E"],[26991,"impl-NonZero%3Ci16%3E"],[26992,"impl-NonZero%3Ci64%3E"],[26993,"impl-NonZero%3Ci8%3E"],[26994,"impl-NonZero%3Cu64%3E"],[26995,"impl-NonZero%3Cusize%3E"],[26996,"impl-NonZero%3Ci32%3E"],[26997,"impl-NonZero%3Cu16%3E"],[26998,"impl-NonZero%3Ci8%3E"],[26999,"impl-NonZero%3Cisize%3E"],[27000,"impl-NonZero%3Ci16%3E"],[27001,"impl-NonZero%3Cu8%3E"],[27002,"impl-NonZero%3Ci128%3E"],[27003,"impl-NonZero%3Cu32%3E"],[27004,"impl-NonZero%3Ci64%3E"],[27005,"impl-NonZero%3Cu128%3E"],[27006,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27007,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27008,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27009,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu32%3E"],[27010,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27011,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu32%3E"],[27012,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27013,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu64%3E"],[27014,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27015,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu128%3E"],[27016,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27017,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu128%3E"],[27018,"impl-Shl%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27019,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cusize%3E"],[27020,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27021,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cusize%3E"],[27022,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27023,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci8%3E"],[27024,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27025,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci8%3E"],[27026,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27027,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci16%3E"],[27028,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27029,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci16%3E"],[27030,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27031,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci32%3E"],[27032,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27033,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci32%3E"],[27034,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27035,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci64%3E"],[27036,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27037,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci64%3E"],[27038,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27039,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci128%3E"],[27040,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27041,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci128%3E"],[27042,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cisize%3E"],[27043,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27044,"impl-Shl%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27045,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cisize%3E"],[27046,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu16%3E"],[27047,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27048,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27049,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu16%3E"],[27050,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu8%3E"],[27051,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27052,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu8%3E"],[27053,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu64%3E"],[27054,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27055,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27056,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27057,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27058,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27059,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27060,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27061,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27062,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27063,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27064,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27065,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27066,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27067,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27068,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27069,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27070,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27071,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27072,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27073,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27074,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27075,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27076,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27077,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27078,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci8%3E"],[27079,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu64%3E"],[27080,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27081,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27082,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu128%3E"],[27083,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27084,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu8%3E"],[27085,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27086,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu8%3E"],[27087,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27088,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27089,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci16%3E"],[27090,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27091,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci16%3E"],[27092,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci32%3E"],[27093,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cisize%3E"],[27094,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27095,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27096,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cisize%3E"],[27097,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27098,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu128%3E"],[27099,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci64%3E"],[27100,"impl-Shr%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27101,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci128%3E"],[27102,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu32%3E"],[27103,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27104,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu64%3E"],[27105,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27106,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu16%3E"],[27107,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27108,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27109,"impl-Shr%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27110,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci32%3E"],[27111,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27112,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci128%3E"],[27113,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci8%3E"],[27114,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27115,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27116,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cusize%3E"],[27117,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu16%3E"],[27118,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27119,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci64%3E"],[27120,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27121,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27122,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27123,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu32%3E"],[27124,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27125,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cusize%3E"],[27126,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27127,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27128,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27129,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27130,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27131,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27132,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27133,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27134,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27135,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27136,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27137,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27138,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27139,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27140,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27141,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27142,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27143,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27144,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27145,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27146,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27147,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27148,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27149,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27150,"impl-Saturating%3Ci8%3E"],[27151,"impl-Saturating%3Ci128%3E"],[27152,"impl-Saturating%3Ci64%3E"],[27153,"impl-Saturating%3Cisize%3E"],[27154,"impl-Saturating%3Ci16%3E"],[27155,"impl-Saturating%3Ci32%3E"],[27156,"impl-Wrapping%3Cisize%3E"],[27157,"impl-Wrapping%3Ci128%3E"],[27158,"impl-Wrapping%3Ci64%3E"],[27159,"impl-Wrapping%3Ci32%3E"],[27160,"impl-Wrapping%3Ci16%3E"],[27161,"impl-Wrapping%3Ci8%3E"],[27162,"impl-Sub-for-Saturating%3Cusize%3E"],[27163,"impl-Sub%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[27164,"impl-Sub%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[27165,"impl-Sub%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[27166,"impl-Sub%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[27167,"impl-Sub%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[27168,"impl-Sub%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[27169,"impl-Sub%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[27170,"impl-Sub%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[27171,"impl-Sub-for-Saturating%3Cisize%3E"],[27172,"impl-Sub%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[27173,"impl-Sub%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[27174,"impl-Sub%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[27175,"impl-Sub-for-Saturating%3Cu8%3E"],[27176,"impl-Sub-for-Saturating%3Cu128%3E"],[27177,"impl-Sub-for-Saturating%3Ci32%3E"],[27178,"impl-Sub%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[27179,"impl-Sub%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[27180,"impl-Sub-for-Saturating%3Ci16%3E"],[27181,"impl-Sub%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[27182,"impl-Sub%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[27183,"impl-Sub%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[27184,"impl-Sub%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[27185,"impl-Sub%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[27186,"impl-Sub%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[27187,"impl-Sub%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[27188,"impl-Sub-for-Saturating%3Ci128%3E"],[27189,"impl-Sub%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[27190,"impl-Sub%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[27191,"impl-Sub%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[27192,"impl-Sub%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[27193,"impl-Sub%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[27194,"impl-Sub-for-Saturating%3Cu64%3E"],[27195,"impl-Sub%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[27196,"impl-Sub-for-Saturating%3Cu32%3E"],[27197,"impl-Sub%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[27198,"impl-Sub%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[27199,"impl-Sub%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[27200,"impl-Sub%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[27201,"impl-Sub%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[27202,"impl-Sub%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[27203,"impl-Sub-for-Saturating%3Ci64%3E"],[27204,"impl-Sub%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[27205,"impl-Sub%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[27206,"impl-Sub-for-Saturating%3Cu16%3E"],[27207,"impl-Sub-for-Saturating%3Ci8%3E"],[27208,"impl-Sub%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[27209,"impl-Sub%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[27210,"impl-Sub%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[27211,"impl-Sub-for-Wrapping%3Cu64%3E"],[27212,"impl-Sub%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27213,"impl-Sub%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[27214,"impl-Sub-for-Wrapping%3Ci32%3E"],[27215,"impl-Sub%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[27216,"impl-Sub%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27217,"impl-Sub%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[27218,"impl-Sub%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27219,"impl-Sub%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[27220,"impl-Sub-for-Wrapping%3Ci64%3E"],[27221,"impl-Sub%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[27222,"impl-Sub%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27223,"impl-Sub%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[27224,"impl-Sub-for-Wrapping%3Ci128%3E"],[27225,"impl-Sub%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[27226,"impl-Sub%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[27227,"impl-Sub-for-Wrapping%3Cu32%3E"],[27228,"impl-Sub-for-Wrapping%3Ci16%3E"],[27229,"impl-Sub%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27230,"impl-Sub%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[27231,"impl-Sub%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[27232,"impl-Sub%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27233,"impl-Sub%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[27234,"impl-Sub%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[27235,"impl-Sub-for-Wrapping%3Ci8%3E"],[27236,"impl-Sub%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27237,"impl-Sub%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27238,"impl-Sub%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[27239,"impl-Sub%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[27240,"impl-Sub-for-Wrapping%3Cu16%3E"],[27241,"impl-Sub%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[27242,"impl-Sub%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27243,"impl-Sub-for-Wrapping%3Cisize%3E"],[27244,"impl-Sub%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[27245,"impl-Sub%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[27246,"impl-Sub-for-Wrapping%3Cu8%3E"],[27247,"impl-Sub%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[27248,"impl-Sub%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27249,"impl-Sub%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[27250,"impl-Sub-for-Wrapping%3Cusize%3E"],[27251,"impl-Sub%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[27252,"impl-Sub%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27253,"impl-Sub%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[27254,"impl-Sub%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[27255,"impl-Sub%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27256,"impl-Sub%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[27257,"impl-Sub-for-Wrapping%3Cu128%3E"],[27258,"impl-SubAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[27259,"impl-SubAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[27260,"impl-SubAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[27261,"impl-SubAssign-for-Saturating%3Ci128%3E"],[27262,"impl-SubAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[27263,"impl-SubAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[27264,"impl-SubAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[27265,"impl-SubAssign-for-Saturating%3Cu64%3E"],[27266,"impl-SubAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[27267,"impl-SubAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[27268,"impl-SubAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[27269,"impl-SubAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[27270,"impl-SubAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[27271,"impl-SubAssign-for-Saturating%3Cu128%3E"],[27272,"impl-SubAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[27273,"impl-SubAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[27274,"impl-SubAssign-for-Saturating%3Cu32%3E"],[27275,"impl-SubAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[27276,"impl-SubAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[27277,"impl-SubAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[27278,"impl-SubAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[27279,"impl-SubAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[27280,"impl-SubAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[27281,"impl-SubAssign-for-Saturating%3Ci64%3E"],[27282,"impl-SubAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[27283,"impl-SubAssign-for-Saturating%3Cu8%3E"],[27284,"impl-SubAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[27285,"impl-SubAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[27286,"impl-SubAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[27287,"impl-SubAssign-for-Saturating%3Cisize%3E"],[27288,"impl-SubAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[27289,"impl-SubAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[27290,"impl-SubAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[27291,"impl-SubAssign-for-Saturating%3Ci32%3E"],[27292,"impl-SubAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[27293,"impl-SubAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[27294,"impl-SubAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[27295,"impl-SubAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[27296,"impl-SubAssign-for-Saturating%3Cu16%3E"],[27297,"impl-SubAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[27298,"impl-SubAssign-for-Saturating%3Ci8%3E"],[27299,"impl-SubAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[27300,"impl-SubAssign-for-Saturating%3Cusize%3E"],[27301,"impl-SubAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[27302,"impl-SubAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[27303,"impl-SubAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[27304,"impl-SubAssign-for-Saturating%3Ci16%3E"],[27305,"impl-SubAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[27306,"impl-SubAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[27307,"impl-SubAssign-for-Wrapping%3Cu64%3E"],[27308,"impl-SubAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27309,"impl-SubAssign-for-Wrapping%3Ci128%3E"],[27310,"impl-SubAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[27311,"impl-SubAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[27312,"impl-SubAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[27313,"impl-SubAssign-for-Wrapping%3Ci64%3E"],[27314,"impl-SubAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[27315,"impl-SubAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[27316,"impl-SubAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[27317,"impl-SubAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27318,"impl-SubAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[27319,"impl-SubAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27320,"impl-SubAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27321,"impl-SubAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[27322,"impl-SubAssign-for-Wrapping%3Cisize%3E"],[27323,"impl-SubAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27324,"impl-SubAssign-for-Wrapping%3Cu32%3E"],[27325,"impl-SubAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[27326,"impl-SubAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27327,"impl-SubAssign-for-Wrapping%3Cusize%3E"],[27328,"impl-SubAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[27329,"impl-SubAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[27330,"impl-SubAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[27331,"impl-SubAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27332,"impl-SubAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27333,"impl-SubAssign-for-Wrapping%3Cu16%3E"],[27334,"impl-SubAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[27335,"impl-SubAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[27336,"impl-SubAssign-for-Wrapping%3Ci8%3E"],[27337,"impl-SubAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[27338,"impl-SubAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[27339,"impl-SubAssign-for-Wrapping%3Ci16%3E"],[27340,"impl-SubAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27341,"impl-SubAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27342,"impl-SubAssign-for-Wrapping%3Cu128%3E"],[27343,"impl-SubAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[27344,"impl-SubAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[27345,"impl-SubAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27346,"impl-SubAssign-for-Wrapping%3Cu8%3E"],[27347,"impl-SubAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27348,"impl-SubAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27349,"impl-SubAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27350,"impl-SubAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[27351,"impl-SubAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[27352,"impl-SubAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[27353,"impl-SubAssign-for-Wrapping%3Ci32%3E"],[27354,"impl-Sum-for-Wrapping%3Cu32%3E"],[27355,"impl-Sum-for-Wrapping%3Cusize%3E"],[27356,"impl-Sum-for-Wrapping%3Cu64%3E"],[27357,"impl-Sum%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27358,"impl-Sum-for-Wrapping%3Cu8%3E"],[27359,"impl-Sum%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27360,"impl-Sum-for-Wrapping%3Cu128%3E"],[27361,"impl-Sum-for-Wrapping%3Ci8%3E"],[27362,"impl-Sum%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27363,"impl-Sum-for-Wrapping%3Cisize%3E"],[27364,"impl-Sum-for-Wrapping%3Ci16%3E"],[27365,"impl-Sum%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27366,"impl-Sum%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27367,"impl-Sum-for-Wrapping%3Ci128%3E"],[27368,"impl-Sum%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27369,"impl-Sum%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27370,"impl-Sum-for-Wrapping%3Ci64%3E"],[27371,"impl-Sum%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27372,"impl-Sum-for-Wrapping%3Cu16%3E"],[27373,"impl-Sum%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27374,"impl-Sum%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27375,"impl-Sum-for-Wrapping%3Ci32%3E"],[27376,"impl-Sum%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27377,"impl-Sum%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27378,"impl-NonZero%3Ci64%3E"],[27379,"impl-NonZero%3Cusize%3E"],[27380,"impl-NonZero%3Ci128%3E"],[27381,"impl-NonZero%3Ci16%3E"],[27382,"impl-NonZero%3Cu128%3E"],[27383,"impl-NonZero%3Cu16%3E"],[27384,"impl-NonZero%3Cisize%3E"],[27385,"impl-NonZero%3Cu32%3E"],[27386,"impl-NonZero%3Ci8%3E"],[27387,"impl-NonZero%3Ci32%3E"],[27388,"impl-NonZero%3Cu8%3E"],[27389,"impl-NonZero%3Cu64%3E"],[27390,"impl-Saturating%3Cusize%3E"],[27391,"impl-Saturating%3Ci32%3E"],[27392,"impl-Saturating%3Cu128%3E"],[27393,"impl-Saturating%3Cisize%3E"],[27394,"impl-Saturating%3Cu8%3E"],[27395,"impl-Saturating%3Ci128%3E"],[27396,"impl-Saturating%3Cu16%3E"],[27397,"impl-Saturating%3Ci64%3E"],[27398,"impl-Saturating%3Ci8%3E"],[27399,"impl-Saturating%3Cu32%3E"],[27400,"impl-Saturating%3Ci16%3E"],[27401,"impl-Saturating%3Cu64%3E"],[27402,"impl-Wrapping%3Cu32%3E"],[27403,"impl-Wrapping%3Cu128%3E"],[27404,"impl-Wrapping%3Ci128%3E"],[27405,"impl-Wrapping%3Cu64%3E"],[27406,"impl-Wrapping%3Ci32%3E"],[27407,"impl-Wrapping%3Ci16%3E"],[27408,"impl-Wrapping%3Cisize%3E"],[27409,"impl-Wrapping%3Cusize%3E"],[27410,"impl-Wrapping%3Cu8%3E"],[27411,"impl-Wrapping%3Ci8%3E"],[27412,"impl-Wrapping%3Cu16%3E"],[27413,"impl-Wrapping%3Ci64%3E"],[27414,"impl-NonZero%3Ci32%3E"],[27415,"impl-NonZero%3Cu8%3E"],[27416,"impl-NonZero%3Ci128%3E"],[27417,"impl-NonZero%3Cu16%3E"],[27418,"impl-NonZero%3Cu128%3E"],[27419,"impl-NonZero%3Cusize%3E"],[27420,"impl-NonZero%3Cu32%3E"],[27421,"impl-NonZero%3Cu64%3E"],[27422,"impl-NonZero%3Ci64%3E"],[27423,"impl-NonZero%3Ci16%3E"],[27424,"impl-NonZero%3Cisize%3E"],[27425,"impl-NonZero%3Ci8%3E"],[27426,"impl-Saturating%3Cu8%3E"],[27427,"impl-Saturating%3Cu64%3E"],[27428,"impl-Saturating%3Cisize%3E"],[27429,"impl-Saturating%3Cu128%3E"],[27430,"impl-Saturating%3Ci8%3E"],[27431,"impl-Saturating%3Ci128%3E"],[27432,"impl-Saturating%3Cusize%3E"],[27433,"impl-Saturating%3Cu32%3E"],[27434,"impl-Saturating%3Ci16%3E"],[27435,"impl-Saturating%3Ci32%3E"],[27436,"impl-Saturating%3Ci64%3E"],[27437,"impl-Saturating%3Cu16%3E"],[27438,"impl-Wrapping%3Cusize%3E"],[27439,"impl-Wrapping%3Cisize%3E"],[27440,"impl-Wrapping%3Cu128%3E"],[27441,"impl-Wrapping%3Cu64%3E"],[27442,"impl-Wrapping%3Ci64%3E"],[27443,"impl-Wrapping%3Ci128%3E"],[27444,"impl-Wrapping%3Ci8%3E"],[27445,"impl-Wrapping%3Cu32%3E"],[27446,"impl-Wrapping%3Cu16%3E"],[27447,"impl-Wrapping%3Cu8%3E"],[27448,"impl-Wrapping%3Ci32%3E"],[27449,"impl-Wrapping%3Ci16%3E"],[27450,"impl-NonZero%3Cu32%3E"],[27451,"impl-NonZero%3Cu8%3E"],[27452,"impl-NonZero%3Ci8%3E"],[27453,"impl-NonZero%3Ci64%3E"],[27454,"impl-NonZero%3Cisize%3E"],[27455,"impl-NonZero%3Ci16%3E"],[27456,"impl-NonZero%3Cu16%3E"],[27457,"impl-NonZero%3Cusize%3E"],[27458,"impl-NonZero%3Cu64%3E"],[27459,"impl-NonZero%3Ci128%3E"],[27460,"impl-NonZero%3Cu128%3E"],[27461,"impl-NonZero%3Ci32%3E"],[27462,"impl-Saturating%3Ci32%3E"],[27463,"impl-Saturating%3Cu128%3E"],[27464,"impl-Saturating%3Ci64%3E"],[27465,"impl-Saturating%3Cisize%3E"],[27466,"impl-Saturating%3Cu32%3E"],[27467,"impl-Saturating%3Ci8%3E"],[27468,"impl-Saturating%3Cusize%3E"],[27469,"impl-Saturating%3Cu64%3E"],[27470,"impl-Saturating%3Cu16%3E"],[27471,"impl-Saturating%3Ci16%3E"],[27472,"impl-Saturating%3Cu8%3E"],[27473,"impl-Saturating%3Ci128%3E"],[27474,"impl-Wrapping%3Cu8%3E"],[27475,"impl-Wrapping%3Cisize%3E"],[27476,"impl-Wrapping%3Cusize%3E"],[27477,"impl-Wrapping%3Ci8%3E"],[27478,"impl-Wrapping%3Cu64%3E"],[27479,"impl-Wrapping%3Cu32%3E"],[27480,"impl-Wrapping%3Cu16%3E"],[27481,"impl-Wrapping%3Ci128%3E"],[27482,"impl-Wrapping%3Cu128%3E"],[27483,"impl-Wrapping%3Ci32%3E"],[27484,"impl-Wrapping%3Ci64%3E"],[27485,"impl-Wrapping%3Ci16%3E"],[27500,"impl-NonZero%3Ci32%3E"],[27501,"impl-NonZero%3Ci64%3E"],[27502,"impl-NonZero%3Cisize%3E"],[27503,"impl-NonZero%3Cu32%3E"],[27504,"impl-NonZero%3Cusize%3E"],[27505,"impl-NonZero%3Cu64%3E"],[27506,"impl-NonZero%3Ci16%3E"],[27507,"impl-NonZero%3Cu16%3E"],[27508,"impl-NonZero%3Ci128%3E"],[27509,"impl-NonZero%3Cu128%3E"],[27510,"impl-NonZero%3Ci8%3E"],[27511,"impl-NonZero%3Cu8%3E"],[27512,"impl-Saturating%3Cu32%3E"],[27513,"impl-Saturating%3Cu64%3E"],[27514,"impl-Saturating%3Ci16%3E"],[27515,"impl-Saturating%3Ci8%3E"],[27516,"impl-Saturating%3Cu128%3E"],[27517,"impl-Saturating%3Cisize%3E"],[27518,"impl-Saturating%3Cu8%3E"],[27519,"impl-Saturating%3Ci128%3E"],[27520,"impl-Saturating%3Ci64%3E"],[27521,"impl-Saturating%3Cusize%3E"],[27522,"impl-Saturating%3Ci32%3E"],[27523,"impl-Saturating%3Cu16%3E"],[27524,"impl-Wrapping%3Cu128%3E"],[27525,"impl-Wrapping%3Ci32%3E"],[27526,"impl-Wrapping%3Cu8%3E"],[27527,"impl-Wrapping%3Cu16%3E"],[27528,"impl-Wrapping%3Cisize%3E"],[27529,"impl-Wrapping%3Ci128%3E"],[27530,"impl-Wrapping%3Cu32%3E"],[27531,"impl-Wrapping%3Ci64%3E"],[27532,"impl-Wrapping%3Ci8%3E"],[27533,"impl-Wrapping%3Cu64%3E"],[27534,"impl-Wrapping%3Cusize%3E"],[27535,"impl-Wrapping%3Ci16%3E"],[27536,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu8%3E"],[27537,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci8%3E"],[27538,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci8%3E"],[27539,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cusize%3E"],[27540,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cisize%3E"],[27541,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu128%3E"],[27542,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu8%3E"],[27543,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu64%3E"],[27544,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu32%3E"],[27545,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu16%3E"],[27546,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu16%3E"],[27547,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu8%3E"],[27548,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu32%3E"],[27549,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu64%3E"],[27550,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu128%3E"],[27551,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cusize%3E"],[27552,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cusize%3E"],[27553,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu128%3E"],[27554,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu64%3E"],[27555,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu8%3E"],[27556,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu32%3E"],[27557,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu16%3E"],[27558,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu16%3E"],[27559,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci16%3E"],[27560,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci128%3E"],[27561,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cusize%3E"],[27562,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cisize%3E"],[27563,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu32%3E"],[27564,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci32%3E"],[27565,"impl-TryFrom%3Cu8%3E-for-NonZero%3Cu8%3E"],[27566,"impl-TryFrom%3Cu16%3E-for-NonZero%3Cu16%3E"],[27567,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu64%3E"],[27568,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu128%3E"],[27569,"impl-TryFrom%3Cu32%3E-for-NonZero%3Cu32%3E"],[27570,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci64%3E"],[27571,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu64%3E"],[27572,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu32%3E"],[27573,"impl-TryFrom%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci8%3E"],[27575,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cisize%3E"],[27576,"impl-TryFrom%3Cu64%3E-for-NonZero%3Cu64%3E"],[27577,"impl-TryFrom%3Cu128%3E-for-NonZero%3Cu128%3E"],[27578,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu16%3E"],[27579,"impl-TryFrom%3Cusize%3E-for-NonZero%3Cusize%3E"],[27580,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci8%3E"],[27581,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci16%3E"],[27582,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu8%3E"],[27583,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cusize%3E"],[27584,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci8%3E"],[27585,"impl-TryFrom%3Ci8%3E-for-NonZero%3Ci8%3E"],[27586,"impl-TryFrom%3Ci16%3E-for-NonZero%3Ci16%3E"],[27587,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci16%3E"],[27588,"impl-TryFrom%3Ci32%3E-for-NonZero%3Ci32%3E"],[27589,"impl-TryFrom%3Ci64%3E-for-NonZero%3Ci64%3E"],[27590,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci16%3E"],[27591,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu128%3E"],[27592,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu64%3E"],[27593,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu32%3E"],[27594,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu16%3E"],[27595,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu8%3E"],[27596,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cisize%3E"],[27597,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci8%3E"],[27598,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci64%3E"],[27599,"impl-TryFrom%3Ci128%3E-for-NonZero%3Ci128%3E"],[27600,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci32%3E"],[27601,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci16%3E"],[27602,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci8%3E"],[27603,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci32%3E"],[27604,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cisize%3E"],[27605,"impl-TryFrom%3Cisize%3E-for-NonZero%3Cisize%3E"],[27606,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu8%3E"],[27607,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci128%3E"],[27608,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci64%3E"],[27609,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci32%3E"],[27610,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu8%3E"],[27611,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci64%3E"],[27612,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cisize%3E"],[27613,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu16%3E"],[27614,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci16%3E"],[27615,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cusize%3E"],[27616,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu8%3E"],[27617,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu16%3E"],[27618,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu32%3E"],[27619,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cusize%3E"],[27620,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu8%3E"],[27621,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci16%3E"],[27622,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci8%3E"],[27623,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu16%3E"],[27624,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu32%3E"],[27625,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cisize%3E"],[27626,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci64%3E"],[27627,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu64%3E"],[27628,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci32%3E"],[27629,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cusize%3E"],[27630,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci16%3E"],[27631,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu8%3E"],[27632,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu16%3E"],[27633,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu32%3E"],[27634,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu64%3E"],[27635,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu128%3E"],[27636,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci8%3E"],[27637,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci8%3E"],[27638,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci32%3E"],[27639,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci8%3E"],[27640,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cisize%3E"],[27641,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci32%3E"],[27642,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu128%3E"],[27643,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cusize%3E"],[27644,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci16%3E"],[27645,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci128%3E"],[27669,"impl-NonZero%3Cusize%3E"],[27670,"impl-NonZero%3Cu8%3E"],[27671,"impl-NonZero%3Cu16%3E"],[27672,"impl-NonZero%3Cu128%3E"],[27673,"impl-NonZero%3Cu64%3E"],[27674,"impl-NonZero%3Cu32%3E"],[27675,"impl-NonZero%3Cu16%3E"],[27676,"impl-NonZero%3Cu32%3E"],[27677,"impl-NonZero%3Ci128%3E"],[27678,"impl-NonZero%3Ci64%3E"],[27679,"impl-NonZero%3Cisize%3E"],[27680,"impl-NonZero%3Cu64%3E"],[27681,"impl-NonZero%3Cu128%3E"],[27682,"impl-NonZero%3Cusize%3E"],[27683,"impl-NonZero%3Cu8%3E"],[27684,"impl-NonZero%3Ci32%3E"],[27685,"impl-NonZero%3Ci16%3E"],[27686,"impl-NonZero%3Ci8%3E"],[27687,"impl-NonZero%3Ci8%3E"],[27688,"impl-NonZero%3Ci16%3E"],[27689,"impl-NonZero%3Ci32%3E"],[27690,"impl-NonZero%3Ci128%3E"],[27691,"impl-NonZero%3Cisize%3E"],[27692,"impl-NonZero%3Ci64%3E"],[27693,"impl-NonZero%3Ci64%3E"],[27694,"impl-NonZero%3Ci16%3E"],[27695,"impl-NonZero%3Ci32%3E"],[27696,"impl-NonZero%3Ci128%3E"],[27697,"impl-NonZero%3Cisize%3E"],[27698,"impl-NonZero%3Ci8%3E"],[27699,"impl-NonZero%3Ci32%3E"],[27700,"impl-NonZero%3Cisize%3E"],[27701,"impl-NonZero%3Ci64%3E"],[27702,"impl-NonZero%3Ci8%3E"],[27703,"impl-NonZero%3Ci16%3E"],[27704,"impl-NonZero%3Ci128%3E"],[27879,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[27880,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[27881,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[27882,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[27883,"impl-RangeBounds%3CT%3E-for-RangeTo%3CT%3E"],[27884,"impl-RangeBounds%3CT%3E-for-RangeTo%3C%26T%3E"],[27885,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[27886,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[27887,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3C%26T%3E"],[27888,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3CT%3E"],[27926,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[27927,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[27928,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[27929,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[27930,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[27931,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[27932,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[27933,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[27934,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[27935,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[27936,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[27937,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[27938,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[27939,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[27940,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[27941,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[27942,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[27943,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[27944,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[27945,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[27946,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[27947,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[27948,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[27949,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[27950,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[27951,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[27952,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[27953,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[27954,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[27955,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[27956,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[27957,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[27958,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[27959,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[27960,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[27961,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[27962,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[27963,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[27964,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[27965,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[27966,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[27967,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[27968,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[27969,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[27970,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[27971,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[27972,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[27973,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[27984,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[27985,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[27986,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[27987,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[27988,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[27989,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[27990,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[27991,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[27992,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[27993,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[27994,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[27995,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[27997,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[27998,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[27999,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[28000,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[28001,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[28002,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[28003,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[28004,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[28005,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[28006,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[28007,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[28008,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[28070,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[28071,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[28072,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[28073,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[28074,"impl-RangeBounds%3CT%3E-for-RangeTo%3C%26T%3E"],[28075,"impl-RangeBounds%3CT%3E-for-RangeTo%3CT%3E"],[28076,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[28077,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[28078,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3C%26T%3E"],[28079,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3CT%3E"],[28158,"impl-Option%3C%26T%3E"],[28159,"impl-Option%3C%26mut+T%3E"],[28161,"impl-Option%3C%26mut+T%3E"],[28162,"impl-Option%3C%26T%3E"],[28172,"impl-From%3CT%3E-for-Option%3CT%3E"],[28175,"impl-From%3C%26mut+Option%3CT%3E%3E-for-Option%3C%26mut+T%3E"],[28176,"impl-From%3C%26Option%3CT%3E%3E-for-Option%3C%26T%3E"],[28182,"impl-FromResidual%3CYeet%3C()%3E%3E-for-Option%3CT%3E"],[28183,"impl-FromResidual%3COption%3CInfallible%3E%3E-for-Option%3CT%3E"],[28194,"impl-IntoIterator-for-Option%3CT%3E"],[28195,"impl-IntoIterator-for-%26Option%3CT%3E"],[28196,"impl-IntoIterator-for-%26mut+Option%3CT%3E"],[28281,"impl-From%3CUnixStream%3E-for-OwnedFd"],[28282,"impl-From%3CTcpListener%3E-for-OwnedFd"],[28283,"impl-From%3CChildStdin%3E-for-OwnedFd"],[28284,"impl-From%3CUnixListener%3E-for-OwnedFd"],[28285,"impl-From%3CChildStdout%3E-for-OwnedFd"],[28286,"impl-From%3CChildStderr%3E-for-OwnedFd"],[28287,"impl-From%3CUnixDatagram%3E-for-OwnedFd"],[28288,"impl-From%3CPipeWriter%3E-for-OwnedFd"],[28289,"impl-From%3CUdpSocket%3E-for-OwnedFd"],[28290,"impl-From%3CPipeReader%3E-for-OwnedFd"],[28292,"impl-From%3CPidFd%3E-for-OwnedFd"],[28293,"impl-From%3CFile%3E-for-OwnedFd"],[28294,"impl-From%3CTcpStream%3E-for-OwnedFd"],[28566,"impl-Write-for-%26UnixStream"],[28567,"impl-Write-for-UnixStream"],[28625,"impl-Read-for-%26UnixStream"],[28626,"impl-Read-for-UnixStream"],[28628,"impl-Write-for-UnixStream"],[28629,"impl-Write-for-%26UnixStream"],[28652,"impl-Read-for-UnixStream"],[28653,"impl-Read-for-%26UnixStream"],[28654,"impl-Read-for-UnixStream"],[28655,"impl-Read-for-%26UnixStream"],[28658,"impl-Read-for-%26UnixStream"],[28659,"impl-Read-for-UnixStream"],[28739,"impl-Write-for-%26UnixStream"],[28740,"impl-Write-for-UnixStream"],[28743,"impl-Write-for-UnixStream"],[28744,"impl-Write-for-%26UnixStream"],[28891,"impl-Display-for-PanicHookInfo%3C\'_%3E"],[28892,"impl-Debug-for-PanicHookInfo%3C\'a%3E"],[28895,"impl-Debug-for-Location%3C\'a%3E"],[28896,"impl-Display-for-Location%3C\'_%3E"],[28974,"impl-AsRef%3CPath%3E-for-PathBuf"],[28975,"impl-AsRef%3COsStr%3E-for-PathBuf"],[28976,"impl-AsRef%3CPath%3E-for-Path"],[28977,"impl-AsRef%3COsStr%3E-for-Path"],[28978,"impl-AsRef%3COsStr%3E-for-Component%3C\'_%3E"],[28979,"impl-AsRef%3CPath%3E-for-Component%3C\'_%3E"],[28980,"impl-AsRef%3CPath%3E-for-Components%3C\'_%3E"],[28981,"impl-AsRef%3COsStr%3E-for-Components%3C\'_%3E"],[28982,"impl-AsRef%3COsStr%3E-for-Iter%3C\'_%3E"],[28983,"impl-AsRef%3CPath%3E-for-Iter%3C\'_%3E"],[29048,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-PathBuf"],[29049,"impl-PartialEq%3CPath%3E-for-PathBuf"],[29050,"impl-PartialEq%3C%26OsStr%3E-for-PathBuf"],[29051,"impl-PartialEq%3COsString%3E-for-PathBuf"],[29052,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-PathBuf"],[29053,"impl-PartialEq%3C%26Path%3E-for-PathBuf"],[29054,"impl-PartialEq%3COsStr%3E-for-PathBuf"],[29055,"impl-PartialEq-for-PathBuf"],[29056,"impl-PartialEq%3CCow%3C\'b,+OsStr%3E%3E-for-%26Path"],[29057,"impl-PartialEq%3COsStr%3E-for-Path"],[29058,"impl-PartialEq%3CPathBuf%3E-for-Path"],[29059,"impl-PartialEq-for-Path"],[29060,"impl-PartialEq%3COsString%3E-for-%26Path"],[29061,"impl-PartialEq%3COsString%3E-for-Path"],[29062,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-%26Path"],[29063,"impl-PartialEq%3CPathBuf%3E-for-%26Path"],[29064,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-Path"],[29065,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-Path"],[29066,"impl-PartialEq%3COsStr%3E-for-%26Path"],[29067,"impl-PartialEq%3C%26OsStr%3E-for-Path"],[29082,"impl-Display-for-Display%3C\'_%3E"],[29083,"impl-Debug-for-Display%3C\'_%3E"],[29090,"impl-Display-for-StripPrefixError"],[29091,"impl-Debug-for-StripPrefixError"],[29093,"impl-From%3CBox%3CPath%3E%3E-for-PathBuf"],[29094,"impl-From%3CCow%3C\'a,+Path%3E%3E-for-PathBuf"],[29095,"impl-From%3C%26T%3E-for-PathBuf"],[29096,"impl-From%3CString%3E-for-PathBuf"],[29097,"impl-From%3COsString%3E-for-PathBuf"],[29151,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-PathBuf"],[29152,"impl-PartialOrd%3COsString%3E-for-PathBuf"],[29153,"impl-PartialOrd-for-PathBuf"],[29154,"impl-PartialOrd%3CPath%3E-for-PathBuf"],[29155,"impl-PartialOrd%3C%26Path%3E-for-PathBuf"],[29156,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-PathBuf"],[29157,"impl-PartialOrd%3COsStr%3E-for-PathBuf"],[29158,"impl-PartialOrd%3C%26OsStr%3E-for-PathBuf"],[29159,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-%26Path"],[29160,"impl-PartialOrd-for-Path"],[29161,"impl-PartialOrd%3CCow%3C\'b,+OsStr%3E%3E-for-%26Path"],[29162,"impl-PartialOrd%3COsStr%3E-for-%26Path"],[29163,"impl-PartialOrd%3COsString%3E-for-Path"],[29164,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-Path"],[29165,"impl-PartialOrd%3C%26OsStr%3E-for-Path"],[29166,"impl-PartialOrd%3COsStr%3E-for-Path"],[29167,"impl-PartialOrd%3COsString%3E-for-%26Path"],[29168,"impl-PartialOrd%3CPathBuf%3E-for-%26Path"],[29169,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-Path"],[29170,"impl-PartialOrd%3CPathBuf%3E-for-Path"],[29251,"impl-Debug-for-Pin%3CPtr%3E"],[29252,"impl-Display-for-Pin%3CPtr%3E"],[29253,"impl-Pointer-for-Pin%3CPtr%3E"],[29279,"impl-Coroutine%3CR%3E-for-Pin%3CBox%3CG,+A%3E%3E"],[29280,"impl-Coroutine%3CR%3E-for-Pin%3C%26mut+G%3E"],[29300,"impl-Write-for-%26PipeWriter"],[29301,"impl-Write-for-PipeWriter"],[29314,"impl-Read-for-PipeReader"],[29315,"impl-Read-for-%26PipeReader"],[29316,"impl-Write-for-PipeWriter"],[29317,"impl-Write-for-%26PipeWriter"],[29319,"impl-Read-for-PipeReader"],[29320,"impl-Read-for-%26PipeReader"],[29321,"impl-Read-for-%26PipeReader"],[29322,"impl-Read-for-PipeReader"],[29323,"impl-Read-for-%26PipeReader"],[29324,"impl-Read-for-PipeReader"],[29325,"impl-Read-for-PipeReader"],[29326,"impl-Read-for-%26PipeReader"],[29335,"impl-Write-for-%26PipeWriter"],[29336,"impl-Write-for-PipeWriter"],[29337,"impl-Write-for-PipeWriter"],[29338,"impl-Write-for-%26PipeWriter"],[30457,"impl-Write-for-ChildStdin"],[30458,"impl-Write-for-%26ChildStdin"],[30467,"impl-Display-for-ExitStatus"],[30468,"impl-Debug-for-ExitStatus"],[30469,"impl-Display-for-ExitStatusError"],[30470,"impl-Debug-for-ExitStatusError"],[30481,"impl-From%3CChildStdin%3E-for-Stdio"],[30482,"impl-From%3CStdout%3E-for-Stdio"],[30484,"impl-From%3CPipeReader%3E-for-Stdio"],[30485,"impl-From%3CChildStdout%3E-for-Stdio"],[30486,"impl-From%3CChildStderr%3E-for-Stdio"],[30487,"impl-From%3CFile%3E-for-Stdio"],[30488,"impl-From%3COwnedFd%3E-for-Stdio"],[30489,"impl-From%3CStderr%3E-for-Stdio"],[30490,"impl-From%3CPipeWriter%3E-for-Stdio"],[30536,"impl-Write-for-%26ChildStdin"],[30537,"impl-Write-for-ChildStdin"],[30625,"impl-Write-for-%26ChildStdin"],[30626,"impl-Write-for-ChildStdin"],[30627,"impl-Write-for-ChildStdin"],[30628,"impl-Write-for-%26ChildStdin"],[30693,"impl-Debug-for-NonNull%3CT%3E"],[30694,"impl-Pointer-for-NonNull%3CT%3E"],[30698,"impl-From%3C%26T%3E-for-NonNull%3CT%3E"],[30699,"impl-From%3C%26mut+T%3E-for-NonNull%3CT%3E"],[30759,"impl-TryFrom%3Cusize%3E-for-Alignment"],[30760,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-Alignment"],[30791,"impl-Rc%3CMaybeUninit%3CT%3E,+A%3E"],[30792,"impl-Rc%3C%5BMaybeUninit%3CT%3E%5D,+A%3E"],[30809,"impl-Default-for-Rc%3Cstr%3E"],[30810,"impl-Default-for-Rc%3CCStr%3E"],[30811,"impl-Default-for-Rc%3C%5BT%5D%3E"],[30812,"impl-Default-for-Rc%3CT%3E"],[30825,"impl-Debug-for-Rc%3CT,+A%3E"],[30826,"impl-Pointer-for-Rc%3CT,+A%3E"],[30827,"impl-Display-for-Rc%3CT,+A%3E"],[30830,"impl-From%3C%26CStr%3E-for-Rc%3CCStr%3E"],[30831,"impl-From%3COsString%3E-for-Rc%3COsStr%3E"],[30832,"impl-From%3CPathBuf%3E-for-Rc%3CPath%3E"],[30833,"impl-From%3CVec%3CT,+A%3E%3E-for-Rc%3C%5BT%5D,+A%3E"],[30834,"impl-From%3C%26Path%3E-for-Rc%3CPath%3E"],[30835,"impl-From%3CString%3E-for-Rc%3Cstr%3E"],[30836,"impl-From%3C%26str%3E-for-Rc%3Cstr%3E"],[30837,"impl-From%3CCow%3C\'a,+B%3E%3E-for-Rc%3CB%3E"],[30838,"impl-From%3C%26%5BT%5D%3E-for-Rc%3C%5BT%5D%3E"],[30839,"impl-From%3C%5BT;+N%5D%3E-for-Rc%3C%5BT%5D%3E"],[30841,"impl-From%3CT%3E-for-Rc%3CT%3E"],[30842,"impl-From%3CRc%3Cstr%3E%3E-for-Rc%3C%5Bu8%5D%3E"],[30844,"impl-From%3CBox%3CT,+A%3E%3E-for-Rc%3CT,+A%3E"],[30845,"impl-From%3C%26OsStr%3E-for-Rc%3COsStr%3E"],[30846,"impl-From%3CCString%3E-for-Rc%3CCStr%3E"],[30951,"impl-Result%3C%26T,+E%3E"],[30952,"impl-Result%3C%26mut+T,+E%3E"],[30954,"impl-Result%3C%26T,+E%3E"],[30955,"impl-Result%3C%26mut+T,+E%3E"],[30965,"impl-From%3CStreamResult%3E-for-Result%3CMZStatus,+MZError%3E"],[30966,"impl-From%3C%26StreamResult%3E-for-Result%3CMZStatus,+MZError%3E"],[30973,"impl-FromResidual%3CYeet%3CE%3E%3E-for-Result%3CT,+F%3E"],[30974,"impl-FromResidual%3CResult%3CInfallible,+E%3E%3E-for-Result%3CT,+F%3E"],[30983,"impl-IntoIterator-for-%26Result%3CT,+E%3E"],[30984,"impl-IntoIterator-for-Result%3CT,+E%3E"],[30985,"impl-IntoIterator-for-%26mut+Result%3CT,+E%3E"],[31332,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31333,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31334,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31335,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31336,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31337,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31338,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31339,"impl-Add-for-Simd%3Cu8,+N%3E"],[31340,"impl-Add-for-Simd%3Cu64,+N%3E"],[31341,"impl-Add%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31342,"impl-Add%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31343,"impl-Add-for-Simd%3Cf32,+N%3E"],[31344,"impl-Add-for-Simd%3Ci8,+N%3E"],[31345,"impl-Add-for-Simd%3Ci16,+N%3E"],[31346,"impl-Add-for-Simd%3Cf64,+N%3E"],[31347,"impl-Add-for-Simd%3Ci32,+N%3E"],[31348,"impl-Add-for-Simd%3Cusize,+N%3E"],[31349,"impl-Add-for-Simd%3Ci64,+N%3E"],[31350,"impl-Add-for-Simd%3Cisize,+N%3E"],[31351,"impl-Add-for-Simd%3Cu16,+N%3E"],[31352,"impl-Add-for-Simd%3Cu32,+N%3E"],[31353,"impl-Add%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31357,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[31358,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[31362,"impl-AsMut%3C%5BT%5D%3E-for-Simd%3CT,+N%3E"],[31363,"impl-AsMut%3C%5BT;+N%5D%3E-for-Simd%3CT,+N%3E"],[31365,"impl-AsRef%3C%5BT;+N%5D%3E-for-Simd%3CT,+N%3E"],[31366,"impl-AsRef%3C%5BT%5D%3E-for-Simd%3CT,+N%3E"],[31367,"impl-BitAnd-for-Mask%3CT,+N%3E"],[31368,"impl-BitAnd%3Cbool%3E-for-Mask%3CT,+N%3E"],[31369,"impl-BitAnd-for-Simd%3Ci32,+N%3E"],[31370,"impl-BitAnd-for-Simd%3Cu8,+N%3E"],[31371,"impl-BitAnd-for-Simd%3Ci8,+N%3E"],[31372,"impl-BitAnd-for-Simd%3Cu64,+N%3E"],[31373,"impl-BitAnd-for-Simd%3Ci64,+N%3E"],[31374,"impl-BitAnd%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31375,"impl-BitAnd%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31376,"impl-BitAnd-for-Simd%3Ci16,+N%3E"],[31377,"impl-BitAnd%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31378,"impl-BitAnd-for-Simd%3Cusize,+N%3E"],[31379,"impl-BitAnd-for-Simd%3Cisize,+N%3E"],[31380,"impl-BitAnd-for-Simd%3Cu16,+N%3E"],[31381,"impl-BitAnd-for-Simd%3Cu32,+N%3E"],[31382,"impl-BitAndAssign%3Cbool%3E-for-Mask%3CT,+N%3E"],[31383,"impl-BitAndAssign-for-Mask%3CT,+N%3E"],[31385,"impl-BitOr%3Cbool%3E-for-Mask%3CT,+N%3E"],[31386,"impl-BitOr-for-Mask%3CT,+N%3E"],[31387,"impl-BitOr-for-Simd%3Cu8,+N%3E"],[31388,"impl-BitOr%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31389,"impl-BitOr-for-Simd%3Cusize,+N%3E"],[31390,"impl-BitOr-for-Simd%3Cu64,+N%3E"],[31391,"impl-BitOr-for-Simd%3Cu32,+N%3E"],[31392,"impl-BitOr-for-Simd%3Cu16,+N%3E"],[31393,"impl-BitOr-for-Simd%3Cisize,+N%3E"],[31394,"impl-BitOr-for-Simd%3Ci64,+N%3E"],[31395,"impl-BitOr-for-Simd%3Ci32,+N%3E"],[31396,"impl-BitOr-for-Simd%3Ci16,+N%3E"],[31397,"impl-BitOr-for-Simd%3Ci8,+N%3E"],[31398,"impl-BitOr%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31399,"impl-BitOr%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31400,"impl-BitOrAssign%3Cbool%3E-for-Mask%3CT,+N%3E"],[31401,"impl-BitOrAssign-for-Mask%3CT,+N%3E"],[31403,"impl-BitXor%3Cbool%3E-for-Mask%3CT,+N%3E"],[31404,"impl-BitXor-for-Mask%3CT,+N%3E"],[31405,"impl-BitXor-for-Simd%3Cisize,+N%3E"],[31406,"impl-BitXor%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31407,"impl-BitXor%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31408,"impl-BitXor-for-Simd%3Cusize,+N%3E"],[31409,"impl-BitXor-for-Simd%3Ci64,+N%3E"],[31410,"impl-BitXor-for-Simd%3Ci32,+N%3E"],[31411,"impl-BitXor-for-Simd%3Cu64,+N%3E"],[31412,"impl-BitXor-for-Simd%3Cu8,+N%3E"],[31413,"impl-BitXor-for-Simd%3Cu16,+N%3E"],[31414,"impl-BitXor-for-Simd%3Cu32,+N%3E"],[31415,"impl-BitXor%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31416,"impl-BitXor-for-Simd%3Ci16,+N%3E"],[31417,"impl-BitXor-for-Simd%3Ci8,+N%3E"],[31418,"impl-BitXorAssign-for-Mask%3CT,+N%3E"],[31419,"impl-BitXorAssign%3Cbool%3E-for-Mask%3CT,+N%3E"],[31431,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[31432,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31433,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[31434,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31435,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[31436,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[31437,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31438,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31439,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31440,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[31441,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31442,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[31443,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[31444,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31458,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31459,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31460,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31461,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31465,"impl-Div-for-Simd%3Ci32,+N%3E"],[31466,"impl-Div-for-Simd%3Cf32,+N%3E"],[31467,"impl-Div-for-Simd%3Ci64,+N%3E"],[31468,"impl-Div-for-Simd%3Cu32,+N%3E"],[31469,"impl-Div%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31470,"impl-Div-for-Simd%3Ci8,+N%3E"],[31471,"impl-Div-for-Simd%3Cisize,+N%3E"],[31472,"impl-Div-for-Simd%3Cu8,+N%3E"],[31473,"impl-Div-for-Simd%3Cu64,+N%3E"],[31474,"impl-Div%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31475,"impl-Div-for-Simd%3Cf64,+N%3E"],[31476,"impl-Div-for-Simd%3Cu16,+N%3E"],[31477,"impl-Div%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31478,"impl-Div-for-Simd%3Ci16,+N%3E"],[31479,"impl-Div-for-Simd%3Cusize,+N%3E"],[31483,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31484,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31485,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31486,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31489,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[31490,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[31508,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31509,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31510,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31511,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31513,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31514,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31515,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31516,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31517,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31518,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31519,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31520,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31521,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31522,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31523,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31524,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31525,"impl-From%3C%5Bbool;+N%5D%3E-for-Mask%3CT,+N%3E"],[31526,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31527,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31528,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31529,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31530,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31531,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31532,"impl-From%3C__m128i%3E-for-Simd%3Ci64,+2%3E"],[31533,"impl-From%3C__m256i%3E-for-Simd%3Ci64,+4%3E"],[31534,"impl-From%3C__m256i%3E-for-Simd%3Ci8,+32%3E"],[31535,"impl-From%3C__m128i%3E-for-Simd%3Ci8,+16%3E"],[31536,"impl-From%3C__m512i%3E-for-Simd%3Cu8,+64%3E"],[31537,"impl-From%3C__m256i%3E-for-Simd%3Cu8,+32%3E"],[31538,"impl-From%3C__m128i%3E-for-Simd%3Cu8,+16%3E"],[31539,"impl-From%3C__m128i%3E-for-Simd%3Cu64,+2%3E"],[31540,"impl-From%3C__m512i%3E-for-Simd%3Cu64,+8%3E"],[31541,"impl-From%3C%5BT;+N%5D%3E-for-Simd%3CT,+N%3E"],[31542,"impl-From%3C__m512i%3E-for-Simd%3Ci8,+64%3E"],[31543,"impl-From%3C__m128i%3E-for-Simd%3Cu16,+8%3E"],[31544,"impl-From%3C__m512i%3E-for-Simd%3Cisize,+8%3E"],[31545,"impl-From%3C__m256i%3E-for-Simd%3Cisize,+4%3E"],[31546,"impl-From%3C__m256i%3E-for-Simd%3Cu16,+16%3E"],[31547,"impl-From%3C__m128i%3E-for-Simd%3Cisize,+2%3E"],[31548,"impl-From%3C__m512i%3E-for-Simd%3Cu16,+32%3E"],[31549,"impl-From%3C__m128i%3E-for-Simd%3Ci16,+8%3E"],[31550,"impl-From%3C__m512i%3E-for-Simd%3Cusize,+8%3E"],[31551,"impl-From%3C__m256i%3E-for-Simd%3Cusize,+4%3E"],[31552,"impl-From%3C__m256i%3E-for-Simd%3Ci16,+16%3E"],[31553,"impl-From%3C__m256i%3E-for-Simd%3Cu64,+4%3E"],[31554,"impl-From%3C__m128i%3E-for-Simd%3Cusize,+2%3E"],[31555,"impl-From%3CMask%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31556,"impl-From%3C__m128i%3E-for-Simd%3Cu32,+4%3E"],[31557,"impl-From%3C__m512d%3E-for-Simd%3Cf64,+8%3E"],[31558,"impl-From%3C__m256i%3E-for-Simd%3Cu32,+8%3E"],[31559,"impl-From%3C__m512i%3E-for-Simd%3Cu32,+16%3E"],[31560,"impl-From%3C__m128i%3E-for-Simd%3Ci32,+4%3E"],[31561,"impl-From%3C__m256i%3E-for-Simd%3Ci32,+8%3E"],[31562,"impl-From%3C__m256d%3E-for-Simd%3Cf64,+4%3E"],[31564,"impl-From%3C__m128d%3E-for-Simd%3Cf64,+2%3E"],[31565,"impl-From%3C__m512i%3E-for-Simd%3Ci32,+16%3E"],[31566,"impl-From%3C__m128%3E-for-Simd%3Cf32,+4%3E"],[31567,"impl-From%3C__m256%3E-for-Simd%3Cf32,+8%3E"],[31568,"impl-From%3C__m512%3E-for-Simd%3Cf32,+16%3E"],[31569,"impl-From%3C__m512i%3E-for-Simd%3Ci64,+8%3E"],[31570,"impl-From%3C__m512i%3E-for-Simd%3Ci16,+32%3E"],[31573,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[31574,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[31575,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[31576,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[31577,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[31578,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[31579,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[31580,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[31581,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[31582,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[31583,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[31584,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[31585,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[31586,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[31587,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[31588,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[31589,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[31590,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[31591,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[31592,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[31593,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[31594,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[31595,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[31596,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[31597,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[31598,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[31599,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[31600,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[31601,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[31602,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[31603,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[31604,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[31605,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[31606,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[31607,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[31608,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[31609,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[31610,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[31611,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[31612,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[31613,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[31614,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[31615,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[31616,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[31617,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[31618,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[31619,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[31620,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[31621,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[31622,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[31623,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[31624,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[31625,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[31626,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[31627,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[31628,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[31629,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[31630,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[31631,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[31632,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[31633,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[31637,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31638,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31641,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[31642,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[31643,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[31644,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[31645,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[31646,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[31647,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[31648,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[31649,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[31650,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[31651,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[31652,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[31653,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[31654,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[31655,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[31656,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[31657,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[31658,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[31659,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[31660,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[31661,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[31662,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[31663,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[31664,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[31665,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[31666,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[31667,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[31668,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[31669,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[31670,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[31671,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[31672,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[31673,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[31674,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[31675,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[31676,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[31677,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[31678,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[31679,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[31680,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[31681,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[31682,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[31683,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[31684,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[31685,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[31686,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[31687,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[31688,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[31689,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[31690,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[31691,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[31692,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[31693,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[31694,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[31695,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[31696,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[31697,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[31698,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[31699,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[31700,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[31701,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[31702,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[31703,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[31704,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[31705,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[31706,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[31707,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[31708,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[31709,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[31710,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[31711,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[31712,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[31713,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[31714,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[31715,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[31716,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[31717,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[31718,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[31719,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[31720,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[31721,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[31722,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[31723,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[31724,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[31725,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[31726,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[31727,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[31728,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[31729,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[31730,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[31731,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[31732,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[31733,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[31734,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[31735,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[31736,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[31737,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[31738,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[31739,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[31740,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[31741,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[31742,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[31743,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[31744,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[31745,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[31746,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[31747,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[31748,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[31749,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[31750,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[31751,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[31752,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[31753,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[31754,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[31755,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[31756,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[31757,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[31758,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[31759,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[31760,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[31761,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[31762,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[31805,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31806,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31808,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31809,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31811,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31812,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31814,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31815,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31816,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31817,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31818,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31820,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31821,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31824,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[31825,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[31827,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31828,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31829,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31830,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31831,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31833,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31834,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31836,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31837,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31839,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31840,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31850,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31851,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[31852,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31853,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[31854,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[31855,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[31856,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31857,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31858,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[31859,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31862,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31863,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31864,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[31865,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31866,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[31867,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31868,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31869,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[31870,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[31871,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[31873,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31874,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31881,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31882,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31883,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31884,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31920,"impl-Mul-for-Simd%3Cu64,+N%3E"],[31921,"impl-Mul-for-Simd%3Ci16,+N%3E"],[31922,"impl-Mul-for-Simd%3Cf64,+N%3E"],[31923,"impl-Mul-for-Simd%3Cf32,+N%3E"],[31924,"impl-Mul-for-Simd%3Cusize,+N%3E"],[31925,"impl-Mul-for-Simd%3Cu32,+N%3E"],[31926,"impl-Mul-for-Simd%3Cu16,+N%3E"],[31927,"impl-Mul-for-Simd%3Cu8,+N%3E"],[31928,"impl-Mul-for-Simd%3Cisize,+N%3E"],[31929,"impl-Mul-for-Simd%3Ci64,+N%3E"],[31930,"impl-Mul%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31931,"impl-Mul%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31932,"impl-Mul%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31933,"impl-Mul-for-Simd%3Ci32,+N%3E"],[31934,"impl-Mul-for-Simd%3Ci8,+N%3E"],[31937,"impl-Neg-for-Simd%3Ci8,+N%3E"],[31938,"impl-Neg-for-Simd%3Ci16,+N%3E"],[31939,"impl-Neg-for-Simd%3Cisize,+N%3E"],[31940,"impl-Neg-for-Simd%3Ci64,+N%3E"],[31941,"impl-Neg-for-Simd%3Ci32,+N%3E"],[31942,"impl-Neg-for-Simd%3Cf32,+N%3E"],[31943,"impl-Neg-for-Simd%3Cf64,+N%3E"],[31945,"impl-Not-for-Simd%3Ci32,+N%3E"],[31946,"impl-Not-for-Simd%3Ci8,+N%3E"],[31947,"impl-Not-for-Simd%3Cusize,+N%3E"],[31948,"impl-Not-for-Simd%3Cu64,+N%3E"],[31949,"impl-Not-for-Simd%3Cu32,+N%3E"],[31950,"impl-Not-for-Simd%3Cu16,+N%3E"],[31951,"impl-Not-for-Simd%3Cu8,+N%3E"],[31952,"impl-Not-for-Simd%3Cisize,+N%3E"],[31953,"impl-Not-for-Simd%3Ci64,+N%3E"],[31954,"impl-Not-for-Simd%3Ci16,+N%3E"],[31957,"impl-Product-for-Simd%3Ci8,+N%3E"],[31958,"impl-Product-for-Simd%3Cf32,+N%3E"],[31959,"impl-Product%3C%26Simd%3Cf64,+N%3E%3E-for-Simd%3Cf64,+N%3E"],[31960,"impl-Product-for-Simd%3Cisize,+N%3E"],[31961,"impl-Product%3C%26Simd%3Cisize,+N%3E%3E-for-Simd%3Cisize,+N%3E"],[31962,"impl-Product%3C%26Simd%3Cu8,+N%3E%3E-for-Simd%3Cu8,+N%3E"],[31963,"impl-Product-for-Simd%3Cu16,+N%3E"],[31964,"impl-Product%3C%26Simd%3Cu16,+N%3E%3E-for-Simd%3Cu16,+N%3E"],[31965,"impl-Product-for-Simd%3Cu32,+N%3E"],[31966,"impl-Product%3C%26Simd%3Cu32,+N%3E%3E-for-Simd%3Cu32,+N%3E"],[31967,"impl-Product-for-Simd%3Cu64,+N%3E"],[31968,"impl-Product-for-Simd%3Cf64,+N%3E"],[31969,"impl-Product-for-Simd%3Cusize,+N%3E"],[31970,"impl-Product%3C%26Simd%3Cu64,+N%3E%3E-for-Simd%3Cu64,+N%3E"],[31971,"impl-Product%3C%26Simd%3Cf32,+N%3E%3E-for-Simd%3Cf32,+N%3E"],[31972,"impl-Product-for-Simd%3Ci32,+N%3E"],[31973,"impl-Product-for-Simd%3Cu8,+N%3E"],[31974,"impl-Product%3C%26Simd%3Ci32,+N%3E%3E-for-Simd%3Ci32,+N%3E"],[31975,"impl-Product%3C%26Simd%3Ci64,+N%3E%3E-for-Simd%3Ci64,+N%3E"],[31976,"impl-Product%3C%26Simd%3Ci8,+N%3E%3E-for-Simd%3Ci8,+N%3E"],[31977,"impl-Product-for-Simd%3Ci64,+N%3E"],[31978,"impl-Product-for-Simd%3Ci16,+N%3E"],[31979,"impl-Product%3C%26Simd%3Ci16,+N%3E%3E-for-Simd%3Ci16,+N%3E"],[31980,"impl-Product%3C%26Simd%3Cusize,+N%3E%3E-for-Simd%3Cusize,+N%3E"],[31982,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31983,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31986,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[31987,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31988,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[31989,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31990,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31991,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[31992,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31993,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[31994,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31995,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[31999,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32000,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32001,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32002,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32003,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32004,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32005,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32006,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32007,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32008,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32009,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32010,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32014,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32015,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32016,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32017,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32018,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32019,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32020,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32021,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32022,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32023,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32024,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32025,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32028,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32029,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32030,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32031,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32032,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32033,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32034,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32035,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32036,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32037,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32041,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32042,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32043,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32044,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32045,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32046,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32047,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32048,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32049,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32050,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32051,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32052,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32056,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32057,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32058,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32059,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32060,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32061,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32062,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32063,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32064,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32065,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32066,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32067,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32070,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32071,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32072,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32073,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32074,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32075,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32076,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32077,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32078,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32079,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32080,"impl-Rem-for-Simd%3Cu64,+N%3E"],[32081,"impl-Rem-for-Simd%3Ci8,+N%3E"],[32082,"impl-Rem%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32083,"impl-Rem-for-Simd%3Cusize,+N%3E"],[32084,"impl-Rem-for-Simd%3Cf32,+N%3E"],[32085,"impl-Rem%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32086,"impl-Rem-for-Simd%3Cu16,+N%3E"],[32087,"impl-Rem-for-Simd%3Cf64,+N%3E"],[32088,"impl-Rem%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32089,"impl-Rem-for-Simd%3Cu8,+N%3E"],[32090,"impl-Rem-for-Simd%3Cisize,+N%3E"],[32091,"impl-Rem-for-Simd%3Ci64,+N%3E"],[32092,"impl-Rem-for-Simd%3Ci32,+N%3E"],[32093,"impl-Rem-for-Simd%3Cu32,+N%3E"],[32094,"impl-Rem-for-Simd%3Ci16,+N%3E"],[32100,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32101,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32102,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32103,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32104,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32105,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32106,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32107,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32108,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32109,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32113,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32114,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32115,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32116,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32117,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32120,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32121,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32122,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32123,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32124,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32125,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32126,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32127,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32128,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32129,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32131,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32132,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32133,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32134,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32135,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32138,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32139,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32140,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32141,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32142,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32143,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32144,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32145,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32146,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32147,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32157,"impl-Shl%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32158,"impl-Shl%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32159,"impl-Shl%3Cusize%3E-for-%26Simd%3Cusize,+N%3E"],[32160,"impl-Shl%3Cu64%3E-for-%26Simd%3Cu64,+N%3E"],[32161,"impl-Shl%3C%26u64%3E-for-Simd%3Cu64,+N%3E"],[32162,"impl-Shl-for-Simd%3Cusize,+N%3E"],[32163,"impl-Shl%3Cu64%3E-for-Simd%3Cu64,+N%3E"],[32164,"impl-Shl-for-Simd%3Cu64,+N%3E"],[32165,"impl-Shl%3C%26u32%3E-for-%26Simd%3Cu32,+N%3E"],[32166,"impl-Shl%3Cu32%3E-for-%26Simd%3Cu32,+N%3E"],[32167,"impl-Shl%3C%26u64%3E-for-%26Simd%3Cu64,+N%3E"],[32168,"impl-Shl%3C%26u32%3E-for-Simd%3Cu32,+N%3E"],[32169,"impl-Shl%3Cu32%3E-for-Simd%3Cu32,+N%3E"],[32170,"impl-Shl%3C%26u16%3E-for-%26Simd%3Cu16,+N%3E"],[32171,"impl-Shl-for-Simd%3Ci8,+N%3E"],[32172,"impl-Shl-for-Simd%3Ci16,+N%3E"],[32173,"impl-Shl%3Cusize%3E-for-Simd%3Cusize,+N%3E"],[32174,"impl-Shl%3Cu16%3E-for-%26Simd%3Cu16,+N%3E"],[32175,"impl-Shl%3C%26usize%3E-for-Simd%3Cusize,+N%3E"],[32176,"impl-Shl-for-Simd%3Ci32,+N%3E"],[32177,"impl-Shl-for-Simd%3Ci64,+N%3E"],[32178,"impl-Shl%3C%26u16%3E-for-Simd%3Cu16,+N%3E"],[32179,"impl-Shl%3Cu16%3E-for-Simd%3Cu16,+N%3E"],[32180,"impl-Shl-for-Simd%3Cisize,+N%3E"],[32181,"impl-Shl%3C%26u8%3E-for-%26Simd%3Cu8,+N%3E"],[32182,"impl-Shl%3C%26usize%3E-for-%26Simd%3Cusize,+N%3E"],[32183,"impl-Shl-for-Simd%3Cu8,+N%3E"],[32184,"impl-Shl%3C%26u8%3E-for-Simd%3Cu8,+N%3E"],[32185,"impl-Shl%3Cu8%3E-for-Simd%3Cu8,+N%3E"],[32186,"impl-Shl%3C%26isize%3E-for-%26Simd%3Cisize,+N%3E"],[32187,"impl-Shl%3Cisize%3E-for-%26Simd%3Cisize,+N%3E"],[32188,"impl-Shl%3C%26isize%3E-for-Simd%3Cisize,+N%3E"],[32189,"impl-Shl%3Cisize%3E-for-Simd%3Cisize,+N%3E"],[32190,"impl-Shl%3C%26i64%3E-for-%26Simd%3Ci64,+N%3E"],[32191,"impl-Shl%3Ci64%3E-for-%26Simd%3Ci64,+N%3E"],[32192,"impl-Shl%3C%26i64%3E-for-Simd%3Ci64,+N%3E"],[32193,"impl-Shl%3Ci64%3E-for-Simd%3Ci64,+N%3E"],[32194,"impl-Shl%3C%26i32%3E-for-%26Simd%3Ci32,+N%3E"],[32195,"impl-Shl%3Ci32%3E-for-%26Simd%3Ci32,+N%3E"],[32196,"impl-Shl%3C%26i32%3E-for-Simd%3Ci32,+N%3E"],[32197,"impl-Shl%3Ci32%3E-for-Simd%3Ci32,+N%3E"],[32198,"impl-Shl%3C%26i16%3E-for-%26Simd%3Ci16,+N%3E"],[32199,"impl-Shl%3Ci16%3E-for-%26Simd%3Ci16,+N%3E"],[32200,"impl-Shl%3C%26i16%3E-for-Simd%3Ci16,+N%3E"],[32201,"impl-Shl%3Ci16%3E-for-Simd%3Ci16,+N%3E"],[32202,"impl-Shl%3C%26i8%3E-for-%26Simd%3Ci8,+N%3E"],[32203,"impl-Shl%3Ci8%3E-for-%26Simd%3Ci8,+N%3E"],[32204,"impl-Shl%3C%26i8%3E-for-Simd%3Ci8,+N%3E"],[32205,"impl-Shl%3Ci8%3E-for-Simd%3Ci8,+N%3E"],[32206,"impl-Shl-for-Simd%3Cu16,+N%3E"],[32207,"impl-Shl%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32208,"impl-Shl-for-Simd%3Cu32,+N%3E"],[32209,"impl-Shl%3Cu8%3E-for-%26Simd%3Cu8,+N%3E"],[32211,"impl-Shr%3C%26usize%3E-for-%26Simd%3Cusize,+N%3E"],[32212,"impl-Shr%3C%26isize%3E-for-%26Simd%3Cisize,+N%3E"],[32213,"impl-Shr%3Cisize%3E-for-Simd%3Cisize,+N%3E"],[32214,"impl-Shr%3C%26u32%3E-for-%26Simd%3Cu32,+N%3E"],[32215,"impl-Shr-for-Simd%3Cusize,+N%3E"],[32216,"impl-Shr%3Cu64%3E-for-Simd%3Cu64,+N%3E"],[32217,"impl-Shr%3Cu32%3E-for-%26Simd%3Cu32,+N%3E"],[32218,"impl-Shr%3C%26i64%3E-for-%26Simd%3Ci64,+N%3E"],[32219,"impl-Shr%3Ci64%3E-for-%26Simd%3Ci64,+N%3E"],[32220,"impl-Shr%3C%26i64%3E-for-Simd%3Ci64,+N%3E"],[32221,"impl-Shr%3Ci64%3E-for-Simd%3Ci64,+N%3E"],[32222,"impl-Shr%3C%26i32%3E-for-%26Simd%3Ci32,+N%3E"],[32223,"impl-Shr%3Ci32%3E-for-%26Simd%3Ci32,+N%3E"],[32224,"impl-Shr%3C%26i32%3E-for-Simd%3Ci32,+N%3E"],[32225,"impl-Shr%3C%26u64%3E-for-Simd%3Cu64,+N%3E"],[32226,"impl-Shr%3Ci32%3E-for-Simd%3Ci32,+N%3E"],[32227,"impl-Shr%3Cu64%3E-for-%26Simd%3Cu64,+N%3E"],[32228,"impl-Shr%3C%26u64%3E-for-%26Simd%3Cu64,+N%3E"],[32229,"impl-Shr%3C%26i16%3E-for-%26Simd%3Ci16,+N%3E"],[32230,"impl-Shr%3Cusize%3E-for-Simd%3Cusize,+N%3E"],[32231,"impl-Shr%3C%26usize%3E-for-Simd%3Cusize,+N%3E"],[32232,"impl-Shr%3Cusize%3E-for-%26Simd%3Cusize,+N%3E"],[32233,"impl-Shr%3Ci16%3E-for-%26Simd%3Ci16,+N%3E"],[32234,"impl-Shr-for-Simd%3Ci8,+N%3E"],[32235,"impl-Shr-for-Simd%3Ci16,+N%3E"],[32236,"impl-Shr-for-Simd%3Ci32,+N%3E"],[32237,"impl-Shr%3C%26i16%3E-for-Simd%3Ci16,+N%3E"],[32238,"impl-Shr-for-Simd%3Ci64,+N%3E"],[32239,"impl-Shr-for-Simd%3Cisize,+N%3E"],[32240,"impl-Shr-for-Simd%3Cu8,+N%3E"],[32241,"impl-Shr%3C%26isize%3E-for-Simd%3Cisize,+N%3E"],[32242,"impl-Shr-for-Simd%3Cu16,+N%3E"],[32243,"impl-Shr-for-Simd%3Cu32,+N%3E"],[32244,"impl-Shr-for-Simd%3Cu64,+N%3E"],[32245,"impl-Shr%3C%26u32%3E-for-Simd%3Cu32,+N%3E"],[32246,"impl-Shr%3Cisize%3E-for-%26Simd%3Cisize,+N%3E"],[32247,"impl-Shr%3Cu32%3E-for-Simd%3Cu32,+N%3E"],[32248,"impl-Shr%3Ci16%3E-for-Simd%3Ci16,+N%3E"],[32249,"impl-Shr%3C%26i8%3E-for-%26Simd%3Ci8,+N%3E"],[32250,"impl-Shr%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32251,"impl-Shr%3Ci8%3E-for-%26Simd%3Ci8,+N%3E"],[32252,"impl-Shr%3C%26i8%3E-for-Simd%3Ci8,+N%3E"],[32253,"impl-Shr%3Ci8%3E-for-Simd%3Ci8,+N%3E"],[32254,"impl-Shr%3C%26u16%3E-for-%26Simd%3Cu16,+N%3E"],[32255,"impl-Shr%3Cu16%3E-for-%26Simd%3Cu16,+N%3E"],[32256,"impl-Shr%3C%26u16%3E-for-Simd%3Cu16,+N%3E"],[32257,"impl-Shr%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32258,"impl-Shr%3Cu16%3E-for-Simd%3Cu16,+N%3E"],[32259,"impl-Shr%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32260,"impl-Shr%3C%26u8%3E-for-%26Simd%3Cu8,+N%3E"],[32261,"impl-Shr%3Cu8%3E-for-%26Simd%3Cu8,+N%3E"],[32262,"impl-Shr%3C%26u8%3E-for-Simd%3Cu8,+N%3E"],[32263,"impl-Shr%3Cu8%3E-for-Simd%3Cu8,+N%3E"],[32267,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32268,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32269,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32270,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32271,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32272,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32273,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32276,"impl-SimdOrd-for-Mask%3Cisize,+N%3E"],[32277,"impl-SimdOrd-for-Mask%3Ci64,+N%3E"],[32278,"impl-SimdOrd-for-Mask%3Ci8,+N%3E"],[32279,"impl-SimdOrd-for-Mask%3Ci16,+N%3E"],[32280,"impl-SimdOrd-for-Mask%3Ci32,+N%3E"],[32281,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32282,"impl-SimdOrd-for-Simd%3C*const+T,+N%3E"],[32283,"impl-SimdOrd-for-Simd%3Cu64,+N%3E"],[32284,"impl-SimdOrd-for-Simd%3C*mut+T,+N%3E"],[32285,"impl-SimdOrd-for-Simd%3Ci32,+N%3E"],[32286,"impl-SimdOrd-for-Simd%3Cusize,+N%3E"],[32287,"impl-SimdOrd-for-Simd%3Ci16,+N%3E"],[32288,"impl-SimdOrd-for-Simd%3Cu16,+N%3E"],[32289,"impl-SimdOrd-for-Simd%3Cisize,+N%3E"],[32290,"impl-SimdOrd-for-Simd%3Cu32,+N%3E"],[32291,"impl-SimdOrd-for-Simd%3Cu8,+N%3E"],[32292,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32293,"impl-SimdOrd-for-Simd%3Ci64,+N%3E"],[32294,"impl-SimdOrd-for-Simd%3Ci8,+N%3E"],[32296,"impl-SimdPartialEq-for-Mask%3Ci32,+N%3E"],[32297,"impl-SimdPartialEq-for-Mask%3Ci8,+N%3E"],[32298,"impl-SimdPartialEq-for-Mask%3Ci16,+N%3E"],[32299,"impl-SimdPartialEq-for-Mask%3Ci64,+N%3E"],[32300,"impl-SimdPartialEq-for-Mask%3Cisize,+N%3E"],[32301,"impl-SimdPartialEq-for-Simd%3Cu16,+N%3E"],[32302,"impl-SimdPartialEq-for-Simd%3Cu8,+N%3E"],[32303,"impl-SimdPartialEq-for-Simd%3Ci16,+N%3E"],[32304,"impl-SimdPartialEq-for-Simd%3Cf32,+N%3E"],[32305,"impl-SimdPartialEq-for-Simd%3Cisize,+N%3E"],[32306,"impl-SimdPartialEq-for-Simd%3Cf64,+N%3E"],[32307,"impl-SimdPartialEq-for-Simd%3Cu32,+N%3E"],[32308,"impl-SimdPartialEq-for-Simd%3Cu64,+N%3E"],[32309,"impl-SimdPartialEq-for-Simd%3Cusize,+N%3E"],[32310,"impl-SimdPartialEq-for-Simd%3C*mut+T,+N%3E"],[32311,"impl-SimdPartialEq-for-Simd%3Ci64,+N%3E"],[32312,"impl-SimdPartialEq-for-Simd%3Ci8,+N%3E"],[32313,"impl-SimdPartialEq-for-Simd%3C*const+T,+N%3E"],[32314,"impl-SimdPartialEq-for-Simd%3Ci32,+N%3E"],[32316,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32317,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32318,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32319,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32320,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32321,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32322,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32323,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32324,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32325,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32326,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32327,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32328,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32329,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32330,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32331,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32332,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32333,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32334,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32336,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32337,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32338,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32339,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32340,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32341,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32342,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32343,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32344,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32345,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32346,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32347,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32348,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32349,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32350,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32351,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32352,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32353,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32354,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32356,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32357,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32358,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32359,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32360,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32361,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32362,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32363,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32364,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32365,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32366,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32367,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32368,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32369,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32370,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32371,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32372,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32373,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32374,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32376,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32377,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32378,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32379,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32380,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32381,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32382,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32383,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32384,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32385,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32386,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32387,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32388,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32389,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32390,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32391,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32392,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32393,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32394,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32397,"impl-SimdOrd-for-Mask%3Cisize,+N%3E"],[32398,"impl-SimdOrd-for-Mask%3Ci64,+N%3E"],[32399,"impl-SimdOrd-for-Mask%3Ci8,+N%3E"],[32400,"impl-SimdOrd-for-Mask%3Ci16,+N%3E"],[32401,"impl-SimdOrd-for-Mask%3Ci32,+N%3E"],[32402,"impl-SimdOrd-for-Simd%3Cu64,+N%3E"],[32403,"impl-SimdOrd-for-Simd%3Ci16,+N%3E"],[32404,"impl-SimdOrd-for-Simd%3Cu16,+N%3E"],[32405,"impl-SimdOrd-for-Simd%3Cu32,+N%3E"],[32406,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32407,"impl-SimdOrd-for-Simd%3Cu8,+N%3E"],[32408,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32409,"impl-SimdOrd-for-Simd%3Cusize,+N%3E"],[32410,"impl-SimdOrd-for-Simd%3C*const+T,+N%3E"],[32411,"impl-SimdOrd-for-Simd%3C*mut+T,+N%3E"],[32412,"impl-SimdOrd-for-Simd%3Ci8,+N%3E"],[32413,"impl-SimdOrd-for-Simd%3Ci64,+N%3E"],[32414,"impl-SimdOrd-for-Simd%3Ci32,+N%3E"],[32415,"impl-SimdOrd-for-Simd%3Cisize,+N%3E"],[32418,"impl-SimdOrd-for-Mask%3Ci32,+N%3E"],[32419,"impl-SimdOrd-for-Mask%3Ci8,+N%3E"],[32420,"impl-SimdOrd-for-Mask%3Cisize,+N%3E"],[32421,"impl-SimdOrd-for-Mask%3Ci16,+N%3E"],[32422,"impl-SimdOrd-for-Mask%3Ci64,+N%3E"],[32423,"impl-SimdOrd-for-Simd%3Cu64,+N%3E"],[32424,"impl-SimdOrd-for-Simd%3Cu16,+N%3E"],[32425,"impl-SimdOrd-for-Simd%3Ci16,+N%3E"],[32426,"impl-SimdOrd-for-Simd%3Ci32,+N%3E"],[32427,"impl-SimdOrd-for-Simd%3Ci64,+N%3E"],[32428,"impl-SimdOrd-for-Simd%3Cisize,+N%3E"],[32429,"impl-SimdOrd-for-Simd%3C*const+T,+N%3E"],[32430,"impl-SimdOrd-for-Simd%3Ci8,+N%3E"],[32431,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32432,"impl-SimdOrd-for-Simd%3C*mut+T,+N%3E"],[32433,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32434,"impl-SimdOrd-for-Simd%3Cu8,+N%3E"],[32435,"impl-SimdOrd-for-Simd%3Cu32,+N%3E"],[32436,"impl-SimdOrd-for-Simd%3Cusize,+N%3E"],[32438,"impl-SimdPartialEq-for-Mask%3Cisize,+N%3E"],[32439,"impl-SimdPartialEq-for-Mask%3Ci32,+N%3E"],[32440,"impl-SimdPartialEq-for-Mask%3Ci16,+N%3E"],[32441,"impl-SimdPartialEq-for-Mask%3Ci8,+N%3E"],[32442,"impl-SimdPartialEq-for-Mask%3Ci64,+N%3E"],[32443,"impl-SimdPartialEq-for-Simd%3Ci16,+N%3E"],[32444,"impl-SimdPartialEq-for-Simd%3C*const+T,+N%3E"],[32445,"impl-SimdPartialEq-for-Simd%3Cu64,+N%3E"],[32446,"impl-SimdPartialEq-for-Simd%3Cu32,+N%3E"],[32447,"impl-SimdPartialEq-for-Simd%3Ci8,+N%3E"],[32448,"impl-SimdPartialEq-for-Simd%3Cu16,+N%3E"],[32449,"impl-SimdPartialEq-for-Simd%3Cf32,+N%3E"],[32450,"impl-SimdPartialEq-for-Simd%3Ci32,+N%3E"],[32451,"impl-SimdPartialEq-for-Simd%3Cf64,+N%3E"],[32452,"impl-SimdPartialEq-for-Simd%3Ci64,+N%3E"],[32453,"impl-SimdPartialEq-for-Simd%3Cu8,+N%3E"],[32454,"impl-SimdPartialEq-for-Simd%3C*mut+T,+N%3E"],[32455,"impl-SimdPartialEq-for-Simd%3Cusize,+N%3E"],[32456,"impl-SimdPartialEq-for-Simd%3Cisize,+N%3E"],[32458,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[32459,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[32465,"impl-Sub%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32466,"impl-Sub-for-Simd%3Cu16,+N%3E"],[32467,"impl-Sub-for-Simd%3Ci64,+N%3E"],[32468,"impl-Sub-for-Simd%3Ci16,+N%3E"],[32469,"impl-Sub-for-Simd%3Cisize,+N%3E"],[32470,"impl-Sub-for-Simd%3Cf32,+N%3E"],[32471,"impl-Sub-for-Simd%3Ci8,+N%3E"],[32472,"impl-Sub-for-Simd%3Cu8,+N%3E"],[32473,"impl-Sub-for-Simd%3Cf64,+N%3E"],[32474,"impl-Sub-for-Simd%3Cu32,+N%3E"],[32475,"impl-Sub-for-Simd%3Ci32,+N%3E"],[32476,"impl-Sub%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32477,"impl-Sub-for-Simd%3Cu64,+N%3E"],[32478,"impl-Sub-for-Simd%3Cusize,+N%3E"],[32479,"impl-Sub%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32481,"impl-Sum-for-Simd%3Ci32,+N%3E"],[32482,"impl-Sum%3C%26Simd%3Cusize,+N%3E%3E-for-Simd%3Cusize,+N%3E"],[32483,"impl-Sum%3C%26Simd%3Cf64,+N%3E%3E-for-Simd%3Cf64,+N%3E"],[32484,"impl-Sum-for-Simd%3Cu8,+N%3E"],[32485,"impl-Sum-for-Simd%3Cisize,+N%3E"],[32486,"impl-Sum%3C%26Simd%3Ci64,+N%3E%3E-for-Simd%3Ci64,+N%3E"],[32487,"impl-Sum-for-Simd%3Ci64,+N%3E"],[32488,"impl-Sum-for-Simd%3Cf64,+N%3E"],[32489,"impl-Sum%3C%26Simd%3Ci32,+N%3E%3E-for-Simd%3Ci32,+N%3E"],[32490,"impl-Sum%3C%26Simd%3Cf32,+N%3E%3E-for-Simd%3Cf32,+N%3E"],[32491,"impl-Sum-for-Simd%3Cf32,+N%3E"],[32492,"impl-Sum%3C%26Simd%3Ci16,+N%3E%3E-for-Simd%3Ci16,+N%3E"],[32493,"impl-Sum%3C%26Simd%3Cu8,+N%3E%3E-for-Simd%3Cu8,+N%3E"],[32494,"impl-Sum-for-Simd%3Ci16,+N%3E"],[32495,"impl-Sum%3C%26Simd%3Ci8,+N%3E%3E-for-Simd%3Ci8,+N%3E"],[32496,"impl-Sum-for-Simd%3Cu16,+N%3E"],[32497,"impl-Sum%3C%26Simd%3Cu16,+N%3E%3E-for-Simd%3Cu16,+N%3E"],[32498,"impl-Sum-for-Simd%3Cu32,+N%3E"],[32499,"impl-Sum%3C%26Simd%3Cu32,+N%3E%3E-for-Simd%3Cu32,+N%3E"],[32500,"impl-Sum-for-Simd%3Cu64,+N%3E"],[32501,"impl-Sum%3C%26Simd%3Cisize,+N%3E%3E-for-Simd%3Cisize,+N%3E"],[32502,"impl-Sum-for-Simd%3Ci8,+N%3E"],[32503,"impl-Sum-for-Simd%3Cusize,+N%3E"],[32504,"impl-Sum%3C%26Simd%3Cu64,+N%3E%3E-for-Simd%3Cu64,+N%3E"],[32507,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32508,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32509,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32510,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32511,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32512,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32513,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32514,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32515,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32516,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32522,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[32523,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[32524,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[32525,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32526,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[32527,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32528,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32529,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[32530,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[32531,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[32532,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32533,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[32534,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[32535,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[32536,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[32537,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[32538,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[32539,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[32540,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32541,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[32542,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[32543,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[32544,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[32545,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[32546,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[32547,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[32548,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[32549,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[32550,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[32551,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[32552,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[32553,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[32554,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[32555,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[32556,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[32557,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[32558,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[32559,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32560,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[32561,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[32562,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[32563,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[32564,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[32565,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[32566,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[32567,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[32568,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[32569,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[32570,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[32571,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[32572,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32573,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[32574,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32575,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[32576,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[32577,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[32578,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[32579,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[32580,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[32581,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[32582,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[32586,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32587,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32589,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32590,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32593,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32594,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32595,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[32596,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[32597,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32598,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[32599,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[32600,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32601,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[32602,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32603,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32604,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[32605,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[32606,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[32607,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[32608,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[32609,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32610,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[32611,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[32612,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[32613,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[32614,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32615,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[32616,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[32617,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[32618,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[32619,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[32620,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[32621,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[32622,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[32623,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[32624,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[32625,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[32626,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[32627,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[32628,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[32629,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32630,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[32631,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[32632,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[32633,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[32634,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[32635,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[32636,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[32637,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[32638,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[32639,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[32640,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[32641,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[32642,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[32643,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[32644,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[32645,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[32646,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[32647,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[32648,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[32649,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32650,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[32651,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[32652,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[32653,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[32654,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[32655,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[32656,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32657,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32658,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[32659,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[32660,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[32661,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[32662,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[32663,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[32664,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[32665,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[32666,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[32667,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[32668,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[32669,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[32670,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[32671,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[32672,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[32673,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[32674,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[32675,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32676,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[32677,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[32678,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[32679,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[32680,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[32681,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[32682,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[32683,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[32684,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[32685,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[32686,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[32687,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[32688,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[32689,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[32690,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[32691,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[32692,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[32693,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[32694,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[32695,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32696,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[32697,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[32698,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32699,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[32700,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[32701,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[32702,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[32703,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[32704,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[32705,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[32706,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32707,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[32708,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[32709,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[32710,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32711,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[32712,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[32713,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[32714,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[32715,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32716,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[32720,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32721,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32724,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32725,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32726,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32727,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32728,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32729,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32730,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32731,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32732,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32733,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32736,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32737,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32738,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32739,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32740,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32741,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32742,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32743,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32744,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32745,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32747,"impl-TryFrom%3C%26%5BT%5D%3E-for-Simd%3CT,+N%3E"],[32748,"impl-TryFrom%3C%26mut+%5BT%5D%3E-for-Simd%3CT,+N%3E"],[32791,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[32792,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[32795,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[32796,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[32799,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[32800,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[32802,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32803,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32804,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32805,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32806,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32809,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[32810,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[32813,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[32814,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[33019,"impl-Display-for-EscapeAscii%3C\'a%3E"],[33020,"impl-Debug-for-EscapeAscii%3C\'a%3E"],[33548,"impl-Display-for-Utf8Error"],[33549,"impl-Debug-for-Utf8Error"],[33550,"impl-Display-for-ParseBoolError"],[33551,"impl-Debug-for-ParseBoolError"],[33570,"impl-Display-for-EscapeDebug%3C\'a%3E"],[33571,"impl-Debug-for-EscapeDebug%3C\'a%3E"],[33572,"impl-Debug-for-EscapeDefault%3C\'a%3E"],[33573,"impl-Display-for-EscapeDefault%3C\'a%3E"],[33574,"impl-Debug-for-EscapeUnicode%3C\'a%3E"],[33575,"impl-Display-for-EscapeUnicode%3C\'a%3E"],[34018,"impl-AsRef%3Cstr%3E-for-Drain%3C\'a%3E"],[34019,"impl-AsRef%3C%5Bu8%5D%3E-for-Drain%3C\'a%3E"],[34020,"impl-AsRef%3C%5Bu8%5D%3E-for-String"],[34021,"impl-AsRef%3Cstr%3E-for-String"],[34022,"impl-AsRef%3COsStr%3E-for-String"],[34023,"impl-AsRef%3CPath%3E-for-String"],[34053,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[34054,"impl-PartialEq%3C%26str%3E-for-String"],[34055,"impl-PartialEq%3Cstr%3E-for-String"],[34056,"impl-PartialEq-for-String"],[34058,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[34059,"impl-Extend%3CBox%3Cstr,+A%3E%3E-for-String"],[34060,"impl-Extend%3Cchar%3E-for-String"],[34061,"impl-Extend%3C%26char%3E-for-String"],[34062,"impl-Extend%3CString%3E-for-String"],[34063,"impl-Extend%3C%26str%3E-for-String"],[34065,"impl-Extend%3Cchar%3E-for-String"],[34066,"impl-Extend%3CString%3E-for-String"],[34067,"impl-Extend%3C%26char%3E-for-String"],[34068,"impl-Extend%3C%26str%3E-for-String"],[34069,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[34070,"impl-Extend%3Cchar%3E-for-String"],[34071,"impl-Extend%3C%26char%3E-for-String"],[34073,"impl-Display-for-String"],[34074,"impl-Debug-for-String"],[34075,"impl-Display-for-FromUtf8Error"],[34076,"impl-Debug-for-FromUtf8Error"],[34077,"impl-Display-for-FromUtf16Error"],[34078,"impl-Debug-for-FromUtf16Error"],[34080,"impl-From%3C%26String%3E-for-String"],[34082,"impl-From%3C%26mut+str%3E-for-String"],[34083,"impl-From%3C%26str%3E-for-String"],[34084,"impl-From%3Cchar%3E-for-String"],[34085,"impl-From%3CBox%3Cstr%3E%3E-for-String"],[34086,"impl-From%3CCow%3C\'a,+str%3E%3E-for-String"],[34089,"impl-FromIterator%3C%26str%3E-for-String"],[34090,"impl-FromIterator%3CString%3E-for-String"],[34091,"impl-FromIterator%3CBox%3Cstr,+A%3E%3E-for-String"],[34092,"impl-FromIterator%3Cchar%3E-for-String"],[34093,"impl-FromIterator%3C%26char%3E-for-String"],[34094,"impl-FromIterator%3CCow%3C\'a,+str%3E%3E-for-String"],[34128,"impl-PartialEq%3C%26str%3E-for-String"],[34129,"impl-PartialEq%3Cstr%3E-for-String"],[34130,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[34216,"impl-Arc%3C%5BMaybeUninit%3CT%3E%5D,+A%3E"],[34217,"impl-Arc%3CMaybeUninit%3CT%3E,+A%3E"],[34291,"impl-Default-for-Arc%3C%5BT%5D%3E"],[34292,"impl-Default-for-Arc%3CT%3E"],[34293,"impl-Default-for-Arc%3CCStr%3E"],[34294,"impl-Default-for-Arc%3Cstr%3E"],[34339,"impl-Pointer-for-Arc%3CT,+A%3E"],[34340,"impl-Debug-for-Arc%3CT,+A%3E"],[34341,"impl-Display-for-Arc%3CT,+A%3E"],[34347,"impl-Debug-for-PoisonError%3CT%3E"],[34348,"impl-Display-for-PoisonError%3CT%3E"],[34349,"impl-Display-for-TryLockError%3CT%3E"],[34350,"impl-Debug-for-TryLockError%3CT%3E"],[34352,"impl-Display-for-ReentrantLockGuard%3C\'_,+T%3E"],[34353,"impl-Debug-for-ReentrantLockGuard%3C\'_,+T%3E"],[34356,"impl-Display-for-MutexGuard%3C\'_,+T%3E"],[34357,"impl-Debug-for-MutexGuard%3C\'_,+T%3E"],[34358,"impl-Display-for-MappedMutexGuard%3C\'_,+T%3E"],[34359,"impl-Debug-for-MappedMutexGuard%3C\'_,+T%3E"],[34360,"impl-Display-for-RwLockReadGuard%3C\'_,+T%3E"],[34361,"impl-Debug-for-RwLockReadGuard%3C\'_,+T%3E"],[34362,"impl-Debug-for-RwLockWriteGuard%3C\'_,+T%3E"],[34363,"impl-Display-for-RwLockWriteGuard%3C\'_,+T%3E"],[34364,"impl-Debug-for-MappedRwLockReadGuard%3C\'_,+T%3E"],[34365,"impl-Display-for-MappedRwLockReadGuard%3C\'_,+T%3E"],[34366,"impl-Debug-for-MappedRwLockWriteGuard%3C\'_,+T%3E"],[34367,"impl-Display-for-MappedRwLockWriteGuard%3C\'_,+T%3E"],[34375,"impl-From%3CT%3E-for-Arc%3CT%3E"],[34376,"impl-From%3C%5BT;+N%5D%3E-for-Arc%3C%5BT%5D%3E"],[34377,"impl-From%3C%26Path%3E-for-Arc%3CPath%3E"],[34378,"impl-From%3CPathBuf%3E-for-Arc%3CPath%3E"],[34379,"impl-From%3CVec%3CT,+A%3E%3E-for-Arc%3C%5BT%5D,+A%3E"],[34380,"impl-From%3C%26%5BT%5D%3E-for-Arc%3C%5BT%5D%3E"],[34381,"impl-From%3C%26OsStr%3E-for-Arc%3COsStr%3E"],[34382,"impl-From%3CArc%3Cstr%3E%3E-for-Arc%3C%5Bu8%5D%3E"],[34383,"impl-From%3C%26str%3E-for-Arc%3Cstr%3E"],[34384,"impl-From%3CCString%3E-for-Arc%3CCStr%3E"],[34385,"impl-From%3C%26CStr%3E-for-Arc%3CCStr%3E"],[34386,"impl-From%3CString%3E-for-Arc%3Cstr%3E"],[34387,"impl-From%3CCow%3C\'a,+B%3E%3E-for-Arc%3CB%3E"],[34388,"impl-From%3COsString%3E-for-Arc%3COsStr%3E"],[34389,"impl-From%3CBox%3CT,+A%3E%3E-for-Arc%3CT,+A%3E"],[34892,"impl-Debug-for-AtomicPtr%3CT%3E"],[34893,"impl-Pointer-for-AtomicPtr%3CT%3E"],[35182,"impl-Debug-for-SendError%3CT%3E"],[35183,"impl-Display-for-SendError%3CT%3E"],[35184,"impl-Display-for-RecvError"],[35185,"impl-Debug-for-RecvError"],[35186,"impl-Display-for-TryRecvError"],[35187,"impl-Debug-for-TryRecvError"],[35188,"impl-Debug-for-RecvTimeoutError"],[35189,"impl-Display-for-RecvTimeoutError"],[35190,"impl-Debug-for-TrySendError%3CT%3E"],[35191,"impl-Display-for-TrySendError%3CT%3E"],[35217,"impl-IntoIterator-for-%26Receiver%3CT%3E"],[35218,"impl-IntoIterator-for-Receiver%3CT%3E"],[35308,"impl-Try-for-Poll%3CResult%3CT,+E%3E%3E"],[35309,"impl-Try-for-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35350,"impl-From%3CArc%3CW%3E%3E-for-RawWaker"],[35351,"impl-From%3CRc%3CW%3E%3E-for-RawWaker"],[35355,"impl-Try-for-Poll%3CResult%3CT,+E%3E%3E"],[35356,"impl-Try-for-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35359,"impl-FromResidual%3CResult%3CInfallible,+E%3E%3E-for-Poll%3CResult%3CT,+F%3E%3E"],[35360,"impl-FromResidual%3CResult%3CInfallible,+E%3E%3E-for-Poll%3COption%3CResult%3CT,+F%3E%3E%3E"],[35376,"impl-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35377,"impl-Poll%3CResult%3CT,+E%3E%3E"],[35378,"impl-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35379,"impl-Poll%3CResult%3CT,+E%3E%3E"],[35470,"impl-Display-for-AccessError"],[35471,"impl-Debug-for-AccessError"],[35506,"impl-LocalKey%3CRefCell%3CT%3E%3E"],[35507,"impl-LocalKey%3CCell%3CT%3E%3E"],[35509,"impl-LocalKey%3CRefCell%3CT%3E%3E"],[35510,"impl-LocalKey%3CCell%3CT%3E%3E"],[35520,"impl-LocalKey%3CCell%3CT%3E%3E"],[35521,"impl-LocalKey%3CRefCell%3CT%3E%3E"],[35642,"impl-Display-for-SystemTimeError"],[35643,"impl-Debug-for-SystemTimeError"],[35645,"impl-Debug-for-TryFromFloatSecsError"],[35646,"impl-Display-for-TryFromFloatSecsError"],[35685,"impl-Sub-for-Instant"],[35686,"impl-Sub%3CDuration%3E-for-Instant"],[35695,"impl-Sum%3C%26Duration%3E-for-Duration"],[35696,"impl-Sum-for-Duration"],[35745,"impl-AsMut%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[35746,"impl-AsMut%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[35753,"impl-AsRef%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[35754,"impl-AsRef%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[35794,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[35795,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[35796,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[35797,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[35798,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[35799,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[35800,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[35801,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[35804,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[35805,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[35806,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[35807,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[35818,"impl-From%3CVecDeque%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[35819,"impl-From%3CString%3E-for-Vec%3Cu8%3E"],[35820,"impl-From%3CBinaryHeap%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[35821,"impl-From%3C%26mut+%5BT;+N%5D%3E-for-Vec%3CT%3E"],[35822,"impl-From%3CBox%3C%5BT%5D,+A%3E%3E-for-Vec%3CT,+A%3E"],[35823,"impl-From%3CCow%3C\'a,+%5BT%5D%3E%3E-for-Vec%3CT%3E"],[35824,"impl-From%3C%5BT;+N%5D%3E-for-Vec%3CT%3E"],[35825,"impl-From%3C%26mut+%5BT%5D%3E-for-Vec%3CT%3E"],[35826,"impl-From%3CCString%3E-for-Vec%3Cu8%3E"],[35827,"impl-From%3C%26%5BT;+N%5D%3E-for-Vec%3CT%3E"],[35829,"impl-From%3C%26%5BT%5D%3E-for-Vec%3CT%3E"],[35830,"impl-From%3C%26str%3E-for-Vec%3Cu8%3E"],[35849,"impl-IntoIterator-for-%26mut+Vec%3CT,+A%3E"],[35850,"impl-IntoIterator-for-Vec%3CT,+A%3E"],[35851,"impl-IntoIterator-for-%26Vec%3CT,+A%3E"],[35863,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[35864,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[35865,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[35866,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[35867,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[35868,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"]],"c":"OzAAAAEAAAEBTwDZAAAAsAEAACYCBAAwAgAAUQIFAFsCAABiAgAAuAIDANgDAwBLFQAAVxsAAFMdAABXHQAAmh0NAMIdDQBbHgAAdR4JAAwfAAASIAEA2SABAOcgAAC4IQAABikAAEApAgBXKQAAZCkJAHYpAQCrKQQAtikAAN4pBQDmKQAA8CkAAN8qAwD/KwMAcj0AAH5DAACeRQAAskUAAAVGAABIRgAAWEYAAFtGAQBiRgEAMVEAAH9RAQDbUQ0AA1INAPpTAAATVQAAn1UAANFVAQD7VQkAklYAAHlaAQCOXgEAul4AAPxfAAAyYAAAnW4AAJ9uAADRbgMA124AANpuAADcbgAA3m4VAAxvAABlcAAAmXAAAKdwCwC9cAAAaYIAAJCFAABrhwAAc4cCALGHCwDhiAAAsooAALmKAACKiwsA","e":"OjAAAAEAAAAAAPsqEAAAAHUgAAAKAAEAAAAAAAAAAAAAAIAAAAAAAAAAAAIAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAAAAAAAAAAAAAAAPz/////////////////////////////////////////AwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/hk9AAAAAAAAAAAAAAAAAAAAAAAAAMCfPwAAAAAAAAAAAAAAAIABAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAgNNr/DQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN4D/jkIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwP9/AAAAAAAAwOP///+Hg/8/kP7/////gZ+x/x+H3///PwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4A4AIAAAAAAAAAAAAAAAAAADsAAAAAAAAAAAAAAAAAAACB8vzv/4/+/AFsAgjj///nB4AveAEAAAAAAAAAAAAAAAD+/////////////////////////////////////////wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////z/4//+/9e98vwIAAND//////////zP/3ws8+3sAAAAAAAAAAAAAAAAAAAAA2P+P/JDm4/0AP9QHfj6A/wG/3f3//wAAPvz/n4+Z/9/z/QP/BwQAAH9OPf47AHz+//9rAOz//wDA++8//oR//P+QgZAAQAAAEQABwB//+/9/AMD/////////9////wAAgP////////////8BAOD93aMDKAAY/wAAAACA//8BwP/k//8PAABw/v//////B/B/CAD5AwDggQEA5tIGAIAAAABAAHgAAAAHAAAAAADgf//5D/gPAAAOAv//n/sB4P+/////AQAA/P//////H4D9/x8AAAAAAOD/4P////8f/wMA4P//////////AwD4///////H/w8AAADw//8/OwD4//////9/AAAA8P///////+////8DAAAAAAAA8D8A//8HgP//////////PwD///////8BAP7///////8BwP//Rz8AAH74A/Dw///B///nH+D//////x8A/ud4DQD8/8f/AwD+/uPz//8PAPgB3AAAHwAAAAAAAAAAAAAAAAAAAAAAgIDf////AAD8+///h//+/////f8/AACCM/4fAAAIM+D//x8I/ufz///8PwLwPAAAAPD///+DAQYAAPAHgABA+P///3+QBMD//3//fwB/0n8A7gCemMEbg3K2gQn0/4/P////ywIA//8DeHj+fwD//n/uBwD4/zegAABgAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACI32fwP+Afh/AAAAAAAAAAAAAAAAAAAAAAAAAL//////////B5D///f7L+fH/////+9/gAAFAAAAAQAAAADOt//ffwCAC/5//7569uw3MEABs///////////////A/////v7/v0HAAAAAAAAAAAAAGD/73/g///////////H////////////////D+x/AgE4/v///3///78AAAAAAAAAAAAA+P///z//sL/+PwD83///3///f8f/+z8AAN//f77///8P4P///3/2///7///////////t////////AQAA+P+f+R+AAIB/7z/H8cAAEADx8P8AAAAAAMD//P//////v//////4//v//78JAADA/z8AwAcAAGAAAwDYE/gf4DMgAEQAA+C///H////4/2cAAAAAAAAAAAAAAAAAAAAAAAAA8P//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAAAAAAA////DwAAAAAAAAD/////////////////////////////////////fyAAAADgAAAAAAAAAAAAAP/fAwAAAAAAAAAAAAgAAAAAA////////////////////////////////////////wP8//////8DwAEAAP7//////////////////////////////////wEAAAAAAAAAAAAAAAAAAAAAAID//////////////////////38A+P//////////////////////////////////BwAAAAAAAAAAAAAAAID/HwAAAAAAAAAAgAAAAAAAAAAAgP//PwAAAAAAAAAAAAAAAAAAwAD4/3/h////Ah6A////P5TQ//////////7f/wPg8Hj4foTD//n/////DwDw/38iXsAR8AH8kOP+HwAA7PcDKsDzAwAAAMBbsv7X////AAAAAAAAAAAAAAAoIN7h//9//sP/wQQ6BAD+bcAz4BkAwABx+P////8zDwAAAAAAAAAAAACA/xcA/Mff94MwMvr/BwAAAID///8//v3//3v+//8b/h8A2AfgAwB8////AOA/8/8//wP4f2Jj0svn/2t+//wPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwP9/AAD9/////49vePz+syCIcBgA8O830/8+APb////7/zwAAMAP/h9A/AHAAQDAAQDc/wEAyPx5gAN9ABAACAAAAAD+BxwA4P//JPzgAT0AfvTu/wEAwAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAADg///P2P////////8D/7/++f3//wwA6P3//////+/P/////////8f8//////////////////8PCAAAAMO2b/ZtA/if/w08AAAAAP7///////+/+R//j//nf/w//p/////hf3z+9/kfwP/////////////////z5////v/v///+/+////7/z///+f+///8b/P/////zP/j/////////2Pz////////////////////mf/7/BwAAAAAz+8wAAAAAAAAAAP6N///////////////9//z///9/AAAAAAAAAAD+//8P//v//////////////z/8///////////////3//9/AAAAOP//////////////////////+////z8AAAAAAAAA/P///f//////JwD///////////////////8fAMD//////wF+APj9fr/3/P//PzD5+Z997//9/wD8AjiAdu4A6Lt/PAMAAACQ8f//////r+F/AKj/P/Lv/////4MAAEg4BBQAACAAAIAAUHgAAAAAANPv8P/////7//8DAPD//wcABQAAAPD///8BAAAAAP8HAAAAAAAAAAAAAAAA8P8DAAAAAAAAAAAAgAAAAAAAAAAAAPz/////AwD4///5//////8BAAB8B/7////H/wHA/3/vf58/EDATAAD6//8PAACQ/////g8ggAAAAOD///0DAIAH+B/A//8P4P8AgAODgx//P/8DABgMj/9nP9j/5/0BAOQAdxY//wGAB/s/fA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA","a":{"!":[8515,27744],"!=":[7448,7456,8688,8710,8877,8899,9066,9091,9263,9293,9467,9489,18831,18839,29356,29379,29554,29577,29752,29778,29958,29989,30171,30194],"%":[8540,8541,27769,27770],"%=":[8541,27770],"&":[8481,27710],"&*":[8497,27726],"&=":[8482,27711],"*":[8497,8498,8512,8513,27726,27727,27741,27742],"*=":[8513,27742],"+":[8476,8477,27705,27706],"+=":[8477,27706],"-":[8514,8549,8550,27743,27778,27779],"-=":[8550,27779],"..":[8533,8535,8536,8538,9711,9713,9909,9910,27762,27764,27765,27767],"..=":[8537,8539,9714,9911,27766,27768],"/":[8501,8502,27730,27731],"/=":[8502,27731],"<":[7453,7458,8707,8712,8896,8901,9088,9093,9288,9295,9486,9491,18836,18841,29375,29381,29573,29579,29774,29780,29983,29991,30190,30196],"<<":[8545,27774],"<<=":[8546,27775],"<=":[7453,7458,8707,8712,8896,8901,9088,9093,9288,9295,9486,9491,18836,18841,29375,29381,29573,29579,29774,29780,29983,29991,30190,30196],"==":[7448,7456,8688,8710,8877,8899,9066,9091,9263,9293,9467,9489,18831,18839,29356,29379,29554,29577,29752,29778,29958,29989,30171,30194],">":[7453,7458,8707,8712,8896,8901,9088,9093,9288,9295,9486,9491,18836,18841,29375,29381,29573,29579,29774,29780,29983,29991,30190,30196],">=":[7453,7458,8707,8712,8896,8901,9088,9093,9288,9295,9486,9491,18836,18841,29375,29381,29573,29579,29774,29780,29983,29991,30190,30196],">>":[8547,27776],">>=":[8548,27777],"?":[46,592,8383,8552,8716,8905,9097,9299,9495,10717,24080,27781,29385,29583,29784,29995,30200],"?sized":[46,8383,8716,8905,9097,9299,9495,24080,29385,29583,29784,29995,30200],"[":[8510,8511,27739,27740],"[]":[8510,8511,27739,27740],"]":[8510,8511,27739,27740],"^":[8485,27714],"^=":[8486,27715],"assume":[7791,22005],"atime":[21603],"available_concurrency":[35437],"basename":[29077],"birthtime":[21654],"btime":[21654],"chdir":[20810],"chmod":[21773],"compare_and_swap":[34748,34760],"copyfile":[21646],"copyfileex":[21646],"cp":[21646],"createdirectory":[21650],"createhardlink":[21691],"deletefile":[21764],"dirname":[29150],"drop_while":[172,8353,8848,9037,9232,9436,9627,23868,29522,29720,29924,30137,30337],"errno":[22847],"fchmod":[21774],"fclonefileat":[21646],"fcopyfile":[21646],"fdatasync":[21797],"filter_map":[34618,34619,34620,34621,34622,34623],"findfirstfile":[21750],"findnextfile":[21750],"flatmap":[28130],"foldl":[108,8293,8778,8967,9161,9363,9557,23502,29452,29650,29853,30064,30267],"foldr":[165,8348,8841,9030,9225,9429,9620,23812,29515,29713,29917,30130,30330],"frac_1_sqrt_tau":[7530,7556,7596,7636,20907,20933,20973,21013],"fsync":[21796],"ftcreationtime":[21654],"ftlastaccesstime":[21603],"ftlastwritetime":[21729],"futimens":[21776],"futimes":[21776],"getcurrentdirectory":[20763],"getcwd":[20763],"getfinalpathnamebyhandle":[21630],"getlasterror":[22847],"gettemppath":[20818],"gettemppath2":[20818],"hardware_concurrency":[35437],"in6addr_any":[24285],"in6addr_any_init":[24285],"in6addr_loopback":[24271],"in6addr_loopback_init":[24271],"inaddr_any":[24284],"inject":[108,8293,8778,8967,9161,9363,9557,23502,29452,29650,29853,30064,30267],"len":[21138],"linkat":[21691],"ls":[21750],"lstat":[21795],"memcpy":[7932,9671,22146,30679],"memmove":[7931,9670,22145,30676],"memset":[8097,9698,22311,24184,30775,30776],"mkdir":[21650],"movefile":[21765],"movefileex":[21765],"mtime":[21729],"mv":[21765],"num_cpus":[35437],"opendir":[21750],"popcnt":[25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782],"popcount":[25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782],"pwd":[20763],"realpath":[21630],"removedirectory":[21762],"reverse":[163,8346,8839,9028,9223,9427,9618,23805,29513,29711,29915,30128,30328],"rm":[21764],"rmdir":[21762],"setcurrentdirectory":[20810],"setcurrentdirectoryw":[20810],"setfileattributes":[21773],"setfileinformationbyhandle":[21774],"setfiletime":[21776],"stat":[21722],"stream":[7401,18033],"strlen":[21138],"synccell":[10557,34183],"syncwrapper":[10557,34183],"unique":[10557,34183],"unlink":[21764],"{:?}":[331,7707,21409],"{}":[338,7714,21416],"|":[8483,27712],"|=":[8484,27713]}}],["wiwiwiwiwi",{"t":"","n":[],"q":[],"i":"","f":"","D":"`","p":[],"r":[],"b":[],"c":"OjAAAAAAAAA=","e":"OjAAAAEAAAAAAAAAEAAAAAAA"}]]')); +var searchIndex = new Map(JSON.parse('[["wiwi",{"t":"CCQCCQCCCCCCCCGPPSJJNNHHHNNNNNNNNSGFPPPSJSJSNNNNHHNNNNONNNNOONNNNNNNHHTTKKKKKKTTTTKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKTTKKKKKKKKKTKKKKKKKRKKKKRKKTNNMMNNNNMMMMMNNNNMNNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNNMMMNNNNNNMNNMNNMNNMMNNMMNNMMMMNNKKPKYGKYKKKKYEPRRKKKKKKKKKKRRKRRKEPEPGKYRRRPRKYKYFFGKKEPFKKKKKKFNNHHNNNMMQQQNMMMQNNMNNNMNNNNQQQNNNQQQQHMNQQMNNMNNQNNNNNNMMNNHQQMMNNNNNHNNNMMMNNNNNNNNNQNNNNNNNNNNNNNNNMMNNNQMNNNNNMNQQNNHNNNNEEENNHHNNNQNHHNNMMHHNNNNMMNNQNCQHNFFFFFCCCCCCQCCCCCCCQFKFKFIFHMHNMNNHMMNNHHNNKKPGPRKMMNMFFPFFFPFFGFCCCCCOFFFFFFFFFFFGFFFFFFFPFFFFFPFFFOOFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCFFFFGFKPKYFFFFFKPFFFPKKKPKIPKKKMMMMMMMMMHHHNNMFFFFFFFFFFFFKFFFKRRRFFFFFFFFKFFFFFFFMHHHHHHMMMMMMMHHFFFFRFFFKFFFFFFFFFFFFFFFFFFFHHHMHHHHCFFFFFPKPKPKGKRFMMNNNMMNNNNNNFFFIFKMFFKKMMNNFFFFFCCCCCQQCQQCCCQQCCCQQQQQQCQQQCQCCCCCCQCQQCCCCCCCCQQQCCCCQQCQCQCCCCQCQCCQCCCCCCCCCQCCCQQQCCCCCCCQQCQQFKKFIFMNMNNMMNNNNKFMHHQQCFSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSHHHHSSSSSSIISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSHHHHHHSSSSSSSSSSSSSSSSSSSSSSSSHHHFFFFFFFFFFFFFFFIIIIHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFHOOOOFFHHHHHPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPHQQKFRKRRHMMNKKMMFFFFFFFFFFFFFFFFSFSFFFSHHHHKYKMNMKYPPPKYGKYKYFNMMNNNNHNHHHNHHHHHNMKKRRKKGKKKMMMHMMMKYMKFFNNNNNNNNNNNNNHHNNNNNNCSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSFFFFFIIIIIIIIIIICIIIIIGCFFFFNNNNNNNNNNNNNNNNFFGFKPKYFFFFFKPFFFPKKKPKIPKKKMMMMMMMMMHHNNMKFRKKRRRFFFHMHMQHMHHKFKYKRFMMMNNMNNNNNNNNNNNNNNHHHHHSSSSSSSSSSKRHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHPHGHHHHPHHHHHHPHHPHHHHHFHHHHHHHFHHHHGHHQQHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFFSSFFFFFFKFFKKFFFFFKFKFFFRKRRKFFFFFFKFFFFFFFKFFKFFKKFNNNNNNMNNHNNNNNNNNNHNNNMNNNNNNNNNNNMNHHMNNNNNNMNNNNNNNNNNNNNNNNNNNMMNNNHHNNNNNNMNNHHHNNNNNNNNNMHMNNNNNNNNNNHNYKKYKRKKKFFKKKYKKKKKKYMFFFUKHHHOHHHHHOHHHQHOHHHHHHNHHOHHFPPPGFFGPPPPGFFPPPPPGPGPPPFIIIIIIIIIIIIPFFPFPFFPPKKKKKKKKKKKKGPRRKPPGKGKKKKKKKPKKKKPKKKKKKKRRRRRRRRRRRRRRRRFKFFFFFKKKRRKKKKKKRKRPFRPMMMMMMMMMMMMMMMNMMMMMOOOMMMMMMMMMMMMMMMMOOMMMFFFPGPFFFFKKNNNNNNNNNNNNNNNNNNNNNNNNNHHCHHHHHHHHHHHHHHHHHHHHHHHHHHFKQCCCCCKKKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRKYKYGKKPKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNNNQNNKKKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRKYKYGKKPKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNNNQNNKKKYKYYKYKKKYPRRKKKKKKKYKRKRRKPPGKYRKYKYGKKPKKKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNMMNNQNNKKKYKYYKYKKKYPRRKKKKKKKKYKKRRKRRKPPGKYRRRKYKYGKKPKKKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNMNNNNNNNNNHHNNNQNNNXXQNNNNMMNNQNNKKKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRKYKYGKKPKKNNHHNXNNMMQXNMMMQXXNNMNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXQNNNNNNQNNEEEEEEEEEEEEEEEEEFFRFKHQQHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHGPPFFFKFKFFFFFKPNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOMNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNOOOMNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNFFFOOOPFFFPGRTFFRKFKKKKKCNNIIIIIIIIIIIIIIMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIICCCQNNMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIRKKKMMMMMMMMMRRRRRRRRRKKKRMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMRRRRRRRRRFRRRRRRRRRFKKKKKKKKRRRMMMMMMMMMMMMMMIIIIIIIIIIIIIIMIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMMMMMMMMMMIIIIIIIMMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMQMMMMMMMMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMMMMMMMMMMRRRRRRRRKKRRMMMMMMMMMMMMMMMMMMMMFFFFFFFFFFFRFFRFFFFFFFFKKFFFFFFFMNNNNNHHHHHHMMMMMMNCHNNNHNHHFFFFRFFFKFFFFFFFFFFFFFFFFFFFHHMHHHHHCHFFFFFPKPKPKGKRFMMNNNMMNNNNNNFCSSSPPFFFFFFFFFFFFGPPPHHHFFFPGFFPFQFFSSSSSSSSSSQHHHSCHHSSCCCCCQQCQCCCCCQQCCCCQQQQQQCQQQQCCQQQCCCCCCQCQQQCCCCCCCCCQQQCCQCCQQCQCQCCCCQCCQCCCCCCQQCCCCCCCCQCCCQCQQQCCCCCQQCCQQQFKFKFIFFNNHMNHNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNHNNNNHNNNNHNNNNNNNNNNNNNNNNNNNNNNKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNHHQQQQQQQQQQCFSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSHHHHSSSSSSIISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSISSSSSHHHHHHSSSSSSSSSSSSSSSSSSSSSSSSHHHFFFFFFFFFFFFFFFIIIIHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHOOOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNHNNNNNNNHNNNNPPPKPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPFPPPPPPPPPPPPPPPPPPPPRPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPNNNNNNNNNNNNNNNNNNNNNMHNNNNNNNNNNNNNNMNNMMNNNNNMMNNNNNNNNNNNNQQKFRKRRNNNNNNNHNMNMNNNNNNNFFGPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKPGPRKNNNNNNMNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFSFSFFFSNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKYKMNMKYPPPKYGKYKYFNNNNNNNNNNNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNHNHHHNHHHHHNMNNNNNNNNNNNNNPFFFGPPFFPFFGPFNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNOFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFGFFFFFFFPFFFFFPFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONFFFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFGFFFFFFFFPPFFFFFGFFPPFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNOFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKRRKKGKKKMMNNNNNNNNNNMNNNNHMNNNNNMNMNNKYMFFFPPFGFFHHNNNNNNNNNNNNNNNNNCHHNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNHNNNNNNNNNHHHNNNNNHHNNNNNNNNNNNNNNNNNNNNNNNNHHHHSSSSSSSSKFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNNNCSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSCSSSSSSSSSSSSSSSSSSSSSSSSSFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIICIIIIIGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFFFFFFNNNNNNNNNNGFKPKYFFFFFKPFFFPKKKPKIPKKKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMMMMMMNNNNNNNHNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNMNNFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNHNNNHHNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNHNNNNNNHHNNHNNNNNNNHHHHNNNNNNNHNNNNHNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNKFRKKRRRFFFHMHNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNQHMNNNNHHNNNNNNNNNNNNNNKFFKYKRFFNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNHHHHHSSSSSSSSSSKRHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHPHGHHHHPHHHHHHPHHPHHHHHFHHHHHHHFHHHHGHHNNNNNNNNNNNNNNNNQQNNNNNNNNNNNNHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHPPPPFFPKFFFFPPPPPFPPFPPFGPPPPPPFPPPFFPKFFPPPPPPPPPPIKPFPIKGFFPPFFFFFFPFPPPPPKPFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNHNNNNNNNNNNNHNNNNNMNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNHNMNNNNNNNNNNNHNNNNNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKKNNNNMMMNNNNMNNNNNNNNNMNNNNNNMNNNNSSFFFFFFKFFKKFFFFFKFKFFFRKRRKFFFFFFKFFFFFFFKFFKFFKKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHNNNNNNNNMNNHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMHMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNYKKYKRKKKFFKKKYKKKKKKYMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTFFTFUTTKTNHHHONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNHHNNNNNNNNNNNHHNNNNNNNNNNNOHHHNNQNHOHHHNNNNNNNHHNNNNNHNHNNNNNNNNNNNNNNNHOHNHNFPTTTPPFPFGFFGRTTPPPPGPGFFFFKTTFPPPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTPGPGPTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTPPFIIIIIIIIIIIIPFFPFPFFPPKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNKKKKKKKKKKKGPRRKPPGKGKKKKKKKPKKKKPKKKKKKKRRRRRRRRRRRRRRRRFKFFFFFKKKRRKKKKKKRKRPFRPMMNNNNMMMMMMMMMNNNNNNNNNNNNNNNNNNNNMNNMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMMNOOOMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMNNNNNNMNNNNNNMMMNMMMMNNNNOOMNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFPGPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCCCCKKFKKFIMNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNMNNNNNNNNNNNNCCCCKMMMMMMMMMMMMMMMMMKKKMMMMMMMMKKFNNNNMNNNNNMNNMNNNNNOOIINNNNNININIIIIOOOOOOOOOOOOOOOOFINNNNIIIIIIIIIIIIIICCCCCCCCKKMMMMKKKKKKKKMMMMHHMMMMHMMMMMMMMMHMMMMMMMMMNNMMHMNMNKKFKKFIMMMMGGFFFPFPFFFFFFFPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNONNNNNNNOOKKFKKKKKKKKKKKKFKIMMMMMMMNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNNMMMMMMNMNKKMNMMMMMMMHMMMMMIIIIIIIIIIIIKIMMFGPFPFIKPKHNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNHNNNNNHHHNHNNNNNNNNNNNNNNNNHQFGFPPPFFSSPPFFGPFPFPPPPHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNFFNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNCCCCCKKFKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNNNQNNKKFKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNNNQNNKKFKYKYYKYKKKYPRRKKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNMMNNQNNKKFKYKYYKYKKKYPRRKKKKKKKKYKKRRKRRKPPGKYRRRRKYKYGKKPFKKKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMMNNNXNNQQQNNNMMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNMNNNNNNNNNHHNNNQNNNXXMMQNNNNMMNNQNNKKFKYKYYKYKKKYPKKKKKKYKRKRRKPPGKYRRKYKYGKKPFKKKKFNNHHNXNNMMQXNMMMQXXNNMNNNMNNNNQQQQQNNNMQXXHMNQMNNMNNQNNNNNNNNQQMNNNXNNQQQNNNMMNNNNNNNNNQQNNNNNNNNNNNNNQNNMMNNNQMNNNNNNNNNNNNNNHHNNNQNNNXXMMQNNNNNNQNNEEEEEEEEEEEEEEEEEFFFFFFFFFFTFTFKHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNONOONONOONNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFTRFKNNHQQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNHNNHNHNHNHNNNNNNNHNNNNNHHNHHNHNNNNNNNNNNNNNNHNNNNHHNNNNNNHNHNHNHNNHNHNNHNHNNNNNNNNNNNNNNNNHHHHHNHNHNHNFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPFFFPGNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNTRTFFRKFKKKKKKNNNCNNMMMIIIIIIIIIIIIIINMNMMMIIIIIIIIIIIIIIIIIIIIIIIIIIIINIIIIIIIMNMMIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIINCCCNQMNNNMMMNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIRKKKMMMMMMMMMRRRRRRRRRKKKRMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMRRRRRRRRRTFRRRRRRRRRFKKKKKKKKRRRMMNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMMNNNNNNNNNNNNNNNMNMNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNIIIIIIIIIIIIIINNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIINNNNNMNNMNNMNNMNNNNNMNNMMNNMNNNNNMNNMNNMNNIIIIIIIMMNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIINNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMMNNNNNNNNNNMMMNNNNNNNNNNNNMMMNNNNNNNNNNNNMMNNNNNNNNNNMMMNNNNNNNNNNNNMMMNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNMNNNNNMMNNNNNNNNNNMNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNMMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNMMNNNNNNNNNNMMNNNNNNNNNNNNNNNNNNIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIMMNNMMNNMMNNMNNNNNMMNNMMNNRRRRRRRRKKRRMMMMMMMMMMMMMMMMMMMMFFFFFFFFFKFFFKRRRFFFFFFFFKFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHHHMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFRFFFKFFFFFFFFFFFFFFFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHMHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFFFPKPKPKGKRFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNMNNNMNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFFIFKNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMNNNNNNNNNNNNNNNNNNNNNNNFFFFPPFFIFFFFFSPPFFFFPFFFFFGIFFPNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNCNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSPPFFFFFFFFFFFFGPPPNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNPPPPPFFFFGFFFPFGGNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNFFKFPGFFPKFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQNNNNNNNNNNNNNNNNNNNNNNNNNNMMNNNNNNNNNNFFPFFPIFFFFNNHNNNNNNNNNNNNNNNNNNNNNNNNNHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHHHHNNHNNHHHHNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNHFFTTTTTFFFSTTNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNSSSSSSSSSSSSFFFFFNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNQFFNNNNNNNNNNNNNNNNNNNNNNNN","n":["_changelog","encoding","export_all_submodules","h","num","panic","prelude","rust_alloc","rust_core","rust_std","util","util_unsafe","hex","z85","DecodeError","InvalidChar","InvalidLength","TABLE_ENCODER_LEN","TABLE_ENCODER_LOWER","TABLE_ENCODER_UPPER","borrow","borrow_mut","decode_hex","encode_hex","encode_hex_upper","fmt","","from","into","to_string","try_from","try_into","type_id","BINARY_FRAME_LEN","DecodeError","EncodedReprInfo","FrameOverflow","InvalidChar","InvalidLength","STRING_FRAME_LEN","TABLE_DECODER","TABLE_DECODER_LEN","TABLE_ENCODER","TABLE_ENCODER_LEN","borrow","","borrow_mut","","decode_z85","encode_z85","eq","fmt","","for_input_len","frames","from","","into","","needed_capacity","remainder","to_string","try_from","","try_into","","type_id","","H","h","ALIGN","ALIGN_USIZE","Add","AddCarrying","AddChecked","AddOverflowing","And","ArrayConversions","BITS","BITS_USIZE","BYTES","BYTES_USIZE","Base","CountBits","Div","DivChecked","DivFloat","DivInt","DivOverflowing","FromF32Lossless","FromF32Lossy","FromF64Lossless","FromF64Lossy","FromI128Lossless","FromI128Lossy","FromI16Lossless","FromI16Lossy","FromI32Lossless","FromI32Lossy","FromI64Lossless","FromI64Lossy","FromI8Lossless","FromI8Lossy","FromIsizeLossless","FromIsizeLossy","FromU128Lossless","FromU128Lossy","FromU16Lossless","FromU16Lossy","FromU32Lossless","FromU32Lossy","FromU64Lossless","FromU64Lossy","FromU8Lossless","FromU8Lossy","FromUsizeLossless","FromUsizeLossy","IntSigned","IntUnsigned","IntoF32Lossless","IntoF32Lossy","IntoF64Lossless","IntoF64Lossy","IntoI128Lossless","IntoI128Lossy","IntoI16Lossless","IntoI16Lossy","IntoI32Lossless","IntoI32Lossy","IntoI64Lossless","IntoI64Lossy","IntoI8Lossless","IntoI8Lossy","IntoIsizeLossless","IntoIsizeLossy","IntoU128Lossless","IntoU128Lossy","IntoU16Lossless","IntoU16Lossy","IntoU32Lossless","IntoU32Lossy","IntoU64Lossless","IntoU64Lossy","IntoU8Lossless","IntoU8Lossy","IntoUsizeLossless","IntoUsizeLossy","MAX","MIN","Mul","MulChecked","MulOverflowing","MulUnchecked","MulWidening","Narrowing","Neg","NegChecked","Not","ONE","Or","Rem","RemChecked","Shl","ShlChecked","Shr","ShrChecked","Signed","Sub","SubBorrowing","SubChecked","SubOverflowing","Unsigned","Widening","Xor","ZERO","add_carrying","","add_checked","add_overflowing","add_regular","","and_regular","","cast_signed","cast_unsigned","count_ones","count_zeros","div_checked","div_float","","div_int","","div_overflowing","div_regular","","from_be_bytes","from_bool","from_f32","from_f32_lossy","from_f64","from_f64_lossy","from_i128","from_i128_lossy","from_i16","from_i16_lossy","from_i32","from_i32_lossy","from_i64","from_i64_lossy","from_i8","from_i8_lossy","from_isize","from_isize_lossy","from_le_bytes","from_ne_bytes","from_u128","from_u128_lossy","from_u16","from_u16_lossy","from_u32","from_u32_lossy","from_u64","from_u64_lossy","from_u8","from_u8_lossy","from_usize","from_usize_lossy","into_be_bytes","into_f32","into_f32_lossy","into_f64","into_f64_lossy","into_i128","into_i128_lossy","into_i16","into_i16_lossy","into_i32","into_i32_lossy","into_i64","into_i64_lossy","into_i8","into_i8_lossy","into_isize","into_isize_lossy","into_le_bytes","into_ne_bytes","into_u128","into_u128_lossy","into_u16","into_u16_lossy","into_u32","into_u32_lossy","into_u64","into_u64_lossy","into_u8","into_u8_lossy","into_usize","into_usize_lossy","join","","leading_ones","leading_zeros","mul_checked","mul_overflowing","mul_regular","","mul_unchecked","mul_widening","neg_checked","neg_regular","","not_regular","","or_regular","","rem_checked","rem_regular","","shl_checked","shl_regular","","shr_checked","shr_regular","","split","","sub_borrowing","","sub_checked","sub_overflowing","sub_regular","","trailing_ones","trailing_zeros","widen","","xor_regular","","AsMut","AsRef","Borrowed","Clone","","Cow","Debug","","Display","DoubleEndedIterator","Drop","Eq","","Err","","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Future","Into","IntoFuture","","IntoIter","IntoIterator","Item","","Iterator","None","","Ok","","Option","Ord","","Output","","","Owned","","PartialEq","","PartialOrd","","PhantomData","PhantomPinned","Result","Send","Sized","Some","","String","Sync","ToOwned","ToString","TryFrom","TryInto","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","any","array_chunks","as_mut","as_ref","assert","assert_eq","assert_ne","by_ref","call","call_mut","call_once","cfg","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","copied","count","cycle","dbg","debug_assert","debug_assert_eq","debug_assert_ne","drop","","enumerate","eprint","eprintln","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fmt","","fold","for_each","forget","format","format_args","from","from_iter","fuse","ge","","gt","","identity","inspect","intersperse","intersperse_with","into","into_future","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","ne","","next","next_back","next_chunk","nth","nth_back","panic","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","poll","position","print","println","product","reduce","replace","rev","rfind","rfold","rposition","rust_alloc","rust_core","rust_std","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","swap","take","","take_while","to_owned","to_string","transmute","transmute_copy","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","unreachable","unzip","vec","","zeroed","zip","Drain","ExtractIf","IntoIter","Splice","Vec","alloc","borrow","boxed","collections","ffi","fmt","format","rc","slice","str","string","sync","task","vec","","AllocError","Allocator","Global","GlobalAlloc","Layout","LayoutErr","LayoutError","alloc","","alloc_zeroed","","allocate","allocate_zeroed","by_ref","dealloc","","deallocate","grow","grow_zeroed","handle_alloc_error","realloc","","shrink","Borrow","BorrowMut","Borrowed","Cow","Owned","","ToOwned","borrow","borrow_mut","clone_into","to_owned","Box","ThinBox","AllocError","BTreeMap","BTreeSet","BinaryHeap","CapacityOverflow","LinkedList","TryReserveError","TryReserveErrorKind","VecDeque","binary_heap","btree_map","btree_set","linked_list","vec_deque","layout","BinaryHeap","Drain","DrainSorted","IntoIter","IntoIterSorted","Iter","PeekMut","BTreeMap","Cursor","CursorMut","CursorMutKey","Entry","ExtractIf","IntoIter","IntoKeys","IntoValues","Iter","IterMut","Keys","Occupied","OccupiedEntry","OccupiedError","Range","RangeMut","UnorderedKeyError","Vacant","VacantEntry","Values","ValuesMut","entry","value","BTreeSet","Cursor","CursorMut","CursorMutKey","Difference","ExtractIf","Intersection","IntoIter","Iter","Range","SymmetricDifference","Union","UnorderedKeyError","Cursor","CursorMut","ExtractIf","IntoIter","Iter","IterMut","LinkedList","Drain","IntoIter","Iter","IterMut","VecDeque","CString","FromVecWithNulError","IntoStringError","NulError","c_str","CString","FromVecWithNulError","IntoStringError","NulError","Alignment","Arguments","Binary","Center","Debug","","DebugList","DebugMap","DebugSet","DebugStruct","DebugTuple","Display","Err","Error","Formatter","FromFn","Left","LowerExp","LowerHex","Octal","Ok","Pointer","Result","Right","UpperExp","UpperHex","Write","fmt","","","","","","","","","format","from_fn","write","write_char","write_fmt","write_str","Rc","UniqueRc","Weak","ArrayChunks","ArrayChunksMut","ArrayWindows","ChunkBy","ChunkByMut","Chunks","ChunksExact","ChunksExactMut","ChunksMut","Concat","EscapeAscii","Iter","IterMut","Join","Output","","","RChunks","RChunksExact","RChunksExactMut","RChunksMut","RSplit","RSplitMut","RSplitN","RSplitNMut","SliceIndex","Split","SplitInclusive","SplitInclusiveMut","SplitMut","SplitN","SplitNMut","Windows","concat","from_mut","from_mut_ptr_range","from_ptr_range","from_raw_parts","from_raw_parts_mut","from_ref","get","get_mut","get_unchecked","get_unchecked_mut","index","index_mut","join","range","try_range","Bytes","CharIndices","Chars","EncodeUtf16","Err","EscapeDebug","EscapeDefault","EscapeUnicode","FromStr","Lines","LinesAny","MatchIndices","Matches","ParseBoolError","RMatchIndices","RMatches","RSplit","RSplitN","RSplitTerminator","Split","SplitAsciiWhitespace","SplitInclusive","SplitN","SplitTerminator","SplitWhitespace","Utf8Chunk","Utf8Chunks","Utf8Error","from_boxed_utf8_unchecked","from_raw_parts","from_raw_parts_mut","from_str","from_utf8","from_utf8_mut","from_utf8_unchecked","from_utf8_unchecked_mut","pattern","CharArrayRefSearcher","CharArraySearcher","CharPredicateSearcher","CharSearcher","CharSliceSearcher","Done","DoubleEndedSearcher","Match","Pattern","Reject","ReverseSearcher","SearchStep","Searcher","","StrSearcher","haystack","into_searcher","is_contained_in","is_prefix_of","is_suffix_of","next","next_back","next_match","next_match_back","next_reject","next_reject_back","strip_prefix_of","strip_suffix_of","Drain","FromUtf16Error","FromUtf8Error","ParseError","String","ToString","to_string","Arc","Weak","LocalWake","Wake","wake","","wake_by_ref","","Drain","ExtractIf","IntoIter","Splice","Vec","alloc","any","arch","array","ascii","assert","assert_eq","assert_matches","assert_ne","assert_unsafe_precondition","async_iter","borrow","cell","cfg","cfg_match","char","clone","cmp","column","compile_error","concat","concat_bytes","concat_idents","const_format_args","convert","debug_assert","debug_assert_eq","debug_assert_ne","default","env","error","f128","f16","f32","f64","ffi","file","fmt","format_args","format_args_nl","future","hash","hint","i128","i16","i32","i64","i8","include","include_bytes","include_str","intrinsics","io","isize","iter","line","log_syntax","marker","matches","mem","module_path","net","num","ops","option","option_env","panic","","panicking","pat","pattern_type","pin","prelude","primitive","ptr","range","result","simd","slice","str","stringify","sync","task","time","todo","trace_macros","try","u128","u16","u32","u64","u8","ub_checks","unicode","unimplemented","unreachable","usize","write","writeln","AllocError","Allocator","GlobalAlloc","Layout","LayoutErr","LayoutError","alloc","alloc_zeroed","allocate","allocate_zeroed","by_ref","dealloc","deallocate","grow","grow_zeroed","realloc","shrink","Any","TypeId","type_id","type_name","type_name_of_val","asm","global_asm","x86_64","CpuidResult","_CMP_EQ_OQ","_CMP_EQ_OS","_CMP_EQ_UQ","_CMP_EQ_US","_CMP_FALSE_OQ","_CMP_FALSE_OS","_CMP_GE_OQ","_CMP_GE_OS","_CMP_GT_OQ","_CMP_GT_OS","_CMP_LE_OQ","_CMP_LE_OS","_CMP_LT_OQ","_CMP_LT_OS","_CMP_NEQ_OQ","_CMP_NEQ_OS","_CMP_NEQ_UQ","_CMP_NEQ_US","_CMP_NGE_UQ","_CMP_NGE_US","_CMP_NGT_UQ","_CMP_NGT_US","_CMP_NLE_UQ","_CMP_NLE_US","_CMP_NLT_UQ","_CMP_NLT_US","_CMP_ORD_Q","_CMP_ORD_S","_CMP_TRUE_UQ","_CMP_TRUE_US","_CMP_UNORD_Q","_CMP_UNORD_S","_MM_CMPINT_ENUM","_MM_CMPINT_EQ","_MM_CMPINT_FALSE","_MM_CMPINT_LE","_MM_CMPINT_LT","_MM_CMPINT_NE","_MM_CMPINT_NLE","_MM_CMPINT_NLT","_MM_CMPINT_TRUE","_MM_EXCEPT_DENORM","_MM_EXCEPT_DIV_ZERO","_MM_EXCEPT_INEXACT","_MM_EXCEPT_INVALID","_MM_EXCEPT_MASK","_MM_EXCEPT_OVERFLOW","_MM_EXCEPT_UNDERFLOW","_MM_FLUSH_ZERO_MASK","_MM_FLUSH_ZERO_OFF","_MM_FLUSH_ZERO_ON","_MM_FROUND_CEIL","_MM_FROUND_CUR_DIRECTION","_MM_FROUND_FLOOR","_MM_FROUND_NEARBYINT","_MM_FROUND_NINT","_MM_FROUND_NO_EXC","_MM_FROUND_RAISE_EXC","_MM_FROUND_RINT","_MM_FROUND_TO_NEAREST_INT","_MM_FROUND_TO_NEG_INF","_MM_FROUND_TO_POS_INF","_MM_FROUND_TO_ZERO","_MM_FROUND_TRUNC","_MM_GET_EXCEPTION_MASK","_MM_GET_EXCEPTION_STATE","_MM_GET_FLUSH_ZERO_MODE","_MM_GET_ROUNDING_MODE","_MM_HINT_ET0","_MM_HINT_ET1","_MM_HINT_NTA","_MM_HINT_T0","_MM_HINT_T1","_MM_HINT_T2","_MM_MANTISSA_NORM_ENUM","_MM_MANTISSA_SIGN_ENUM","_MM_MANT_NORM_1_2","_MM_MANT_NORM_P5_1","_MM_MANT_NORM_P5_2","_MM_MANT_NORM_P75_1P5","_MM_MANT_SIGN_NAN","_MM_MANT_SIGN_SRC","_MM_MANT_SIGN_ZERO","_MM_MASK_DENORM","_MM_MASK_DIV_ZERO","_MM_MASK_INEXACT","_MM_MASK_INVALID","_MM_MASK_MASK","_MM_MASK_OVERFLOW","_MM_MASK_UNDERFLOW","_MM_PERM_AAAA","_MM_PERM_AAAB","_MM_PERM_AAAC","_MM_PERM_AAAD","_MM_PERM_AABA","_MM_PERM_AABB","_MM_PERM_AABC","_MM_PERM_AABD","_MM_PERM_AACA","_MM_PERM_AACB","_MM_PERM_AACC","_MM_PERM_AACD","_MM_PERM_AADA","_MM_PERM_AADB","_MM_PERM_AADC","_MM_PERM_AADD","_MM_PERM_ABAA","_MM_PERM_ABAB","_MM_PERM_ABAC","_MM_PERM_ABAD","_MM_PERM_ABBA","_MM_PERM_ABBB","_MM_PERM_ABBC","_MM_PERM_ABBD","_MM_PERM_ABCA","_MM_PERM_ABCB","_MM_PERM_ABCC","_MM_PERM_ABCD","_MM_PERM_ABDA","_MM_PERM_ABDB","_MM_PERM_ABDC","_MM_PERM_ABDD","_MM_PERM_ACAA","_MM_PERM_ACAB","_MM_PERM_ACAC","_MM_PERM_ACAD","_MM_PERM_ACBA","_MM_PERM_ACBB","_MM_PERM_ACBC","_MM_PERM_ACBD","_MM_PERM_ACCA","_MM_PERM_ACCB","_MM_PERM_ACCC","_MM_PERM_ACCD","_MM_PERM_ACDA","_MM_PERM_ACDB","_MM_PERM_ACDC","_MM_PERM_ACDD","_MM_PERM_ADAA","_MM_PERM_ADAB","_MM_PERM_ADAC","_MM_PERM_ADAD","_MM_PERM_ADBA","_MM_PERM_ADBB","_MM_PERM_ADBC","_MM_PERM_ADBD","_MM_PERM_ADCA","_MM_PERM_ADCB","_MM_PERM_ADCC","_MM_PERM_ADCD","_MM_PERM_ADDA","_MM_PERM_ADDB","_MM_PERM_ADDC","_MM_PERM_ADDD","_MM_PERM_BAAA","_MM_PERM_BAAB","_MM_PERM_BAAC","_MM_PERM_BAAD","_MM_PERM_BABA","_MM_PERM_BABB","_MM_PERM_BABC","_MM_PERM_BABD","_MM_PERM_BACA","_MM_PERM_BACB","_MM_PERM_BACC","_MM_PERM_BACD","_MM_PERM_BADA","_MM_PERM_BADB","_MM_PERM_BADC","_MM_PERM_BADD","_MM_PERM_BBAA","_MM_PERM_BBAB","_MM_PERM_BBAC","_MM_PERM_BBAD","_MM_PERM_BBBA","_MM_PERM_BBBB","_MM_PERM_BBBC","_MM_PERM_BBBD","_MM_PERM_BBCA","_MM_PERM_BBCB","_MM_PERM_BBCC","_MM_PERM_BBCD","_MM_PERM_BBDA","_MM_PERM_BBDB","_MM_PERM_BBDC","_MM_PERM_BBDD","_MM_PERM_BCAA","_MM_PERM_BCAB","_MM_PERM_BCAC","_MM_PERM_BCAD","_MM_PERM_BCBA","_MM_PERM_BCBB","_MM_PERM_BCBC","_MM_PERM_BCBD","_MM_PERM_BCCA","_MM_PERM_BCCB","_MM_PERM_BCCC","_MM_PERM_BCCD","_MM_PERM_BCDA","_MM_PERM_BCDB","_MM_PERM_BCDC","_MM_PERM_BCDD","_MM_PERM_BDAA","_MM_PERM_BDAB","_MM_PERM_BDAC","_MM_PERM_BDAD","_MM_PERM_BDBA","_MM_PERM_BDBB","_MM_PERM_BDBC","_MM_PERM_BDBD","_MM_PERM_BDCA","_MM_PERM_BDCB","_MM_PERM_BDCC","_MM_PERM_BDCD","_MM_PERM_BDDA","_MM_PERM_BDDB","_MM_PERM_BDDC","_MM_PERM_BDDD","_MM_PERM_CAAA","_MM_PERM_CAAB","_MM_PERM_CAAC","_MM_PERM_CAAD","_MM_PERM_CABA","_MM_PERM_CABB","_MM_PERM_CABC","_MM_PERM_CABD","_MM_PERM_CACA","_MM_PERM_CACB","_MM_PERM_CACC","_MM_PERM_CACD","_MM_PERM_CADA","_MM_PERM_CADB","_MM_PERM_CADC","_MM_PERM_CADD","_MM_PERM_CBAA","_MM_PERM_CBAB","_MM_PERM_CBAC","_MM_PERM_CBAD","_MM_PERM_CBBA","_MM_PERM_CBBB","_MM_PERM_CBBC","_MM_PERM_CBBD","_MM_PERM_CBCA","_MM_PERM_CBCB","_MM_PERM_CBCC","_MM_PERM_CBCD","_MM_PERM_CBDA","_MM_PERM_CBDB","_MM_PERM_CBDC","_MM_PERM_CBDD","_MM_PERM_CCAA","_MM_PERM_CCAB","_MM_PERM_CCAC","_MM_PERM_CCAD","_MM_PERM_CCBA","_MM_PERM_CCBB","_MM_PERM_CCBC","_MM_PERM_CCBD","_MM_PERM_CCCA","_MM_PERM_CCCB","_MM_PERM_CCCC","_MM_PERM_CCCD","_MM_PERM_CCDA","_MM_PERM_CCDB","_MM_PERM_CCDC","_MM_PERM_CCDD","_MM_PERM_CDAA","_MM_PERM_CDAB","_MM_PERM_CDAC","_MM_PERM_CDAD","_MM_PERM_CDBA","_MM_PERM_CDBB","_MM_PERM_CDBC","_MM_PERM_CDBD","_MM_PERM_CDCA","_MM_PERM_CDCB","_MM_PERM_CDCC","_MM_PERM_CDCD","_MM_PERM_CDDA","_MM_PERM_CDDB","_MM_PERM_CDDC","_MM_PERM_CDDD","_MM_PERM_DAAA","_MM_PERM_DAAB","_MM_PERM_DAAC","_MM_PERM_DAAD","_MM_PERM_DABA","_MM_PERM_DABB","_MM_PERM_DABC","_MM_PERM_DABD","_MM_PERM_DACA","_MM_PERM_DACB","_MM_PERM_DACC","_MM_PERM_DACD","_MM_PERM_DADA","_MM_PERM_DADB","_MM_PERM_DADC","_MM_PERM_DADD","_MM_PERM_DBAA","_MM_PERM_DBAB","_MM_PERM_DBAC","_MM_PERM_DBAD","_MM_PERM_DBBA","_MM_PERM_DBBB","_MM_PERM_DBBC","_MM_PERM_DBBD","_MM_PERM_DBCA","_MM_PERM_DBCB","_MM_PERM_DBCC","_MM_PERM_DBCD","_MM_PERM_DBDA","_MM_PERM_DBDB","_MM_PERM_DBDC","_MM_PERM_DBDD","_MM_PERM_DCAA","_MM_PERM_DCAB","_MM_PERM_DCAC","_MM_PERM_DCAD","_MM_PERM_DCBA","_MM_PERM_DCBB","_MM_PERM_DCBC","_MM_PERM_DCBD","_MM_PERM_DCCA","_MM_PERM_DCCB","_MM_PERM_DCCC","_MM_PERM_DCCD","_MM_PERM_DCDA","_MM_PERM_DCDB","_MM_PERM_DCDC","_MM_PERM_DCDD","_MM_PERM_DDAA","_MM_PERM_DDAB","_MM_PERM_DDAC","_MM_PERM_DDAD","_MM_PERM_DDBA","_MM_PERM_DDBB","_MM_PERM_DDBC","_MM_PERM_DDBD","_MM_PERM_DDCA","_MM_PERM_DDCB","_MM_PERM_DDCC","_MM_PERM_DDCD","_MM_PERM_DDDA","_MM_PERM_DDDB","_MM_PERM_DDDC","_MM_PERM_DDDD","_MM_PERM_ENUM","_MM_ROUND_DOWN","_MM_ROUND_MASK","_MM_ROUND_NEAREST","_MM_ROUND_TOWARD_ZERO","_MM_ROUND_UP","_MM_SET_EXCEPTION_MASK","_MM_SET_EXCEPTION_STATE","_MM_SET_FLUSH_ZERO_MODE","_MM_SET_ROUNDING_MODE","_MM_SHUFFLE","_MM_TRANSPOSE4_PS","_SIDD_BIT_MASK","_SIDD_CMP_EQUAL_ANY","_SIDD_CMP_EQUAL_EACH","_SIDD_CMP_EQUAL_ORDERED","_SIDD_CMP_RANGES","_SIDD_LEAST_SIGNIFICANT","_SIDD_MASKED_NEGATIVE_POLARITY","_SIDD_MASKED_POSITIVE_POLARITY","_SIDD_MOST_SIGNIFICANT","_SIDD_NEGATIVE_POLARITY","_SIDD_POSITIVE_POLARITY","_SIDD_SBYTE_OPS","_SIDD_SWORD_OPS","_SIDD_UBYTE_OPS","_SIDD_UNIT_MASK","_SIDD_UWORD_OPS","_XABORT_CAPACITY","_XABORT_CONFLICT","_XABORT_DEBUG","_XABORT_EXPLICIT","_XABORT_NESTED","_XABORT_RETRY","_XBEGIN_STARTED","_XCR_XFEATURE_ENABLED_MASK","__cpuid","__cpuid_count","__get_cpuid_max","__m128","__m128bh","__m128d","__m128h","__m128i","__m256","__m256bh","__m256d","__m256h","__m256i","__m512","__m512bh","__m512d","__m512h","__m512i","__mmask16","__mmask32","__mmask64","__mmask8","__rdtscp","_addcarry_u32","_addcarry_u64","_addcarryx_u32","_addcarryx_u64","_andn_u32","_andn_u64","_bextr2_u32","_bextr2_u64","_bextr_u32","_bextr_u64","_bextri_u32","_bextri_u64","_bittest","_bittest64","_bittestandcomplement","_bittestandcomplement64","_bittestandreset","_bittestandreset64","_bittestandset","_bittestandset64","_blcfill_u32","_blcfill_u64","_blci_u32","_blci_u64","_blcic_u32","_blcic_u64","_blcmsk_u32","_blcmsk_u64","_blcs_u32","_blcs_u64","_blsfill_u32","_blsfill_u64","_blsi_u32","_blsi_u64","_blsic_u32","_blsic_u64","_blsmsk_u32","_blsmsk_u64","_blsr_u32","_blsr_u64","_bswap","_bswap64","_bzhi_u32","_bzhi_u64","_cvtmask16_u32","_cvtmask32_u32","_cvtmask64_u64","_cvtmask8_u32","_cvtu32_mask16","_cvtu32_mask32","_cvtu32_mask8","_cvtu64_mask64","_fxrstor","_fxrstor64","_fxsave","_fxsave64","_kadd_mask16","_kadd_mask32","_kadd_mask64","_kadd_mask8","_kand_mask16","_kand_mask32","_kand_mask64","_kand_mask8","_kandn_mask16","_kandn_mask32","_kandn_mask64","_kandn_mask8","_knot_mask16","_knot_mask32","_knot_mask64","_knot_mask8","_kor_mask16","_kor_mask32","_kor_mask64","_kor_mask8","_kortest_mask16_u8","_kortest_mask32_u8","_kortest_mask64_u8","_kortest_mask8_u8","_kortestc_mask16_u8","_kortestc_mask32_u8","_kortestc_mask64_u8","_kortestc_mask8_u8","_kortestz_mask16_u8","_kortestz_mask32_u8","_kortestz_mask64_u8","_kortestz_mask8_u8","_kshiftli_mask16","_kshiftli_mask32","_kshiftli_mask64","_kshiftli_mask8","_kshiftri_mask16","_kshiftri_mask32","_kshiftri_mask64","_kshiftri_mask8","_ktest_mask16_u8","_ktest_mask32_u8","_ktest_mask64_u8","_ktest_mask8_u8","_ktestc_mask16_u8","_ktestc_mask32_u8","_ktestc_mask64_u8","_ktestc_mask8_u8","_ktestz_mask16_u8","_ktestz_mask32_u8","_ktestz_mask64_u8","_ktestz_mask8_u8","_kxnor_mask16","_kxnor_mask32","_kxnor_mask64","_kxnor_mask8","_kxor_mask16","_kxor_mask32","_kxor_mask64","_kxor_mask8","_load_mask16","_load_mask32","_load_mask64","_load_mask8","_lzcnt_u32","_lzcnt_u64","_mm256_abs_epi16","_mm256_abs_epi32","_mm256_abs_epi64","_mm256_abs_epi8","_mm256_abs_ph","_mm256_add_epi16","_mm256_add_epi32","_mm256_add_epi64","_mm256_add_epi8","_mm256_add_pd","_mm256_add_ph","_mm256_add_ps","_mm256_adds_epi16","_mm256_adds_epi8","_mm256_adds_epu16","_mm256_adds_epu8","_mm256_addsub_pd","_mm256_addsub_ps","_mm256_aesdec_epi128","_mm256_aesdeclast_epi128","_mm256_aesenc_epi128","_mm256_aesenclast_epi128","_mm256_alignr_epi32","_mm256_alignr_epi64","_mm256_alignr_epi8","_mm256_and_pd","_mm256_and_ps","_mm256_and_si256","_mm256_andnot_pd","_mm256_andnot_ps","_mm256_andnot_si256","_mm256_avg_epu16","_mm256_avg_epu8","_mm256_bcstnebf16_ps","_mm256_bcstnesh_ps","_mm256_bitshuffle_epi64_mask","_mm256_blend_epi16","_mm256_blend_epi32","_mm256_blend_pd","_mm256_blend_ps","_mm256_blendv_epi8","_mm256_blendv_pd","_mm256_blendv_ps","_mm256_broadcast_f32x2","_mm256_broadcast_f32x4","_mm256_broadcast_f64x2","_mm256_broadcast_i32x2","_mm256_broadcast_i32x4","_mm256_broadcast_i64x2","_mm256_broadcast_pd","_mm256_broadcast_ps","_mm256_broadcast_sd","_mm256_broadcast_ss","_mm256_broadcastb_epi8","_mm256_broadcastd_epi32","_mm256_broadcastmb_epi64","_mm256_broadcastmw_epi32","_mm256_broadcastq_epi64","_mm256_broadcastsd_pd","_mm256_broadcastsi128_si256","_mm256_broadcastss_ps","_mm256_broadcastw_epi16","_mm256_bslli_epi128","_mm256_bsrli_epi128","_mm256_castpd128_pd256","_mm256_castpd256_pd128","_mm256_castpd_ph","_mm256_castpd_ps","_mm256_castpd_si256","_mm256_castph128_ph256","_mm256_castph256_ph128","_mm256_castph_pd","_mm256_castph_ps","_mm256_castph_si256","_mm256_castps128_ps256","_mm256_castps256_ps128","_mm256_castps_pd","_mm256_castps_ph","_mm256_castps_si256","_mm256_castsi128_si256","_mm256_castsi256_pd","_mm256_castsi256_ph","_mm256_castsi256_ps","_mm256_castsi256_si128","_mm256_ceil_pd","_mm256_ceil_ps","_mm256_clmulepi64_epi128","_mm256_cmp_epi16_mask","_mm256_cmp_epi32_mask","_mm256_cmp_epi64_mask","_mm256_cmp_epi8_mask","_mm256_cmp_epu16_mask","_mm256_cmp_epu32_mask","_mm256_cmp_epu64_mask","_mm256_cmp_epu8_mask","_mm256_cmp_pd","_mm256_cmp_pd_mask","_mm256_cmp_ph_mask","_mm256_cmp_ps","_mm256_cmp_ps_mask","_mm256_cmpeq_epi16","_mm256_cmpeq_epi16_mask","_mm256_cmpeq_epi32","_mm256_cmpeq_epi32_mask","_mm256_cmpeq_epi64","_mm256_cmpeq_epi64_mask","_mm256_cmpeq_epi8","_mm256_cmpeq_epi8_mask","_mm256_cmpeq_epu16_mask","_mm256_cmpeq_epu32_mask","_mm256_cmpeq_epu64_mask","_mm256_cmpeq_epu8_mask","_mm256_cmpge_epi16_mask","_mm256_cmpge_epi32_mask","_mm256_cmpge_epi64_mask","_mm256_cmpge_epi8_mask","_mm256_cmpge_epu16_mask","_mm256_cmpge_epu32_mask","_mm256_cmpge_epu64_mask","_mm256_cmpge_epu8_mask","_mm256_cmpgt_epi16","_mm256_cmpgt_epi16_mask","_mm256_cmpgt_epi32","_mm256_cmpgt_epi32_mask","_mm256_cmpgt_epi64","_mm256_cmpgt_epi64_mask","_mm256_cmpgt_epi8","_mm256_cmpgt_epi8_mask","_mm256_cmpgt_epu16_mask","_mm256_cmpgt_epu32_mask","_mm256_cmpgt_epu64_mask","_mm256_cmpgt_epu8_mask","_mm256_cmple_epi16_mask","_mm256_cmple_epi32_mask","_mm256_cmple_epi64_mask","_mm256_cmple_epi8_mask","_mm256_cmple_epu16_mask","_mm256_cmple_epu32_mask","_mm256_cmple_epu64_mask","_mm256_cmple_epu8_mask","_mm256_cmplt_epi16_mask","_mm256_cmplt_epi32_mask","_mm256_cmplt_epi64_mask","_mm256_cmplt_epi8_mask","_mm256_cmplt_epu16_mask","_mm256_cmplt_epu32_mask","_mm256_cmplt_epu64_mask","_mm256_cmplt_epu8_mask","_mm256_cmpneq_epi16_mask","_mm256_cmpneq_epi32_mask","_mm256_cmpneq_epi64_mask","_mm256_cmpneq_epi8_mask","_mm256_cmpneq_epu16_mask","_mm256_cmpneq_epu32_mask","_mm256_cmpneq_epu64_mask","_mm256_cmpneq_epu8_mask","_mm256_cmul_pch","_mm256_conflict_epi32","_mm256_conflict_epi64","_mm256_conj_pch","_mm256_cvtepi16_epi32","_mm256_cvtepi16_epi64","_mm256_cvtepi16_epi8","_mm256_cvtepi16_ph","_mm256_cvtepi32_epi16","_mm256_cvtepi32_epi64","_mm256_cvtepi32_epi8","_mm256_cvtepi32_pd","_mm256_cvtepi32_ph","_mm256_cvtepi32_ps","_mm256_cvtepi64_epi16","_mm256_cvtepi64_epi32","_mm256_cvtepi64_epi8","_mm256_cvtepi64_pd","_mm256_cvtepi64_ph","_mm256_cvtepi64_ps","_mm256_cvtepi8_epi16","_mm256_cvtepi8_epi32","_mm256_cvtepi8_epi64","_mm256_cvtepu16_epi32","_mm256_cvtepu16_epi64","_mm256_cvtepu16_ph","_mm256_cvtepu32_epi64","_mm256_cvtepu32_pd","_mm256_cvtepu32_ph","_mm256_cvtepu64_pd","_mm256_cvtepu64_ph","_mm256_cvtepu64_ps","_mm256_cvtepu8_epi16","_mm256_cvtepu8_epi32","_mm256_cvtepu8_epi64","_mm256_cvtne2ps_pbh","_mm256_cvtneebf16_ps","_mm256_cvtneeph_ps","_mm256_cvtneobf16_ps","_mm256_cvtneoph_ps","_mm256_cvtneps_avx_pbh","_mm256_cvtneps_pbh","_mm256_cvtpbh_ps","_mm256_cvtpd_epi32","_mm256_cvtpd_epi64","_mm256_cvtpd_epu32","_mm256_cvtpd_epu64","_mm256_cvtpd_ph","_mm256_cvtpd_ps","_mm256_cvtph_epi16","_mm256_cvtph_epi32","_mm256_cvtph_epi64","_mm256_cvtph_epu16","_mm256_cvtph_epu32","_mm256_cvtph_epu64","_mm256_cvtph_pd","_mm256_cvtph_ps","_mm256_cvtps_epi32","_mm256_cvtps_epi64","_mm256_cvtps_epu32","_mm256_cvtps_epu64","_mm256_cvtps_pd","_mm256_cvtps_ph","_mm256_cvtsd_f64","_mm256_cvtsepi16_epi8","_mm256_cvtsepi32_epi16","_mm256_cvtsepi32_epi8","_mm256_cvtsepi64_epi16","_mm256_cvtsepi64_epi32","_mm256_cvtsepi64_epi8","_mm256_cvtsh_h","_mm256_cvtsi256_si32","_mm256_cvtss_f32","_mm256_cvttpd_epi32","_mm256_cvttpd_epi64","_mm256_cvttpd_epu32","_mm256_cvttpd_epu64","_mm256_cvttph_epi16","_mm256_cvttph_epi32","_mm256_cvttph_epi64","_mm256_cvttph_epu16","_mm256_cvttph_epu32","_mm256_cvttph_epu64","_mm256_cvttps_epi32","_mm256_cvttps_epi64","_mm256_cvttps_epu32","_mm256_cvttps_epu64","_mm256_cvtusepi16_epi8","_mm256_cvtusepi32_epi16","_mm256_cvtusepi32_epi8","_mm256_cvtusepi64_epi16","_mm256_cvtusepi64_epi32","_mm256_cvtusepi64_epi8","_mm256_cvtxph_ps","_mm256_cvtxps_ph","_mm256_dbsad_epu8","_mm256_div_pd","_mm256_div_ph","_mm256_div_ps","_mm256_dp_ps","_mm256_dpbf16_ps","_mm256_dpbssd_epi32","_mm256_dpbssds_epi32","_mm256_dpbsud_epi32","_mm256_dpbsuds_epi32","_mm256_dpbusd_avx_epi32","_mm256_dpbusd_epi32","_mm256_dpbusds_avx_epi32","_mm256_dpbusds_epi32","_mm256_dpbuud_epi32","_mm256_dpbuuds_epi32","_mm256_dpwssd_avx_epi32","_mm256_dpwssd_epi32","_mm256_dpwssds_avx_epi32","_mm256_dpwssds_epi32","_mm256_dpwsud_epi32","_mm256_dpwsuds_epi32","_mm256_dpwusd_epi32","_mm256_dpwusds_epi32","_mm256_dpwuud_epi32","_mm256_dpwuuds_epi32","_mm256_extract_epi16","_mm256_extract_epi32","_mm256_extract_epi64","_mm256_extract_epi8","_mm256_extractf128_pd","_mm256_extractf128_ps","_mm256_extractf128_si256","_mm256_extractf32x4_ps","_mm256_extractf64x2_pd","_mm256_extracti128_si256","_mm256_extracti32x4_epi32","_mm256_extracti64x2_epi64","_mm256_fcmadd_pch","_mm256_fcmul_pch","_mm256_fixupimm_pd","_mm256_fixupimm_ps","_mm256_floor_pd","_mm256_floor_ps","_mm256_fmadd_pch","_mm256_fmadd_pd","_mm256_fmadd_ph","_mm256_fmadd_ps","_mm256_fmaddsub_pd","_mm256_fmaddsub_ph","_mm256_fmaddsub_ps","_mm256_fmsub_pd","_mm256_fmsub_ph","_mm256_fmsub_ps","_mm256_fmsubadd_pd","_mm256_fmsubadd_ph","_mm256_fmsubadd_ps","_mm256_fmul_pch","_mm256_fnmadd_pd","_mm256_fnmadd_ph","_mm256_fnmadd_ps","_mm256_fnmsub_pd","_mm256_fnmsub_ph","_mm256_fnmsub_ps","_mm256_fpclass_pd_mask","_mm256_fpclass_ph_mask","_mm256_fpclass_ps_mask","_mm256_getexp_pd","_mm256_getexp_ph","_mm256_getexp_ps","_mm256_getmant_pd","_mm256_getmant_ph","_mm256_getmant_ps","_mm256_gf2p8affine_epi64_epi8","_mm256_gf2p8affineinv_epi64_epi8","_mm256_gf2p8mul_epi8","_mm256_hadd_epi16","_mm256_hadd_epi32","_mm256_hadd_pd","_mm256_hadd_ps","_mm256_hadds_epi16","_mm256_hsub_epi16","_mm256_hsub_epi32","_mm256_hsub_pd","_mm256_hsub_ps","_mm256_hsubs_epi16","_mm256_i32gather_epi32","_mm256_i32gather_epi64","_mm256_i32gather_pd","_mm256_i32gather_ps","_mm256_i32scatter_epi32","_mm256_i32scatter_epi64","_mm256_i32scatter_pd","_mm256_i32scatter_ps","_mm256_i64gather_epi32","_mm256_i64gather_epi64","_mm256_i64gather_pd","_mm256_i64gather_ps","_mm256_i64scatter_epi32","_mm256_i64scatter_epi64","_mm256_i64scatter_pd","_mm256_i64scatter_ps","_mm256_insert_epi16","_mm256_insert_epi32","_mm256_insert_epi64","_mm256_insert_epi8","_mm256_insertf128_pd","_mm256_insertf128_ps","_mm256_insertf128_si256","_mm256_insertf32x4","_mm256_insertf64x2","_mm256_inserti128_si256","_mm256_inserti32x4","_mm256_inserti64x2","_mm256_lddqu_si256","_mm256_load_epi32","_mm256_load_epi64","_mm256_load_pd","_mm256_load_ph","_mm256_load_ps","_mm256_load_si256","_mm256_loadu2_m128","_mm256_loadu2_m128d","_mm256_loadu2_m128i","_mm256_loadu_epi16","_mm256_loadu_epi32","_mm256_loadu_epi64","_mm256_loadu_epi8","_mm256_loadu_pd","_mm256_loadu_ph","_mm256_loadu_ps","_mm256_loadu_si256","_mm256_lzcnt_epi32","_mm256_lzcnt_epi64","_mm256_madd52hi_avx_epu64","_mm256_madd52hi_epu64","_mm256_madd52lo_avx_epu64","_mm256_madd52lo_epu64","_mm256_madd_epi16","_mm256_maddubs_epi16","_mm256_mask2_permutex2var_epi16","_mm256_mask2_permutex2var_epi32","_mm256_mask2_permutex2var_epi64","_mm256_mask2_permutex2var_epi8","_mm256_mask2_permutex2var_pd","_mm256_mask2_permutex2var_ps","_mm256_mask3_fcmadd_pch","_mm256_mask3_fmadd_pch","_mm256_mask3_fmadd_pd","_mm256_mask3_fmadd_ph","_mm256_mask3_fmadd_ps","_mm256_mask3_fmaddsub_pd","_mm256_mask3_fmaddsub_ph","_mm256_mask3_fmaddsub_ps","_mm256_mask3_fmsub_pd","_mm256_mask3_fmsub_ph","_mm256_mask3_fmsub_ps","_mm256_mask3_fmsubadd_pd","_mm256_mask3_fmsubadd_ph","_mm256_mask3_fmsubadd_ps","_mm256_mask3_fnmadd_pd","_mm256_mask3_fnmadd_ph","_mm256_mask3_fnmadd_ps","_mm256_mask3_fnmsub_pd","_mm256_mask3_fnmsub_ph","_mm256_mask3_fnmsub_ps","_mm256_mask_abs_epi16","_mm256_mask_abs_epi32","_mm256_mask_abs_epi64","_mm256_mask_abs_epi8","_mm256_mask_add_epi16","_mm256_mask_add_epi32","_mm256_mask_add_epi64","_mm256_mask_add_epi8","_mm256_mask_add_pd","_mm256_mask_add_ph","_mm256_mask_add_ps","_mm256_mask_adds_epi16","_mm256_mask_adds_epi8","_mm256_mask_adds_epu16","_mm256_mask_adds_epu8","_mm256_mask_alignr_epi32","_mm256_mask_alignr_epi64","_mm256_mask_alignr_epi8","_mm256_mask_and_epi32","_mm256_mask_and_epi64","_mm256_mask_and_pd","_mm256_mask_and_ps","_mm256_mask_andnot_epi32","_mm256_mask_andnot_epi64","_mm256_mask_andnot_pd","_mm256_mask_andnot_ps","_mm256_mask_avg_epu16","_mm256_mask_avg_epu8","_mm256_mask_bitshuffle_epi64_mask","_mm256_mask_blend_epi16","_mm256_mask_blend_epi32","_mm256_mask_blend_epi64","_mm256_mask_blend_epi8","_mm256_mask_blend_pd","_mm256_mask_blend_ph","_mm256_mask_blend_ps","_mm256_mask_broadcast_f32x2","_mm256_mask_broadcast_f32x4","_mm256_mask_broadcast_f64x2","_mm256_mask_broadcast_i32x2","_mm256_mask_broadcast_i32x4","_mm256_mask_broadcast_i64x2","_mm256_mask_broadcastb_epi8","_mm256_mask_broadcastd_epi32","_mm256_mask_broadcastq_epi64","_mm256_mask_broadcastsd_pd","_mm256_mask_broadcastss_ps","_mm256_mask_broadcastw_epi16","_mm256_mask_cmp_epi16_mask","_mm256_mask_cmp_epi32_mask","_mm256_mask_cmp_epi64_mask","_mm256_mask_cmp_epi8_mask","_mm256_mask_cmp_epu16_mask","_mm256_mask_cmp_epu32_mask","_mm256_mask_cmp_epu64_mask","_mm256_mask_cmp_epu8_mask","_mm256_mask_cmp_pd_mask","_mm256_mask_cmp_ph_mask","_mm256_mask_cmp_ps_mask","_mm256_mask_cmpeq_epi16_mask","_mm256_mask_cmpeq_epi32_mask","_mm256_mask_cmpeq_epi64_mask","_mm256_mask_cmpeq_epi8_mask","_mm256_mask_cmpeq_epu16_mask","_mm256_mask_cmpeq_epu32_mask","_mm256_mask_cmpeq_epu64_mask","_mm256_mask_cmpeq_epu8_mask","_mm256_mask_cmpge_epi16_mask","_mm256_mask_cmpge_epi32_mask","_mm256_mask_cmpge_epi64_mask","_mm256_mask_cmpge_epi8_mask","_mm256_mask_cmpge_epu16_mask","_mm256_mask_cmpge_epu32_mask","_mm256_mask_cmpge_epu64_mask","_mm256_mask_cmpge_epu8_mask","_mm256_mask_cmpgt_epi16_mask","_mm256_mask_cmpgt_epi32_mask","_mm256_mask_cmpgt_epi64_mask","_mm256_mask_cmpgt_epi8_mask","_mm256_mask_cmpgt_epu16_mask","_mm256_mask_cmpgt_epu32_mask","_mm256_mask_cmpgt_epu64_mask","_mm256_mask_cmpgt_epu8_mask","_mm256_mask_cmple_epi16_mask","_mm256_mask_cmple_epi32_mask","_mm256_mask_cmple_epi64_mask","_mm256_mask_cmple_epi8_mask","_mm256_mask_cmple_epu16_mask","_mm256_mask_cmple_epu32_mask","_mm256_mask_cmple_epu64_mask","_mm256_mask_cmple_epu8_mask","_mm256_mask_cmplt_epi16_mask","_mm256_mask_cmplt_epi32_mask","_mm256_mask_cmplt_epi64_mask","_mm256_mask_cmplt_epi8_mask","_mm256_mask_cmplt_epu16_mask","_mm256_mask_cmplt_epu32_mask","_mm256_mask_cmplt_epu64_mask","_mm256_mask_cmplt_epu8_mask","_mm256_mask_cmpneq_epi16_mask","_mm256_mask_cmpneq_epi32_mask","_mm256_mask_cmpneq_epi64_mask","_mm256_mask_cmpneq_epi8_mask","_mm256_mask_cmpneq_epu16_mask","_mm256_mask_cmpneq_epu32_mask","_mm256_mask_cmpneq_epu64_mask","_mm256_mask_cmpneq_epu8_mask","_mm256_mask_cmul_pch","_mm256_mask_compress_epi16","_mm256_mask_compress_epi32","_mm256_mask_compress_epi64","_mm256_mask_compress_epi8","_mm256_mask_compress_pd","_mm256_mask_compress_ps","_mm256_mask_compressstoreu_epi16","_mm256_mask_compressstoreu_epi32","_mm256_mask_compressstoreu_epi64","_mm256_mask_compressstoreu_epi8","_mm256_mask_compressstoreu_pd","_mm256_mask_compressstoreu_ps","_mm256_mask_conflict_epi32","_mm256_mask_conflict_epi64","_mm256_mask_conj_pch","_mm256_mask_cvt_roundps_ph","_mm256_mask_cvtepi16_epi32","_mm256_mask_cvtepi16_epi64","_mm256_mask_cvtepi16_epi8","_mm256_mask_cvtepi16_ph","_mm256_mask_cvtepi16_storeu_epi8","_mm256_mask_cvtepi32_epi16","_mm256_mask_cvtepi32_epi64","_mm256_mask_cvtepi32_epi8","_mm256_mask_cvtepi32_pd","_mm256_mask_cvtepi32_ph","_mm256_mask_cvtepi32_ps","_mm256_mask_cvtepi32_storeu_epi16","_mm256_mask_cvtepi32_storeu_epi8","_mm256_mask_cvtepi64_epi16","_mm256_mask_cvtepi64_epi32","_mm256_mask_cvtepi64_epi8","_mm256_mask_cvtepi64_pd","_mm256_mask_cvtepi64_ph","_mm256_mask_cvtepi64_ps","_mm256_mask_cvtepi64_storeu_epi16","_mm256_mask_cvtepi64_storeu_epi32","_mm256_mask_cvtepi64_storeu_epi8","_mm256_mask_cvtepi8_epi16","_mm256_mask_cvtepi8_epi32","_mm256_mask_cvtepi8_epi64","_mm256_mask_cvtepu16_epi32","_mm256_mask_cvtepu16_epi64","_mm256_mask_cvtepu16_ph","_mm256_mask_cvtepu32_epi64","_mm256_mask_cvtepu32_pd","_mm256_mask_cvtepu32_ph","_mm256_mask_cvtepu64_pd","_mm256_mask_cvtepu64_ph","_mm256_mask_cvtepu64_ps","_mm256_mask_cvtepu8_epi16","_mm256_mask_cvtepu8_epi32","_mm256_mask_cvtepu8_epi64","_mm256_mask_cvtne2ps_pbh","_mm256_mask_cvtneps_pbh","_mm256_mask_cvtpbh_ps","_mm256_mask_cvtpd_epi32","_mm256_mask_cvtpd_epi64","_mm256_mask_cvtpd_epu32","_mm256_mask_cvtpd_epu64","_mm256_mask_cvtpd_ph","_mm256_mask_cvtpd_ps","_mm256_mask_cvtph_epi16","_mm256_mask_cvtph_epi32","_mm256_mask_cvtph_epi64","_mm256_mask_cvtph_epu16","_mm256_mask_cvtph_epu32","_mm256_mask_cvtph_epu64","_mm256_mask_cvtph_pd","_mm256_mask_cvtph_ps","_mm256_mask_cvtps_epi32","_mm256_mask_cvtps_epi64","_mm256_mask_cvtps_epu32","_mm256_mask_cvtps_epu64","_mm256_mask_cvtps_ph","_mm256_mask_cvtsepi16_epi8","_mm256_mask_cvtsepi16_storeu_epi8","_mm256_mask_cvtsepi32_epi16","_mm256_mask_cvtsepi32_epi8","_mm256_mask_cvtsepi32_storeu_epi16","_mm256_mask_cvtsepi32_storeu_epi8","_mm256_mask_cvtsepi64_epi16","_mm256_mask_cvtsepi64_epi32","_mm256_mask_cvtsepi64_epi8","_mm256_mask_cvtsepi64_storeu_epi16","_mm256_mask_cvtsepi64_storeu_epi32","_mm256_mask_cvtsepi64_storeu_epi8","_mm256_mask_cvttpd_epi32","_mm256_mask_cvttpd_epi64","_mm256_mask_cvttpd_epu32","_mm256_mask_cvttpd_epu64","_mm256_mask_cvttph_epi16","_mm256_mask_cvttph_epi32","_mm256_mask_cvttph_epi64","_mm256_mask_cvttph_epu16","_mm256_mask_cvttph_epu32","_mm256_mask_cvttph_epu64","_mm256_mask_cvttps_epi32","_mm256_mask_cvttps_epi64","_mm256_mask_cvttps_epu32","_mm256_mask_cvttps_epu64","_mm256_mask_cvtusepi16_epi8","_mm256_mask_cvtusepi16_storeu_epi8","_mm256_mask_cvtusepi32_epi16","_mm256_mask_cvtusepi32_epi8","_mm256_mask_cvtusepi32_storeu_epi16","_mm256_mask_cvtusepi32_storeu_epi8","_mm256_mask_cvtusepi64_epi16","_mm256_mask_cvtusepi64_epi32","_mm256_mask_cvtusepi64_epi8","_mm256_mask_cvtusepi64_storeu_epi16","_mm256_mask_cvtusepi64_storeu_epi32","_mm256_mask_cvtusepi64_storeu_epi8","_mm256_mask_cvtxph_ps","_mm256_mask_cvtxps_ph","_mm256_mask_dbsad_epu8","_mm256_mask_div_pd","_mm256_mask_div_ph","_mm256_mask_div_ps","_mm256_mask_dpbf16_ps","_mm256_mask_dpbusd_epi32","_mm256_mask_dpbusds_epi32","_mm256_mask_dpwssd_epi32","_mm256_mask_dpwssds_epi32","_mm256_mask_expand_epi16","_mm256_mask_expand_epi32","_mm256_mask_expand_epi64","_mm256_mask_expand_epi8","_mm256_mask_expand_pd","_mm256_mask_expand_ps","_mm256_mask_expandloadu_epi16","_mm256_mask_expandloadu_epi32","_mm256_mask_expandloadu_epi64","_mm256_mask_expandloadu_epi8","_mm256_mask_expandloadu_pd","_mm256_mask_expandloadu_ps","_mm256_mask_extractf32x4_ps","_mm256_mask_extractf64x2_pd","_mm256_mask_extracti32x4_epi32","_mm256_mask_extracti64x2_epi64","_mm256_mask_fcmadd_pch","_mm256_mask_fcmul_pch","_mm256_mask_fixupimm_pd","_mm256_mask_fixupimm_ps","_mm256_mask_fmadd_pch","_mm256_mask_fmadd_pd","_mm256_mask_fmadd_ph","_mm256_mask_fmadd_ps","_mm256_mask_fmaddsub_pd","_mm256_mask_fmaddsub_ph","_mm256_mask_fmaddsub_ps","_mm256_mask_fmsub_pd","_mm256_mask_fmsub_ph","_mm256_mask_fmsub_ps","_mm256_mask_fmsubadd_pd","_mm256_mask_fmsubadd_ph","_mm256_mask_fmsubadd_ps","_mm256_mask_fmul_pch","_mm256_mask_fnmadd_pd","_mm256_mask_fnmadd_ph","_mm256_mask_fnmadd_ps","_mm256_mask_fnmsub_pd","_mm256_mask_fnmsub_ph","_mm256_mask_fnmsub_ps","_mm256_mask_fpclass_pd_mask","_mm256_mask_fpclass_ph_mask","_mm256_mask_fpclass_ps_mask","_mm256_mask_getexp_pd","_mm256_mask_getexp_ph","_mm256_mask_getexp_ps","_mm256_mask_getmant_pd","_mm256_mask_getmant_ph","_mm256_mask_getmant_ps","_mm256_mask_gf2p8affine_epi64_epi8","_mm256_mask_gf2p8affineinv_epi64_epi8","_mm256_mask_gf2p8mul_epi8","_mm256_mask_i32gather_epi32","_mm256_mask_i32gather_epi64","_mm256_mask_i32gather_pd","_mm256_mask_i32gather_ps","_mm256_mask_i32scatter_epi32","_mm256_mask_i32scatter_epi64","_mm256_mask_i32scatter_pd","_mm256_mask_i32scatter_ps","_mm256_mask_i64gather_epi32","_mm256_mask_i64gather_epi64","_mm256_mask_i64gather_pd","_mm256_mask_i64gather_ps","_mm256_mask_i64scatter_epi32","_mm256_mask_i64scatter_epi64","_mm256_mask_i64scatter_pd","_mm256_mask_i64scatter_ps","_mm256_mask_insertf32x4","_mm256_mask_insertf64x2","_mm256_mask_inserti32x4","_mm256_mask_inserti64x2","_mm256_mask_load_epi32","_mm256_mask_load_epi64","_mm256_mask_load_pd","_mm256_mask_load_ps","_mm256_mask_loadu_epi16","_mm256_mask_loadu_epi32","_mm256_mask_loadu_epi64","_mm256_mask_loadu_epi8","_mm256_mask_loadu_pd","_mm256_mask_loadu_ps","_mm256_mask_lzcnt_epi32","_mm256_mask_lzcnt_epi64","_mm256_mask_madd52hi_epu64","_mm256_mask_madd52lo_epu64","_mm256_mask_madd_epi16","_mm256_mask_maddubs_epi16","_mm256_mask_max_epi16","_mm256_mask_max_epi32","_mm256_mask_max_epi64","_mm256_mask_max_epi8","_mm256_mask_max_epu16","_mm256_mask_max_epu32","_mm256_mask_max_epu64","_mm256_mask_max_epu8","_mm256_mask_max_pd","_mm256_mask_max_ph","_mm256_mask_max_ps","_mm256_mask_min_epi16","_mm256_mask_min_epi32","_mm256_mask_min_epi64","_mm256_mask_min_epi8","_mm256_mask_min_epu16","_mm256_mask_min_epu32","_mm256_mask_min_epu64","_mm256_mask_min_epu8","_mm256_mask_min_pd","_mm256_mask_min_ph","_mm256_mask_min_ps","_mm256_mask_mov_epi16","_mm256_mask_mov_epi32","_mm256_mask_mov_epi64","_mm256_mask_mov_epi8","_mm256_mask_mov_pd","_mm256_mask_mov_ps","_mm256_mask_movedup_pd","_mm256_mask_movehdup_ps","_mm256_mask_moveldup_ps","_mm256_mask_mul_epi32","_mm256_mask_mul_epu32","_mm256_mask_mul_pch","_mm256_mask_mul_pd","_mm256_mask_mul_ph","_mm256_mask_mul_ps","_mm256_mask_mulhi_epi16","_mm256_mask_mulhi_epu16","_mm256_mask_mulhrs_epi16","_mm256_mask_mullo_epi16","_mm256_mask_mullo_epi32","_mm256_mask_mullo_epi64","_mm256_mask_multishift_epi64_epi8","_mm256_mask_or_epi32","_mm256_mask_or_epi64","_mm256_mask_or_pd","_mm256_mask_or_ps","_mm256_mask_packs_epi16","_mm256_mask_packs_epi32","_mm256_mask_packus_epi16","_mm256_mask_packus_epi32","_mm256_mask_permute_pd","_mm256_mask_permute_ps","_mm256_mask_permutevar_pd","_mm256_mask_permutevar_ps","_mm256_mask_permutex2var_epi16","_mm256_mask_permutex2var_epi32","_mm256_mask_permutex2var_epi64","_mm256_mask_permutex2var_epi8","_mm256_mask_permutex2var_pd","_mm256_mask_permutex2var_ps","_mm256_mask_permutex_epi64","_mm256_mask_permutex_pd","_mm256_mask_permutexvar_epi16","_mm256_mask_permutexvar_epi32","_mm256_mask_permutexvar_epi64","_mm256_mask_permutexvar_epi8","_mm256_mask_permutexvar_pd","_mm256_mask_permutexvar_ps","_mm256_mask_popcnt_epi16","_mm256_mask_popcnt_epi32","_mm256_mask_popcnt_epi64","_mm256_mask_popcnt_epi8","_mm256_mask_range_pd","_mm256_mask_range_ps","_mm256_mask_rcp14_pd","_mm256_mask_rcp14_ps","_mm256_mask_rcp_ph","_mm256_mask_reduce_add_epi16","_mm256_mask_reduce_add_epi8","_mm256_mask_reduce_and_epi16","_mm256_mask_reduce_and_epi8","_mm256_mask_reduce_max_epi16","_mm256_mask_reduce_max_epi8","_mm256_mask_reduce_max_epu16","_mm256_mask_reduce_max_epu8","_mm256_mask_reduce_min_epi16","_mm256_mask_reduce_min_epi8","_mm256_mask_reduce_min_epu16","_mm256_mask_reduce_min_epu8","_mm256_mask_reduce_mul_epi16","_mm256_mask_reduce_mul_epi8","_mm256_mask_reduce_or_epi16","_mm256_mask_reduce_or_epi8","_mm256_mask_reduce_pd","_mm256_mask_reduce_ph","_mm256_mask_reduce_ps","_mm256_mask_rol_epi32","_mm256_mask_rol_epi64","_mm256_mask_rolv_epi32","_mm256_mask_rolv_epi64","_mm256_mask_ror_epi32","_mm256_mask_ror_epi64","_mm256_mask_rorv_epi32","_mm256_mask_rorv_epi64","_mm256_mask_roundscale_pd","_mm256_mask_roundscale_ph","_mm256_mask_roundscale_ps","_mm256_mask_rsqrt14_pd","_mm256_mask_rsqrt14_ps","_mm256_mask_rsqrt_ph","_mm256_mask_scalef_pd","_mm256_mask_scalef_ph","_mm256_mask_scalef_ps","_mm256_mask_set1_epi16","_mm256_mask_set1_epi32","_mm256_mask_set1_epi64","_mm256_mask_set1_epi8","_mm256_mask_shldi_epi16","_mm256_mask_shldi_epi32","_mm256_mask_shldi_epi64","_mm256_mask_shldv_epi16","_mm256_mask_shldv_epi32","_mm256_mask_shldv_epi64","_mm256_mask_shrdi_epi16","_mm256_mask_shrdi_epi32","_mm256_mask_shrdi_epi64","_mm256_mask_shrdv_epi16","_mm256_mask_shrdv_epi32","_mm256_mask_shrdv_epi64","_mm256_mask_shuffle_epi32","_mm256_mask_shuffle_epi8","_mm256_mask_shuffle_f32x4","_mm256_mask_shuffle_f64x2","_mm256_mask_shuffle_i32x4","_mm256_mask_shuffle_i64x2","_mm256_mask_shuffle_pd","_mm256_mask_shuffle_ps","_mm256_mask_shufflehi_epi16","_mm256_mask_shufflelo_epi16","_mm256_mask_sll_epi16","_mm256_mask_sll_epi32","_mm256_mask_sll_epi64","_mm256_mask_slli_epi16","_mm256_mask_slli_epi32","_mm256_mask_slli_epi64","_mm256_mask_sllv_epi16","_mm256_mask_sllv_epi32","_mm256_mask_sllv_epi64","_mm256_mask_sqrt_pd","_mm256_mask_sqrt_ph","_mm256_mask_sqrt_ps","_mm256_mask_sra_epi16","_mm256_mask_sra_epi32","_mm256_mask_sra_epi64","_mm256_mask_srai_epi16","_mm256_mask_srai_epi32","_mm256_mask_srai_epi64","_mm256_mask_srav_epi16","_mm256_mask_srav_epi32","_mm256_mask_srav_epi64","_mm256_mask_srl_epi16","_mm256_mask_srl_epi32","_mm256_mask_srl_epi64","_mm256_mask_srli_epi16","_mm256_mask_srli_epi32","_mm256_mask_srli_epi64","_mm256_mask_srlv_epi16","_mm256_mask_srlv_epi32","_mm256_mask_srlv_epi64","_mm256_mask_store_epi32","_mm256_mask_store_epi64","_mm256_mask_store_pd","_mm256_mask_store_ps","_mm256_mask_storeu_epi16","_mm256_mask_storeu_epi32","_mm256_mask_storeu_epi64","_mm256_mask_storeu_epi8","_mm256_mask_storeu_pd","_mm256_mask_storeu_ps","_mm256_mask_sub_epi16","_mm256_mask_sub_epi32","_mm256_mask_sub_epi64","_mm256_mask_sub_epi8","_mm256_mask_sub_pd","_mm256_mask_sub_ph","_mm256_mask_sub_ps","_mm256_mask_subs_epi16","_mm256_mask_subs_epi8","_mm256_mask_subs_epu16","_mm256_mask_subs_epu8","_mm256_mask_ternarylogic_epi32","_mm256_mask_ternarylogic_epi64","_mm256_mask_test_epi16_mask","_mm256_mask_test_epi32_mask","_mm256_mask_test_epi64_mask","_mm256_mask_test_epi8_mask","_mm256_mask_testn_epi16_mask","_mm256_mask_testn_epi32_mask","_mm256_mask_testn_epi64_mask","_mm256_mask_testn_epi8_mask","_mm256_mask_unpackhi_epi16","_mm256_mask_unpackhi_epi32","_mm256_mask_unpackhi_epi64","_mm256_mask_unpackhi_epi8","_mm256_mask_unpackhi_pd","_mm256_mask_unpackhi_ps","_mm256_mask_unpacklo_epi16","_mm256_mask_unpacklo_epi32","_mm256_mask_unpacklo_epi64","_mm256_mask_unpacklo_epi8","_mm256_mask_unpacklo_pd","_mm256_mask_unpacklo_ps","_mm256_mask_xor_epi32","_mm256_mask_xor_epi64","_mm256_mask_xor_pd","_mm256_mask_xor_ps","_mm256_maskload_epi32","_mm256_maskload_epi64","_mm256_maskload_pd","_mm256_maskload_ps","_mm256_maskstore_epi32","_mm256_maskstore_epi64","_mm256_maskstore_pd","_mm256_maskstore_ps","_mm256_maskz_abs_epi16","_mm256_maskz_abs_epi32","_mm256_maskz_abs_epi64","_mm256_maskz_abs_epi8","_mm256_maskz_add_epi16","_mm256_maskz_add_epi32","_mm256_maskz_add_epi64","_mm256_maskz_add_epi8","_mm256_maskz_add_pd","_mm256_maskz_add_ph","_mm256_maskz_add_ps","_mm256_maskz_adds_epi16","_mm256_maskz_adds_epi8","_mm256_maskz_adds_epu16","_mm256_maskz_adds_epu8","_mm256_maskz_alignr_epi32","_mm256_maskz_alignr_epi64","_mm256_maskz_alignr_epi8","_mm256_maskz_and_epi32","_mm256_maskz_and_epi64","_mm256_maskz_and_pd","_mm256_maskz_and_ps","_mm256_maskz_andnot_epi32","_mm256_maskz_andnot_epi64","_mm256_maskz_andnot_pd","_mm256_maskz_andnot_ps","_mm256_maskz_avg_epu16","_mm256_maskz_avg_epu8","_mm256_maskz_broadcast_f32x2","_mm256_maskz_broadcast_f32x4","_mm256_maskz_broadcast_f64x2","_mm256_maskz_broadcast_i32x2","_mm256_maskz_broadcast_i32x4","_mm256_maskz_broadcast_i64x2","_mm256_maskz_broadcastb_epi8","_mm256_maskz_broadcastd_epi32","_mm256_maskz_broadcastq_epi64","_mm256_maskz_broadcastsd_pd","_mm256_maskz_broadcastss_ps","_mm256_maskz_broadcastw_epi16","_mm256_maskz_cmul_pch","_mm256_maskz_compress_epi16","_mm256_maskz_compress_epi32","_mm256_maskz_compress_epi64","_mm256_maskz_compress_epi8","_mm256_maskz_compress_pd","_mm256_maskz_compress_ps","_mm256_maskz_conflict_epi32","_mm256_maskz_conflict_epi64","_mm256_maskz_conj_pch","_mm256_maskz_cvt_roundps_ph","_mm256_maskz_cvtepi16_epi32","_mm256_maskz_cvtepi16_epi64","_mm256_maskz_cvtepi16_epi8","_mm256_maskz_cvtepi16_ph","_mm256_maskz_cvtepi32_epi16","_mm256_maskz_cvtepi32_epi64","_mm256_maskz_cvtepi32_epi8","_mm256_maskz_cvtepi32_pd","_mm256_maskz_cvtepi32_ph","_mm256_maskz_cvtepi32_ps","_mm256_maskz_cvtepi64_epi16","_mm256_maskz_cvtepi64_epi32","_mm256_maskz_cvtepi64_epi8","_mm256_maskz_cvtepi64_pd","_mm256_maskz_cvtepi64_ph","_mm256_maskz_cvtepi64_ps","_mm256_maskz_cvtepi8_epi16","_mm256_maskz_cvtepi8_epi32","_mm256_maskz_cvtepi8_epi64","_mm256_maskz_cvtepu16_epi32","_mm256_maskz_cvtepu16_epi64","_mm256_maskz_cvtepu16_ph","_mm256_maskz_cvtepu32_epi64","_mm256_maskz_cvtepu32_pd","_mm256_maskz_cvtepu32_ph","_mm256_maskz_cvtepu64_pd","_mm256_maskz_cvtepu64_ph","_mm256_maskz_cvtepu64_ps","_mm256_maskz_cvtepu8_epi16","_mm256_maskz_cvtepu8_epi32","_mm256_maskz_cvtepu8_epi64","_mm256_maskz_cvtne2ps_pbh","_mm256_maskz_cvtneps_pbh","_mm256_maskz_cvtpbh_ps","_mm256_maskz_cvtpd_epi32","_mm256_maskz_cvtpd_epi64","_mm256_maskz_cvtpd_epu32","_mm256_maskz_cvtpd_epu64","_mm256_maskz_cvtpd_ph","_mm256_maskz_cvtpd_ps","_mm256_maskz_cvtph_epi16","_mm256_maskz_cvtph_epi32","_mm256_maskz_cvtph_epi64","_mm256_maskz_cvtph_epu16","_mm256_maskz_cvtph_epu32","_mm256_maskz_cvtph_epu64","_mm256_maskz_cvtph_pd","_mm256_maskz_cvtph_ps","_mm256_maskz_cvtps_epi32","_mm256_maskz_cvtps_epi64","_mm256_maskz_cvtps_epu32","_mm256_maskz_cvtps_epu64","_mm256_maskz_cvtps_ph","_mm256_maskz_cvtsepi16_epi8","_mm256_maskz_cvtsepi32_epi16","_mm256_maskz_cvtsepi32_epi8","_mm256_maskz_cvtsepi64_epi16","_mm256_maskz_cvtsepi64_epi32","_mm256_maskz_cvtsepi64_epi8","_mm256_maskz_cvttpd_epi32","_mm256_maskz_cvttpd_epi64","_mm256_maskz_cvttpd_epu32","_mm256_maskz_cvttpd_epu64","_mm256_maskz_cvttph_epi16","_mm256_maskz_cvttph_epi32","_mm256_maskz_cvttph_epi64","_mm256_maskz_cvttph_epu16","_mm256_maskz_cvttph_epu32","_mm256_maskz_cvttph_epu64","_mm256_maskz_cvttps_epi32","_mm256_maskz_cvttps_epi64","_mm256_maskz_cvttps_epu32","_mm256_maskz_cvttps_epu64","_mm256_maskz_cvtusepi16_epi8","_mm256_maskz_cvtusepi32_epi16","_mm256_maskz_cvtusepi32_epi8","_mm256_maskz_cvtusepi64_epi16","_mm256_maskz_cvtusepi64_epi32","_mm256_maskz_cvtusepi64_epi8","_mm256_maskz_cvtxph_ps","_mm256_maskz_cvtxps_ph","_mm256_maskz_dbsad_epu8","_mm256_maskz_div_pd","_mm256_maskz_div_ph","_mm256_maskz_div_ps","_mm256_maskz_dpbf16_ps","_mm256_maskz_dpbusd_epi32","_mm256_maskz_dpbusds_epi32","_mm256_maskz_dpwssd_epi32","_mm256_maskz_dpwssds_epi32","_mm256_maskz_expand_epi16","_mm256_maskz_expand_epi32","_mm256_maskz_expand_epi64","_mm256_maskz_expand_epi8","_mm256_maskz_expand_pd","_mm256_maskz_expand_ps","_mm256_maskz_expandloadu_epi16","_mm256_maskz_expandloadu_epi32","_mm256_maskz_expandloadu_epi64","_mm256_maskz_expandloadu_epi8","_mm256_maskz_expandloadu_pd","_mm256_maskz_expandloadu_ps","_mm256_maskz_extractf32x4_ps","_mm256_maskz_extractf64x2_pd","_mm256_maskz_extracti32x4_epi32","_mm256_maskz_extracti64x2_epi64","_mm256_maskz_fcmadd_pch","_mm256_maskz_fcmul_pch","_mm256_maskz_fixupimm_pd","_mm256_maskz_fixupimm_ps","_mm256_maskz_fmadd_pch","_mm256_maskz_fmadd_pd","_mm256_maskz_fmadd_ph","_mm256_maskz_fmadd_ps","_mm256_maskz_fmaddsub_pd","_mm256_maskz_fmaddsub_ph","_mm256_maskz_fmaddsub_ps","_mm256_maskz_fmsub_pd","_mm256_maskz_fmsub_ph","_mm256_maskz_fmsub_ps","_mm256_maskz_fmsubadd_pd","_mm256_maskz_fmsubadd_ph","_mm256_maskz_fmsubadd_ps","_mm256_maskz_fmul_pch","_mm256_maskz_fnmadd_pd","_mm256_maskz_fnmadd_ph","_mm256_maskz_fnmadd_ps","_mm256_maskz_fnmsub_pd","_mm256_maskz_fnmsub_ph","_mm256_maskz_fnmsub_ps","_mm256_maskz_getexp_pd","_mm256_maskz_getexp_ph","_mm256_maskz_getexp_ps","_mm256_maskz_getmant_pd","_mm256_maskz_getmant_ph","_mm256_maskz_getmant_ps","_mm256_maskz_gf2p8affine_epi64_epi8","_mm256_maskz_gf2p8affineinv_epi64_epi8","_mm256_maskz_gf2p8mul_epi8","_mm256_maskz_insertf32x4","_mm256_maskz_insertf64x2","_mm256_maskz_inserti32x4","_mm256_maskz_inserti64x2","_mm256_maskz_load_epi32","_mm256_maskz_load_epi64","_mm256_maskz_load_pd","_mm256_maskz_load_ps","_mm256_maskz_loadu_epi16","_mm256_maskz_loadu_epi32","_mm256_maskz_loadu_epi64","_mm256_maskz_loadu_epi8","_mm256_maskz_loadu_pd","_mm256_maskz_loadu_ps","_mm256_maskz_lzcnt_epi32","_mm256_maskz_lzcnt_epi64","_mm256_maskz_madd52hi_epu64","_mm256_maskz_madd52lo_epu64","_mm256_maskz_madd_epi16","_mm256_maskz_maddubs_epi16","_mm256_maskz_max_epi16","_mm256_maskz_max_epi32","_mm256_maskz_max_epi64","_mm256_maskz_max_epi8","_mm256_maskz_max_epu16","_mm256_maskz_max_epu32","_mm256_maskz_max_epu64","_mm256_maskz_max_epu8","_mm256_maskz_max_pd","_mm256_maskz_max_ph","_mm256_maskz_max_ps","_mm256_maskz_min_epi16","_mm256_maskz_min_epi32","_mm256_maskz_min_epi64","_mm256_maskz_min_epi8","_mm256_maskz_min_epu16","_mm256_maskz_min_epu32","_mm256_maskz_min_epu64","_mm256_maskz_min_epu8","_mm256_maskz_min_pd","_mm256_maskz_min_ph","_mm256_maskz_min_ps","_mm256_maskz_mov_epi16","_mm256_maskz_mov_epi32","_mm256_maskz_mov_epi64","_mm256_maskz_mov_epi8","_mm256_maskz_mov_pd","_mm256_maskz_mov_ps","_mm256_maskz_movedup_pd","_mm256_maskz_movehdup_ps","_mm256_maskz_moveldup_ps","_mm256_maskz_mul_epi32","_mm256_maskz_mul_epu32","_mm256_maskz_mul_pch","_mm256_maskz_mul_pd","_mm256_maskz_mul_ph","_mm256_maskz_mul_ps","_mm256_maskz_mulhi_epi16","_mm256_maskz_mulhi_epu16","_mm256_maskz_mulhrs_epi16","_mm256_maskz_mullo_epi16","_mm256_maskz_mullo_epi32","_mm256_maskz_mullo_epi64","_mm256_maskz_multishift_epi64_epi8","_mm256_maskz_or_epi32","_mm256_maskz_or_epi64","_mm256_maskz_or_pd","_mm256_maskz_or_ps","_mm256_maskz_packs_epi16","_mm256_maskz_packs_epi32","_mm256_maskz_packus_epi16","_mm256_maskz_packus_epi32","_mm256_maskz_permute_pd","_mm256_maskz_permute_ps","_mm256_maskz_permutevar_pd","_mm256_maskz_permutevar_ps","_mm256_maskz_permutex2var_epi16","_mm256_maskz_permutex2var_epi32","_mm256_maskz_permutex2var_epi64","_mm256_maskz_permutex2var_epi8","_mm256_maskz_permutex2var_pd","_mm256_maskz_permutex2var_ps","_mm256_maskz_permutex_epi64","_mm256_maskz_permutex_pd","_mm256_maskz_permutexvar_epi16","_mm256_maskz_permutexvar_epi32","_mm256_maskz_permutexvar_epi64","_mm256_maskz_permutexvar_epi8","_mm256_maskz_permutexvar_pd","_mm256_maskz_permutexvar_ps","_mm256_maskz_popcnt_epi16","_mm256_maskz_popcnt_epi32","_mm256_maskz_popcnt_epi64","_mm256_maskz_popcnt_epi8","_mm256_maskz_range_pd","_mm256_maskz_range_ps","_mm256_maskz_rcp14_pd","_mm256_maskz_rcp14_ps","_mm256_maskz_rcp_ph","_mm256_maskz_reduce_pd","_mm256_maskz_reduce_ph","_mm256_maskz_reduce_ps","_mm256_maskz_rol_epi32","_mm256_maskz_rol_epi64","_mm256_maskz_rolv_epi32","_mm256_maskz_rolv_epi64","_mm256_maskz_ror_epi32","_mm256_maskz_ror_epi64","_mm256_maskz_rorv_epi32","_mm256_maskz_rorv_epi64","_mm256_maskz_roundscale_pd","_mm256_maskz_roundscale_ph","_mm256_maskz_roundscale_ps","_mm256_maskz_rsqrt14_pd","_mm256_maskz_rsqrt14_ps","_mm256_maskz_rsqrt_ph","_mm256_maskz_scalef_pd","_mm256_maskz_scalef_ph","_mm256_maskz_scalef_ps","_mm256_maskz_set1_epi16","_mm256_maskz_set1_epi32","_mm256_maskz_set1_epi64","_mm256_maskz_set1_epi8","_mm256_maskz_shldi_epi16","_mm256_maskz_shldi_epi32","_mm256_maskz_shldi_epi64","_mm256_maskz_shldv_epi16","_mm256_maskz_shldv_epi32","_mm256_maskz_shldv_epi64","_mm256_maskz_shrdi_epi16","_mm256_maskz_shrdi_epi32","_mm256_maskz_shrdi_epi64","_mm256_maskz_shrdv_epi16","_mm256_maskz_shrdv_epi32","_mm256_maskz_shrdv_epi64","_mm256_maskz_shuffle_epi32","_mm256_maskz_shuffle_epi8","_mm256_maskz_shuffle_f32x4","_mm256_maskz_shuffle_f64x2","_mm256_maskz_shuffle_i32x4","_mm256_maskz_shuffle_i64x2","_mm256_maskz_shuffle_pd","_mm256_maskz_shuffle_ps","_mm256_maskz_shufflehi_epi16","_mm256_maskz_shufflelo_epi16","_mm256_maskz_sll_epi16","_mm256_maskz_sll_epi32","_mm256_maskz_sll_epi64","_mm256_maskz_slli_epi16","_mm256_maskz_slli_epi32","_mm256_maskz_slli_epi64","_mm256_maskz_sllv_epi16","_mm256_maskz_sllv_epi32","_mm256_maskz_sllv_epi64","_mm256_maskz_sqrt_pd","_mm256_maskz_sqrt_ph","_mm256_maskz_sqrt_ps","_mm256_maskz_sra_epi16","_mm256_maskz_sra_epi32","_mm256_maskz_sra_epi64","_mm256_maskz_srai_epi16","_mm256_maskz_srai_epi32","_mm256_maskz_srai_epi64","_mm256_maskz_srav_epi16","_mm256_maskz_srav_epi32","_mm256_maskz_srav_epi64","_mm256_maskz_srl_epi16","_mm256_maskz_srl_epi32","_mm256_maskz_srl_epi64","_mm256_maskz_srli_epi16","_mm256_maskz_srli_epi32","_mm256_maskz_srli_epi64","_mm256_maskz_srlv_epi16","_mm256_maskz_srlv_epi32","_mm256_maskz_srlv_epi64","_mm256_maskz_sub_epi16","_mm256_maskz_sub_epi32","_mm256_maskz_sub_epi64","_mm256_maskz_sub_epi8","_mm256_maskz_sub_pd","_mm256_maskz_sub_ph","_mm256_maskz_sub_ps","_mm256_maskz_subs_epi16","_mm256_maskz_subs_epi8","_mm256_maskz_subs_epu16","_mm256_maskz_subs_epu8","_mm256_maskz_ternarylogic_epi32","_mm256_maskz_ternarylogic_epi64","_mm256_maskz_unpackhi_epi16","_mm256_maskz_unpackhi_epi32","_mm256_maskz_unpackhi_epi64","_mm256_maskz_unpackhi_epi8","_mm256_maskz_unpackhi_pd","_mm256_maskz_unpackhi_ps","_mm256_maskz_unpacklo_epi16","_mm256_maskz_unpacklo_epi32","_mm256_maskz_unpacklo_epi64","_mm256_maskz_unpacklo_epi8","_mm256_maskz_unpacklo_pd","_mm256_maskz_unpacklo_ps","_mm256_maskz_xor_epi32","_mm256_maskz_xor_epi64","_mm256_maskz_xor_pd","_mm256_maskz_xor_ps","_mm256_max_epi16","_mm256_max_epi32","_mm256_max_epi64","_mm256_max_epi8","_mm256_max_epu16","_mm256_max_epu32","_mm256_max_epu64","_mm256_max_epu8","_mm256_max_pd","_mm256_max_ph","_mm256_max_ps","_mm256_min_epi16","_mm256_min_epi32","_mm256_min_epi64","_mm256_min_epi8","_mm256_min_epu16","_mm256_min_epu32","_mm256_min_epu64","_mm256_min_epu8","_mm256_min_pd","_mm256_min_ph","_mm256_min_ps","_mm256_mmask_i32gather_epi32","_mm256_mmask_i32gather_epi64","_mm256_mmask_i32gather_pd","_mm256_mmask_i32gather_ps","_mm256_mmask_i64gather_epi32","_mm256_mmask_i64gather_epi64","_mm256_mmask_i64gather_pd","_mm256_mmask_i64gather_ps","_mm256_movedup_pd","_mm256_movehdup_ps","_mm256_moveldup_ps","_mm256_movemask_epi8","_mm256_movemask_pd","_mm256_movemask_ps","_mm256_movepi16_mask","_mm256_movepi32_mask","_mm256_movepi64_mask","_mm256_movepi8_mask","_mm256_movm_epi16","_mm256_movm_epi32","_mm256_movm_epi64","_mm256_movm_epi8","_mm256_mpsadbw_epu8","_mm256_mul_epi32","_mm256_mul_epu32","_mm256_mul_pch","_mm256_mul_pd","_mm256_mul_ph","_mm256_mul_ps","_mm256_mulhi_epi16","_mm256_mulhi_epu16","_mm256_mulhrs_epi16","_mm256_mullo_epi16","_mm256_mullo_epi32","_mm256_mullo_epi64","_mm256_multishift_epi64_epi8","_mm256_or_epi32","_mm256_or_epi64","_mm256_or_pd","_mm256_or_ps","_mm256_or_si256","_mm256_packs_epi16","_mm256_packs_epi32","_mm256_packus_epi16","_mm256_packus_epi32","_mm256_permute2f128_pd","_mm256_permute2f128_ps","_mm256_permute2f128_si256","_mm256_permute2x128_si256","_mm256_permute4x64_epi64","_mm256_permute4x64_pd","_mm256_permute_pd","_mm256_permute_ps","_mm256_permutevar8x32_epi32","_mm256_permutevar8x32_ps","_mm256_permutevar_pd","_mm256_permutevar_ps","_mm256_permutex2var_epi16","_mm256_permutex2var_epi32","_mm256_permutex2var_epi64","_mm256_permutex2var_epi8","_mm256_permutex2var_pd","_mm256_permutex2var_ph","_mm256_permutex2var_ps","_mm256_permutex_epi64","_mm256_permutex_pd","_mm256_permutexvar_epi16","_mm256_permutexvar_epi32","_mm256_permutexvar_epi64","_mm256_permutexvar_epi8","_mm256_permutexvar_pd","_mm256_permutexvar_ph","_mm256_permutexvar_ps","_mm256_popcnt_epi16","_mm256_popcnt_epi32","_mm256_popcnt_epi64","_mm256_popcnt_epi8","_mm256_range_pd","_mm256_range_ps","_mm256_rcp14_pd","_mm256_rcp14_ps","_mm256_rcp_ph","_mm256_rcp_ps","_mm256_reduce_add_epi16","_mm256_reduce_add_epi8","_mm256_reduce_add_ph","_mm256_reduce_and_epi16","_mm256_reduce_and_epi8","_mm256_reduce_max_epi16","_mm256_reduce_max_epi8","_mm256_reduce_max_epu16","_mm256_reduce_max_epu8","_mm256_reduce_max_ph","_mm256_reduce_min_epi16","_mm256_reduce_min_epi8","_mm256_reduce_min_epu16","_mm256_reduce_min_epu8","_mm256_reduce_min_ph","_mm256_reduce_mul_epi16","_mm256_reduce_mul_epi8","_mm256_reduce_mul_ph","_mm256_reduce_or_epi16","_mm256_reduce_or_epi8","_mm256_reduce_pd","_mm256_reduce_ph","_mm256_reduce_ps","_mm256_rol_epi32","_mm256_rol_epi64","_mm256_rolv_epi32","_mm256_rolv_epi64","_mm256_ror_epi32","_mm256_ror_epi64","_mm256_rorv_epi32","_mm256_rorv_epi64","_mm256_round_pd","_mm256_round_ps","_mm256_roundscale_pd","_mm256_roundscale_ph","_mm256_roundscale_ps","_mm256_rsqrt14_pd","_mm256_rsqrt14_ps","_mm256_rsqrt_ph","_mm256_rsqrt_ps","_mm256_sad_epu8","_mm256_scalef_pd","_mm256_scalef_ph","_mm256_scalef_ps","_mm256_set1_epi16","_mm256_set1_epi32","_mm256_set1_epi64x","_mm256_set1_epi8","_mm256_set1_pd","_mm256_set1_ph","_mm256_set1_ps","_mm256_set_epi16","_mm256_set_epi32","_mm256_set_epi64x","_mm256_set_epi8","_mm256_set_m128","_mm256_set_m128d","_mm256_set_m128i","_mm256_set_pd","_mm256_set_ph","_mm256_set_ps","_mm256_setr_epi16","_mm256_setr_epi32","_mm256_setr_epi64x","_mm256_setr_epi8","_mm256_setr_m128","_mm256_setr_m128d","_mm256_setr_m128i","_mm256_setr_pd","_mm256_setr_ph","_mm256_setr_ps","_mm256_setzero_pd","_mm256_setzero_ph","_mm256_setzero_ps","_mm256_setzero_si256","_mm256_shldi_epi16","_mm256_shldi_epi32","_mm256_shldi_epi64","_mm256_shldv_epi16","_mm256_shldv_epi32","_mm256_shldv_epi64","_mm256_shrdi_epi16","_mm256_shrdi_epi32","_mm256_shrdi_epi64","_mm256_shrdv_epi16","_mm256_shrdv_epi32","_mm256_shrdv_epi64","_mm256_shuffle_epi32","_mm256_shuffle_epi8","_mm256_shuffle_f32x4","_mm256_shuffle_f64x2","_mm256_shuffle_i32x4","_mm256_shuffle_i64x2","_mm256_shuffle_pd","_mm256_shuffle_ps","_mm256_shufflehi_epi16","_mm256_shufflelo_epi16","_mm256_sign_epi16","_mm256_sign_epi32","_mm256_sign_epi8","_mm256_sll_epi16","_mm256_sll_epi32","_mm256_sll_epi64","_mm256_slli_epi16","_mm256_slli_epi32","_mm256_slli_epi64","_mm256_slli_si256","_mm256_sllv_epi16","_mm256_sllv_epi32","_mm256_sllv_epi64","_mm256_sqrt_pd","_mm256_sqrt_ph","_mm256_sqrt_ps","_mm256_sra_epi16","_mm256_sra_epi32","_mm256_sra_epi64","_mm256_srai_epi16","_mm256_srai_epi32","_mm256_srai_epi64","_mm256_srav_epi16","_mm256_srav_epi32","_mm256_srav_epi64","_mm256_srl_epi16","_mm256_srl_epi32","_mm256_srl_epi64","_mm256_srli_epi16","_mm256_srli_epi32","_mm256_srli_epi64","_mm256_srli_si256","_mm256_srlv_epi16","_mm256_srlv_epi32","_mm256_srlv_epi64","_mm256_store_epi32","_mm256_store_epi64","_mm256_store_pd","_mm256_store_ph","_mm256_store_ps","_mm256_store_si256","_mm256_storeu2_m128","_mm256_storeu2_m128d","_mm256_storeu2_m128i","_mm256_storeu_epi16","_mm256_storeu_epi32","_mm256_storeu_epi64","_mm256_storeu_epi8","_mm256_storeu_pd","_mm256_storeu_ph","_mm256_storeu_ps","_mm256_storeu_si256","_mm256_stream_load_si256","_mm256_stream_pd","_mm256_stream_ps","_mm256_stream_si256","_mm256_sub_epi16","_mm256_sub_epi32","_mm256_sub_epi64","_mm256_sub_epi8","_mm256_sub_pd","_mm256_sub_ph","_mm256_sub_ps","_mm256_subs_epi16","_mm256_subs_epi8","_mm256_subs_epu16","_mm256_subs_epu8","_mm256_ternarylogic_epi32","_mm256_ternarylogic_epi64","_mm256_test_epi16_mask","_mm256_test_epi32_mask","_mm256_test_epi64_mask","_mm256_test_epi8_mask","_mm256_testc_pd","_mm256_testc_ps","_mm256_testc_si256","_mm256_testn_epi16_mask","_mm256_testn_epi32_mask","_mm256_testn_epi64_mask","_mm256_testn_epi8_mask","_mm256_testnzc_pd","_mm256_testnzc_ps","_mm256_testnzc_si256","_mm256_testz_pd","_mm256_testz_ps","_mm256_testz_si256","_mm256_undefined_pd","_mm256_undefined_ph","_mm256_undefined_ps","_mm256_undefined_si256","_mm256_unpackhi_epi16","_mm256_unpackhi_epi32","_mm256_unpackhi_epi64","_mm256_unpackhi_epi8","_mm256_unpackhi_pd","_mm256_unpackhi_ps","_mm256_unpacklo_epi16","_mm256_unpacklo_epi32","_mm256_unpacklo_epi64","_mm256_unpacklo_epi8","_mm256_unpacklo_pd","_mm256_unpacklo_ps","_mm256_xor_epi32","_mm256_xor_epi64","_mm256_xor_pd","_mm256_xor_ps","_mm256_xor_si256","_mm256_zeroall","_mm256_zeroupper","_mm256_zextpd128_pd256","_mm256_zextph128_ph256","_mm256_zextps128_ps256","_mm256_zextsi128_si256","_mm512_abs_epi16","_mm512_abs_epi32","_mm512_abs_epi64","_mm512_abs_epi8","_mm512_abs_pd","_mm512_abs_ph","_mm512_abs_ps","_mm512_add_epi16","_mm512_add_epi32","_mm512_add_epi64","_mm512_add_epi8","_mm512_add_pd","_mm512_add_ph","_mm512_add_ps","_mm512_add_round_pd","_mm512_add_round_ph","_mm512_add_round_ps","_mm512_adds_epi16","_mm512_adds_epi8","_mm512_adds_epu16","_mm512_adds_epu8","_mm512_aesdec_epi128","_mm512_aesdeclast_epi128","_mm512_aesenc_epi128","_mm512_aesenclast_epi128","_mm512_alignr_epi32","_mm512_alignr_epi64","_mm512_alignr_epi8","_mm512_and_epi32","_mm512_and_epi64","_mm512_and_pd","_mm512_and_ps","_mm512_and_si512","_mm512_andnot_epi32","_mm512_andnot_epi64","_mm512_andnot_pd","_mm512_andnot_ps","_mm512_andnot_si512","_mm512_avg_epu16","_mm512_avg_epu8","_mm512_bitshuffle_epi64_mask","_mm512_broadcast_f32x2","_mm512_broadcast_f32x4","_mm512_broadcast_f32x8","_mm512_broadcast_f64x2","_mm512_broadcast_f64x4","_mm512_broadcast_i32x2","_mm512_broadcast_i32x4","_mm512_broadcast_i32x8","_mm512_broadcast_i64x2","_mm512_broadcast_i64x4","_mm512_broadcastb_epi8","_mm512_broadcastd_epi32","_mm512_broadcastmb_epi64","_mm512_broadcastmw_epi32","_mm512_broadcastq_epi64","_mm512_broadcastsd_pd","_mm512_broadcastss_ps","_mm512_broadcastw_epi16","_mm512_bslli_epi128","_mm512_bsrli_epi128","_mm512_castpd128_pd512","_mm512_castpd256_pd512","_mm512_castpd512_pd128","_mm512_castpd512_pd256","_mm512_castpd_ph","_mm512_castpd_ps","_mm512_castpd_si512","_mm512_castph128_ph512","_mm512_castph256_ph512","_mm512_castph512_ph128","_mm512_castph512_ph256","_mm512_castph_pd","_mm512_castph_ps","_mm512_castph_si512","_mm512_castps128_ps512","_mm512_castps256_ps512","_mm512_castps512_ps128","_mm512_castps512_ps256","_mm512_castps_pd","_mm512_castps_ph","_mm512_castps_si512","_mm512_castsi128_si512","_mm512_castsi256_si512","_mm512_castsi512_pd","_mm512_castsi512_ph","_mm512_castsi512_ps","_mm512_castsi512_si128","_mm512_castsi512_si256","_mm512_clmulepi64_epi128","_mm512_cmp_epi16_mask","_mm512_cmp_epi32_mask","_mm512_cmp_epi64_mask","_mm512_cmp_epi8_mask","_mm512_cmp_epu16_mask","_mm512_cmp_epu32_mask","_mm512_cmp_epu64_mask","_mm512_cmp_epu8_mask","_mm512_cmp_pd_mask","_mm512_cmp_ph_mask","_mm512_cmp_ps_mask","_mm512_cmp_round_pd_mask","_mm512_cmp_round_ph_mask","_mm512_cmp_round_ps_mask","_mm512_cmpeq_epi16_mask","_mm512_cmpeq_epi32_mask","_mm512_cmpeq_epi64_mask","_mm512_cmpeq_epi8_mask","_mm512_cmpeq_epu16_mask","_mm512_cmpeq_epu32_mask","_mm512_cmpeq_epu64_mask","_mm512_cmpeq_epu8_mask","_mm512_cmpeq_pd_mask","_mm512_cmpeq_ps_mask","_mm512_cmpge_epi16_mask","_mm512_cmpge_epi32_mask","_mm512_cmpge_epi64_mask","_mm512_cmpge_epi8_mask","_mm512_cmpge_epu16_mask","_mm512_cmpge_epu32_mask","_mm512_cmpge_epu64_mask","_mm512_cmpge_epu8_mask","_mm512_cmpgt_epi16_mask","_mm512_cmpgt_epi32_mask","_mm512_cmpgt_epi64_mask","_mm512_cmpgt_epi8_mask","_mm512_cmpgt_epu16_mask","_mm512_cmpgt_epu32_mask","_mm512_cmpgt_epu64_mask","_mm512_cmpgt_epu8_mask","_mm512_cmple_epi16_mask","_mm512_cmple_epi32_mask","_mm512_cmple_epi64_mask","_mm512_cmple_epi8_mask","_mm512_cmple_epu16_mask","_mm512_cmple_epu32_mask","_mm512_cmple_epu64_mask","_mm512_cmple_epu8_mask","_mm512_cmple_pd_mask","_mm512_cmple_ps_mask","_mm512_cmplt_epi16_mask","_mm512_cmplt_epi32_mask","_mm512_cmplt_epi64_mask","_mm512_cmplt_epi8_mask","_mm512_cmplt_epu16_mask","_mm512_cmplt_epu32_mask","_mm512_cmplt_epu64_mask","_mm512_cmplt_epu8_mask","_mm512_cmplt_pd_mask","_mm512_cmplt_ps_mask","_mm512_cmpneq_epi16_mask","_mm512_cmpneq_epi32_mask","_mm512_cmpneq_epi64_mask","_mm512_cmpneq_epi8_mask","_mm512_cmpneq_epu16_mask","_mm512_cmpneq_epu32_mask","_mm512_cmpneq_epu64_mask","_mm512_cmpneq_epu8_mask","_mm512_cmpneq_pd_mask","_mm512_cmpneq_ps_mask","_mm512_cmpnle_pd_mask","_mm512_cmpnle_ps_mask","_mm512_cmpnlt_pd_mask","_mm512_cmpnlt_ps_mask","_mm512_cmpord_pd_mask","_mm512_cmpord_ps_mask","_mm512_cmpunord_pd_mask","_mm512_cmpunord_ps_mask","_mm512_cmul_pch","_mm512_cmul_round_pch","_mm512_conflict_epi32","_mm512_conflict_epi64","_mm512_conj_pch","_mm512_cvt_roundepi16_ph","_mm512_cvt_roundepi32_ph","_mm512_cvt_roundepi32_ps","_mm512_cvt_roundepi64_pd","_mm512_cvt_roundepi64_ph","_mm512_cvt_roundepi64_ps","_mm512_cvt_roundepu16_ph","_mm512_cvt_roundepu32_ph","_mm512_cvt_roundepu32_ps","_mm512_cvt_roundepu64_pd","_mm512_cvt_roundepu64_ph","_mm512_cvt_roundepu64_ps","_mm512_cvt_roundpd_epi32","_mm512_cvt_roundpd_epi64","_mm512_cvt_roundpd_epu32","_mm512_cvt_roundpd_epu64","_mm512_cvt_roundpd_ph","_mm512_cvt_roundpd_ps","_mm512_cvt_roundph_epi16","_mm512_cvt_roundph_epi32","_mm512_cvt_roundph_epi64","_mm512_cvt_roundph_epu16","_mm512_cvt_roundph_epu32","_mm512_cvt_roundph_epu64","_mm512_cvt_roundph_pd","_mm512_cvt_roundph_ps","_mm512_cvt_roundps_epi32","_mm512_cvt_roundps_epi64","_mm512_cvt_roundps_epu32","_mm512_cvt_roundps_epu64","_mm512_cvt_roundps_pd","_mm512_cvt_roundps_ph","_mm512_cvtepi16_epi32","_mm512_cvtepi16_epi64","_mm512_cvtepi16_epi8","_mm512_cvtepi16_ph","_mm512_cvtepi32_epi16","_mm512_cvtepi32_epi64","_mm512_cvtepi32_epi8","_mm512_cvtepi32_pd","_mm512_cvtepi32_ph","_mm512_cvtepi32_ps","_mm512_cvtepi32lo_pd","_mm512_cvtepi64_epi16","_mm512_cvtepi64_epi32","_mm512_cvtepi64_epi8","_mm512_cvtepi64_pd","_mm512_cvtepi64_ph","_mm512_cvtepi64_ps","_mm512_cvtepi8_epi16","_mm512_cvtepi8_epi32","_mm512_cvtepi8_epi64","_mm512_cvtepu16_epi32","_mm512_cvtepu16_epi64","_mm512_cvtepu16_ph","_mm512_cvtepu32_epi64","_mm512_cvtepu32_pd","_mm512_cvtepu32_ph","_mm512_cvtepu32_ps","_mm512_cvtepu32lo_pd","_mm512_cvtepu64_pd","_mm512_cvtepu64_ph","_mm512_cvtepu64_ps","_mm512_cvtepu8_epi16","_mm512_cvtepu8_epi32","_mm512_cvtepu8_epi64","_mm512_cvtne2ps_pbh","_mm512_cvtneps_pbh","_mm512_cvtpbh_ps","_mm512_cvtpd_epi32","_mm512_cvtpd_epi64","_mm512_cvtpd_epu32","_mm512_cvtpd_epu64","_mm512_cvtpd_ph","_mm512_cvtpd_ps","_mm512_cvtpd_pslo","_mm512_cvtph_epi16","_mm512_cvtph_epi32","_mm512_cvtph_epi64","_mm512_cvtph_epu16","_mm512_cvtph_epu32","_mm512_cvtph_epu64","_mm512_cvtph_pd","_mm512_cvtph_ps","_mm512_cvtps_epi32","_mm512_cvtps_epi64","_mm512_cvtps_epu32","_mm512_cvtps_epu64","_mm512_cvtps_pd","_mm512_cvtps_ph","_mm512_cvtpslo_pd","_mm512_cvtsd_f64","_mm512_cvtsepi16_epi8","_mm512_cvtsepi32_epi16","_mm512_cvtsepi32_epi8","_mm512_cvtsepi64_epi16","_mm512_cvtsepi64_epi32","_mm512_cvtsepi64_epi8","_mm512_cvtsh_h","_mm512_cvtsi512_si32","_mm512_cvtss_f32","_mm512_cvtt_roundpd_epi32","_mm512_cvtt_roundpd_epi64","_mm512_cvtt_roundpd_epu32","_mm512_cvtt_roundpd_epu64","_mm512_cvtt_roundph_epi16","_mm512_cvtt_roundph_epi32","_mm512_cvtt_roundph_epi64","_mm512_cvtt_roundph_epu16","_mm512_cvtt_roundph_epu32","_mm512_cvtt_roundph_epu64","_mm512_cvtt_roundps_epi32","_mm512_cvtt_roundps_epi64","_mm512_cvtt_roundps_epu32","_mm512_cvtt_roundps_epu64","_mm512_cvttpd_epi32","_mm512_cvttpd_epi64","_mm512_cvttpd_epu32","_mm512_cvttpd_epu64","_mm512_cvttph_epi16","_mm512_cvttph_epi32","_mm512_cvttph_epi64","_mm512_cvttph_epu16","_mm512_cvttph_epu32","_mm512_cvttph_epu64","_mm512_cvttps_epi32","_mm512_cvttps_epi64","_mm512_cvttps_epu32","_mm512_cvttps_epu64","_mm512_cvtusepi16_epi8","_mm512_cvtusepi32_epi16","_mm512_cvtusepi32_epi8","_mm512_cvtusepi64_epi16","_mm512_cvtusepi64_epi32","_mm512_cvtusepi64_epi8","_mm512_cvtx_roundph_ps","_mm512_cvtx_roundps_ph","_mm512_cvtxph_ps","_mm512_cvtxps_ph","_mm512_dbsad_epu8","_mm512_div_pd","_mm512_div_ph","_mm512_div_ps","_mm512_div_round_pd","_mm512_div_round_ph","_mm512_div_round_ps","_mm512_dpbf16_ps","_mm512_dpbusd_epi32","_mm512_dpbusds_epi32","_mm512_dpwssd_epi32","_mm512_dpwssds_epi32","_mm512_extractf32x4_ps","_mm512_extractf32x8_ps","_mm512_extractf64x2_pd","_mm512_extractf64x4_pd","_mm512_extracti32x4_epi32","_mm512_extracti32x8_epi32","_mm512_extracti64x2_epi64","_mm512_extracti64x4_epi64","_mm512_fcmadd_pch","_mm512_fcmadd_round_pch","_mm512_fcmul_pch","_mm512_fcmul_round_pch","_mm512_fixupimm_pd","_mm512_fixupimm_ps","_mm512_fixupimm_round_pd","_mm512_fixupimm_round_ps","_mm512_fmadd_pch","_mm512_fmadd_pd","_mm512_fmadd_ph","_mm512_fmadd_ps","_mm512_fmadd_round_pch","_mm512_fmadd_round_pd","_mm512_fmadd_round_ph","_mm512_fmadd_round_ps","_mm512_fmaddsub_pd","_mm512_fmaddsub_ph","_mm512_fmaddsub_ps","_mm512_fmaddsub_round_pd","_mm512_fmaddsub_round_ph","_mm512_fmaddsub_round_ps","_mm512_fmsub_pd","_mm512_fmsub_ph","_mm512_fmsub_ps","_mm512_fmsub_round_pd","_mm512_fmsub_round_ph","_mm512_fmsub_round_ps","_mm512_fmsubadd_pd","_mm512_fmsubadd_ph","_mm512_fmsubadd_ps","_mm512_fmsubadd_round_pd","_mm512_fmsubadd_round_ph","_mm512_fmsubadd_round_ps","_mm512_fmul_pch","_mm512_fmul_round_pch","_mm512_fnmadd_pd","_mm512_fnmadd_ph","_mm512_fnmadd_ps","_mm512_fnmadd_round_pd","_mm512_fnmadd_round_ph","_mm512_fnmadd_round_ps","_mm512_fnmsub_pd","_mm512_fnmsub_ph","_mm512_fnmsub_ps","_mm512_fnmsub_round_pd","_mm512_fnmsub_round_ph","_mm512_fnmsub_round_ps","_mm512_fpclass_pd_mask","_mm512_fpclass_ph_mask","_mm512_fpclass_ps_mask","_mm512_getexp_pd","_mm512_getexp_ph","_mm512_getexp_ps","_mm512_getexp_round_pd","_mm512_getexp_round_ph","_mm512_getexp_round_ps","_mm512_getmant_pd","_mm512_getmant_ph","_mm512_getmant_ps","_mm512_getmant_round_pd","_mm512_getmant_round_ph","_mm512_getmant_round_ps","_mm512_gf2p8affine_epi64_epi8","_mm512_gf2p8affineinv_epi64_epi8","_mm512_gf2p8mul_epi8","_mm512_i32gather_epi32","_mm512_i32gather_epi64","_mm512_i32gather_pd","_mm512_i32gather_ps","_mm512_i32logather_epi64","_mm512_i32logather_pd","_mm512_i32loscatter_epi64","_mm512_i32loscatter_pd","_mm512_i32scatter_epi32","_mm512_i32scatter_epi64","_mm512_i32scatter_pd","_mm512_i32scatter_ps","_mm512_i64gather_epi32","_mm512_i64gather_epi64","_mm512_i64gather_pd","_mm512_i64gather_ps","_mm512_i64scatter_epi32","_mm512_i64scatter_epi64","_mm512_i64scatter_pd","_mm512_i64scatter_ps","_mm512_insertf32x4","_mm512_insertf32x8","_mm512_insertf64x2","_mm512_insertf64x4","_mm512_inserti32x4","_mm512_inserti32x8","_mm512_inserti64x2","_mm512_inserti64x4","_mm512_int2mask","_mm512_kand","_mm512_kandn","_mm512_kmov","_mm512_knot","_mm512_kor","_mm512_kortestc","_mm512_kortestz","_mm512_kunpackb","_mm512_kunpackd","_mm512_kunpackw","_mm512_kxnor","_mm512_kxor","_mm512_load_epi32","_mm512_load_epi64","_mm512_load_pd","_mm512_load_ph","_mm512_load_ps","_mm512_load_si512","_mm512_loadu_epi16","_mm512_loadu_epi32","_mm512_loadu_epi64","_mm512_loadu_epi8","_mm512_loadu_pd","_mm512_loadu_ph","_mm512_loadu_ps","_mm512_loadu_si512","_mm512_lzcnt_epi32","_mm512_lzcnt_epi64","_mm512_madd52hi_epu64","_mm512_madd52lo_epu64","_mm512_madd_epi16","_mm512_maddubs_epi16","_mm512_mask2_permutex2var_epi16","_mm512_mask2_permutex2var_epi32","_mm512_mask2_permutex2var_epi64","_mm512_mask2_permutex2var_epi8","_mm512_mask2_permutex2var_pd","_mm512_mask2_permutex2var_ps","_mm512_mask2int","_mm512_mask3_fcmadd_pch","_mm512_mask3_fcmadd_round_pch","_mm512_mask3_fmadd_pch","_mm512_mask3_fmadd_pd","_mm512_mask3_fmadd_ph","_mm512_mask3_fmadd_ps","_mm512_mask3_fmadd_round_pch","_mm512_mask3_fmadd_round_pd","_mm512_mask3_fmadd_round_ph","_mm512_mask3_fmadd_round_ps","_mm512_mask3_fmaddsub_pd","_mm512_mask3_fmaddsub_ph","_mm512_mask3_fmaddsub_ps","_mm512_mask3_fmaddsub_round_pd","_mm512_mask3_fmaddsub_round_ph","_mm512_mask3_fmaddsub_round_ps","_mm512_mask3_fmsub_pd","_mm512_mask3_fmsub_ph","_mm512_mask3_fmsub_ps","_mm512_mask3_fmsub_round_pd","_mm512_mask3_fmsub_round_ph","_mm512_mask3_fmsub_round_ps","_mm512_mask3_fmsubadd_pd","_mm512_mask3_fmsubadd_ph","_mm512_mask3_fmsubadd_ps","_mm512_mask3_fmsubadd_round_pd","_mm512_mask3_fmsubadd_round_ph","_mm512_mask3_fmsubadd_round_ps","_mm512_mask3_fnmadd_pd","_mm512_mask3_fnmadd_ph","_mm512_mask3_fnmadd_ps","_mm512_mask3_fnmadd_round_pd","_mm512_mask3_fnmadd_round_ph","_mm512_mask3_fnmadd_round_ps","_mm512_mask3_fnmsub_pd","_mm512_mask3_fnmsub_ph","_mm512_mask3_fnmsub_ps","_mm512_mask3_fnmsub_round_pd","_mm512_mask3_fnmsub_round_ph","_mm512_mask3_fnmsub_round_ps","_mm512_mask_abs_epi16","_mm512_mask_abs_epi32","_mm512_mask_abs_epi64","_mm512_mask_abs_epi8","_mm512_mask_abs_pd","_mm512_mask_abs_ps","_mm512_mask_add_epi16","_mm512_mask_add_epi32","_mm512_mask_add_epi64","_mm512_mask_add_epi8","_mm512_mask_add_pd","_mm512_mask_add_ph","_mm512_mask_add_ps","_mm512_mask_add_round_pd","_mm512_mask_add_round_ph","_mm512_mask_add_round_ps","_mm512_mask_adds_epi16","_mm512_mask_adds_epi8","_mm512_mask_adds_epu16","_mm512_mask_adds_epu8","_mm512_mask_alignr_epi32","_mm512_mask_alignr_epi64","_mm512_mask_alignr_epi8","_mm512_mask_and_epi32","_mm512_mask_and_epi64","_mm512_mask_and_pd","_mm512_mask_and_ps","_mm512_mask_andnot_epi32","_mm512_mask_andnot_epi64","_mm512_mask_andnot_pd","_mm512_mask_andnot_ps","_mm512_mask_avg_epu16","_mm512_mask_avg_epu8","_mm512_mask_bitshuffle_epi64_mask","_mm512_mask_blend_epi16","_mm512_mask_blend_epi32","_mm512_mask_blend_epi64","_mm512_mask_blend_epi8","_mm512_mask_blend_pd","_mm512_mask_blend_ph","_mm512_mask_blend_ps","_mm512_mask_broadcast_f32x2","_mm512_mask_broadcast_f32x4","_mm512_mask_broadcast_f32x8","_mm512_mask_broadcast_f64x2","_mm512_mask_broadcast_f64x4","_mm512_mask_broadcast_i32x2","_mm512_mask_broadcast_i32x4","_mm512_mask_broadcast_i32x8","_mm512_mask_broadcast_i64x2","_mm512_mask_broadcast_i64x4","_mm512_mask_broadcastb_epi8","_mm512_mask_broadcastd_epi32","_mm512_mask_broadcastq_epi64","_mm512_mask_broadcastsd_pd","_mm512_mask_broadcastss_ps","_mm512_mask_broadcastw_epi16","_mm512_mask_cmp_epi16_mask","_mm512_mask_cmp_epi32_mask","_mm512_mask_cmp_epi64_mask","_mm512_mask_cmp_epi8_mask","_mm512_mask_cmp_epu16_mask","_mm512_mask_cmp_epu32_mask","_mm512_mask_cmp_epu64_mask","_mm512_mask_cmp_epu8_mask","_mm512_mask_cmp_pd_mask","_mm512_mask_cmp_ph_mask","_mm512_mask_cmp_ps_mask","_mm512_mask_cmp_round_pd_mask","_mm512_mask_cmp_round_ph_mask","_mm512_mask_cmp_round_ps_mask","_mm512_mask_cmpeq_epi16_mask","_mm512_mask_cmpeq_epi32_mask","_mm512_mask_cmpeq_epi64_mask","_mm512_mask_cmpeq_epi8_mask","_mm512_mask_cmpeq_epu16_mask","_mm512_mask_cmpeq_epu32_mask","_mm512_mask_cmpeq_epu64_mask","_mm512_mask_cmpeq_epu8_mask","_mm512_mask_cmpeq_pd_mask","_mm512_mask_cmpeq_ps_mask","_mm512_mask_cmpge_epi16_mask","_mm512_mask_cmpge_epi32_mask","_mm512_mask_cmpge_epi64_mask","_mm512_mask_cmpge_epi8_mask","_mm512_mask_cmpge_epu16_mask","_mm512_mask_cmpge_epu32_mask","_mm512_mask_cmpge_epu64_mask","_mm512_mask_cmpge_epu8_mask","_mm512_mask_cmpgt_epi16_mask","_mm512_mask_cmpgt_epi32_mask","_mm512_mask_cmpgt_epi64_mask","_mm512_mask_cmpgt_epi8_mask","_mm512_mask_cmpgt_epu16_mask","_mm512_mask_cmpgt_epu32_mask","_mm512_mask_cmpgt_epu64_mask","_mm512_mask_cmpgt_epu8_mask","_mm512_mask_cmple_epi16_mask","_mm512_mask_cmple_epi32_mask","_mm512_mask_cmple_epi64_mask","_mm512_mask_cmple_epi8_mask","_mm512_mask_cmple_epu16_mask","_mm512_mask_cmple_epu32_mask","_mm512_mask_cmple_epu64_mask","_mm512_mask_cmple_epu8_mask","_mm512_mask_cmple_pd_mask","_mm512_mask_cmple_ps_mask","_mm512_mask_cmplt_epi16_mask","_mm512_mask_cmplt_epi32_mask","_mm512_mask_cmplt_epi64_mask","_mm512_mask_cmplt_epi8_mask","_mm512_mask_cmplt_epu16_mask","_mm512_mask_cmplt_epu32_mask","_mm512_mask_cmplt_epu64_mask","_mm512_mask_cmplt_epu8_mask","_mm512_mask_cmplt_pd_mask","_mm512_mask_cmplt_ps_mask","_mm512_mask_cmpneq_epi16_mask","_mm512_mask_cmpneq_epi32_mask","_mm512_mask_cmpneq_epi64_mask","_mm512_mask_cmpneq_epi8_mask","_mm512_mask_cmpneq_epu16_mask","_mm512_mask_cmpneq_epu32_mask","_mm512_mask_cmpneq_epu64_mask","_mm512_mask_cmpneq_epu8_mask","_mm512_mask_cmpneq_pd_mask","_mm512_mask_cmpneq_ps_mask","_mm512_mask_cmpnle_pd_mask","_mm512_mask_cmpnle_ps_mask","_mm512_mask_cmpnlt_pd_mask","_mm512_mask_cmpnlt_ps_mask","_mm512_mask_cmpord_pd_mask","_mm512_mask_cmpord_ps_mask","_mm512_mask_cmpunord_pd_mask","_mm512_mask_cmpunord_ps_mask","_mm512_mask_cmul_pch","_mm512_mask_cmul_round_pch","_mm512_mask_compress_epi16","_mm512_mask_compress_epi32","_mm512_mask_compress_epi64","_mm512_mask_compress_epi8","_mm512_mask_compress_pd","_mm512_mask_compress_ps","_mm512_mask_compressstoreu_epi16","_mm512_mask_compressstoreu_epi32","_mm512_mask_compressstoreu_epi64","_mm512_mask_compressstoreu_epi8","_mm512_mask_compressstoreu_pd","_mm512_mask_compressstoreu_ps","_mm512_mask_conflict_epi32","_mm512_mask_conflict_epi64","_mm512_mask_conj_pch","_mm512_mask_cvt_roundepi16_ph","_mm512_mask_cvt_roundepi32_ph","_mm512_mask_cvt_roundepi32_ps","_mm512_mask_cvt_roundepi64_pd","_mm512_mask_cvt_roundepi64_ph","_mm512_mask_cvt_roundepi64_ps","_mm512_mask_cvt_roundepu16_ph","_mm512_mask_cvt_roundepu32_ph","_mm512_mask_cvt_roundepu32_ps","_mm512_mask_cvt_roundepu64_pd","_mm512_mask_cvt_roundepu64_ph","_mm512_mask_cvt_roundepu64_ps","_mm512_mask_cvt_roundpd_epi32","_mm512_mask_cvt_roundpd_epi64","_mm512_mask_cvt_roundpd_epu32","_mm512_mask_cvt_roundpd_epu64","_mm512_mask_cvt_roundpd_ph","_mm512_mask_cvt_roundpd_ps","_mm512_mask_cvt_roundph_epi16","_mm512_mask_cvt_roundph_epi32","_mm512_mask_cvt_roundph_epi64","_mm512_mask_cvt_roundph_epu16","_mm512_mask_cvt_roundph_epu32","_mm512_mask_cvt_roundph_epu64","_mm512_mask_cvt_roundph_pd","_mm512_mask_cvt_roundph_ps","_mm512_mask_cvt_roundps_epi32","_mm512_mask_cvt_roundps_epi64","_mm512_mask_cvt_roundps_epu32","_mm512_mask_cvt_roundps_epu64","_mm512_mask_cvt_roundps_pd","_mm512_mask_cvt_roundps_ph","_mm512_mask_cvtepi16_epi32","_mm512_mask_cvtepi16_epi64","_mm512_mask_cvtepi16_epi8","_mm512_mask_cvtepi16_ph","_mm512_mask_cvtepi16_storeu_epi8","_mm512_mask_cvtepi32_epi16","_mm512_mask_cvtepi32_epi64","_mm512_mask_cvtepi32_epi8","_mm512_mask_cvtepi32_pd","_mm512_mask_cvtepi32_ph","_mm512_mask_cvtepi32_ps","_mm512_mask_cvtepi32_storeu_epi16","_mm512_mask_cvtepi32_storeu_epi8","_mm512_mask_cvtepi32lo_pd","_mm512_mask_cvtepi64_epi16","_mm512_mask_cvtepi64_epi32","_mm512_mask_cvtepi64_epi8","_mm512_mask_cvtepi64_pd","_mm512_mask_cvtepi64_ph","_mm512_mask_cvtepi64_ps","_mm512_mask_cvtepi64_storeu_epi16","_mm512_mask_cvtepi64_storeu_epi32","_mm512_mask_cvtepi64_storeu_epi8","_mm512_mask_cvtepi8_epi16","_mm512_mask_cvtepi8_epi32","_mm512_mask_cvtepi8_epi64","_mm512_mask_cvtepu16_epi32","_mm512_mask_cvtepu16_epi64","_mm512_mask_cvtepu16_ph","_mm512_mask_cvtepu32_epi64","_mm512_mask_cvtepu32_pd","_mm512_mask_cvtepu32_ph","_mm512_mask_cvtepu32_ps","_mm512_mask_cvtepu32lo_pd","_mm512_mask_cvtepu64_pd","_mm512_mask_cvtepu64_ph","_mm512_mask_cvtepu64_ps","_mm512_mask_cvtepu8_epi16","_mm512_mask_cvtepu8_epi32","_mm512_mask_cvtepu8_epi64","_mm512_mask_cvtne2ps_pbh","_mm512_mask_cvtneps_pbh","_mm512_mask_cvtpbh_ps","_mm512_mask_cvtpd_epi32","_mm512_mask_cvtpd_epi64","_mm512_mask_cvtpd_epu32","_mm512_mask_cvtpd_epu64","_mm512_mask_cvtpd_ph","_mm512_mask_cvtpd_ps","_mm512_mask_cvtpd_pslo","_mm512_mask_cvtph_epi16","_mm512_mask_cvtph_epi32","_mm512_mask_cvtph_epi64","_mm512_mask_cvtph_epu16","_mm512_mask_cvtph_epu32","_mm512_mask_cvtph_epu64","_mm512_mask_cvtph_pd","_mm512_mask_cvtph_ps","_mm512_mask_cvtps_epi32","_mm512_mask_cvtps_epi64","_mm512_mask_cvtps_epu32","_mm512_mask_cvtps_epu64","_mm512_mask_cvtps_pd","_mm512_mask_cvtps_ph","_mm512_mask_cvtpslo_pd","_mm512_mask_cvtsepi16_epi8","_mm512_mask_cvtsepi16_storeu_epi8","_mm512_mask_cvtsepi32_epi16","_mm512_mask_cvtsepi32_epi8","_mm512_mask_cvtsepi32_storeu_epi16","_mm512_mask_cvtsepi32_storeu_epi8","_mm512_mask_cvtsepi64_epi16","_mm512_mask_cvtsepi64_epi32","_mm512_mask_cvtsepi64_epi8","_mm512_mask_cvtsepi64_storeu_epi16","_mm512_mask_cvtsepi64_storeu_epi32","_mm512_mask_cvtsepi64_storeu_epi8","_mm512_mask_cvtt_roundpd_epi32","_mm512_mask_cvtt_roundpd_epi64","_mm512_mask_cvtt_roundpd_epu32","_mm512_mask_cvtt_roundpd_epu64","_mm512_mask_cvtt_roundph_epi16","_mm512_mask_cvtt_roundph_epi32","_mm512_mask_cvtt_roundph_epi64","_mm512_mask_cvtt_roundph_epu16","_mm512_mask_cvtt_roundph_epu32","_mm512_mask_cvtt_roundph_epu64","_mm512_mask_cvtt_roundps_epi32","_mm512_mask_cvtt_roundps_epi64","_mm512_mask_cvtt_roundps_epu32","_mm512_mask_cvtt_roundps_epu64","_mm512_mask_cvttpd_epi32","_mm512_mask_cvttpd_epi64","_mm512_mask_cvttpd_epu32","_mm512_mask_cvttpd_epu64","_mm512_mask_cvttph_epi16","_mm512_mask_cvttph_epi32","_mm512_mask_cvttph_epi64","_mm512_mask_cvttph_epu16","_mm512_mask_cvttph_epu32","_mm512_mask_cvttph_epu64","_mm512_mask_cvttps_epi32","_mm512_mask_cvttps_epi64","_mm512_mask_cvttps_epu32","_mm512_mask_cvttps_epu64","_mm512_mask_cvtusepi16_epi8","_mm512_mask_cvtusepi16_storeu_epi8","_mm512_mask_cvtusepi32_epi16","_mm512_mask_cvtusepi32_epi8","_mm512_mask_cvtusepi32_storeu_epi16","_mm512_mask_cvtusepi32_storeu_epi8","_mm512_mask_cvtusepi64_epi16","_mm512_mask_cvtusepi64_epi32","_mm512_mask_cvtusepi64_epi8","_mm512_mask_cvtusepi64_storeu_epi16","_mm512_mask_cvtusepi64_storeu_epi32","_mm512_mask_cvtusepi64_storeu_epi8","_mm512_mask_cvtx_roundph_ps","_mm512_mask_cvtx_roundps_ph","_mm512_mask_cvtxph_ps","_mm512_mask_cvtxps_ph","_mm512_mask_dbsad_epu8","_mm512_mask_div_pd","_mm512_mask_div_ph","_mm512_mask_div_ps","_mm512_mask_div_round_pd","_mm512_mask_div_round_ph","_mm512_mask_div_round_ps","_mm512_mask_dpbf16_ps","_mm512_mask_dpbusd_epi32","_mm512_mask_dpbusds_epi32","_mm512_mask_dpwssd_epi32","_mm512_mask_dpwssds_epi32","_mm512_mask_expand_epi16","_mm512_mask_expand_epi32","_mm512_mask_expand_epi64","_mm512_mask_expand_epi8","_mm512_mask_expand_pd","_mm512_mask_expand_ps","_mm512_mask_expandloadu_epi16","_mm512_mask_expandloadu_epi32","_mm512_mask_expandloadu_epi64","_mm512_mask_expandloadu_epi8","_mm512_mask_expandloadu_pd","_mm512_mask_expandloadu_ps","_mm512_mask_extractf32x4_ps","_mm512_mask_extractf32x8_ps","_mm512_mask_extractf64x2_pd","_mm512_mask_extractf64x4_pd","_mm512_mask_extracti32x4_epi32","_mm512_mask_extracti32x8_epi32","_mm512_mask_extracti64x2_epi64","_mm512_mask_extracti64x4_epi64","_mm512_mask_fcmadd_pch","_mm512_mask_fcmadd_round_pch","_mm512_mask_fcmul_pch","_mm512_mask_fcmul_round_pch","_mm512_mask_fixupimm_pd","_mm512_mask_fixupimm_ps","_mm512_mask_fixupimm_round_pd","_mm512_mask_fixupimm_round_ps","_mm512_mask_fmadd_pch","_mm512_mask_fmadd_pd","_mm512_mask_fmadd_ph","_mm512_mask_fmadd_ps","_mm512_mask_fmadd_round_pch","_mm512_mask_fmadd_round_pd","_mm512_mask_fmadd_round_ph","_mm512_mask_fmadd_round_ps","_mm512_mask_fmaddsub_pd","_mm512_mask_fmaddsub_ph","_mm512_mask_fmaddsub_ps","_mm512_mask_fmaddsub_round_pd","_mm512_mask_fmaddsub_round_ph","_mm512_mask_fmaddsub_round_ps","_mm512_mask_fmsub_pd","_mm512_mask_fmsub_ph","_mm512_mask_fmsub_ps","_mm512_mask_fmsub_round_pd","_mm512_mask_fmsub_round_ph","_mm512_mask_fmsub_round_ps","_mm512_mask_fmsubadd_pd","_mm512_mask_fmsubadd_ph","_mm512_mask_fmsubadd_ps","_mm512_mask_fmsubadd_round_pd","_mm512_mask_fmsubadd_round_ph","_mm512_mask_fmsubadd_round_ps","_mm512_mask_fmul_pch","_mm512_mask_fmul_round_pch","_mm512_mask_fnmadd_pd","_mm512_mask_fnmadd_ph","_mm512_mask_fnmadd_ps","_mm512_mask_fnmadd_round_pd","_mm512_mask_fnmadd_round_ph","_mm512_mask_fnmadd_round_ps","_mm512_mask_fnmsub_pd","_mm512_mask_fnmsub_ph","_mm512_mask_fnmsub_ps","_mm512_mask_fnmsub_round_pd","_mm512_mask_fnmsub_round_ph","_mm512_mask_fnmsub_round_ps","_mm512_mask_fpclass_pd_mask","_mm512_mask_fpclass_ph_mask","_mm512_mask_fpclass_ps_mask","_mm512_mask_getexp_pd","_mm512_mask_getexp_ph","_mm512_mask_getexp_ps","_mm512_mask_getexp_round_pd","_mm512_mask_getexp_round_ph","_mm512_mask_getexp_round_ps","_mm512_mask_getmant_pd","_mm512_mask_getmant_ph","_mm512_mask_getmant_ps","_mm512_mask_getmant_round_pd","_mm512_mask_getmant_round_ph","_mm512_mask_getmant_round_ps","_mm512_mask_gf2p8affine_epi64_epi8","_mm512_mask_gf2p8affineinv_epi64_epi8","_mm512_mask_gf2p8mul_epi8","_mm512_mask_i32gather_epi32","_mm512_mask_i32gather_epi64","_mm512_mask_i32gather_pd","_mm512_mask_i32gather_ps","_mm512_mask_i32logather_epi64","_mm512_mask_i32logather_pd","_mm512_mask_i32loscatter_epi64","_mm512_mask_i32loscatter_pd","_mm512_mask_i32scatter_epi32","_mm512_mask_i32scatter_epi64","_mm512_mask_i32scatter_pd","_mm512_mask_i32scatter_ps","_mm512_mask_i64gather_epi32","_mm512_mask_i64gather_epi64","_mm512_mask_i64gather_pd","_mm512_mask_i64gather_ps","_mm512_mask_i64scatter_epi32","_mm512_mask_i64scatter_epi64","_mm512_mask_i64scatter_pd","_mm512_mask_i64scatter_ps","_mm512_mask_insertf32x4","_mm512_mask_insertf32x8","_mm512_mask_insertf64x2","_mm512_mask_insertf64x4","_mm512_mask_inserti32x4","_mm512_mask_inserti32x8","_mm512_mask_inserti64x2","_mm512_mask_inserti64x4","_mm512_mask_load_epi32","_mm512_mask_load_epi64","_mm512_mask_load_pd","_mm512_mask_load_ps","_mm512_mask_loadu_epi16","_mm512_mask_loadu_epi32","_mm512_mask_loadu_epi64","_mm512_mask_loadu_epi8","_mm512_mask_loadu_pd","_mm512_mask_loadu_ps","_mm512_mask_lzcnt_epi32","_mm512_mask_lzcnt_epi64","_mm512_mask_madd52hi_epu64","_mm512_mask_madd52lo_epu64","_mm512_mask_madd_epi16","_mm512_mask_maddubs_epi16","_mm512_mask_max_epi16","_mm512_mask_max_epi32","_mm512_mask_max_epi64","_mm512_mask_max_epi8","_mm512_mask_max_epu16","_mm512_mask_max_epu32","_mm512_mask_max_epu64","_mm512_mask_max_epu8","_mm512_mask_max_pd","_mm512_mask_max_ph","_mm512_mask_max_ps","_mm512_mask_max_round_pd","_mm512_mask_max_round_ph","_mm512_mask_max_round_ps","_mm512_mask_min_epi16","_mm512_mask_min_epi32","_mm512_mask_min_epi64","_mm512_mask_min_epi8","_mm512_mask_min_epu16","_mm512_mask_min_epu32","_mm512_mask_min_epu64","_mm512_mask_min_epu8","_mm512_mask_min_pd","_mm512_mask_min_ph","_mm512_mask_min_ps","_mm512_mask_min_round_pd","_mm512_mask_min_round_ph","_mm512_mask_min_round_ps","_mm512_mask_mov_epi16","_mm512_mask_mov_epi32","_mm512_mask_mov_epi64","_mm512_mask_mov_epi8","_mm512_mask_mov_pd","_mm512_mask_mov_ps","_mm512_mask_movedup_pd","_mm512_mask_movehdup_ps","_mm512_mask_moveldup_ps","_mm512_mask_mul_epi32","_mm512_mask_mul_epu32","_mm512_mask_mul_pch","_mm512_mask_mul_pd","_mm512_mask_mul_ph","_mm512_mask_mul_ps","_mm512_mask_mul_round_pch","_mm512_mask_mul_round_pd","_mm512_mask_mul_round_ph","_mm512_mask_mul_round_ps","_mm512_mask_mulhi_epi16","_mm512_mask_mulhi_epu16","_mm512_mask_mulhrs_epi16","_mm512_mask_mullo_epi16","_mm512_mask_mullo_epi32","_mm512_mask_mullo_epi64","_mm512_mask_mullox_epi64","_mm512_mask_multishift_epi64_epi8","_mm512_mask_or_epi32","_mm512_mask_or_epi64","_mm512_mask_or_pd","_mm512_mask_or_ps","_mm512_mask_packs_epi16","_mm512_mask_packs_epi32","_mm512_mask_packus_epi16","_mm512_mask_packus_epi32","_mm512_mask_permute_pd","_mm512_mask_permute_ps","_mm512_mask_permutevar_epi32","_mm512_mask_permutevar_pd","_mm512_mask_permutevar_ps","_mm512_mask_permutex2var_epi16","_mm512_mask_permutex2var_epi32","_mm512_mask_permutex2var_epi64","_mm512_mask_permutex2var_epi8","_mm512_mask_permutex2var_pd","_mm512_mask_permutex2var_ps","_mm512_mask_permutex_epi64","_mm512_mask_permutex_pd","_mm512_mask_permutexvar_epi16","_mm512_mask_permutexvar_epi32","_mm512_mask_permutexvar_epi64","_mm512_mask_permutexvar_epi8","_mm512_mask_permutexvar_pd","_mm512_mask_permutexvar_ps","_mm512_mask_popcnt_epi16","_mm512_mask_popcnt_epi32","_mm512_mask_popcnt_epi64","_mm512_mask_popcnt_epi8","_mm512_mask_range_pd","_mm512_mask_range_ps","_mm512_mask_range_round_pd","_mm512_mask_range_round_ps","_mm512_mask_rcp14_pd","_mm512_mask_rcp14_ps","_mm512_mask_rcp_ph","_mm512_mask_reduce_add_epi32","_mm512_mask_reduce_add_epi64","_mm512_mask_reduce_add_pd","_mm512_mask_reduce_add_ps","_mm512_mask_reduce_and_epi32","_mm512_mask_reduce_and_epi64","_mm512_mask_reduce_max_epi32","_mm512_mask_reduce_max_epi64","_mm512_mask_reduce_max_epu32","_mm512_mask_reduce_max_epu64","_mm512_mask_reduce_max_pd","_mm512_mask_reduce_max_ps","_mm512_mask_reduce_min_epi32","_mm512_mask_reduce_min_epi64","_mm512_mask_reduce_min_epu32","_mm512_mask_reduce_min_epu64","_mm512_mask_reduce_min_pd","_mm512_mask_reduce_min_ps","_mm512_mask_reduce_mul_epi32","_mm512_mask_reduce_mul_epi64","_mm512_mask_reduce_mul_pd","_mm512_mask_reduce_mul_ps","_mm512_mask_reduce_or_epi32","_mm512_mask_reduce_or_epi64","_mm512_mask_reduce_pd","_mm512_mask_reduce_ph","_mm512_mask_reduce_ps","_mm512_mask_reduce_round_pd","_mm512_mask_reduce_round_ph","_mm512_mask_reduce_round_ps","_mm512_mask_rol_epi32","_mm512_mask_rol_epi64","_mm512_mask_rolv_epi32","_mm512_mask_rolv_epi64","_mm512_mask_ror_epi32","_mm512_mask_ror_epi64","_mm512_mask_rorv_epi32","_mm512_mask_rorv_epi64","_mm512_mask_roundscale_pd","_mm512_mask_roundscale_ph","_mm512_mask_roundscale_ps","_mm512_mask_roundscale_round_pd","_mm512_mask_roundscale_round_ph","_mm512_mask_roundscale_round_ps","_mm512_mask_rsqrt14_pd","_mm512_mask_rsqrt14_ps","_mm512_mask_rsqrt_ph","_mm512_mask_scalef_pd","_mm512_mask_scalef_ph","_mm512_mask_scalef_ps","_mm512_mask_scalef_round_pd","_mm512_mask_scalef_round_ph","_mm512_mask_scalef_round_ps","_mm512_mask_set1_epi16","_mm512_mask_set1_epi32","_mm512_mask_set1_epi64","_mm512_mask_set1_epi8","_mm512_mask_shldi_epi16","_mm512_mask_shldi_epi32","_mm512_mask_shldi_epi64","_mm512_mask_shldv_epi16","_mm512_mask_shldv_epi32","_mm512_mask_shldv_epi64","_mm512_mask_shrdi_epi16","_mm512_mask_shrdi_epi32","_mm512_mask_shrdi_epi64","_mm512_mask_shrdv_epi16","_mm512_mask_shrdv_epi32","_mm512_mask_shrdv_epi64","_mm512_mask_shuffle_epi32","_mm512_mask_shuffle_epi8","_mm512_mask_shuffle_f32x4","_mm512_mask_shuffle_f64x2","_mm512_mask_shuffle_i32x4","_mm512_mask_shuffle_i64x2","_mm512_mask_shuffle_pd","_mm512_mask_shuffle_ps","_mm512_mask_shufflehi_epi16","_mm512_mask_shufflelo_epi16","_mm512_mask_sll_epi16","_mm512_mask_sll_epi32","_mm512_mask_sll_epi64","_mm512_mask_slli_epi16","_mm512_mask_slli_epi32","_mm512_mask_slli_epi64","_mm512_mask_sllv_epi16","_mm512_mask_sllv_epi32","_mm512_mask_sllv_epi64","_mm512_mask_sqrt_pd","_mm512_mask_sqrt_ph","_mm512_mask_sqrt_ps","_mm512_mask_sqrt_round_pd","_mm512_mask_sqrt_round_ph","_mm512_mask_sqrt_round_ps","_mm512_mask_sra_epi16","_mm512_mask_sra_epi32","_mm512_mask_sra_epi64","_mm512_mask_srai_epi16","_mm512_mask_srai_epi32","_mm512_mask_srai_epi64","_mm512_mask_srav_epi16","_mm512_mask_srav_epi32","_mm512_mask_srav_epi64","_mm512_mask_srl_epi16","_mm512_mask_srl_epi32","_mm512_mask_srl_epi64","_mm512_mask_srli_epi16","_mm512_mask_srli_epi32","_mm512_mask_srli_epi64","_mm512_mask_srlv_epi16","_mm512_mask_srlv_epi32","_mm512_mask_srlv_epi64","_mm512_mask_store_epi32","_mm512_mask_store_epi64","_mm512_mask_store_pd","_mm512_mask_store_ps","_mm512_mask_storeu_epi16","_mm512_mask_storeu_epi32","_mm512_mask_storeu_epi64","_mm512_mask_storeu_epi8","_mm512_mask_storeu_pd","_mm512_mask_storeu_ps","_mm512_mask_sub_epi16","_mm512_mask_sub_epi32","_mm512_mask_sub_epi64","_mm512_mask_sub_epi8","_mm512_mask_sub_pd","_mm512_mask_sub_ph","_mm512_mask_sub_ps","_mm512_mask_sub_round_pd","_mm512_mask_sub_round_ph","_mm512_mask_sub_round_ps","_mm512_mask_subs_epi16","_mm512_mask_subs_epi8","_mm512_mask_subs_epu16","_mm512_mask_subs_epu8","_mm512_mask_ternarylogic_epi32","_mm512_mask_ternarylogic_epi64","_mm512_mask_test_epi16_mask","_mm512_mask_test_epi32_mask","_mm512_mask_test_epi64_mask","_mm512_mask_test_epi8_mask","_mm512_mask_testn_epi16_mask","_mm512_mask_testn_epi32_mask","_mm512_mask_testn_epi64_mask","_mm512_mask_testn_epi8_mask","_mm512_mask_unpackhi_epi16","_mm512_mask_unpackhi_epi32","_mm512_mask_unpackhi_epi64","_mm512_mask_unpackhi_epi8","_mm512_mask_unpackhi_pd","_mm512_mask_unpackhi_ps","_mm512_mask_unpacklo_epi16","_mm512_mask_unpacklo_epi32","_mm512_mask_unpacklo_epi64","_mm512_mask_unpacklo_epi8","_mm512_mask_unpacklo_pd","_mm512_mask_unpacklo_ps","_mm512_mask_xor_epi32","_mm512_mask_xor_epi64","_mm512_mask_xor_pd","_mm512_mask_xor_ps","_mm512_maskz_abs_epi16","_mm512_maskz_abs_epi32","_mm512_maskz_abs_epi64","_mm512_maskz_abs_epi8","_mm512_maskz_add_epi16","_mm512_maskz_add_epi32","_mm512_maskz_add_epi64","_mm512_maskz_add_epi8","_mm512_maskz_add_pd","_mm512_maskz_add_ph","_mm512_maskz_add_ps","_mm512_maskz_add_round_pd","_mm512_maskz_add_round_ph","_mm512_maskz_add_round_ps","_mm512_maskz_adds_epi16","_mm512_maskz_adds_epi8","_mm512_maskz_adds_epu16","_mm512_maskz_adds_epu8","_mm512_maskz_alignr_epi32","_mm512_maskz_alignr_epi64","_mm512_maskz_alignr_epi8","_mm512_maskz_and_epi32","_mm512_maskz_and_epi64","_mm512_maskz_and_pd","_mm512_maskz_and_ps","_mm512_maskz_andnot_epi32","_mm512_maskz_andnot_epi64","_mm512_maskz_andnot_pd","_mm512_maskz_andnot_ps","_mm512_maskz_avg_epu16","_mm512_maskz_avg_epu8","_mm512_maskz_broadcast_f32x2","_mm512_maskz_broadcast_f32x4","_mm512_maskz_broadcast_f32x8","_mm512_maskz_broadcast_f64x2","_mm512_maskz_broadcast_f64x4","_mm512_maskz_broadcast_i32x2","_mm512_maskz_broadcast_i32x4","_mm512_maskz_broadcast_i32x8","_mm512_maskz_broadcast_i64x2","_mm512_maskz_broadcast_i64x4","_mm512_maskz_broadcastb_epi8","_mm512_maskz_broadcastd_epi32","_mm512_maskz_broadcastq_epi64","_mm512_maskz_broadcastsd_pd","_mm512_maskz_broadcastss_ps","_mm512_maskz_broadcastw_epi16","_mm512_maskz_cmul_pch","_mm512_maskz_cmul_round_pch","_mm512_maskz_compress_epi16","_mm512_maskz_compress_epi32","_mm512_maskz_compress_epi64","_mm512_maskz_compress_epi8","_mm512_maskz_compress_pd","_mm512_maskz_compress_ps","_mm512_maskz_conflict_epi32","_mm512_maskz_conflict_epi64","_mm512_maskz_conj_pch","_mm512_maskz_cvt_roundepi16_ph","_mm512_maskz_cvt_roundepi32_ph","_mm512_maskz_cvt_roundepi32_ps","_mm512_maskz_cvt_roundepi64_pd","_mm512_maskz_cvt_roundepi64_ph","_mm512_maskz_cvt_roundepi64_ps","_mm512_maskz_cvt_roundepu16_ph","_mm512_maskz_cvt_roundepu32_ph","_mm512_maskz_cvt_roundepu32_ps","_mm512_maskz_cvt_roundepu64_pd","_mm512_maskz_cvt_roundepu64_ph","_mm512_maskz_cvt_roundepu64_ps","_mm512_maskz_cvt_roundpd_epi32","_mm512_maskz_cvt_roundpd_epi64","_mm512_maskz_cvt_roundpd_epu32","_mm512_maskz_cvt_roundpd_epu64","_mm512_maskz_cvt_roundpd_ph","_mm512_maskz_cvt_roundpd_ps","_mm512_maskz_cvt_roundph_epi16","_mm512_maskz_cvt_roundph_epi32","_mm512_maskz_cvt_roundph_epi64","_mm512_maskz_cvt_roundph_epu16","_mm512_maskz_cvt_roundph_epu32","_mm512_maskz_cvt_roundph_epu64","_mm512_maskz_cvt_roundph_pd","_mm512_maskz_cvt_roundph_ps","_mm512_maskz_cvt_roundps_epi32","_mm512_maskz_cvt_roundps_epi64","_mm512_maskz_cvt_roundps_epu32","_mm512_maskz_cvt_roundps_epu64","_mm512_maskz_cvt_roundps_pd","_mm512_maskz_cvt_roundps_ph","_mm512_maskz_cvtepi16_epi32","_mm512_maskz_cvtepi16_epi64","_mm512_maskz_cvtepi16_epi8","_mm512_maskz_cvtepi16_ph","_mm512_maskz_cvtepi32_epi16","_mm512_maskz_cvtepi32_epi64","_mm512_maskz_cvtepi32_epi8","_mm512_maskz_cvtepi32_pd","_mm512_maskz_cvtepi32_ph","_mm512_maskz_cvtepi32_ps","_mm512_maskz_cvtepi64_epi16","_mm512_maskz_cvtepi64_epi32","_mm512_maskz_cvtepi64_epi8","_mm512_maskz_cvtepi64_pd","_mm512_maskz_cvtepi64_ph","_mm512_maskz_cvtepi64_ps","_mm512_maskz_cvtepi8_epi16","_mm512_maskz_cvtepi8_epi32","_mm512_maskz_cvtepi8_epi64","_mm512_maskz_cvtepu16_epi32","_mm512_maskz_cvtepu16_epi64","_mm512_maskz_cvtepu16_ph","_mm512_maskz_cvtepu32_epi64","_mm512_maskz_cvtepu32_pd","_mm512_maskz_cvtepu32_ph","_mm512_maskz_cvtepu32_ps","_mm512_maskz_cvtepu64_pd","_mm512_maskz_cvtepu64_ph","_mm512_maskz_cvtepu64_ps","_mm512_maskz_cvtepu8_epi16","_mm512_maskz_cvtepu8_epi32","_mm512_maskz_cvtepu8_epi64","_mm512_maskz_cvtne2ps_pbh","_mm512_maskz_cvtneps_pbh","_mm512_maskz_cvtpbh_ps","_mm512_maskz_cvtpd_epi32","_mm512_maskz_cvtpd_epi64","_mm512_maskz_cvtpd_epu32","_mm512_maskz_cvtpd_epu64","_mm512_maskz_cvtpd_ph","_mm512_maskz_cvtpd_ps","_mm512_maskz_cvtph_epi16","_mm512_maskz_cvtph_epi32","_mm512_maskz_cvtph_epi64","_mm512_maskz_cvtph_epu16","_mm512_maskz_cvtph_epu32","_mm512_maskz_cvtph_epu64","_mm512_maskz_cvtph_pd","_mm512_maskz_cvtph_ps","_mm512_maskz_cvtps_epi32","_mm512_maskz_cvtps_epi64","_mm512_maskz_cvtps_epu32","_mm512_maskz_cvtps_epu64","_mm512_maskz_cvtps_pd","_mm512_maskz_cvtps_ph","_mm512_maskz_cvtsepi16_epi8","_mm512_maskz_cvtsepi32_epi16","_mm512_maskz_cvtsepi32_epi8","_mm512_maskz_cvtsepi64_epi16","_mm512_maskz_cvtsepi64_epi32","_mm512_maskz_cvtsepi64_epi8","_mm512_maskz_cvtt_roundpd_epi32","_mm512_maskz_cvtt_roundpd_epi64","_mm512_maskz_cvtt_roundpd_epu32","_mm512_maskz_cvtt_roundpd_epu64","_mm512_maskz_cvtt_roundph_epi16","_mm512_maskz_cvtt_roundph_epi32","_mm512_maskz_cvtt_roundph_epi64","_mm512_maskz_cvtt_roundph_epu16","_mm512_maskz_cvtt_roundph_epu32","_mm512_maskz_cvtt_roundph_epu64","_mm512_maskz_cvtt_roundps_epi32","_mm512_maskz_cvtt_roundps_epi64","_mm512_maskz_cvtt_roundps_epu32","_mm512_maskz_cvtt_roundps_epu64","_mm512_maskz_cvttpd_epi32","_mm512_maskz_cvttpd_epi64","_mm512_maskz_cvttpd_epu32","_mm512_maskz_cvttpd_epu64","_mm512_maskz_cvttph_epi16","_mm512_maskz_cvttph_epi32","_mm512_maskz_cvttph_epi64","_mm512_maskz_cvttph_epu16","_mm512_maskz_cvttph_epu32","_mm512_maskz_cvttph_epu64","_mm512_maskz_cvttps_epi32","_mm512_maskz_cvttps_epi64","_mm512_maskz_cvttps_epu32","_mm512_maskz_cvttps_epu64","_mm512_maskz_cvtusepi16_epi8","_mm512_maskz_cvtusepi32_epi16","_mm512_maskz_cvtusepi32_epi8","_mm512_maskz_cvtusepi64_epi16","_mm512_maskz_cvtusepi64_epi32","_mm512_maskz_cvtusepi64_epi8","_mm512_maskz_cvtx_roundph_ps","_mm512_maskz_cvtx_roundps_ph","_mm512_maskz_cvtxph_ps","_mm512_maskz_cvtxps_ph","_mm512_maskz_dbsad_epu8","_mm512_maskz_div_pd","_mm512_maskz_div_ph","_mm512_maskz_div_ps","_mm512_maskz_div_round_pd","_mm512_maskz_div_round_ph","_mm512_maskz_div_round_ps","_mm512_maskz_dpbf16_ps","_mm512_maskz_dpbusd_epi32","_mm512_maskz_dpbusds_epi32","_mm512_maskz_dpwssd_epi32","_mm512_maskz_dpwssds_epi32","_mm512_maskz_expand_epi16","_mm512_maskz_expand_epi32","_mm512_maskz_expand_epi64","_mm512_maskz_expand_epi8","_mm512_maskz_expand_pd","_mm512_maskz_expand_ps","_mm512_maskz_expandloadu_epi16","_mm512_maskz_expandloadu_epi32","_mm512_maskz_expandloadu_epi64","_mm512_maskz_expandloadu_epi8","_mm512_maskz_expandloadu_pd","_mm512_maskz_expandloadu_ps","_mm512_maskz_extractf32x4_ps","_mm512_maskz_extractf32x8_ps","_mm512_maskz_extractf64x2_pd","_mm512_maskz_extractf64x4_pd","_mm512_maskz_extracti32x4_epi32","_mm512_maskz_extracti32x8_epi32","_mm512_maskz_extracti64x2_epi64","_mm512_maskz_extracti64x4_epi64","_mm512_maskz_fcmadd_pch","_mm512_maskz_fcmadd_round_pch","_mm512_maskz_fcmul_pch","_mm512_maskz_fcmul_round_pch","_mm512_maskz_fixupimm_pd","_mm512_maskz_fixupimm_ps","_mm512_maskz_fixupimm_round_pd","_mm512_maskz_fixupimm_round_ps","_mm512_maskz_fmadd_pch","_mm512_maskz_fmadd_pd","_mm512_maskz_fmadd_ph","_mm512_maskz_fmadd_ps","_mm512_maskz_fmadd_round_pch","_mm512_maskz_fmadd_round_pd","_mm512_maskz_fmadd_round_ph","_mm512_maskz_fmadd_round_ps","_mm512_maskz_fmaddsub_pd","_mm512_maskz_fmaddsub_ph","_mm512_maskz_fmaddsub_ps","_mm512_maskz_fmaddsub_round_pd","_mm512_maskz_fmaddsub_round_ph","_mm512_maskz_fmaddsub_round_ps","_mm512_maskz_fmsub_pd","_mm512_maskz_fmsub_ph","_mm512_maskz_fmsub_ps","_mm512_maskz_fmsub_round_pd","_mm512_maskz_fmsub_round_ph","_mm512_maskz_fmsub_round_ps","_mm512_maskz_fmsubadd_pd","_mm512_maskz_fmsubadd_ph","_mm512_maskz_fmsubadd_ps","_mm512_maskz_fmsubadd_round_pd","_mm512_maskz_fmsubadd_round_ph","_mm512_maskz_fmsubadd_round_ps","_mm512_maskz_fmul_pch","_mm512_maskz_fmul_round_pch","_mm512_maskz_fnmadd_pd","_mm512_maskz_fnmadd_ph","_mm512_maskz_fnmadd_ps","_mm512_maskz_fnmadd_round_pd","_mm512_maskz_fnmadd_round_ph","_mm512_maskz_fnmadd_round_ps","_mm512_maskz_fnmsub_pd","_mm512_maskz_fnmsub_ph","_mm512_maskz_fnmsub_ps","_mm512_maskz_fnmsub_round_pd","_mm512_maskz_fnmsub_round_ph","_mm512_maskz_fnmsub_round_ps","_mm512_maskz_getexp_pd","_mm512_maskz_getexp_ph","_mm512_maskz_getexp_ps","_mm512_maskz_getexp_round_pd","_mm512_maskz_getexp_round_ph","_mm512_maskz_getexp_round_ps","_mm512_maskz_getmant_pd","_mm512_maskz_getmant_ph","_mm512_maskz_getmant_ps","_mm512_maskz_getmant_round_pd","_mm512_maskz_getmant_round_ph","_mm512_maskz_getmant_round_ps","_mm512_maskz_gf2p8affine_epi64_epi8","_mm512_maskz_gf2p8affineinv_epi64_epi8","_mm512_maskz_gf2p8mul_epi8","_mm512_maskz_insertf32x4","_mm512_maskz_insertf32x8","_mm512_maskz_insertf64x2","_mm512_maskz_insertf64x4","_mm512_maskz_inserti32x4","_mm512_maskz_inserti32x8","_mm512_maskz_inserti64x2","_mm512_maskz_inserti64x4","_mm512_maskz_load_epi32","_mm512_maskz_load_epi64","_mm512_maskz_load_pd","_mm512_maskz_load_ps","_mm512_maskz_loadu_epi16","_mm512_maskz_loadu_epi32","_mm512_maskz_loadu_epi64","_mm512_maskz_loadu_epi8","_mm512_maskz_loadu_pd","_mm512_maskz_loadu_ps","_mm512_maskz_lzcnt_epi32","_mm512_maskz_lzcnt_epi64","_mm512_maskz_madd52hi_epu64","_mm512_maskz_madd52lo_epu64","_mm512_maskz_madd_epi16","_mm512_maskz_maddubs_epi16","_mm512_maskz_max_epi16","_mm512_maskz_max_epi32","_mm512_maskz_max_epi64","_mm512_maskz_max_epi8","_mm512_maskz_max_epu16","_mm512_maskz_max_epu32","_mm512_maskz_max_epu64","_mm512_maskz_max_epu8","_mm512_maskz_max_pd","_mm512_maskz_max_ph","_mm512_maskz_max_ps","_mm512_maskz_max_round_pd","_mm512_maskz_max_round_ph","_mm512_maskz_max_round_ps","_mm512_maskz_min_epi16","_mm512_maskz_min_epi32","_mm512_maskz_min_epi64","_mm512_maskz_min_epi8","_mm512_maskz_min_epu16","_mm512_maskz_min_epu32","_mm512_maskz_min_epu64","_mm512_maskz_min_epu8","_mm512_maskz_min_pd","_mm512_maskz_min_ph","_mm512_maskz_min_ps","_mm512_maskz_min_round_pd","_mm512_maskz_min_round_ph","_mm512_maskz_min_round_ps","_mm512_maskz_mov_epi16","_mm512_maskz_mov_epi32","_mm512_maskz_mov_epi64","_mm512_maskz_mov_epi8","_mm512_maskz_mov_pd","_mm512_maskz_mov_ps","_mm512_maskz_movedup_pd","_mm512_maskz_movehdup_ps","_mm512_maskz_moveldup_ps","_mm512_maskz_mul_epi32","_mm512_maskz_mul_epu32","_mm512_maskz_mul_pch","_mm512_maskz_mul_pd","_mm512_maskz_mul_ph","_mm512_maskz_mul_ps","_mm512_maskz_mul_round_pch","_mm512_maskz_mul_round_pd","_mm512_maskz_mul_round_ph","_mm512_maskz_mul_round_ps","_mm512_maskz_mulhi_epi16","_mm512_maskz_mulhi_epu16","_mm512_maskz_mulhrs_epi16","_mm512_maskz_mullo_epi16","_mm512_maskz_mullo_epi32","_mm512_maskz_mullo_epi64","_mm512_maskz_multishift_epi64_epi8","_mm512_maskz_or_epi32","_mm512_maskz_or_epi64","_mm512_maskz_or_pd","_mm512_maskz_or_ps","_mm512_maskz_packs_epi16","_mm512_maskz_packs_epi32","_mm512_maskz_packus_epi16","_mm512_maskz_packus_epi32","_mm512_maskz_permute_pd","_mm512_maskz_permute_ps","_mm512_maskz_permutevar_pd","_mm512_maskz_permutevar_ps","_mm512_maskz_permutex2var_epi16","_mm512_maskz_permutex2var_epi32","_mm512_maskz_permutex2var_epi64","_mm512_maskz_permutex2var_epi8","_mm512_maskz_permutex2var_pd","_mm512_maskz_permutex2var_ps","_mm512_maskz_permutex_epi64","_mm512_maskz_permutex_pd","_mm512_maskz_permutexvar_epi16","_mm512_maskz_permutexvar_epi32","_mm512_maskz_permutexvar_epi64","_mm512_maskz_permutexvar_epi8","_mm512_maskz_permutexvar_pd","_mm512_maskz_permutexvar_ps","_mm512_maskz_popcnt_epi16","_mm512_maskz_popcnt_epi32","_mm512_maskz_popcnt_epi64","_mm512_maskz_popcnt_epi8","_mm512_maskz_range_pd","_mm512_maskz_range_ps","_mm512_maskz_range_round_pd","_mm512_maskz_range_round_ps","_mm512_maskz_rcp14_pd","_mm512_maskz_rcp14_ps","_mm512_maskz_rcp_ph","_mm512_maskz_reduce_pd","_mm512_maskz_reduce_ph","_mm512_maskz_reduce_ps","_mm512_maskz_reduce_round_pd","_mm512_maskz_reduce_round_ph","_mm512_maskz_reduce_round_ps","_mm512_maskz_rol_epi32","_mm512_maskz_rol_epi64","_mm512_maskz_rolv_epi32","_mm512_maskz_rolv_epi64","_mm512_maskz_ror_epi32","_mm512_maskz_ror_epi64","_mm512_maskz_rorv_epi32","_mm512_maskz_rorv_epi64","_mm512_maskz_roundscale_pd","_mm512_maskz_roundscale_ph","_mm512_maskz_roundscale_ps","_mm512_maskz_roundscale_round_pd","_mm512_maskz_roundscale_round_ph","_mm512_maskz_roundscale_round_ps","_mm512_maskz_rsqrt14_pd","_mm512_maskz_rsqrt14_ps","_mm512_maskz_rsqrt_ph","_mm512_maskz_scalef_pd","_mm512_maskz_scalef_ph","_mm512_maskz_scalef_ps","_mm512_maskz_scalef_round_pd","_mm512_maskz_scalef_round_ph","_mm512_maskz_scalef_round_ps","_mm512_maskz_set1_epi16","_mm512_maskz_set1_epi32","_mm512_maskz_set1_epi64","_mm512_maskz_set1_epi8","_mm512_maskz_shldi_epi16","_mm512_maskz_shldi_epi32","_mm512_maskz_shldi_epi64","_mm512_maskz_shldv_epi16","_mm512_maskz_shldv_epi32","_mm512_maskz_shldv_epi64","_mm512_maskz_shrdi_epi16","_mm512_maskz_shrdi_epi32","_mm512_maskz_shrdi_epi64","_mm512_maskz_shrdv_epi16","_mm512_maskz_shrdv_epi32","_mm512_maskz_shrdv_epi64","_mm512_maskz_shuffle_epi32","_mm512_maskz_shuffle_epi8","_mm512_maskz_shuffle_f32x4","_mm512_maskz_shuffle_f64x2","_mm512_maskz_shuffle_i32x4","_mm512_maskz_shuffle_i64x2","_mm512_maskz_shuffle_pd","_mm512_maskz_shuffle_ps","_mm512_maskz_shufflehi_epi16","_mm512_maskz_shufflelo_epi16","_mm512_maskz_sll_epi16","_mm512_maskz_sll_epi32","_mm512_maskz_sll_epi64","_mm512_maskz_slli_epi16","_mm512_maskz_slli_epi32","_mm512_maskz_slli_epi64","_mm512_maskz_sllv_epi16","_mm512_maskz_sllv_epi32","_mm512_maskz_sllv_epi64","_mm512_maskz_sqrt_pd","_mm512_maskz_sqrt_ph","_mm512_maskz_sqrt_ps","_mm512_maskz_sqrt_round_pd","_mm512_maskz_sqrt_round_ph","_mm512_maskz_sqrt_round_ps","_mm512_maskz_sra_epi16","_mm512_maskz_sra_epi32","_mm512_maskz_sra_epi64","_mm512_maskz_srai_epi16","_mm512_maskz_srai_epi32","_mm512_maskz_srai_epi64","_mm512_maskz_srav_epi16","_mm512_maskz_srav_epi32","_mm512_maskz_srav_epi64","_mm512_maskz_srl_epi16","_mm512_maskz_srl_epi32","_mm512_maskz_srl_epi64","_mm512_maskz_srli_epi16","_mm512_maskz_srli_epi32","_mm512_maskz_srli_epi64","_mm512_maskz_srlv_epi16","_mm512_maskz_srlv_epi32","_mm512_maskz_srlv_epi64","_mm512_maskz_sub_epi16","_mm512_maskz_sub_epi32","_mm512_maskz_sub_epi64","_mm512_maskz_sub_epi8","_mm512_maskz_sub_pd","_mm512_maskz_sub_ph","_mm512_maskz_sub_ps","_mm512_maskz_sub_round_pd","_mm512_maskz_sub_round_ph","_mm512_maskz_sub_round_ps","_mm512_maskz_subs_epi16","_mm512_maskz_subs_epi8","_mm512_maskz_subs_epu16","_mm512_maskz_subs_epu8","_mm512_maskz_ternarylogic_epi32","_mm512_maskz_ternarylogic_epi64","_mm512_maskz_unpackhi_epi16","_mm512_maskz_unpackhi_epi32","_mm512_maskz_unpackhi_epi64","_mm512_maskz_unpackhi_epi8","_mm512_maskz_unpackhi_pd","_mm512_maskz_unpackhi_ps","_mm512_maskz_unpacklo_epi16","_mm512_maskz_unpacklo_epi32","_mm512_maskz_unpacklo_epi64","_mm512_maskz_unpacklo_epi8","_mm512_maskz_unpacklo_pd","_mm512_maskz_unpacklo_ps","_mm512_maskz_xor_epi32","_mm512_maskz_xor_epi64","_mm512_maskz_xor_pd","_mm512_maskz_xor_ps","_mm512_max_epi16","_mm512_max_epi32","_mm512_max_epi64","_mm512_max_epi8","_mm512_max_epu16","_mm512_max_epu32","_mm512_max_epu64","_mm512_max_epu8","_mm512_max_pd","_mm512_max_ph","_mm512_max_ps","_mm512_max_round_pd","_mm512_max_round_ph","_mm512_max_round_ps","_mm512_min_epi16","_mm512_min_epi32","_mm512_min_epi64","_mm512_min_epi8","_mm512_min_epu16","_mm512_min_epu32","_mm512_min_epu64","_mm512_min_epu8","_mm512_min_pd","_mm512_min_ph","_mm512_min_ps","_mm512_min_round_pd","_mm512_min_round_ph","_mm512_min_round_ps","_mm512_movedup_pd","_mm512_movehdup_ps","_mm512_moveldup_ps","_mm512_movepi16_mask","_mm512_movepi32_mask","_mm512_movepi64_mask","_mm512_movepi8_mask","_mm512_movm_epi16","_mm512_movm_epi32","_mm512_movm_epi64","_mm512_movm_epi8","_mm512_mul_epi32","_mm512_mul_epu32","_mm512_mul_pch","_mm512_mul_pd","_mm512_mul_ph","_mm512_mul_ps","_mm512_mul_round_pch","_mm512_mul_round_pd","_mm512_mul_round_ph","_mm512_mul_round_ps","_mm512_mulhi_epi16","_mm512_mulhi_epu16","_mm512_mulhrs_epi16","_mm512_mullo_epi16","_mm512_mullo_epi32","_mm512_mullo_epi64","_mm512_mullox_epi64","_mm512_multishift_epi64_epi8","_mm512_or_epi32","_mm512_or_epi64","_mm512_or_pd","_mm512_or_ps","_mm512_or_si512","_mm512_packs_epi16","_mm512_packs_epi32","_mm512_packus_epi16","_mm512_packus_epi32","_mm512_permute_pd","_mm512_permute_ps","_mm512_permutevar_epi32","_mm512_permutevar_pd","_mm512_permutevar_ps","_mm512_permutex2var_epi16","_mm512_permutex2var_epi32","_mm512_permutex2var_epi64","_mm512_permutex2var_epi8","_mm512_permutex2var_pd","_mm512_permutex2var_ph","_mm512_permutex2var_ps","_mm512_permutex_epi64","_mm512_permutex_pd","_mm512_permutexvar_epi16","_mm512_permutexvar_epi32","_mm512_permutexvar_epi64","_mm512_permutexvar_epi8","_mm512_permutexvar_pd","_mm512_permutexvar_ph","_mm512_permutexvar_ps","_mm512_popcnt_epi16","_mm512_popcnt_epi32","_mm512_popcnt_epi64","_mm512_popcnt_epi8","_mm512_range_pd","_mm512_range_ps","_mm512_range_round_pd","_mm512_range_round_ps","_mm512_rcp14_pd","_mm512_rcp14_ps","_mm512_rcp_ph","_mm512_reduce_add_epi32","_mm512_reduce_add_epi64","_mm512_reduce_add_pd","_mm512_reduce_add_ph","_mm512_reduce_add_ps","_mm512_reduce_and_epi32","_mm512_reduce_and_epi64","_mm512_reduce_max_epi32","_mm512_reduce_max_epi64","_mm512_reduce_max_epu32","_mm512_reduce_max_epu64","_mm512_reduce_max_pd","_mm512_reduce_max_ph","_mm512_reduce_max_ps","_mm512_reduce_min_epi32","_mm512_reduce_min_epi64","_mm512_reduce_min_epu32","_mm512_reduce_min_epu64","_mm512_reduce_min_pd","_mm512_reduce_min_ph","_mm512_reduce_min_ps","_mm512_reduce_mul_epi32","_mm512_reduce_mul_epi64","_mm512_reduce_mul_pd","_mm512_reduce_mul_ph","_mm512_reduce_mul_ps","_mm512_reduce_or_epi32","_mm512_reduce_or_epi64","_mm512_reduce_pd","_mm512_reduce_ph","_mm512_reduce_ps","_mm512_reduce_round_pd","_mm512_reduce_round_ph","_mm512_reduce_round_ps","_mm512_rol_epi32","_mm512_rol_epi64","_mm512_rolv_epi32","_mm512_rolv_epi64","_mm512_ror_epi32","_mm512_ror_epi64","_mm512_rorv_epi32","_mm512_rorv_epi64","_mm512_roundscale_pd","_mm512_roundscale_ph","_mm512_roundscale_ps","_mm512_roundscale_round_pd","_mm512_roundscale_round_ph","_mm512_roundscale_round_ps","_mm512_rsqrt14_pd","_mm512_rsqrt14_ps","_mm512_rsqrt_ph","_mm512_sad_epu8","_mm512_scalef_pd","_mm512_scalef_ph","_mm512_scalef_ps","_mm512_scalef_round_pd","_mm512_scalef_round_ph","_mm512_scalef_round_ps","_mm512_set1_epi16","_mm512_set1_epi32","_mm512_set1_epi64","_mm512_set1_epi8","_mm512_set1_pd","_mm512_set1_ph","_mm512_set1_ps","_mm512_set4_epi32","_mm512_set4_epi64","_mm512_set4_pd","_mm512_set4_ps","_mm512_set_epi16","_mm512_set_epi32","_mm512_set_epi64","_mm512_set_epi8","_mm512_set_pd","_mm512_set_ph","_mm512_set_ps","_mm512_setr4_epi32","_mm512_setr4_epi64","_mm512_setr4_pd","_mm512_setr4_ps","_mm512_setr_epi32","_mm512_setr_epi64","_mm512_setr_pd","_mm512_setr_ph","_mm512_setr_ps","_mm512_setzero","_mm512_setzero_epi32","_mm512_setzero_pd","_mm512_setzero_ph","_mm512_setzero_ps","_mm512_setzero_si512","_mm512_shldi_epi16","_mm512_shldi_epi32","_mm512_shldi_epi64","_mm512_shldv_epi16","_mm512_shldv_epi32","_mm512_shldv_epi64","_mm512_shrdi_epi16","_mm512_shrdi_epi32","_mm512_shrdi_epi64","_mm512_shrdv_epi16","_mm512_shrdv_epi32","_mm512_shrdv_epi64","_mm512_shuffle_epi32","_mm512_shuffle_epi8","_mm512_shuffle_f32x4","_mm512_shuffle_f64x2","_mm512_shuffle_i32x4","_mm512_shuffle_i64x2","_mm512_shuffle_pd","_mm512_shuffle_ps","_mm512_shufflehi_epi16","_mm512_shufflelo_epi16","_mm512_sll_epi16","_mm512_sll_epi32","_mm512_sll_epi64","_mm512_slli_epi16","_mm512_slli_epi32","_mm512_slli_epi64","_mm512_sllv_epi16","_mm512_sllv_epi32","_mm512_sllv_epi64","_mm512_sqrt_pd","_mm512_sqrt_ph","_mm512_sqrt_ps","_mm512_sqrt_round_pd","_mm512_sqrt_round_ph","_mm512_sqrt_round_ps","_mm512_sra_epi16","_mm512_sra_epi32","_mm512_sra_epi64","_mm512_srai_epi16","_mm512_srai_epi32","_mm512_srai_epi64","_mm512_srav_epi16","_mm512_srav_epi32","_mm512_srav_epi64","_mm512_srl_epi16","_mm512_srl_epi32","_mm512_srl_epi64","_mm512_srli_epi16","_mm512_srli_epi32","_mm512_srli_epi64","_mm512_srlv_epi16","_mm512_srlv_epi32","_mm512_srlv_epi64","_mm512_store_epi32","_mm512_store_epi64","_mm512_store_pd","_mm512_store_ph","_mm512_store_ps","_mm512_store_si512","_mm512_storeu_epi16","_mm512_storeu_epi32","_mm512_storeu_epi64","_mm512_storeu_epi8","_mm512_storeu_pd","_mm512_storeu_ph","_mm512_storeu_ps","_mm512_storeu_si512","_mm512_stream_load_si512","_mm512_stream_pd","_mm512_stream_ps","_mm512_stream_si512","_mm512_sub_epi16","_mm512_sub_epi32","_mm512_sub_epi64","_mm512_sub_epi8","_mm512_sub_pd","_mm512_sub_ph","_mm512_sub_ps","_mm512_sub_round_pd","_mm512_sub_round_ph","_mm512_sub_round_ps","_mm512_subs_epi16","_mm512_subs_epi8","_mm512_subs_epu16","_mm512_subs_epu8","_mm512_ternarylogic_epi32","_mm512_ternarylogic_epi64","_mm512_test_epi16_mask","_mm512_test_epi32_mask","_mm512_test_epi64_mask","_mm512_test_epi8_mask","_mm512_testn_epi16_mask","_mm512_testn_epi32_mask","_mm512_testn_epi64_mask","_mm512_testn_epi8_mask","_mm512_undefined","_mm512_undefined_epi32","_mm512_undefined_pd","_mm512_undefined_ph","_mm512_undefined_ps","_mm512_unpackhi_epi16","_mm512_unpackhi_epi32","_mm512_unpackhi_epi64","_mm512_unpackhi_epi8","_mm512_unpackhi_pd","_mm512_unpackhi_ps","_mm512_unpacklo_epi16","_mm512_unpacklo_epi32","_mm512_unpacklo_epi64","_mm512_unpacklo_epi8","_mm512_unpacklo_pd","_mm512_unpacklo_ps","_mm512_xor_epi32","_mm512_xor_epi64","_mm512_xor_pd","_mm512_xor_ps","_mm512_xor_si512","_mm512_zextpd128_pd512","_mm512_zextpd256_pd512","_mm512_zextph128_ph512","_mm512_zextph256_ph512","_mm512_zextps128_ps512","_mm512_zextps256_ps512","_mm512_zextsi128_si512","_mm512_zextsi256_si512","_mm_abs_epi16","_mm_abs_epi32","_mm_abs_epi64","_mm_abs_epi8","_mm_abs_ph","_mm_add_epi16","_mm_add_epi32","_mm_add_epi64","_mm_add_epi8","_mm_add_pd","_mm_add_ph","_mm_add_ps","_mm_add_round_sd","_mm_add_round_sh","_mm_add_round_ss","_mm_add_sd","_mm_add_sh","_mm_add_ss","_mm_adds_epi16","_mm_adds_epi8","_mm_adds_epu16","_mm_adds_epu8","_mm_addsub_pd","_mm_addsub_ps","_mm_aesdec_si128","_mm_aesdeclast_si128","_mm_aesenc_si128","_mm_aesenclast_si128","_mm_aesimc_si128","_mm_aeskeygenassist_si128","_mm_alignr_epi32","_mm_alignr_epi64","_mm_alignr_epi8","_mm_and_pd","_mm_and_ps","_mm_and_si128","_mm_andnot_pd","_mm_andnot_ps","_mm_andnot_si128","_mm_avg_epu16","_mm_avg_epu8","_mm_bcstnebf16_ps","_mm_bcstnesh_ps","_mm_bitshuffle_epi64_mask","_mm_blend_epi16","_mm_blend_epi32","_mm_blend_pd","_mm_blend_ps","_mm_blendv_epi8","_mm_blendv_pd","_mm_blendv_ps","_mm_broadcast_i32x2","_mm_broadcast_ss","_mm_broadcastb_epi8","_mm_broadcastd_epi32","_mm_broadcastmb_epi64","_mm_broadcastmw_epi32","_mm_broadcastq_epi64","_mm_broadcastsd_pd","_mm_broadcastsi128_si256","_mm_broadcastss_ps","_mm_broadcastw_epi16","_mm_bslli_si128","_mm_bsrli_si128","_mm_castpd_ph","_mm_castpd_ps","_mm_castpd_si128","_mm_castph_pd","_mm_castph_ps","_mm_castph_si128","_mm_castps_pd","_mm_castps_ph","_mm_castps_si128","_mm_castsi128_pd","_mm_castsi128_ph","_mm_castsi128_ps","_mm_ceil_pd","_mm_ceil_ps","_mm_ceil_sd","_mm_ceil_ss","_mm_clflush","_mm_clmulepi64_si128","_mm_cmp_epi16_mask","_mm_cmp_epi32_mask","_mm_cmp_epi64_mask","_mm_cmp_epi8_mask","_mm_cmp_epu16_mask","_mm_cmp_epu32_mask","_mm_cmp_epu64_mask","_mm_cmp_epu8_mask","_mm_cmp_pd","_mm_cmp_pd_mask","_mm_cmp_ph_mask","_mm_cmp_ps","_mm_cmp_ps_mask","_mm_cmp_round_sd_mask","_mm_cmp_round_sh_mask","_mm_cmp_round_ss_mask","_mm_cmp_sd","_mm_cmp_sd_mask","_mm_cmp_sh_mask","_mm_cmp_ss","_mm_cmp_ss_mask","_mm_cmpeq_epi16","_mm_cmpeq_epi16_mask","_mm_cmpeq_epi32","_mm_cmpeq_epi32_mask","_mm_cmpeq_epi64","_mm_cmpeq_epi64_mask","_mm_cmpeq_epi8","_mm_cmpeq_epi8_mask","_mm_cmpeq_epu16_mask","_mm_cmpeq_epu32_mask","_mm_cmpeq_epu64_mask","_mm_cmpeq_epu8_mask","_mm_cmpeq_pd","_mm_cmpeq_ps","_mm_cmpeq_sd","_mm_cmpeq_ss","_mm_cmpestra","_mm_cmpestrc","_mm_cmpestri","_mm_cmpestrm","_mm_cmpestro","_mm_cmpestrs","_mm_cmpestrz","_mm_cmpge_epi16_mask","_mm_cmpge_epi32_mask","_mm_cmpge_epi64_mask","_mm_cmpge_epi8_mask","_mm_cmpge_epu16_mask","_mm_cmpge_epu32_mask","_mm_cmpge_epu64_mask","_mm_cmpge_epu8_mask","_mm_cmpge_pd","_mm_cmpge_ps","_mm_cmpge_sd","_mm_cmpge_ss","_mm_cmpgt_epi16","_mm_cmpgt_epi16_mask","_mm_cmpgt_epi32","_mm_cmpgt_epi32_mask","_mm_cmpgt_epi64","_mm_cmpgt_epi64_mask","_mm_cmpgt_epi8","_mm_cmpgt_epi8_mask","_mm_cmpgt_epu16_mask","_mm_cmpgt_epu32_mask","_mm_cmpgt_epu64_mask","_mm_cmpgt_epu8_mask","_mm_cmpgt_pd","_mm_cmpgt_ps","_mm_cmpgt_sd","_mm_cmpgt_ss","_mm_cmpistra","_mm_cmpistrc","_mm_cmpistri","_mm_cmpistrm","_mm_cmpistro","_mm_cmpistrs","_mm_cmpistrz","_mm_cmple_epi16_mask","_mm_cmple_epi32_mask","_mm_cmple_epi64_mask","_mm_cmple_epi8_mask","_mm_cmple_epu16_mask","_mm_cmple_epu32_mask","_mm_cmple_epu64_mask","_mm_cmple_epu8_mask","_mm_cmple_pd","_mm_cmple_ps","_mm_cmple_sd","_mm_cmple_ss","_mm_cmplt_epi16","_mm_cmplt_epi16_mask","_mm_cmplt_epi32","_mm_cmplt_epi32_mask","_mm_cmplt_epi64_mask","_mm_cmplt_epi8","_mm_cmplt_epi8_mask","_mm_cmplt_epu16_mask","_mm_cmplt_epu32_mask","_mm_cmplt_epu64_mask","_mm_cmplt_epu8_mask","_mm_cmplt_pd","_mm_cmplt_ps","_mm_cmplt_sd","_mm_cmplt_ss","_mm_cmpneq_epi16_mask","_mm_cmpneq_epi32_mask","_mm_cmpneq_epi64_mask","_mm_cmpneq_epi8_mask","_mm_cmpneq_epu16_mask","_mm_cmpneq_epu32_mask","_mm_cmpneq_epu64_mask","_mm_cmpneq_epu8_mask","_mm_cmpneq_pd","_mm_cmpneq_ps","_mm_cmpneq_sd","_mm_cmpneq_ss","_mm_cmpnge_pd","_mm_cmpnge_ps","_mm_cmpnge_sd","_mm_cmpnge_ss","_mm_cmpngt_pd","_mm_cmpngt_ps","_mm_cmpngt_sd","_mm_cmpngt_ss","_mm_cmpnle_pd","_mm_cmpnle_ps","_mm_cmpnle_sd","_mm_cmpnle_ss","_mm_cmpnlt_pd","_mm_cmpnlt_ps","_mm_cmpnlt_sd","_mm_cmpnlt_ss","_mm_cmpord_pd","_mm_cmpord_ps","_mm_cmpord_sd","_mm_cmpord_ss","_mm_cmpunord_pd","_mm_cmpunord_ps","_mm_cmpunord_sd","_mm_cmpunord_ss","_mm_cmul_pch","_mm_cmul_round_sch","_mm_cmul_sch","_mm_comi_round_sd","_mm_comi_round_sh","_mm_comi_round_ss","_mm_comi_sh","_mm_comieq_sd","_mm_comieq_sh","_mm_comieq_ss","_mm_comige_sd","_mm_comige_sh","_mm_comige_ss","_mm_comigt_sd","_mm_comigt_sh","_mm_comigt_ss","_mm_comile_sd","_mm_comile_sh","_mm_comile_ss","_mm_comilt_sd","_mm_comilt_sh","_mm_comilt_ss","_mm_comineq_sd","_mm_comineq_sh","_mm_comineq_ss","_mm_conflict_epi32","_mm_conflict_epi64","_mm_conj_pch","_mm_crc32_u16","_mm_crc32_u32","_mm_crc32_u64","_mm_crc32_u8","_mm_cvt_roundi32_sh","_mm_cvt_roundi32_ss","_mm_cvt_roundi64_sd","_mm_cvt_roundi64_sh","_mm_cvt_roundi64_ss","_mm_cvt_roundsd_i32","_mm_cvt_roundsd_i64","_mm_cvt_roundsd_sh","_mm_cvt_roundsd_si32","_mm_cvt_roundsd_si64","_mm_cvt_roundsd_ss","_mm_cvt_roundsd_u32","_mm_cvt_roundsd_u64","_mm_cvt_roundsh_i32","_mm_cvt_roundsh_i64","_mm_cvt_roundsh_sd","_mm_cvt_roundsh_ss","_mm_cvt_roundsh_u32","_mm_cvt_roundsh_u64","_mm_cvt_roundsi32_ss","_mm_cvt_roundsi64_sd","_mm_cvt_roundsi64_ss","_mm_cvt_roundss_i32","_mm_cvt_roundss_i64","_mm_cvt_roundss_sd","_mm_cvt_roundss_sh","_mm_cvt_roundss_si32","_mm_cvt_roundss_si64","_mm_cvt_roundss_u32","_mm_cvt_roundss_u64","_mm_cvt_roundu32_sh","_mm_cvt_roundu32_ss","_mm_cvt_roundu64_sd","_mm_cvt_roundu64_sh","_mm_cvt_roundu64_ss","_mm_cvt_si2ss","_mm_cvt_ss2si","_mm_cvtepi16_epi32","_mm_cvtepi16_epi64","_mm_cvtepi16_epi8","_mm_cvtepi16_ph","_mm_cvtepi32_epi16","_mm_cvtepi32_epi64","_mm_cvtepi32_epi8","_mm_cvtepi32_pd","_mm_cvtepi32_ph","_mm_cvtepi32_ps","_mm_cvtepi64_epi16","_mm_cvtepi64_epi32","_mm_cvtepi64_epi8","_mm_cvtepi64_pd","_mm_cvtepi64_ph","_mm_cvtepi64_ps","_mm_cvtepi8_epi16","_mm_cvtepi8_epi32","_mm_cvtepi8_epi64","_mm_cvtepu16_epi32","_mm_cvtepu16_epi64","_mm_cvtepu16_ph","_mm_cvtepu32_epi64","_mm_cvtepu32_pd","_mm_cvtepu32_ph","_mm_cvtepu64_pd","_mm_cvtepu64_ph","_mm_cvtepu64_ps","_mm_cvtepu8_epi16","_mm_cvtepu8_epi32","_mm_cvtepu8_epi64","_mm_cvti32_sd","_mm_cvti32_sh","_mm_cvti32_ss","_mm_cvti64_sd","_mm_cvti64_sh","_mm_cvti64_ss","_mm_cvtne2ps_pbh","_mm_cvtneebf16_ps","_mm_cvtneeph_ps","_mm_cvtneobf16_ps","_mm_cvtneoph_ps","_mm_cvtneps_avx_pbh","_mm_cvtneps_pbh","_mm_cvtness_sbh","_mm_cvtpbh_ps","_mm_cvtpd_epi32","_mm_cvtpd_epi64","_mm_cvtpd_epu32","_mm_cvtpd_epu64","_mm_cvtpd_ph","_mm_cvtpd_ps","_mm_cvtph_epi16","_mm_cvtph_epi32","_mm_cvtph_epi64","_mm_cvtph_epu16","_mm_cvtph_epu32","_mm_cvtph_epu64","_mm_cvtph_pd","_mm_cvtph_ps","_mm_cvtps_epi32","_mm_cvtps_epi64","_mm_cvtps_epu32","_mm_cvtps_epu64","_mm_cvtps_pd","_mm_cvtps_ph","_mm_cvtsbh_ss","_mm_cvtsd_f64","_mm_cvtsd_i32","_mm_cvtsd_i64","_mm_cvtsd_sh","_mm_cvtsd_si32","_mm_cvtsd_si64","_mm_cvtsd_si64x","_mm_cvtsd_ss","_mm_cvtsd_u32","_mm_cvtsd_u64","_mm_cvtsepi16_epi8","_mm_cvtsepi32_epi16","_mm_cvtsepi32_epi8","_mm_cvtsepi64_epi16","_mm_cvtsepi64_epi32","_mm_cvtsepi64_epi8","_mm_cvtsh_h","_mm_cvtsh_i32","_mm_cvtsh_i64","_mm_cvtsh_sd","_mm_cvtsh_ss","_mm_cvtsh_u32","_mm_cvtsh_u64","_mm_cvtsi128_si16","_mm_cvtsi128_si32","_mm_cvtsi128_si64","_mm_cvtsi128_si64x","_mm_cvtsi16_si128","_mm_cvtsi32_sd","_mm_cvtsi32_si128","_mm_cvtsi32_ss","_mm_cvtsi64_sd","_mm_cvtsi64_si128","_mm_cvtsi64_ss","_mm_cvtsi64x_sd","_mm_cvtsi64x_si128","_mm_cvtss_f32","_mm_cvtss_i32","_mm_cvtss_i64","_mm_cvtss_sd","_mm_cvtss_sh","_mm_cvtss_si32","_mm_cvtss_si64","_mm_cvtss_u32","_mm_cvtss_u64","_mm_cvtt_roundsd_i32","_mm_cvtt_roundsd_i64","_mm_cvtt_roundsd_si32","_mm_cvtt_roundsd_si64","_mm_cvtt_roundsd_u32","_mm_cvtt_roundsd_u64","_mm_cvtt_roundsh_i32","_mm_cvtt_roundsh_i64","_mm_cvtt_roundsh_u32","_mm_cvtt_roundsh_u64","_mm_cvtt_roundss_i32","_mm_cvtt_roundss_i64","_mm_cvtt_roundss_si32","_mm_cvtt_roundss_si64","_mm_cvtt_roundss_u32","_mm_cvtt_roundss_u64","_mm_cvtt_ss2si","_mm_cvttpd_epi32","_mm_cvttpd_epi64","_mm_cvttpd_epu32","_mm_cvttpd_epu64","_mm_cvttph_epi16","_mm_cvttph_epi32","_mm_cvttph_epi64","_mm_cvttph_epu16","_mm_cvttph_epu32","_mm_cvttph_epu64","_mm_cvttps_epi32","_mm_cvttps_epi64","_mm_cvttps_epu32","_mm_cvttps_epu64","_mm_cvttsd_i32","_mm_cvttsd_i64","_mm_cvttsd_si32","_mm_cvttsd_si64","_mm_cvttsd_si64x","_mm_cvttsd_u32","_mm_cvttsd_u64","_mm_cvttsh_i32","_mm_cvttsh_i64","_mm_cvttsh_u32","_mm_cvttsh_u64","_mm_cvttss_i32","_mm_cvttss_i64","_mm_cvttss_si32","_mm_cvttss_si64","_mm_cvttss_u32","_mm_cvttss_u64","_mm_cvtu32_sd","_mm_cvtu32_sh","_mm_cvtu32_ss","_mm_cvtu64_sd","_mm_cvtu64_sh","_mm_cvtu64_ss","_mm_cvtusepi16_epi8","_mm_cvtusepi32_epi16","_mm_cvtusepi32_epi8","_mm_cvtusepi64_epi16","_mm_cvtusepi64_epi32","_mm_cvtusepi64_epi8","_mm_cvtxph_ps","_mm_cvtxps_ph","_mm_dbsad_epu8","_mm_div_pd","_mm_div_ph","_mm_div_ps","_mm_div_round_sd","_mm_div_round_sh","_mm_div_round_ss","_mm_div_sd","_mm_div_sh","_mm_div_ss","_mm_dp_pd","_mm_dp_ps","_mm_dpbf16_ps","_mm_dpbssd_epi32","_mm_dpbssds_epi32","_mm_dpbsud_epi32","_mm_dpbsuds_epi32","_mm_dpbusd_avx_epi32","_mm_dpbusd_epi32","_mm_dpbusds_avx_epi32","_mm_dpbusds_epi32","_mm_dpbuud_epi32","_mm_dpbuuds_epi32","_mm_dpwssd_avx_epi32","_mm_dpwssd_epi32","_mm_dpwssds_avx_epi32","_mm_dpwssds_epi32","_mm_dpwsud_epi32","_mm_dpwsuds_epi32","_mm_dpwusd_epi32","_mm_dpwusds_epi32","_mm_dpwuud_epi32","_mm_dpwuuds_epi32","_mm_extract_epi16","_mm_extract_epi32","_mm_extract_epi64","_mm_extract_epi8","_mm_extract_ps","_mm_extract_si64","_mm_extracti_si64","_mm_fcmadd_pch","_mm_fcmadd_round_sch","_mm_fcmadd_sch","_mm_fcmul_pch","_mm_fcmul_round_sch","_mm_fcmul_sch","_mm_fixupimm_pd","_mm_fixupimm_ps","_mm_fixupimm_round_sd","_mm_fixupimm_round_ss","_mm_fixupimm_sd","_mm_fixupimm_ss","_mm_floor_pd","_mm_floor_ps","_mm_floor_sd","_mm_floor_ss","_mm_fmadd_pch","_mm_fmadd_pd","_mm_fmadd_ph","_mm_fmadd_ps","_mm_fmadd_round_sch","_mm_fmadd_round_sd","_mm_fmadd_round_sh","_mm_fmadd_round_ss","_mm_fmadd_sch","_mm_fmadd_sd","_mm_fmadd_sh","_mm_fmadd_ss","_mm_fmaddsub_pd","_mm_fmaddsub_ph","_mm_fmaddsub_ps","_mm_fmsub_pd","_mm_fmsub_ph","_mm_fmsub_ps","_mm_fmsub_round_sd","_mm_fmsub_round_sh","_mm_fmsub_round_ss","_mm_fmsub_sd","_mm_fmsub_sh","_mm_fmsub_ss","_mm_fmsubadd_pd","_mm_fmsubadd_ph","_mm_fmsubadd_ps","_mm_fmul_pch","_mm_fmul_round_sch","_mm_fmul_sch","_mm_fnmadd_pd","_mm_fnmadd_ph","_mm_fnmadd_ps","_mm_fnmadd_round_sd","_mm_fnmadd_round_sh","_mm_fnmadd_round_ss","_mm_fnmadd_sd","_mm_fnmadd_sh","_mm_fnmadd_ss","_mm_fnmsub_pd","_mm_fnmsub_ph","_mm_fnmsub_ps","_mm_fnmsub_round_sd","_mm_fnmsub_round_sh","_mm_fnmsub_round_ss","_mm_fnmsub_sd","_mm_fnmsub_sh","_mm_fnmsub_ss","_mm_fpclass_pd_mask","_mm_fpclass_ph_mask","_mm_fpclass_ps_mask","_mm_fpclass_sd_mask","_mm_fpclass_sh_mask","_mm_fpclass_ss_mask","_mm_getcsr","_mm_getexp_pd","_mm_getexp_ph","_mm_getexp_ps","_mm_getexp_round_sd","_mm_getexp_round_sh","_mm_getexp_round_ss","_mm_getexp_sd","_mm_getexp_sh","_mm_getexp_ss","_mm_getmant_pd","_mm_getmant_ph","_mm_getmant_ps","_mm_getmant_round_sd","_mm_getmant_round_sh","_mm_getmant_round_ss","_mm_getmant_sd","_mm_getmant_sh","_mm_getmant_ss","_mm_gf2p8affine_epi64_epi8","_mm_gf2p8affineinv_epi64_epi8","_mm_gf2p8mul_epi8","_mm_hadd_epi16","_mm_hadd_epi32","_mm_hadd_pd","_mm_hadd_ps","_mm_hadds_epi16","_mm_hsub_epi16","_mm_hsub_epi32","_mm_hsub_pd","_mm_hsub_ps","_mm_hsubs_epi16","_mm_i32gather_epi32","_mm_i32gather_epi64","_mm_i32gather_pd","_mm_i32gather_ps","_mm_i32scatter_epi32","_mm_i32scatter_epi64","_mm_i32scatter_pd","_mm_i32scatter_ps","_mm_i64gather_epi32","_mm_i64gather_epi64","_mm_i64gather_pd","_mm_i64gather_ps","_mm_i64scatter_epi32","_mm_i64scatter_epi64","_mm_i64scatter_pd","_mm_i64scatter_ps","_mm_insert_epi16","_mm_insert_epi32","_mm_insert_epi64","_mm_insert_epi8","_mm_insert_ps","_mm_insert_si64","_mm_inserti_si64","_mm_lddqu_si128","_mm_lfence","_mm_load1_pd","_mm_load1_ps","_mm_load_epi32","_mm_load_epi64","_mm_load_pd","_mm_load_pd1","_mm_load_ph","_mm_load_ps","_mm_load_ps1","_mm_load_sd","_mm_load_sh","_mm_load_si128","_mm_load_ss","_mm_loaddup_pd","_mm_loadh_pd","_mm_loadl_epi64","_mm_loadl_pd","_mm_loadr_pd","_mm_loadr_ps","_mm_loadu_epi16","_mm_loadu_epi32","_mm_loadu_epi64","_mm_loadu_epi8","_mm_loadu_pd","_mm_loadu_ph","_mm_loadu_ps","_mm_loadu_si128","_mm_loadu_si16","_mm_loadu_si32","_mm_loadu_si64","_mm_lzcnt_epi32","_mm_lzcnt_epi64","_mm_madd52hi_avx_epu64","_mm_madd52hi_epu64","_mm_madd52lo_avx_epu64","_mm_madd52lo_epu64","_mm_madd_epi16","_mm_maddubs_epi16","_mm_mask2_permutex2var_epi16","_mm_mask2_permutex2var_epi32","_mm_mask2_permutex2var_epi64","_mm_mask2_permutex2var_epi8","_mm_mask2_permutex2var_pd","_mm_mask2_permutex2var_ps","_mm_mask3_fcmadd_pch","_mm_mask3_fcmadd_round_sch","_mm_mask3_fcmadd_sch","_mm_mask3_fmadd_pch","_mm_mask3_fmadd_pd","_mm_mask3_fmadd_ph","_mm_mask3_fmadd_ps","_mm_mask3_fmadd_round_sch","_mm_mask3_fmadd_round_sd","_mm_mask3_fmadd_round_sh","_mm_mask3_fmadd_round_ss","_mm_mask3_fmadd_sch","_mm_mask3_fmadd_sd","_mm_mask3_fmadd_sh","_mm_mask3_fmadd_ss","_mm_mask3_fmaddsub_pd","_mm_mask3_fmaddsub_ph","_mm_mask3_fmaddsub_ps","_mm_mask3_fmsub_pd","_mm_mask3_fmsub_ph","_mm_mask3_fmsub_ps","_mm_mask3_fmsub_round_sd","_mm_mask3_fmsub_round_sh","_mm_mask3_fmsub_round_ss","_mm_mask3_fmsub_sd","_mm_mask3_fmsub_sh","_mm_mask3_fmsub_ss","_mm_mask3_fmsubadd_pd","_mm_mask3_fmsubadd_ph","_mm_mask3_fmsubadd_ps","_mm_mask3_fnmadd_pd","_mm_mask3_fnmadd_ph","_mm_mask3_fnmadd_ps","_mm_mask3_fnmadd_round_sd","_mm_mask3_fnmadd_round_sh","_mm_mask3_fnmadd_round_ss","_mm_mask3_fnmadd_sd","_mm_mask3_fnmadd_sh","_mm_mask3_fnmadd_ss","_mm_mask3_fnmsub_pd","_mm_mask3_fnmsub_ph","_mm_mask3_fnmsub_ps","_mm_mask3_fnmsub_round_sd","_mm_mask3_fnmsub_round_sh","_mm_mask3_fnmsub_round_ss","_mm_mask3_fnmsub_sd","_mm_mask3_fnmsub_sh","_mm_mask3_fnmsub_ss","_mm_mask_abs_epi16","_mm_mask_abs_epi32","_mm_mask_abs_epi64","_mm_mask_abs_epi8","_mm_mask_add_epi16","_mm_mask_add_epi32","_mm_mask_add_epi64","_mm_mask_add_epi8","_mm_mask_add_pd","_mm_mask_add_ph","_mm_mask_add_ps","_mm_mask_add_round_sd","_mm_mask_add_round_sh","_mm_mask_add_round_ss","_mm_mask_add_sd","_mm_mask_add_sh","_mm_mask_add_ss","_mm_mask_adds_epi16","_mm_mask_adds_epi8","_mm_mask_adds_epu16","_mm_mask_adds_epu8","_mm_mask_alignr_epi32","_mm_mask_alignr_epi64","_mm_mask_alignr_epi8","_mm_mask_and_epi32","_mm_mask_and_epi64","_mm_mask_and_pd","_mm_mask_and_ps","_mm_mask_andnot_epi32","_mm_mask_andnot_epi64","_mm_mask_andnot_pd","_mm_mask_andnot_ps","_mm_mask_avg_epu16","_mm_mask_avg_epu8","_mm_mask_bitshuffle_epi64_mask","_mm_mask_blend_epi16","_mm_mask_blend_epi32","_mm_mask_blend_epi64","_mm_mask_blend_epi8","_mm_mask_blend_pd","_mm_mask_blend_ph","_mm_mask_blend_ps","_mm_mask_broadcast_i32x2","_mm_mask_broadcastb_epi8","_mm_mask_broadcastd_epi32","_mm_mask_broadcastq_epi64","_mm_mask_broadcastss_ps","_mm_mask_broadcastw_epi16","_mm_mask_cmp_epi16_mask","_mm_mask_cmp_epi32_mask","_mm_mask_cmp_epi64_mask","_mm_mask_cmp_epi8_mask","_mm_mask_cmp_epu16_mask","_mm_mask_cmp_epu32_mask","_mm_mask_cmp_epu64_mask","_mm_mask_cmp_epu8_mask","_mm_mask_cmp_pd_mask","_mm_mask_cmp_ph_mask","_mm_mask_cmp_ps_mask","_mm_mask_cmp_round_sd_mask","_mm_mask_cmp_round_sh_mask","_mm_mask_cmp_round_ss_mask","_mm_mask_cmp_sd_mask","_mm_mask_cmp_sh_mask","_mm_mask_cmp_ss_mask","_mm_mask_cmpeq_epi16_mask","_mm_mask_cmpeq_epi32_mask","_mm_mask_cmpeq_epi64_mask","_mm_mask_cmpeq_epi8_mask","_mm_mask_cmpeq_epu16_mask","_mm_mask_cmpeq_epu32_mask","_mm_mask_cmpeq_epu64_mask","_mm_mask_cmpeq_epu8_mask","_mm_mask_cmpge_epi16_mask","_mm_mask_cmpge_epi32_mask","_mm_mask_cmpge_epi64_mask","_mm_mask_cmpge_epi8_mask","_mm_mask_cmpge_epu16_mask","_mm_mask_cmpge_epu32_mask","_mm_mask_cmpge_epu64_mask","_mm_mask_cmpge_epu8_mask","_mm_mask_cmpgt_epi16_mask","_mm_mask_cmpgt_epi32_mask","_mm_mask_cmpgt_epi64_mask","_mm_mask_cmpgt_epi8_mask","_mm_mask_cmpgt_epu16_mask","_mm_mask_cmpgt_epu32_mask","_mm_mask_cmpgt_epu64_mask","_mm_mask_cmpgt_epu8_mask","_mm_mask_cmple_epi16_mask","_mm_mask_cmple_epi32_mask","_mm_mask_cmple_epi64_mask","_mm_mask_cmple_epi8_mask","_mm_mask_cmple_epu16_mask","_mm_mask_cmple_epu32_mask","_mm_mask_cmple_epu64_mask","_mm_mask_cmple_epu8_mask","_mm_mask_cmplt_epi16_mask","_mm_mask_cmplt_epi32_mask","_mm_mask_cmplt_epi64_mask","_mm_mask_cmplt_epi8_mask","_mm_mask_cmplt_epu16_mask","_mm_mask_cmplt_epu32_mask","_mm_mask_cmplt_epu64_mask","_mm_mask_cmplt_epu8_mask","_mm_mask_cmpneq_epi16_mask","_mm_mask_cmpneq_epi32_mask","_mm_mask_cmpneq_epi64_mask","_mm_mask_cmpneq_epi8_mask","_mm_mask_cmpneq_epu16_mask","_mm_mask_cmpneq_epu32_mask","_mm_mask_cmpneq_epu64_mask","_mm_mask_cmpneq_epu8_mask","_mm_mask_cmul_pch","_mm_mask_cmul_round_sch","_mm_mask_cmul_sch","_mm_mask_compress_epi16","_mm_mask_compress_epi32","_mm_mask_compress_epi64","_mm_mask_compress_epi8","_mm_mask_compress_pd","_mm_mask_compress_ps","_mm_mask_compressstoreu_epi16","_mm_mask_compressstoreu_epi32","_mm_mask_compressstoreu_epi64","_mm_mask_compressstoreu_epi8","_mm_mask_compressstoreu_pd","_mm_mask_compressstoreu_ps","_mm_mask_conflict_epi32","_mm_mask_conflict_epi64","_mm_mask_conj_pch","_mm_mask_cvt_roundps_ph","_mm_mask_cvt_roundsd_sh","_mm_mask_cvt_roundsd_ss","_mm_mask_cvt_roundsh_sd","_mm_mask_cvt_roundsh_ss","_mm_mask_cvt_roundss_sd","_mm_mask_cvt_roundss_sh","_mm_mask_cvtepi16_epi32","_mm_mask_cvtepi16_epi64","_mm_mask_cvtepi16_epi8","_mm_mask_cvtepi16_ph","_mm_mask_cvtepi16_storeu_epi8","_mm_mask_cvtepi32_epi16","_mm_mask_cvtepi32_epi64","_mm_mask_cvtepi32_epi8","_mm_mask_cvtepi32_pd","_mm_mask_cvtepi32_ph","_mm_mask_cvtepi32_ps","_mm_mask_cvtepi32_storeu_epi16","_mm_mask_cvtepi32_storeu_epi8","_mm_mask_cvtepi64_epi16","_mm_mask_cvtepi64_epi32","_mm_mask_cvtepi64_epi8","_mm_mask_cvtepi64_pd","_mm_mask_cvtepi64_ph","_mm_mask_cvtepi64_ps","_mm_mask_cvtepi64_storeu_epi16","_mm_mask_cvtepi64_storeu_epi32","_mm_mask_cvtepi64_storeu_epi8","_mm_mask_cvtepi8_epi16","_mm_mask_cvtepi8_epi32","_mm_mask_cvtepi8_epi64","_mm_mask_cvtepu16_epi32","_mm_mask_cvtepu16_epi64","_mm_mask_cvtepu16_ph","_mm_mask_cvtepu32_epi64","_mm_mask_cvtepu32_pd","_mm_mask_cvtepu32_ph","_mm_mask_cvtepu64_pd","_mm_mask_cvtepu64_ph","_mm_mask_cvtepu64_ps","_mm_mask_cvtepu8_epi16","_mm_mask_cvtepu8_epi32","_mm_mask_cvtepu8_epi64","_mm_mask_cvtne2ps_pbh","_mm_mask_cvtneps_pbh","_mm_mask_cvtpbh_ps","_mm_mask_cvtpd_epi32","_mm_mask_cvtpd_epi64","_mm_mask_cvtpd_epu32","_mm_mask_cvtpd_epu64","_mm_mask_cvtpd_ph","_mm_mask_cvtpd_ps","_mm_mask_cvtph_epi16","_mm_mask_cvtph_epi32","_mm_mask_cvtph_epi64","_mm_mask_cvtph_epu16","_mm_mask_cvtph_epu32","_mm_mask_cvtph_epu64","_mm_mask_cvtph_pd","_mm_mask_cvtph_ps","_mm_mask_cvtps_epi32","_mm_mask_cvtps_epi64","_mm_mask_cvtps_epu32","_mm_mask_cvtps_epu64","_mm_mask_cvtps_ph","_mm_mask_cvtsd_sh","_mm_mask_cvtsd_ss","_mm_mask_cvtsepi16_epi8","_mm_mask_cvtsepi16_storeu_epi8","_mm_mask_cvtsepi32_epi16","_mm_mask_cvtsepi32_epi8","_mm_mask_cvtsepi32_storeu_epi16","_mm_mask_cvtsepi32_storeu_epi8","_mm_mask_cvtsepi64_epi16","_mm_mask_cvtsepi64_epi32","_mm_mask_cvtsepi64_epi8","_mm_mask_cvtsepi64_storeu_epi16","_mm_mask_cvtsepi64_storeu_epi32","_mm_mask_cvtsepi64_storeu_epi8","_mm_mask_cvtsh_sd","_mm_mask_cvtsh_ss","_mm_mask_cvtss_sd","_mm_mask_cvtss_sh","_mm_mask_cvttpd_epi32","_mm_mask_cvttpd_epi64","_mm_mask_cvttpd_epu32","_mm_mask_cvttpd_epu64","_mm_mask_cvttph_epi16","_mm_mask_cvttph_epi32","_mm_mask_cvttph_epi64","_mm_mask_cvttph_epu16","_mm_mask_cvttph_epu32","_mm_mask_cvttph_epu64","_mm_mask_cvttps_epi32","_mm_mask_cvttps_epi64","_mm_mask_cvttps_epu32","_mm_mask_cvttps_epu64","_mm_mask_cvtusepi16_epi8","_mm_mask_cvtusepi16_storeu_epi8","_mm_mask_cvtusepi32_epi16","_mm_mask_cvtusepi32_epi8","_mm_mask_cvtusepi32_storeu_epi16","_mm_mask_cvtusepi32_storeu_epi8","_mm_mask_cvtusepi64_epi16","_mm_mask_cvtusepi64_epi32","_mm_mask_cvtusepi64_epi8","_mm_mask_cvtusepi64_storeu_epi16","_mm_mask_cvtusepi64_storeu_epi32","_mm_mask_cvtusepi64_storeu_epi8","_mm_mask_cvtxph_ps","_mm_mask_cvtxps_ph","_mm_mask_dbsad_epu8","_mm_mask_div_pd","_mm_mask_div_ph","_mm_mask_div_ps","_mm_mask_div_round_sd","_mm_mask_div_round_sh","_mm_mask_div_round_ss","_mm_mask_div_sd","_mm_mask_div_sh","_mm_mask_div_ss","_mm_mask_dpbf16_ps","_mm_mask_dpbusd_epi32","_mm_mask_dpbusds_epi32","_mm_mask_dpwssd_epi32","_mm_mask_dpwssds_epi32","_mm_mask_expand_epi16","_mm_mask_expand_epi32","_mm_mask_expand_epi64","_mm_mask_expand_epi8","_mm_mask_expand_pd","_mm_mask_expand_ps","_mm_mask_expandloadu_epi16","_mm_mask_expandloadu_epi32","_mm_mask_expandloadu_epi64","_mm_mask_expandloadu_epi8","_mm_mask_expandloadu_pd","_mm_mask_expandloadu_ps","_mm_mask_fcmadd_pch","_mm_mask_fcmadd_round_sch","_mm_mask_fcmadd_sch","_mm_mask_fcmul_pch","_mm_mask_fcmul_round_sch","_mm_mask_fcmul_sch","_mm_mask_fixupimm_pd","_mm_mask_fixupimm_ps","_mm_mask_fixupimm_round_sd","_mm_mask_fixupimm_round_ss","_mm_mask_fixupimm_sd","_mm_mask_fixupimm_ss","_mm_mask_fmadd_pch","_mm_mask_fmadd_pd","_mm_mask_fmadd_ph","_mm_mask_fmadd_ps","_mm_mask_fmadd_round_sch","_mm_mask_fmadd_round_sd","_mm_mask_fmadd_round_sh","_mm_mask_fmadd_round_ss","_mm_mask_fmadd_sch","_mm_mask_fmadd_sd","_mm_mask_fmadd_sh","_mm_mask_fmadd_ss","_mm_mask_fmaddsub_pd","_mm_mask_fmaddsub_ph","_mm_mask_fmaddsub_ps","_mm_mask_fmsub_pd","_mm_mask_fmsub_ph","_mm_mask_fmsub_ps","_mm_mask_fmsub_round_sd","_mm_mask_fmsub_round_sh","_mm_mask_fmsub_round_ss","_mm_mask_fmsub_sd","_mm_mask_fmsub_sh","_mm_mask_fmsub_ss","_mm_mask_fmsubadd_pd","_mm_mask_fmsubadd_ph","_mm_mask_fmsubadd_ps","_mm_mask_fmul_pch","_mm_mask_fmul_round_sch","_mm_mask_fmul_sch","_mm_mask_fnmadd_pd","_mm_mask_fnmadd_ph","_mm_mask_fnmadd_ps","_mm_mask_fnmadd_round_sd","_mm_mask_fnmadd_round_sh","_mm_mask_fnmadd_round_ss","_mm_mask_fnmadd_sd","_mm_mask_fnmadd_sh","_mm_mask_fnmadd_ss","_mm_mask_fnmsub_pd","_mm_mask_fnmsub_ph","_mm_mask_fnmsub_ps","_mm_mask_fnmsub_round_sd","_mm_mask_fnmsub_round_sh","_mm_mask_fnmsub_round_ss","_mm_mask_fnmsub_sd","_mm_mask_fnmsub_sh","_mm_mask_fnmsub_ss","_mm_mask_fpclass_pd_mask","_mm_mask_fpclass_ph_mask","_mm_mask_fpclass_ps_mask","_mm_mask_fpclass_sd_mask","_mm_mask_fpclass_sh_mask","_mm_mask_fpclass_ss_mask","_mm_mask_getexp_pd","_mm_mask_getexp_ph","_mm_mask_getexp_ps","_mm_mask_getexp_round_sd","_mm_mask_getexp_round_sh","_mm_mask_getexp_round_ss","_mm_mask_getexp_sd","_mm_mask_getexp_sh","_mm_mask_getexp_ss","_mm_mask_getmant_pd","_mm_mask_getmant_ph","_mm_mask_getmant_ps","_mm_mask_getmant_round_sd","_mm_mask_getmant_round_sh","_mm_mask_getmant_round_ss","_mm_mask_getmant_sd","_mm_mask_getmant_sh","_mm_mask_getmant_ss","_mm_mask_gf2p8affine_epi64_epi8","_mm_mask_gf2p8affineinv_epi64_epi8","_mm_mask_gf2p8mul_epi8","_mm_mask_i32gather_epi32","_mm_mask_i32gather_epi64","_mm_mask_i32gather_pd","_mm_mask_i32gather_ps","_mm_mask_i32scatter_epi32","_mm_mask_i32scatter_epi64","_mm_mask_i32scatter_pd","_mm_mask_i32scatter_ps","_mm_mask_i64gather_epi32","_mm_mask_i64gather_epi64","_mm_mask_i64gather_pd","_mm_mask_i64gather_ps","_mm_mask_i64scatter_epi32","_mm_mask_i64scatter_epi64","_mm_mask_i64scatter_pd","_mm_mask_i64scatter_ps","_mm_mask_load_epi32","_mm_mask_load_epi64","_mm_mask_load_pd","_mm_mask_load_ps","_mm_mask_load_sd","_mm_mask_load_sh","_mm_mask_load_ss","_mm_mask_loadu_epi16","_mm_mask_loadu_epi32","_mm_mask_loadu_epi64","_mm_mask_loadu_epi8","_mm_mask_loadu_pd","_mm_mask_loadu_ps","_mm_mask_lzcnt_epi32","_mm_mask_lzcnt_epi64","_mm_mask_madd52hi_epu64","_mm_mask_madd52lo_epu64","_mm_mask_madd_epi16","_mm_mask_maddubs_epi16","_mm_mask_max_epi16","_mm_mask_max_epi32","_mm_mask_max_epi64","_mm_mask_max_epi8","_mm_mask_max_epu16","_mm_mask_max_epu32","_mm_mask_max_epu64","_mm_mask_max_epu8","_mm_mask_max_pd","_mm_mask_max_ph","_mm_mask_max_ps","_mm_mask_max_round_sd","_mm_mask_max_round_sh","_mm_mask_max_round_ss","_mm_mask_max_sd","_mm_mask_max_sh","_mm_mask_max_ss","_mm_mask_min_epi16","_mm_mask_min_epi32","_mm_mask_min_epi64","_mm_mask_min_epi8","_mm_mask_min_epu16","_mm_mask_min_epu32","_mm_mask_min_epu64","_mm_mask_min_epu8","_mm_mask_min_pd","_mm_mask_min_ph","_mm_mask_min_ps","_mm_mask_min_round_sd","_mm_mask_min_round_sh","_mm_mask_min_round_ss","_mm_mask_min_sd","_mm_mask_min_sh","_mm_mask_min_ss","_mm_mask_mov_epi16","_mm_mask_mov_epi32","_mm_mask_mov_epi64","_mm_mask_mov_epi8","_mm_mask_mov_pd","_mm_mask_mov_ps","_mm_mask_move_sd","_mm_mask_move_sh","_mm_mask_move_ss","_mm_mask_movedup_pd","_mm_mask_movehdup_ps","_mm_mask_moveldup_ps","_mm_mask_mul_epi32","_mm_mask_mul_epu32","_mm_mask_mul_pch","_mm_mask_mul_pd","_mm_mask_mul_ph","_mm_mask_mul_ps","_mm_mask_mul_round_sch","_mm_mask_mul_round_sd","_mm_mask_mul_round_sh","_mm_mask_mul_round_ss","_mm_mask_mul_sch","_mm_mask_mul_sd","_mm_mask_mul_sh","_mm_mask_mul_ss","_mm_mask_mulhi_epi16","_mm_mask_mulhi_epu16","_mm_mask_mulhrs_epi16","_mm_mask_mullo_epi16","_mm_mask_mullo_epi32","_mm_mask_mullo_epi64","_mm_mask_multishift_epi64_epi8","_mm_mask_or_epi32","_mm_mask_or_epi64","_mm_mask_or_pd","_mm_mask_or_ps","_mm_mask_packs_epi16","_mm_mask_packs_epi32","_mm_mask_packus_epi16","_mm_mask_packus_epi32","_mm_mask_permute_pd","_mm_mask_permute_ps","_mm_mask_permutevar_pd","_mm_mask_permutevar_ps","_mm_mask_permutex2var_epi16","_mm_mask_permutex2var_epi32","_mm_mask_permutex2var_epi64","_mm_mask_permutex2var_epi8","_mm_mask_permutex2var_pd","_mm_mask_permutex2var_ps","_mm_mask_permutexvar_epi16","_mm_mask_permutexvar_epi8","_mm_mask_popcnt_epi16","_mm_mask_popcnt_epi32","_mm_mask_popcnt_epi64","_mm_mask_popcnt_epi8","_mm_mask_range_pd","_mm_mask_range_ps","_mm_mask_range_round_sd","_mm_mask_range_round_ss","_mm_mask_range_sd","_mm_mask_range_ss","_mm_mask_rcp14_pd","_mm_mask_rcp14_ps","_mm_mask_rcp14_sd","_mm_mask_rcp14_ss","_mm_mask_rcp_ph","_mm_mask_rcp_sh","_mm_mask_reduce_add_epi16","_mm_mask_reduce_add_epi8","_mm_mask_reduce_and_epi16","_mm_mask_reduce_and_epi8","_mm_mask_reduce_max_epi16","_mm_mask_reduce_max_epi8","_mm_mask_reduce_max_epu16","_mm_mask_reduce_max_epu8","_mm_mask_reduce_min_epi16","_mm_mask_reduce_min_epi8","_mm_mask_reduce_min_epu16","_mm_mask_reduce_min_epu8","_mm_mask_reduce_mul_epi16","_mm_mask_reduce_mul_epi8","_mm_mask_reduce_or_epi16","_mm_mask_reduce_or_epi8","_mm_mask_reduce_pd","_mm_mask_reduce_ph","_mm_mask_reduce_ps","_mm_mask_reduce_round_sd","_mm_mask_reduce_round_sh","_mm_mask_reduce_round_ss","_mm_mask_reduce_sd","_mm_mask_reduce_sh","_mm_mask_reduce_ss","_mm_mask_rol_epi32","_mm_mask_rol_epi64","_mm_mask_rolv_epi32","_mm_mask_rolv_epi64","_mm_mask_ror_epi32","_mm_mask_ror_epi64","_mm_mask_rorv_epi32","_mm_mask_rorv_epi64","_mm_mask_roundscale_pd","_mm_mask_roundscale_ph","_mm_mask_roundscale_ps","_mm_mask_roundscale_round_sd","_mm_mask_roundscale_round_sh","_mm_mask_roundscale_round_ss","_mm_mask_roundscale_sd","_mm_mask_roundscale_sh","_mm_mask_roundscale_ss","_mm_mask_rsqrt14_pd","_mm_mask_rsqrt14_ps","_mm_mask_rsqrt14_sd","_mm_mask_rsqrt14_ss","_mm_mask_rsqrt_ph","_mm_mask_rsqrt_sh","_mm_mask_scalef_pd","_mm_mask_scalef_ph","_mm_mask_scalef_ps","_mm_mask_scalef_round_sd","_mm_mask_scalef_round_sh","_mm_mask_scalef_round_ss","_mm_mask_scalef_sd","_mm_mask_scalef_sh","_mm_mask_scalef_ss","_mm_mask_set1_epi16","_mm_mask_set1_epi32","_mm_mask_set1_epi64","_mm_mask_set1_epi8","_mm_mask_shldi_epi16","_mm_mask_shldi_epi32","_mm_mask_shldi_epi64","_mm_mask_shldv_epi16","_mm_mask_shldv_epi32","_mm_mask_shldv_epi64","_mm_mask_shrdi_epi16","_mm_mask_shrdi_epi32","_mm_mask_shrdi_epi64","_mm_mask_shrdv_epi16","_mm_mask_shrdv_epi32","_mm_mask_shrdv_epi64","_mm_mask_shuffle_epi32","_mm_mask_shuffle_epi8","_mm_mask_shuffle_pd","_mm_mask_shuffle_ps","_mm_mask_shufflehi_epi16","_mm_mask_shufflelo_epi16","_mm_mask_sll_epi16","_mm_mask_sll_epi32","_mm_mask_sll_epi64","_mm_mask_slli_epi16","_mm_mask_slli_epi32","_mm_mask_slli_epi64","_mm_mask_sllv_epi16","_mm_mask_sllv_epi32","_mm_mask_sllv_epi64","_mm_mask_sqrt_pd","_mm_mask_sqrt_ph","_mm_mask_sqrt_ps","_mm_mask_sqrt_round_sd","_mm_mask_sqrt_round_sh","_mm_mask_sqrt_round_ss","_mm_mask_sqrt_sd","_mm_mask_sqrt_sh","_mm_mask_sqrt_ss","_mm_mask_sra_epi16","_mm_mask_sra_epi32","_mm_mask_sra_epi64","_mm_mask_srai_epi16","_mm_mask_srai_epi32","_mm_mask_srai_epi64","_mm_mask_srav_epi16","_mm_mask_srav_epi32","_mm_mask_srav_epi64","_mm_mask_srl_epi16","_mm_mask_srl_epi32","_mm_mask_srl_epi64","_mm_mask_srli_epi16","_mm_mask_srli_epi32","_mm_mask_srli_epi64","_mm_mask_srlv_epi16","_mm_mask_srlv_epi32","_mm_mask_srlv_epi64","_mm_mask_store_epi32","_mm_mask_store_epi64","_mm_mask_store_pd","_mm_mask_store_ps","_mm_mask_store_sd","_mm_mask_store_sh","_mm_mask_store_ss","_mm_mask_storeu_epi16","_mm_mask_storeu_epi32","_mm_mask_storeu_epi64","_mm_mask_storeu_epi8","_mm_mask_storeu_pd","_mm_mask_storeu_ps","_mm_mask_sub_epi16","_mm_mask_sub_epi32","_mm_mask_sub_epi64","_mm_mask_sub_epi8","_mm_mask_sub_pd","_mm_mask_sub_ph","_mm_mask_sub_ps","_mm_mask_sub_round_sd","_mm_mask_sub_round_sh","_mm_mask_sub_round_ss","_mm_mask_sub_sd","_mm_mask_sub_sh","_mm_mask_sub_ss","_mm_mask_subs_epi16","_mm_mask_subs_epi8","_mm_mask_subs_epu16","_mm_mask_subs_epu8","_mm_mask_ternarylogic_epi32","_mm_mask_ternarylogic_epi64","_mm_mask_test_epi16_mask","_mm_mask_test_epi32_mask","_mm_mask_test_epi64_mask","_mm_mask_test_epi8_mask","_mm_mask_testn_epi16_mask","_mm_mask_testn_epi32_mask","_mm_mask_testn_epi64_mask","_mm_mask_testn_epi8_mask","_mm_mask_unpackhi_epi16","_mm_mask_unpackhi_epi32","_mm_mask_unpackhi_epi64","_mm_mask_unpackhi_epi8","_mm_mask_unpackhi_pd","_mm_mask_unpackhi_ps","_mm_mask_unpacklo_epi16","_mm_mask_unpacklo_epi32","_mm_mask_unpacklo_epi64","_mm_mask_unpacklo_epi8","_mm_mask_unpacklo_pd","_mm_mask_unpacklo_ps","_mm_mask_xor_epi32","_mm_mask_xor_epi64","_mm_mask_xor_pd","_mm_mask_xor_ps","_mm_maskload_epi32","_mm_maskload_epi64","_mm_maskload_pd","_mm_maskload_ps","_mm_maskmoveu_si128","_mm_maskstore_epi32","_mm_maskstore_epi64","_mm_maskstore_pd","_mm_maskstore_ps","_mm_maskz_abs_epi16","_mm_maskz_abs_epi32","_mm_maskz_abs_epi64","_mm_maskz_abs_epi8","_mm_maskz_add_epi16","_mm_maskz_add_epi32","_mm_maskz_add_epi64","_mm_maskz_add_epi8","_mm_maskz_add_pd","_mm_maskz_add_ph","_mm_maskz_add_ps","_mm_maskz_add_round_sd","_mm_maskz_add_round_sh","_mm_maskz_add_round_ss","_mm_maskz_add_sd","_mm_maskz_add_sh","_mm_maskz_add_ss","_mm_maskz_adds_epi16","_mm_maskz_adds_epi8","_mm_maskz_adds_epu16","_mm_maskz_adds_epu8","_mm_maskz_alignr_epi32","_mm_maskz_alignr_epi64","_mm_maskz_alignr_epi8","_mm_maskz_and_epi32","_mm_maskz_and_epi64","_mm_maskz_and_pd","_mm_maskz_and_ps","_mm_maskz_andnot_epi32","_mm_maskz_andnot_epi64","_mm_maskz_andnot_pd","_mm_maskz_andnot_ps","_mm_maskz_avg_epu16","_mm_maskz_avg_epu8","_mm_maskz_broadcast_i32x2","_mm_maskz_broadcastb_epi8","_mm_maskz_broadcastd_epi32","_mm_maskz_broadcastq_epi64","_mm_maskz_broadcastss_ps","_mm_maskz_broadcastw_epi16","_mm_maskz_cmul_pch","_mm_maskz_cmul_round_sch","_mm_maskz_cmul_sch","_mm_maskz_compress_epi16","_mm_maskz_compress_epi32","_mm_maskz_compress_epi64","_mm_maskz_compress_epi8","_mm_maskz_compress_pd","_mm_maskz_compress_ps","_mm_maskz_conflict_epi32","_mm_maskz_conflict_epi64","_mm_maskz_conj_pch","_mm_maskz_cvt_roundps_ph","_mm_maskz_cvt_roundsd_sh","_mm_maskz_cvt_roundsd_ss","_mm_maskz_cvt_roundsh_sd","_mm_maskz_cvt_roundsh_ss","_mm_maskz_cvt_roundss_sd","_mm_maskz_cvt_roundss_sh","_mm_maskz_cvtepi16_epi32","_mm_maskz_cvtepi16_epi64","_mm_maskz_cvtepi16_epi8","_mm_maskz_cvtepi16_ph","_mm_maskz_cvtepi32_epi16","_mm_maskz_cvtepi32_epi64","_mm_maskz_cvtepi32_epi8","_mm_maskz_cvtepi32_pd","_mm_maskz_cvtepi32_ph","_mm_maskz_cvtepi32_ps","_mm_maskz_cvtepi64_epi16","_mm_maskz_cvtepi64_epi32","_mm_maskz_cvtepi64_epi8","_mm_maskz_cvtepi64_pd","_mm_maskz_cvtepi64_ph","_mm_maskz_cvtepi64_ps","_mm_maskz_cvtepi8_epi16","_mm_maskz_cvtepi8_epi32","_mm_maskz_cvtepi8_epi64","_mm_maskz_cvtepu16_epi32","_mm_maskz_cvtepu16_epi64","_mm_maskz_cvtepu16_ph","_mm_maskz_cvtepu32_epi64","_mm_maskz_cvtepu32_pd","_mm_maskz_cvtepu32_ph","_mm_maskz_cvtepu64_pd","_mm_maskz_cvtepu64_ph","_mm_maskz_cvtepu64_ps","_mm_maskz_cvtepu8_epi16","_mm_maskz_cvtepu8_epi32","_mm_maskz_cvtepu8_epi64","_mm_maskz_cvtne2ps_pbh","_mm_maskz_cvtneps_pbh","_mm_maskz_cvtpbh_ps","_mm_maskz_cvtpd_epi32","_mm_maskz_cvtpd_epi64","_mm_maskz_cvtpd_epu32","_mm_maskz_cvtpd_epu64","_mm_maskz_cvtpd_ph","_mm_maskz_cvtpd_ps","_mm_maskz_cvtph_epi16","_mm_maskz_cvtph_epi32","_mm_maskz_cvtph_epi64","_mm_maskz_cvtph_epu16","_mm_maskz_cvtph_epu32","_mm_maskz_cvtph_epu64","_mm_maskz_cvtph_pd","_mm_maskz_cvtph_ps","_mm_maskz_cvtps_epi32","_mm_maskz_cvtps_epi64","_mm_maskz_cvtps_epu32","_mm_maskz_cvtps_epu64","_mm_maskz_cvtps_ph","_mm_maskz_cvtsd_sh","_mm_maskz_cvtsd_ss","_mm_maskz_cvtsepi16_epi8","_mm_maskz_cvtsepi32_epi16","_mm_maskz_cvtsepi32_epi8","_mm_maskz_cvtsepi64_epi16","_mm_maskz_cvtsepi64_epi32","_mm_maskz_cvtsepi64_epi8","_mm_maskz_cvtsh_sd","_mm_maskz_cvtsh_ss","_mm_maskz_cvtss_sd","_mm_maskz_cvtss_sh","_mm_maskz_cvttpd_epi32","_mm_maskz_cvttpd_epi64","_mm_maskz_cvttpd_epu32","_mm_maskz_cvttpd_epu64","_mm_maskz_cvttph_epi16","_mm_maskz_cvttph_epi32","_mm_maskz_cvttph_epi64","_mm_maskz_cvttph_epu16","_mm_maskz_cvttph_epu32","_mm_maskz_cvttph_epu64","_mm_maskz_cvttps_epi32","_mm_maskz_cvttps_epi64","_mm_maskz_cvttps_epu32","_mm_maskz_cvttps_epu64","_mm_maskz_cvtusepi16_epi8","_mm_maskz_cvtusepi32_epi16","_mm_maskz_cvtusepi32_epi8","_mm_maskz_cvtusepi64_epi16","_mm_maskz_cvtusepi64_epi32","_mm_maskz_cvtusepi64_epi8","_mm_maskz_cvtxph_ps","_mm_maskz_cvtxps_ph","_mm_maskz_dbsad_epu8","_mm_maskz_div_pd","_mm_maskz_div_ph","_mm_maskz_div_ps","_mm_maskz_div_round_sd","_mm_maskz_div_round_sh","_mm_maskz_div_round_ss","_mm_maskz_div_sd","_mm_maskz_div_sh","_mm_maskz_div_ss","_mm_maskz_dpbf16_ps","_mm_maskz_dpbusd_epi32","_mm_maskz_dpbusds_epi32","_mm_maskz_dpwssd_epi32","_mm_maskz_dpwssds_epi32","_mm_maskz_expand_epi16","_mm_maskz_expand_epi32","_mm_maskz_expand_epi64","_mm_maskz_expand_epi8","_mm_maskz_expand_pd","_mm_maskz_expand_ps","_mm_maskz_expandloadu_epi16","_mm_maskz_expandloadu_epi32","_mm_maskz_expandloadu_epi64","_mm_maskz_expandloadu_epi8","_mm_maskz_expandloadu_pd","_mm_maskz_expandloadu_ps","_mm_maskz_fcmadd_pch","_mm_maskz_fcmadd_round_sch","_mm_maskz_fcmadd_sch","_mm_maskz_fcmul_pch","_mm_maskz_fcmul_round_sch","_mm_maskz_fcmul_sch","_mm_maskz_fixupimm_pd","_mm_maskz_fixupimm_ps","_mm_maskz_fixupimm_round_sd","_mm_maskz_fixupimm_round_ss","_mm_maskz_fixupimm_sd","_mm_maskz_fixupimm_ss","_mm_maskz_fmadd_pch","_mm_maskz_fmadd_pd","_mm_maskz_fmadd_ph","_mm_maskz_fmadd_ps","_mm_maskz_fmadd_round_sch","_mm_maskz_fmadd_round_sd","_mm_maskz_fmadd_round_sh","_mm_maskz_fmadd_round_ss","_mm_maskz_fmadd_sch","_mm_maskz_fmadd_sd","_mm_maskz_fmadd_sh","_mm_maskz_fmadd_ss","_mm_maskz_fmaddsub_pd","_mm_maskz_fmaddsub_ph","_mm_maskz_fmaddsub_ps","_mm_maskz_fmsub_pd","_mm_maskz_fmsub_ph","_mm_maskz_fmsub_ps","_mm_maskz_fmsub_round_sd","_mm_maskz_fmsub_round_sh","_mm_maskz_fmsub_round_ss","_mm_maskz_fmsub_sd","_mm_maskz_fmsub_sh","_mm_maskz_fmsub_ss","_mm_maskz_fmsubadd_pd","_mm_maskz_fmsubadd_ph","_mm_maskz_fmsubadd_ps","_mm_maskz_fmul_pch","_mm_maskz_fmul_round_sch","_mm_maskz_fmul_sch","_mm_maskz_fnmadd_pd","_mm_maskz_fnmadd_ph","_mm_maskz_fnmadd_ps","_mm_maskz_fnmadd_round_sd","_mm_maskz_fnmadd_round_sh","_mm_maskz_fnmadd_round_ss","_mm_maskz_fnmadd_sd","_mm_maskz_fnmadd_sh","_mm_maskz_fnmadd_ss","_mm_maskz_fnmsub_pd","_mm_maskz_fnmsub_ph","_mm_maskz_fnmsub_ps","_mm_maskz_fnmsub_round_sd","_mm_maskz_fnmsub_round_sh","_mm_maskz_fnmsub_round_ss","_mm_maskz_fnmsub_sd","_mm_maskz_fnmsub_sh","_mm_maskz_fnmsub_ss","_mm_maskz_getexp_pd","_mm_maskz_getexp_ph","_mm_maskz_getexp_ps","_mm_maskz_getexp_round_sd","_mm_maskz_getexp_round_sh","_mm_maskz_getexp_round_ss","_mm_maskz_getexp_sd","_mm_maskz_getexp_sh","_mm_maskz_getexp_ss","_mm_maskz_getmant_pd","_mm_maskz_getmant_ph","_mm_maskz_getmant_ps","_mm_maskz_getmant_round_sd","_mm_maskz_getmant_round_sh","_mm_maskz_getmant_round_ss","_mm_maskz_getmant_sd","_mm_maskz_getmant_sh","_mm_maskz_getmant_ss","_mm_maskz_gf2p8affine_epi64_epi8","_mm_maskz_gf2p8affineinv_epi64_epi8","_mm_maskz_gf2p8mul_epi8","_mm_maskz_load_epi32","_mm_maskz_load_epi64","_mm_maskz_load_pd","_mm_maskz_load_ps","_mm_maskz_load_sd","_mm_maskz_load_sh","_mm_maskz_load_ss","_mm_maskz_loadu_epi16","_mm_maskz_loadu_epi32","_mm_maskz_loadu_epi64","_mm_maskz_loadu_epi8","_mm_maskz_loadu_pd","_mm_maskz_loadu_ps","_mm_maskz_lzcnt_epi32","_mm_maskz_lzcnt_epi64","_mm_maskz_madd52hi_epu64","_mm_maskz_madd52lo_epu64","_mm_maskz_madd_epi16","_mm_maskz_maddubs_epi16","_mm_maskz_max_epi16","_mm_maskz_max_epi32","_mm_maskz_max_epi64","_mm_maskz_max_epi8","_mm_maskz_max_epu16","_mm_maskz_max_epu32","_mm_maskz_max_epu64","_mm_maskz_max_epu8","_mm_maskz_max_pd","_mm_maskz_max_ph","_mm_maskz_max_ps","_mm_maskz_max_round_sd","_mm_maskz_max_round_sh","_mm_maskz_max_round_ss","_mm_maskz_max_sd","_mm_maskz_max_sh","_mm_maskz_max_ss","_mm_maskz_min_epi16","_mm_maskz_min_epi32","_mm_maskz_min_epi64","_mm_maskz_min_epi8","_mm_maskz_min_epu16","_mm_maskz_min_epu32","_mm_maskz_min_epu64","_mm_maskz_min_epu8","_mm_maskz_min_pd","_mm_maskz_min_ph","_mm_maskz_min_ps","_mm_maskz_min_round_sd","_mm_maskz_min_round_sh","_mm_maskz_min_round_ss","_mm_maskz_min_sd","_mm_maskz_min_sh","_mm_maskz_min_ss","_mm_maskz_mov_epi16","_mm_maskz_mov_epi32","_mm_maskz_mov_epi64","_mm_maskz_mov_epi8","_mm_maskz_mov_pd","_mm_maskz_mov_ps","_mm_maskz_move_sd","_mm_maskz_move_sh","_mm_maskz_move_ss","_mm_maskz_movedup_pd","_mm_maskz_movehdup_ps","_mm_maskz_moveldup_ps","_mm_maskz_mul_epi32","_mm_maskz_mul_epu32","_mm_maskz_mul_pch","_mm_maskz_mul_pd","_mm_maskz_mul_ph","_mm_maskz_mul_ps","_mm_maskz_mul_round_sch","_mm_maskz_mul_round_sd","_mm_maskz_mul_round_sh","_mm_maskz_mul_round_ss","_mm_maskz_mul_sch","_mm_maskz_mul_sd","_mm_maskz_mul_sh","_mm_maskz_mul_ss","_mm_maskz_mulhi_epi16","_mm_maskz_mulhi_epu16","_mm_maskz_mulhrs_epi16","_mm_maskz_mullo_epi16","_mm_maskz_mullo_epi32","_mm_maskz_mullo_epi64","_mm_maskz_multishift_epi64_epi8","_mm_maskz_or_epi32","_mm_maskz_or_epi64","_mm_maskz_or_pd","_mm_maskz_or_ps","_mm_maskz_packs_epi16","_mm_maskz_packs_epi32","_mm_maskz_packus_epi16","_mm_maskz_packus_epi32","_mm_maskz_permute_pd","_mm_maskz_permute_ps","_mm_maskz_permutevar_pd","_mm_maskz_permutevar_ps","_mm_maskz_permutex2var_epi16","_mm_maskz_permutex2var_epi32","_mm_maskz_permutex2var_epi64","_mm_maskz_permutex2var_epi8","_mm_maskz_permutex2var_pd","_mm_maskz_permutex2var_ps","_mm_maskz_permutexvar_epi16","_mm_maskz_permutexvar_epi8","_mm_maskz_popcnt_epi16","_mm_maskz_popcnt_epi32","_mm_maskz_popcnt_epi64","_mm_maskz_popcnt_epi8","_mm_maskz_range_pd","_mm_maskz_range_ps","_mm_maskz_range_round_sd","_mm_maskz_range_round_ss","_mm_maskz_range_sd","_mm_maskz_range_ss","_mm_maskz_rcp14_pd","_mm_maskz_rcp14_ps","_mm_maskz_rcp14_sd","_mm_maskz_rcp14_ss","_mm_maskz_rcp_ph","_mm_maskz_rcp_sh","_mm_maskz_reduce_pd","_mm_maskz_reduce_ph","_mm_maskz_reduce_ps","_mm_maskz_reduce_round_sd","_mm_maskz_reduce_round_sh","_mm_maskz_reduce_round_ss","_mm_maskz_reduce_sd","_mm_maskz_reduce_sh","_mm_maskz_reduce_ss","_mm_maskz_rol_epi32","_mm_maskz_rol_epi64","_mm_maskz_rolv_epi32","_mm_maskz_rolv_epi64","_mm_maskz_ror_epi32","_mm_maskz_ror_epi64","_mm_maskz_rorv_epi32","_mm_maskz_rorv_epi64","_mm_maskz_roundscale_pd","_mm_maskz_roundscale_ph","_mm_maskz_roundscale_ps","_mm_maskz_roundscale_round_sd","_mm_maskz_roundscale_round_sh","_mm_maskz_roundscale_round_ss","_mm_maskz_roundscale_sd","_mm_maskz_roundscale_sh","_mm_maskz_roundscale_ss","_mm_maskz_rsqrt14_pd","_mm_maskz_rsqrt14_ps","_mm_maskz_rsqrt14_sd","_mm_maskz_rsqrt14_ss","_mm_maskz_rsqrt_ph","_mm_maskz_rsqrt_sh","_mm_maskz_scalef_pd","_mm_maskz_scalef_ph","_mm_maskz_scalef_ps","_mm_maskz_scalef_round_sd","_mm_maskz_scalef_round_sh","_mm_maskz_scalef_round_ss","_mm_maskz_scalef_sd","_mm_maskz_scalef_sh","_mm_maskz_scalef_ss","_mm_maskz_set1_epi16","_mm_maskz_set1_epi32","_mm_maskz_set1_epi64","_mm_maskz_set1_epi8","_mm_maskz_shldi_epi16","_mm_maskz_shldi_epi32","_mm_maskz_shldi_epi64","_mm_maskz_shldv_epi16","_mm_maskz_shldv_epi32","_mm_maskz_shldv_epi64","_mm_maskz_shrdi_epi16","_mm_maskz_shrdi_epi32","_mm_maskz_shrdi_epi64","_mm_maskz_shrdv_epi16","_mm_maskz_shrdv_epi32","_mm_maskz_shrdv_epi64","_mm_maskz_shuffle_epi32","_mm_maskz_shuffle_epi8","_mm_maskz_shuffle_pd","_mm_maskz_shuffle_ps","_mm_maskz_shufflehi_epi16","_mm_maskz_shufflelo_epi16","_mm_maskz_sll_epi16","_mm_maskz_sll_epi32","_mm_maskz_sll_epi64","_mm_maskz_slli_epi16","_mm_maskz_slli_epi32","_mm_maskz_slli_epi64","_mm_maskz_sllv_epi16","_mm_maskz_sllv_epi32","_mm_maskz_sllv_epi64","_mm_maskz_sqrt_pd","_mm_maskz_sqrt_ph","_mm_maskz_sqrt_ps","_mm_maskz_sqrt_round_sd","_mm_maskz_sqrt_round_sh","_mm_maskz_sqrt_round_ss","_mm_maskz_sqrt_sd","_mm_maskz_sqrt_sh","_mm_maskz_sqrt_ss","_mm_maskz_sra_epi16","_mm_maskz_sra_epi32","_mm_maskz_sra_epi64","_mm_maskz_srai_epi16","_mm_maskz_srai_epi32","_mm_maskz_srai_epi64","_mm_maskz_srav_epi16","_mm_maskz_srav_epi32","_mm_maskz_srav_epi64","_mm_maskz_srl_epi16","_mm_maskz_srl_epi32","_mm_maskz_srl_epi64","_mm_maskz_srli_epi16","_mm_maskz_srli_epi32","_mm_maskz_srli_epi64","_mm_maskz_srlv_epi16","_mm_maskz_srlv_epi32","_mm_maskz_srlv_epi64","_mm_maskz_sub_epi16","_mm_maskz_sub_epi32","_mm_maskz_sub_epi64","_mm_maskz_sub_epi8","_mm_maskz_sub_pd","_mm_maskz_sub_ph","_mm_maskz_sub_ps","_mm_maskz_sub_round_sd","_mm_maskz_sub_round_sh","_mm_maskz_sub_round_ss","_mm_maskz_sub_sd","_mm_maskz_sub_sh","_mm_maskz_sub_ss","_mm_maskz_subs_epi16","_mm_maskz_subs_epi8","_mm_maskz_subs_epu16","_mm_maskz_subs_epu8","_mm_maskz_ternarylogic_epi32","_mm_maskz_ternarylogic_epi64","_mm_maskz_unpackhi_epi16","_mm_maskz_unpackhi_epi32","_mm_maskz_unpackhi_epi64","_mm_maskz_unpackhi_epi8","_mm_maskz_unpackhi_pd","_mm_maskz_unpackhi_ps","_mm_maskz_unpacklo_epi16","_mm_maskz_unpacklo_epi32","_mm_maskz_unpacklo_epi64","_mm_maskz_unpacklo_epi8","_mm_maskz_unpacklo_pd","_mm_maskz_unpacklo_ps","_mm_maskz_xor_epi32","_mm_maskz_xor_epi64","_mm_maskz_xor_pd","_mm_maskz_xor_ps","_mm_max_epi16","_mm_max_epi32","_mm_max_epi64","_mm_max_epi8","_mm_max_epu16","_mm_max_epu32","_mm_max_epu64","_mm_max_epu8","_mm_max_pd","_mm_max_ph","_mm_max_ps","_mm_max_round_sd","_mm_max_round_sh","_mm_max_round_ss","_mm_max_sd","_mm_max_sh","_mm_max_ss","_mm_mfence","_mm_min_epi16","_mm_min_epi32","_mm_min_epi64","_mm_min_epi8","_mm_min_epu16","_mm_min_epu32","_mm_min_epu64","_mm_min_epu8","_mm_min_pd","_mm_min_ph","_mm_min_ps","_mm_min_round_sd","_mm_min_round_sh","_mm_min_round_ss","_mm_min_sd","_mm_min_sh","_mm_min_ss","_mm_minpos_epu16","_mm_mmask_i32gather_epi32","_mm_mmask_i32gather_epi64","_mm_mmask_i32gather_pd","_mm_mmask_i32gather_ps","_mm_mmask_i64gather_epi32","_mm_mmask_i64gather_epi64","_mm_mmask_i64gather_pd","_mm_mmask_i64gather_ps","_mm_move_epi64","_mm_move_sd","_mm_move_sh","_mm_move_ss","_mm_movedup_pd","_mm_movehdup_ps","_mm_movehl_ps","_mm_moveldup_ps","_mm_movelh_ps","_mm_movemask_epi8","_mm_movemask_pd","_mm_movemask_ps","_mm_movepi16_mask","_mm_movepi32_mask","_mm_movepi64_mask","_mm_movepi8_mask","_mm_movm_epi16","_mm_movm_epi32","_mm_movm_epi64","_mm_movm_epi8","_mm_mpsadbw_epu8","_mm_mul_epi32","_mm_mul_epu32","_mm_mul_pch","_mm_mul_pd","_mm_mul_ph","_mm_mul_ps","_mm_mul_round_sch","_mm_mul_round_sd","_mm_mul_round_sh","_mm_mul_round_ss","_mm_mul_sch","_mm_mul_sd","_mm_mul_sh","_mm_mul_ss","_mm_mulhi_epi16","_mm_mulhi_epu16","_mm_mulhrs_epi16","_mm_mullo_epi16","_mm_mullo_epi32","_mm_mullo_epi64","_mm_multishift_epi64_epi8","_mm_or_epi32","_mm_or_epi64","_mm_or_pd","_mm_or_ps","_mm_or_si128","_mm_packs_epi16","_mm_packs_epi32","_mm_packus_epi16","_mm_packus_epi32","_mm_pause","_mm_permute_pd","_mm_permute_ps","_mm_permutevar_pd","_mm_permutevar_ps","_mm_permutex2var_epi16","_mm_permutex2var_epi32","_mm_permutex2var_epi64","_mm_permutex2var_epi8","_mm_permutex2var_pd","_mm_permutex2var_ph","_mm_permutex2var_ps","_mm_permutexvar_epi16","_mm_permutexvar_epi8","_mm_permutexvar_ph","_mm_popcnt_epi16","_mm_popcnt_epi32","_mm_popcnt_epi64","_mm_popcnt_epi8","_mm_prefetch","_mm_range_pd","_mm_range_ps","_mm_range_round_sd","_mm_range_round_ss","_mm_rcp14_pd","_mm_rcp14_ps","_mm_rcp14_sd","_mm_rcp14_ss","_mm_rcp_ph","_mm_rcp_ps","_mm_rcp_sh","_mm_rcp_ss","_mm_reduce_add_epi16","_mm_reduce_add_epi8","_mm_reduce_add_ph","_mm_reduce_and_epi16","_mm_reduce_and_epi8","_mm_reduce_max_epi16","_mm_reduce_max_epi8","_mm_reduce_max_epu16","_mm_reduce_max_epu8","_mm_reduce_max_ph","_mm_reduce_min_epi16","_mm_reduce_min_epi8","_mm_reduce_min_epu16","_mm_reduce_min_epu8","_mm_reduce_min_ph","_mm_reduce_mul_epi16","_mm_reduce_mul_epi8","_mm_reduce_mul_ph","_mm_reduce_or_epi16","_mm_reduce_or_epi8","_mm_reduce_pd","_mm_reduce_ph","_mm_reduce_ps","_mm_reduce_round_sd","_mm_reduce_round_sh","_mm_reduce_round_ss","_mm_reduce_sd","_mm_reduce_sh","_mm_reduce_ss","_mm_rol_epi32","_mm_rol_epi64","_mm_rolv_epi32","_mm_rolv_epi64","_mm_ror_epi32","_mm_ror_epi64","_mm_rorv_epi32","_mm_rorv_epi64","_mm_round_pd","_mm_round_ps","_mm_round_sd","_mm_round_ss","_mm_roundscale_pd","_mm_roundscale_ph","_mm_roundscale_ps","_mm_roundscale_round_sd","_mm_roundscale_round_sh","_mm_roundscale_round_ss","_mm_roundscale_sd","_mm_roundscale_sh","_mm_roundscale_ss","_mm_rsqrt14_pd","_mm_rsqrt14_ps","_mm_rsqrt14_sd","_mm_rsqrt14_ss","_mm_rsqrt_ph","_mm_rsqrt_ps","_mm_rsqrt_sh","_mm_rsqrt_ss","_mm_sad_epu8","_mm_scalef_pd","_mm_scalef_ph","_mm_scalef_ps","_mm_scalef_round_sd","_mm_scalef_round_sh","_mm_scalef_round_ss","_mm_scalef_sd","_mm_scalef_sh","_mm_scalef_ss","_mm_set1_epi16","_mm_set1_epi32","_mm_set1_epi64x","_mm_set1_epi8","_mm_set1_pd","_mm_set1_ph","_mm_set1_ps","_mm_set_epi16","_mm_set_epi32","_mm_set_epi64x","_mm_set_epi8","_mm_set_pd","_mm_set_pd1","_mm_set_ph","_mm_set_ps","_mm_set_ps1","_mm_set_sd","_mm_set_sh","_mm_set_ss","_mm_setcsr","_mm_setr_epi16","_mm_setr_epi32","_mm_setr_epi8","_mm_setr_pd","_mm_setr_ph","_mm_setr_ps","_mm_setzero_pd","_mm_setzero_ph","_mm_setzero_ps","_mm_setzero_si128","_mm_sfence","_mm_sha1msg1_epu32","_mm_sha1msg2_epu32","_mm_sha1nexte_epu32","_mm_sha1rnds4_epu32","_mm_sha256msg1_epu32","_mm_sha256msg2_epu32","_mm_sha256rnds2_epu32","_mm_shldi_epi16","_mm_shldi_epi32","_mm_shldi_epi64","_mm_shldv_epi16","_mm_shldv_epi32","_mm_shldv_epi64","_mm_shrdi_epi16","_mm_shrdi_epi32","_mm_shrdi_epi64","_mm_shrdv_epi16","_mm_shrdv_epi32","_mm_shrdv_epi64","_mm_shuffle_epi32","_mm_shuffle_epi8","_mm_shuffle_pd","_mm_shuffle_ps","_mm_shufflehi_epi16","_mm_shufflelo_epi16","_mm_sign_epi16","_mm_sign_epi32","_mm_sign_epi8","_mm_sll_epi16","_mm_sll_epi32","_mm_sll_epi64","_mm_slli_epi16","_mm_slli_epi32","_mm_slli_epi64","_mm_slli_si128","_mm_sllv_epi16","_mm_sllv_epi32","_mm_sllv_epi64","_mm_sqrt_pd","_mm_sqrt_ph","_mm_sqrt_ps","_mm_sqrt_round_sd","_mm_sqrt_round_sh","_mm_sqrt_round_ss","_mm_sqrt_sd","_mm_sqrt_sh","_mm_sqrt_ss","_mm_sra_epi16","_mm_sra_epi32","_mm_sra_epi64","_mm_srai_epi16","_mm_srai_epi32","_mm_srai_epi64","_mm_srav_epi16","_mm_srav_epi32","_mm_srav_epi64","_mm_srl_epi16","_mm_srl_epi32","_mm_srl_epi64","_mm_srli_epi16","_mm_srli_epi32","_mm_srli_epi64","_mm_srli_si128","_mm_srlv_epi16","_mm_srlv_epi32","_mm_srlv_epi64","_mm_store1_pd","_mm_store1_ps","_mm_store_epi32","_mm_store_epi64","_mm_store_pd","_mm_store_pd1","_mm_store_ph","_mm_store_ps","_mm_store_ps1","_mm_store_sd","_mm_store_sh","_mm_store_si128","_mm_store_ss","_mm_storeh_pd","_mm_storel_epi64","_mm_storel_pd","_mm_storer_pd","_mm_storer_ps","_mm_storeu_epi16","_mm_storeu_epi32","_mm_storeu_epi64","_mm_storeu_epi8","_mm_storeu_pd","_mm_storeu_ph","_mm_storeu_ps","_mm_storeu_si128","_mm_storeu_si16","_mm_storeu_si32","_mm_storeu_si64","_mm_stream_load_si128","_mm_stream_pd","_mm_stream_ps","_mm_stream_sd","_mm_stream_si128","_mm_stream_si32","_mm_stream_si64","_mm_stream_ss","_mm_sub_epi16","_mm_sub_epi32","_mm_sub_epi64","_mm_sub_epi8","_mm_sub_pd","_mm_sub_ph","_mm_sub_ps","_mm_sub_round_sd","_mm_sub_round_sh","_mm_sub_round_ss","_mm_sub_sd","_mm_sub_sh","_mm_sub_ss","_mm_subs_epi16","_mm_subs_epi8","_mm_subs_epu16","_mm_subs_epu8","_mm_ternarylogic_epi32","_mm_ternarylogic_epi64","_mm_test_all_ones","_mm_test_all_zeros","_mm_test_epi16_mask","_mm_test_epi32_mask","_mm_test_epi64_mask","_mm_test_epi8_mask","_mm_test_mix_ones_zeros","_mm_testc_pd","_mm_testc_ps","_mm_testc_si128","_mm_testn_epi16_mask","_mm_testn_epi32_mask","_mm_testn_epi64_mask","_mm_testn_epi8_mask","_mm_testnzc_pd","_mm_testnzc_ps","_mm_testnzc_si128","_mm_testz_pd","_mm_testz_ps","_mm_testz_si128","_mm_tzcnt_32","_mm_tzcnt_64","_mm_ucomieq_sd","_mm_ucomieq_sh","_mm_ucomieq_ss","_mm_ucomige_sd","_mm_ucomige_sh","_mm_ucomige_ss","_mm_ucomigt_sd","_mm_ucomigt_sh","_mm_ucomigt_ss","_mm_ucomile_sd","_mm_ucomile_sh","_mm_ucomile_ss","_mm_ucomilt_sd","_mm_ucomilt_sh","_mm_ucomilt_ss","_mm_ucomineq_sd","_mm_ucomineq_sh","_mm_ucomineq_ss","_mm_undefined_pd","_mm_undefined_ph","_mm_undefined_ps","_mm_undefined_si128","_mm_unpackhi_epi16","_mm_unpackhi_epi32","_mm_unpackhi_epi64","_mm_unpackhi_epi8","_mm_unpackhi_pd","_mm_unpackhi_ps","_mm_unpacklo_epi16","_mm_unpacklo_epi32","_mm_unpacklo_epi64","_mm_unpacklo_epi8","_mm_unpacklo_pd","_mm_unpacklo_ps","_mm_xor_epi32","_mm_xor_epi64","_mm_xor_pd","_mm_xor_ps","_mm_xor_si128","_mulx_u32","_mulx_u64","_pdep_u32","_pdep_u64","_pext_u32","_pext_u64","_popcnt32","_popcnt64","_rdrand16_step","_rdrand32_step","_rdrand64_step","_rdseed16_step","_rdseed32_step","_rdseed64_step","_rdtsc","_store_mask16","_store_mask32","_store_mask64","_store_mask8","_subborrow_u32","_subborrow_u64","_t1mskc_u32","_t1mskc_u64","_tile_cmmimfp16ps","_tile_cmmrlfp16ps","_tile_dpbf16ps","_tile_dpbssd","_tile_dpbsud","_tile_dpbusd","_tile_dpbuud","_tile_dpfp16ps","_tile_loadconfig","_tile_loadd","_tile_release","_tile_storeconfig","_tile_stored","_tile_stream_loadd","_tile_zero","_tzcnt_u16","_tzcnt_u32","_tzcnt_u64","_tzmsk_u32","_tzmsk_u64","_xabort","_xabort_code","_xbegin","_xend","_xgetbv","_xrstor","_xrstor64","_xrstors","_xrstors64","_xsave","_xsave64","_xsavec","_xsavec64","_xsaveopt","_xsaveopt64","_xsaves","_xsaves64","_xsetbv","_xtest","bf16","cmpxchg16b","eax","ebx","ecx","edx","IntoIter","TryFromSliceError","from_fn","from_mut","from_ref","repeat","try_from_fn","Acknowledge","Ampersand","Apostrophe","Asterisk","Backspace","Bell","Cancel","CapitalA","CapitalB","CapitalC","CapitalD","CapitalE","CapitalF","CapitalG","CapitalH","CapitalI","CapitalJ","CapitalK","CapitalL","CapitalM","CapitalN","CapitalO","CapitalP","CapitalQ","CapitalR","CapitalS","CapitalT","CapitalU","CapitalV","CapitalW","CapitalX","CapitalY","CapitalZ","CarriageReturn","Char","CharacterTabulation","CircumflexAccent","Colon","Comma","CommercialAt","DataLinkEscape","Delete","DeviceControlFour","DeviceControlOne","DeviceControlThree","DeviceControlTwo","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DollarSign","EndOfMedium","EndOfText","EndOfTransmission","EndOfTransmissionBlock","Enquiry","EqualsSign","Escape","EscapeDefault","ExclamationMark","FormFeed","FullStop","GraveAccent","GreaterThanSign","HyphenMinus","InformationSeparatorFour","InformationSeparatorOne","InformationSeparatorThree","InformationSeparatorTwo","LeftCurlyBracket","LeftParenthesis","LeftSquareBracket","LessThanSign","LineFeed","LineTabulation","LowLine","NegativeAcknowledge","Null","NumberSign","PercentSign","PlusSign","QuestionMark","QuotationMark","ReverseSolidus","RightCurlyBracket","RightParenthesis","RightSquareBracket","Semicolon","ShiftIn","ShiftOut","SmallA","SmallB","SmallC","SmallD","SmallE","SmallF","SmallG","SmallH","SmallI","SmallJ","SmallK","SmallL","SmallM","SmallN","SmallO","SmallP","SmallQ","SmallR","SmallS","SmallT","SmallU","SmallV","SmallW","SmallX","SmallY","SmallZ","Solidus","Space","StartOfHeading","StartOfText","Substitute","SynchronousIdle","Tilde","VerticalLine","escape_default","assert_matches","debug_assert_matches","AsyncIterator","FromIter","IntoAsyncIter","IntoAsyncIterator","Item","","from_iter","into_async_iter","poll_next","size_hint","Borrow","BorrowMut","borrow","borrow_mut","BorrowError","BorrowMutError","Cell","LazyCell","OnceCell","Ref","RefCell","RefMut","SyncUnsafeCell","UnsafeCell","CharTryFromError","DecodeUtf16","DecodeUtf16Error","EscapeDebug","EscapeDefault","EscapeUnicode","MAX","ParseCharError","REPLACEMENT_CHARACTER","ToLowercase","ToUppercase","TryFromCharError","UNICODE_VERSION","decode_utf16","from_digit","from_u32","from_u32_unchecked","Clone","","CloneToUninit","clone","clone_from","clone_to_uninit","Eq","","Equal","Greater","Less","Ord","","Ordering","PartialEq","","PartialOrd","","Reverse","clamp","cmp","eq","ge","gt","le","lt","max","","max_by","max_by_key","min","","min_by","min_by_key","minmax","minmax_by","minmax_by_key","ne","partial_cmp","AsMut","AsRef","Error","","FloatToInt","From","Infallible","Into","TryFrom","TryInto","as_mut","as_ref","from","identity","into","try_from","try_into","Default","","default","Error","Request","Source","borrow","borrow_mut","cause","clone","clone_into","clone_to_uninit","description","fmt","from","into","into_iter","next","provide","request_ref","request_value","size_hint","source","to_owned","try_from","try_into","type_id","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","CStr","FromBytesUntilNulError","FromBytesWithNulError","VaList","VaListImpl","c_char","c_double","c_float","c_int","c_long","c_longlong","c_ptrdiff_t","c_schar","c_short","c_size_t","c_ssize_t","c_str","c_uchar","c_uint","c_ulong","c_ulonglong","c_ushort","c_void","va_list","Bytes","CStr","FromBytesUntilNulError","FromBytesWithNulError","borrow","borrow_mut","clone","clone_into","clone_to_uninit","count","fmt","from","into","into_iter","next","size_hint","to_owned","try_from","try_into","type_id","VaList","VaListImpl","Alignment","Arguments","Binary","Center","Debug","","DebugList","DebugMap","DebugSet","DebugStruct","DebugTuple","Display","Err","Error","Formatter","FromFn","Left","LowerExp","LowerHex","Octal","Ok","Pointer","Result","Right","UpperExp","UpperHex","Write","fmt","","","","","","","","","from_fn","write","write_char","write_fmt","write_str","AsyncDrop","AsyncDropInPlace","Dropper","Future","IntoFuture","","Output","","Pending","PollFn","Ready","async_drop","","async_drop_in_place","into_future","join","pending","poll","poll_fn","ready","BuildHasher","BuildHasherDefault","Hash","","Hasher","","SipHasher","build_hasher","finish","hash","hash_one","hash_slice","write","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_length_prefix","write_str","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","assert_unchecked","black_box","must_use","spin_loop","unreachable_unchecked","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","AggregateRawPtr","Metadata","abort","add_with_overflow","aggregate_raw_ptr","arith_offset","assert_inhabited","assert_mem_uninitialized_valid","assert_zero_valid","assume","atomic_and_acqrel","atomic_and_acquire","atomic_and_relaxed","atomic_and_release","atomic_and_seqcst","atomic_cxchg_acqrel_acquire","atomic_cxchg_acqrel_relaxed","atomic_cxchg_acqrel_seqcst","atomic_cxchg_acquire_acquire","atomic_cxchg_acquire_relaxed","atomic_cxchg_acquire_seqcst","atomic_cxchg_relaxed_acquire","atomic_cxchg_relaxed_relaxed","atomic_cxchg_relaxed_seqcst","atomic_cxchg_release_acquire","atomic_cxchg_release_relaxed","atomic_cxchg_release_seqcst","atomic_cxchg_seqcst_acquire","atomic_cxchg_seqcst_relaxed","atomic_cxchg_seqcst_seqcst","atomic_cxchgweak_acqrel_acquire","atomic_cxchgweak_acqrel_relaxed","atomic_cxchgweak_acqrel_seqcst","atomic_cxchgweak_acquire_acquire","atomic_cxchgweak_acquire_relaxed","atomic_cxchgweak_acquire_seqcst","atomic_cxchgweak_relaxed_acquire","atomic_cxchgweak_relaxed_relaxed","atomic_cxchgweak_relaxed_seqcst","atomic_cxchgweak_release_acquire","atomic_cxchgweak_release_relaxed","atomic_cxchgweak_release_seqcst","atomic_cxchgweak_seqcst_acquire","atomic_cxchgweak_seqcst_relaxed","atomic_cxchgweak_seqcst_seqcst","atomic_fence_acqrel","atomic_fence_acquire","atomic_fence_release","atomic_fence_seqcst","atomic_load_acquire","atomic_load_relaxed","atomic_load_seqcst","atomic_load_unordered","atomic_max_acqrel","atomic_max_acquire","atomic_max_relaxed","atomic_max_release","atomic_max_seqcst","atomic_min_acqrel","atomic_min_acquire","atomic_min_relaxed","atomic_min_release","atomic_min_seqcst","atomic_nand_acqrel","atomic_nand_acquire","atomic_nand_relaxed","atomic_nand_release","atomic_nand_seqcst","atomic_or_acqrel","atomic_or_acquire","atomic_or_relaxed","atomic_or_release","atomic_or_seqcst","atomic_singlethreadfence_acqrel","atomic_singlethreadfence_acquire","atomic_singlethreadfence_release","atomic_singlethreadfence_seqcst","atomic_store_relaxed","atomic_store_release","atomic_store_seqcst","atomic_store_unordered","atomic_umax_acqrel","atomic_umax_acquire","atomic_umax_relaxed","atomic_umax_release","atomic_umax_seqcst","atomic_umin_acqrel","atomic_umin_acquire","atomic_umin_relaxed","atomic_umin_release","atomic_umin_seqcst","atomic_xadd_acqrel","atomic_xadd_acquire","atomic_xadd_relaxed","atomic_xadd_release","atomic_xadd_seqcst","atomic_xchg_acqrel","atomic_xchg_acquire","atomic_xchg_relaxed","atomic_xchg_release","atomic_xchg_seqcst","atomic_xor_acqrel","atomic_xor_acquire","atomic_xor_relaxed","atomic_xor_release","atomic_xor_seqcst","atomic_xsub_acqrel","atomic_xsub_acquire","atomic_xsub_relaxed","atomic_xsub_release","atomic_xsub_seqcst","bitreverse","black_box","breakpoint","bswap","caller_location","catch_unwind","ceilf128","ceilf16","ceilf32","ceilf64","compare_bytes","const_allocate","const_deallocate","const_eval_select","copy","copy_nonoverlapping","copysignf128","copysignf16","copysignf32","copysignf64","cosf128","cosf16","cosf32","cosf64","ctlz","ctlz_nonzero","ctpop","cttz","cttz_nonzero","discriminant_value","drop_in_place","exact_div","exp2f128","exp2f16","exp2f32","exp2f64","expf128","expf16","expf32","expf64","fabsf128","fabsf16","fabsf32","fabsf64","fadd_algebraic","fadd_fast","fdiv_algebraic","fdiv_fast","float_to_int_unchecked","floorf128","floorf16","floorf32","floorf64","fmaf128","fmaf16","fmaf32","fmaf64","fmul_algebraic","fmul_fast","forget","frem_algebraic","frem_fast","fsub_algebraic","fsub_fast","is_val_statically_known","likely","log10f128","log10f16","log10f32","log10f64","log2f128","log2f16","log2f32","log2f64","logf128","logf16","logf32","logf64","maxnumf128","maxnumf16","maxnumf32","maxnumf64","min_align_of","min_align_of_val","minnumf128","minnumf16","minnumf32","minnumf64","mir","mul_with_overflow","nearbyintf128","nearbyintf16","nearbyintf32","nearbyintf64","needs_drop","nontemporal_store","offset","powf128","powf16","powf32","powf64","powif128","powif16","powif32","powif64","pref_align_of","prefetch_read_data","prefetch_read_instruction","prefetch_write_data","prefetch_write_instruction","ptr_guaranteed_cmp","ptr_mask","ptr_metadata","ptr_offset_from","ptr_offset_from_unsigned","raw_eq","read_via_copy","rintf128","rintf16","rintf32","rintf64","rotate_left","rotate_right","roundevenf128","roundevenf16","roundevenf32","roundevenf64","roundf128","roundf16","roundf32","roundf64","rustc_peek","saturating_add","saturating_sub","select_unpredictable","simd","sinf128","sinf16","sinf32","sinf64","size_of","size_of_val","sqrtf128","sqrtf16","sqrtf32","sqrtf64","sub_with_overflow","three_way_compare","transmute","transmute_unchecked","truncf128","truncf16","truncf32","truncf64","type_id","type_name","typed_swap","ub_checks","unaligned_volatile_load","unaligned_volatile_store","unchecked_add","unchecked_div","unchecked_mul","unchecked_rem","unchecked_shl","unchecked_shr","unchecked_sub","unlikely","unreachable","variant_count","volatile_copy_memory","volatile_copy_nonoverlapping_memory","volatile_load","volatile_set_memory","volatile_store","vtable_align","vtable_size","wrapping_add","wrapping_mul","wrapping_sub","write_bytes","write_via_move","Abi","Assume","BasicBlock","Call","CastPtrToPtr","CastTransmute","Checked","Cleanup","CopyForDeref","Deinit","Discriminant","Drop","Field","Goto","InCleanup","Len","Move","Normal","Offset","PtrMetadata","Retag","Return","ReturnTo","ReturnToArg","SetDiscriminant","Static","StaticMut","StorageDead","StorageLive","TailCall","Unreachable","UnwindActionArg","UnwindCleanup","UnwindContinue","UnwindResume","UnwindTerminate","UnwindTerminateReason","UnwindUnreachable","Variant","mir","place","simd_add","simd_and","simd_arith_offset","simd_as","simd_bitmask","simd_bitreverse","simd_bswap","simd_cast","simd_cast_ptr","simd_ceil","simd_ctlz","simd_ctpop","simd_cttz","simd_div","simd_eq","simd_expose_provenance","simd_extract","simd_fabs","simd_fcos","simd_fexp","simd_fexp2","simd_flog","simd_flog10","simd_flog2","simd_floor","simd_fma","simd_fmax","simd_fmin","simd_fsin","simd_fsqrt","simd_gather","simd_ge","simd_gt","simd_insert","simd_le","simd_lt","simd_masked_load","simd_masked_store","simd_mul","simd_ne","simd_neg","simd_or","simd_reduce_add_ordered","simd_reduce_add_unordered","simd_reduce_all","simd_reduce_and","simd_reduce_any","simd_reduce_max","simd_reduce_min","simd_reduce_mul_ordered","simd_reduce_mul_unordered","simd_reduce_or","simd_reduce_xor","simd_rem","simd_round","simd_saturating_add","simd_saturating_sub","simd_scatter","simd_select","simd_select_bitmask","simd_shl","simd_shr","simd_shuffle","simd_sub","simd_trunc","simd_with_exposed_provenance","simd_xor","BorrowedBuf","BorrowedCursor","MAX","MIN","ArrayChunks","ByRefSized","Chain","Cloned","Copied","Cycle","DoubleEndedIterator","Empty","Enumerate","ExactSizeIterator","Extend","Filter","FilterMap","FlatMap","Flatten","FromFn","FromIterator","Fuse","FusedIterator","Inspect","Intersperse","IntersperseWith","IntoIter","IntoIterator","Item","","Iterator","Map","MapWhile","MapWindows","Once","OnceWith","Peekable","Product","Repeat","RepeatN","RepeatWith","Rev","Scan","Skip","SkipWhile","Step","StepBy","Successors","Sum","Take","TakeWhile","TrustedLen","TrustedStep","Zip","advance_back_by","advance_by","all","any","array_chunks","backward","backward_checked","backward_unchecked","by_ref","chain","","cloned","cmp","cmp_by","collect","collect_into","copied","count","cycle","empty","enumerate","eq","eq_by","extend","extend_one","extend_reserve","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","forward","forward_checked","forward_unchecked","from_coroutine","from_fn","from_iter","fuse","ge","gt","inspect","intersperse","intersperse_with","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","len","lt","map","map_while","map_windows","max","max_by","max_by_key","min","min_by","min_by_key","ne","next","next_back","next_chunk","nth","nth_back","once","once_with","partial_cmp","partial_cmp_by","partition","partition_in_place","peekable","position","product","","reduce","repeat","repeat_n","repeat_with","rev","rfind","rfold","rposition","scan","size_hint","skip","skip_while","step_by","steps_between","successors","sum","","take","take_while","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","unzip","zip","","ConstParamTy","ConstParamTy_","Copy","","Destruct","Discriminant","DiscriminantKind","FnPtr","Freeze","PhantomData","PhantomPinned","PointerLike","Send","Sized","SmartPointer","StructuralPartialEq","Sync","Tuple","Unpin","Unsize","UnsizedConstParamTy","","addr","Assume","Discriminant","ManuallyDrop","MaybeUninit","TransmuteFrom","align_of","align_of_val","align_of_val_raw","alignment","copy","discriminant","drop","forget","forget_unsized","lifetimes","min_align_of","min_align_of_val","needs_drop","offset_of","replace","safety","size_of","size_of_val","size_of_val_raw","swap","take","transmute","","transmute_copy","uninitialized","validity","variant_count","zeroed","AddrParseError","AdminLocal","Global","InterfaceLocal","IpAddr","Ipv4Addr","Ipv6Addr","Ipv6MulticastScope","LinkLocal","OrganizationLocal","RealmLocal","SiteLocal","SocketAddr","SocketAddrV4","SocketAddrV6","V4","","V6","","Empty","FpCategory","Infinite","IntErrorKind","InvalidDigit","Nan","NegOverflow","NonZero","NonZeroI128","NonZeroI16","NonZeroI32","NonZeroI64","NonZeroI8","NonZeroIsize","NonZeroU128","NonZeroU16","NonZeroU32","NonZeroU64","NonZeroU8","NonZeroUsize","Normal","ParseFloatError","ParseIntError","PosOverflow","Saturating","Subnormal","TryFromIntError","Wrapping","Zero","","ZeroablePrimitive","Add","AddAssign","AsyncFn","AsyncFnMut","AsyncFnOnce","BitAnd","BitAndAssign","BitOr","BitOrAssign","BitXor","BitXorAssign","Bound","Break","CallOnceFuture","CallRefFuture","CoerceUnsized","Complete","Continue","ControlFlow","Coroutine","CoroutineState","Deref","DerefMut","DerefPure","DispatchFromDyn","Div","DivAssign","Drop","Excluded","Fn","FnMut","FnOnce","FromResidual","Included","Index","IndexMut","Mul","MulAssign","Neg","Not","OneSidedRange","Output","","","","","","","","","","","","","","","","Range","RangeBounds","RangeFrom","RangeFull","RangeInclusive","RangeTo","RangeToInclusive","Rem","RemAssign","Residual","","Return","Shl","ShlAssign","Shr","ShrAssign","Sub","SubAssign","Target","Try","TryType","Unbounded","Yeet","Yield","Yielded","add","add_assign","async_call","async_call_mut","async_call_once","bitand","bitand_assign","bitor","bitor_assign","bitxor","bitxor_assign","branch","call","call_mut","call_once","contains","deref","deref_mut","div","div_assign","drop","end","","","end_bound","from_output","from_residual","index","index_mut","mul","mul_assign","neg","not","rem","rem_assign","resume","shl","shl_assign","shr","shr_assign","start","","start_bound","sub","sub_assign","IntoIter","Iter","IterMut","None","Option","Some","AssertUnwindSafe","Location","PanicInfo","PanicMessage","RefUnwindSafe","UnwindSafe","as_str","borrow","","borrow_mut","","can_unwind","fmt","","","","from","","into","","location","message","payload","to_string","","try_from","","try_into","","type_id","","const_panic_fmt","panic","panic_const","panic_display","panic_explicit","panic_fmt","panic_nounwind","panic_nounwind_fmt","panic_nounwind_nobacktrace","panic_str_2015","unreachable_display","panic_const_add_overflow","panic_const_async_fn_resumed","panic_const_async_fn_resumed_panic","panic_const_async_gen_fn_resumed","panic_const_async_gen_fn_resumed_panic","panic_const_coroutine_resumed","panic_const_coroutine_resumed_panic","panic_const_div_by_zero","panic_const_div_overflow","panic_const_gen_fn_none","panic_const_gen_fn_none_panic","panic_const_mul_overflow","panic_const_neg_overflow","panic_const_rem_by_zero","panic_const_rem_overflow","panic_const_shl_overflow","panic_const_shr_overflow","panic_const_sub_overflow","Pin","PinCoerceUnsized","pin","rust_2015","rust_2018","rust_2021","rust_2024","v1","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","TryFrom","TryInto","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Future","Hash","Into","IntoFuture","","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","","","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","TryFrom","TryInto","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_future","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","poll","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","PartialEq","","PartialOrd","","Result","Send","Sized","Some","Sync","Unpin","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","bool","char","f32","f64","i128","i16","i32","i64","i8","isize","str","u128","u16","u32","u64","u8","usize","Alignment","DynMetadata","Metadata","NonNull","Pointee","addr_eq","addr_of","addr_of_mut","copy","copy_nonoverlapping","dangling","dangling_mut","drop_in_place","eq","fn_addr_eq","from_mut","from_raw_parts","from_raw_parts_mut","from_ref","hash","metadata","null","null_mut","read","read_unaligned","read_volatile","replace","slice_from_raw_parts","slice_from_raw_parts_mut","swap","swap_nonoverlapping","with_exposed_provenance","with_exposed_provenance_mut","without_provenance","without_provenance_mut","write","write_bytes","write_unaligned","write_volatile","Bound","Excluded","Included","IterRange","IterRangeFrom","IterRangeInclusive","OneSidedRange","Range","RangeBounds","RangeFrom","RangeFull","RangeInclusive","RangeTo","RangeToInclusive","Step","Unbounded","advance_back_by","","advance_by","","backward","backward_checked","backward_unchecked","borrow","","","","","","borrow_mut","","","","","","clone","","","","","","clone_into","","","","","","clone_to_uninit","","","","","","contains","","","","count","","default","end","","","","end_bound","","","","","","","eq","","","fmt","","","","","","forward","forward_checked","forward_unchecked","from","","","","","","","","","get","","","","","","get_mut","","","","","","get_unchecked","","","","","","get_unchecked_mut","","","","","","hash","","","index","","","","","","index_mut","","","","","","into","","","","","","into_iter","","","","","","is_empty","","is_sorted","","iter","","","last","","legacy","max","","min","","next","","","next_back","","nth","","","nth_back","","remainder","","","size_hint","","","start","","","start_bound","","","","","","","steps_between","to_owned","","","","","","try_from","","","","","","try_into","","","","","","type_id","","","","","","Range","RangeFrom","RangeInclusive","end","start","","Err","IntoIter","Iter","IterMut","Ok","Result","Bytes","INDEX","LaneCount","Mask","","MaskElement","Simd","SimdCast","SimdElement","SupportedLaneCount","Swizzle","ToBytes","cmp","concat_swizzle","concat_swizzle_mask","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","from_be_bytes","from_le_bytes","from_ne_bytes","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","num","prelude","ptr","simd_swizzle","swizzle","swizzle_mask","to_be_bytes","to_le_bytes","to_ne_bytes","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","Mask","SimdOrd","SimdPartialEq","SimdPartialOrd","simd_clamp","simd_eq","simd_ge","simd_gt","simd_le","simd_lt","simd_max","simd_min","simd_ne","Bits","Cast","","","Mask","","Scalar","","","SimdFloat","SimdInt","SimdUint","Unsigned","abs","","cast","","","copysign","from_bits","is_finite","is_infinite","is_nan","is_negative","is_normal","is_positive","is_sign_negative","is_sign_positive","is_subnormal","leading_ones","","leading_zeros","","recip","reduce_and","","reduce_max","","","reduce_min","","","reduce_or","","reduce_product","","","reduce_sum","","","reduce_xor","","reverse_bits","","saturating_abs","saturating_add","","saturating_neg","saturating_sub","","signum","","simd_clamp","simd_max","simd_min","swap_bytes","","to_bits","to_degrees","to_int_unchecked","to_radians","trailing_ones","","trailing_zeros","","wrapping_neg","Bits","Cast","","","CastPtr","","ConstPtr","Isize","","Mask","","","","","","MutPtr","Scalar","","","Simd","SimdConstPtr","SimdFloat","SimdInt","SimdMutPtr","SimdOrd","SimdPartialEq","SimdPartialOrd","SimdUint","Unsigned","Usize","","abs","","addr","","cast","","","","","cast_const","cast_mut","copysign","expose_provenance","","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","from_bits","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","is_finite","is_infinite","is_nan","is_negative","is_normal","is_null","","is_positive","is_sign_negative","is_sign_positive","is_subnormal","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","leading_ones","","leading_zeros","","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","recip","reduce_and","","reduce_max","","","reduce_min","","","reduce_or","","reduce_product","","","reduce_sum","","","reduce_xor","","reverse_bits","","saturating_abs","saturating_add","","saturating_neg","saturating_sub","","signum","","simd_clamp","","simd_eq","simd_ge","simd_gt","simd_le","simd_lt","simd_max","","simd_min","","simd_ne","simd_swizzle","swap_bytes","","to_bits","to_degrees","to_int_unchecked","to_radians","trailing_ones","","trailing_zeros","","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","with_addr","","with_exposed_provenance","","wrapping_add","","wrapping_neg","wrapping_offset","","wrapping_sub","","CastPtr","","ConstPtr","Isize","","Mask","","MutPtr","SimdConstPtr","SimdMutPtr","Usize","","addr","","cast","","cast_const","cast_mut","expose_provenance","","is_null","","with_addr","","with_exposed_provenance","","wrapping_add","","wrapping_offset","","wrapping_sub","","ArrayChunks","ArrayChunksMut","ArrayWindows","ChunkBy","ChunkByMut","Chunks","ChunksExact","ChunksExactMut","ChunksMut","EscapeAscii","GetManyMutError","Item","Iter","IterMut","Output","RChunks","RChunksExact","RChunksExactMut","RChunksMut","RSplit","RSplitMut","RSplitN","RSplitNMut","SliceIndex","SlicePattern","Split","SplitInclusive","SplitInclusiveMut","SplitMut","SplitN","SplitNMut","Windows","as_slice","borrow","borrow_mut","fmt","","from","from_mut","from_mut_ptr_range","from_ptr_range","from_raw_parts","from_raw_parts_mut","from_ref","get","get_mut","get_unchecked","get_unchecked_mut","index","index_mut","into","memchr","range","to_string","try_from","try_into","try_range","type_id","memchr","memrchr","Bytes","CharIndices","Chars","EncodeUtf16","Err","EscapeDebug","EscapeDefault","EscapeUnicode","FromStr","Lines","LinesAny","MatchIndices","Matches","ParseBoolError","RMatchIndices","RMatches","RSplit","RSplitN","RSplitTerminator","Split","SplitAsciiWhitespace","SplitInclusive","SplitN","SplitTerminator","SplitWhitespace","Utf8Chunk","Utf8Chunks","Utf8Error","from_raw_parts","from_raw_parts_mut","from_str","from_utf8","from_utf8_mut","from_utf8_unchecked","from_utf8_unchecked_mut","next_code_point","pattern","utf8_char_width","CharArrayRefSearcher","CharArraySearcher","CharPredicateSearcher","CharSearcher","CharSliceSearcher","Done","DoubleEndedSearcher","Match","Pattern","Reject","ReverseSearcher","SearchStep","Searcher","","StrSearcher","haystack","into_searcher","is_contained_in","is_prefix_of","is_suffix_of","next","next_back","next_match","next_match_back","next_reject","next_reject_back","strip_prefix_of","strip_suffix_of","Exclusive","atomic","ATOMIC_BOOL_INIT","ATOMIC_ISIZE_INIT","ATOMIC_USIZE_INIT","AcqRel","Acquire","AtomicBool","AtomicI16","AtomicI32","AtomicI64","AtomicI8","AtomicIsize","AtomicPtr","AtomicU16","AtomicU32","AtomicU64","AtomicU8","AtomicUsize","Ordering","Relaxed","Release","SeqCst","compiler_fence","fence","spin_loop_hint","Context","ContextBuilder","LocalWaker","Pending","Poll","RawWaker","RawWakerVTable","Ready","Waker","ready","Duration","TryFromFloatSecsError","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","assert_unsafe_precondition","check_library_ub","Case_Ignorable","Cased","UNICODE_VERSION","conversions","to_lower","to_upper","MAX","MIN","alloc","any","arch","array","ascii","assert","assert_eq","assert_matches","assert_ne","async_iter","backtrace","borrow","boxed","cell","cfg","cfg_match","char","clone","cmp","collections","column","compile_error","concat","concat_bytes","concat_idents","const_format_args","convert","dbg","debug_assert","debug_assert_eq","debug_assert_ne","default","env","","eprint","eprintln","error","f128","f16","f32","f64","ffi","file","fmt","format","format_args","format_args_nl","fs","future","hash","hint","i128","i16","i32","i64","i8","include","include_bytes","include_str","intrinsics","io","is_x86_feature_detected","isize","iter","line","log_syntax","marker","matches","mem","module_path","net","num","ops","option","option_env","os","panic","","pat","path","pin","pipe","prelude","primitive","print","println","process","ptr","rc","result","simd","slice","str","string","stringify","sync","task","thread","thread_local","time","todo","trace_macros","try","u128","u16","u32","u64","u8","unimplemented","unreachable","usize","vec","","write","writeln","AllocError","Allocator","Global","GlobalAlloc","Layout","LayoutErr","LayoutError","System","align","align_to","alloc","","","alloc_zeroed","","","allocate","","","allocate_zeroed","","","array","borrow","","","","","borrow_mut","","","","","by_ref","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","dangling","dealloc","","","deallocate","","","default","","eq","","","extend","extend_packed","fmt","","","","","","","for_value","for_value_raw","from","","","","","from_size_align","from_size_align_unchecked","grow","","","grow_zeroed","","","handle_alloc_error","hash","into","","","","","new","pad_to_align","padding_needed_for","realloc","","","repeat","repeat_packed","set_alloc_error_hook","shrink","","","size","take_alloc_error_hook","to_owned","","","","","to_string","","try_from","","","","","try_into","","","","","type_id","","","","","Any","TypeId","borrow","borrow_mut","clone","clone_into","clone_to_uninit","cmp","downcast_mut","","","downcast_mut_unchecked","","","downcast_ref","","","downcast_ref_unchecked","","","eq","fmt","","","","from","hash","into","is","","","of","partial_cmp","to_owned","try_from","try_into","type_id","","type_name","type_name_of_val","asm","global_asm","is_aarch64_feature_detected","is_arm_feature_detected","is_mips64_feature_detected","is_mips_feature_detected","is_powerpc64_feature_detected","is_powerpc_feature_detected","is_riscv_feature_detected","is_x86_feature_detected","x86_64","CpuidResult","_CMP_EQ_OQ","_CMP_EQ_OS","_CMP_EQ_UQ","_CMP_EQ_US","_CMP_FALSE_OQ","_CMP_FALSE_OS","_CMP_GE_OQ","_CMP_GE_OS","_CMP_GT_OQ","_CMP_GT_OS","_CMP_LE_OQ","_CMP_LE_OS","_CMP_LT_OQ","_CMP_LT_OS","_CMP_NEQ_OQ","_CMP_NEQ_OS","_CMP_NEQ_UQ","_CMP_NEQ_US","_CMP_NGE_UQ","_CMP_NGE_US","_CMP_NGT_UQ","_CMP_NGT_US","_CMP_NLE_UQ","_CMP_NLE_US","_CMP_NLT_UQ","_CMP_NLT_US","_CMP_ORD_Q","_CMP_ORD_S","_CMP_TRUE_UQ","_CMP_TRUE_US","_CMP_UNORD_Q","_CMP_UNORD_S","_MM_CMPINT_ENUM","_MM_CMPINT_EQ","_MM_CMPINT_FALSE","_MM_CMPINT_LE","_MM_CMPINT_LT","_MM_CMPINT_NE","_MM_CMPINT_NLE","_MM_CMPINT_NLT","_MM_CMPINT_TRUE","_MM_EXCEPT_DENORM","_MM_EXCEPT_DIV_ZERO","_MM_EXCEPT_INEXACT","_MM_EXCEPT_INVALID","_MM_EXCEPT_MASK","_MM_EXCEPT_OVERFLOW","_MM_EXCEPT_UNDERFLOW","_MM_FLUSH_ZERO_MASK","_MM_FLUSH_ZERO_OFF","_MM_FLUSH_ZERO_ON","_MM_FROUND_CEIL","_MM_FROUND_CUR_DIRECTION","_MM_FROUND_FLOOR","_MM_FROUND_NEARBYINT","_MM_FROUND_NINT","_MM_FROUND_NO_EXC","_MM_FROUND_RAISE_EXC","_MM_FROUND_RINT","_MM_FROUND_TO_NEAREST_INT","_MM_FROUND_TO_NEG_INF","_MM_FROUND_TO_POS_INF","_MM_FROUND_TO_ZERO","_MM_FROUND_TRUNC","_MM_GET_EXCEPTION_MASK","_MM_GET_EXCEPTION_STATE","_MM_GET_FLUSH_ZERO_MODE","_MM_GET_ROUNDING_MODE","_MM_HINT_ET0","_MM_HINT_ET1","_MM_HINT_NTA","_MM_HINT_T0","_MM_HINT_T1","_MM_HINT_T2","_MM_MANTISSA_NORM_ENUM","_MM_MANTISSA_SIGN_ENUM","_MM_MANT_NORM_1_2","_MM_MANT_NORM_P5_1","_MM_MANT_NORM_P5_2","_MM_MANT_NORM_P75_1P5","_MM_MANT_SIGN_NAN","_MM_MANT_SIGN_SRC","_MM_MANT_SIGN_ZERO","_MM_MASK_DENORM","_MM_MASK_DIV_ZERO","_MM_MASK_INEXACT","_MM_MASK_INVALID","_MM_MASK_MASK","_MM_MASK_OVERFLOW","_MM_MASK_UNDERFLOW","_MM_PERM_AAAA","_MM_PERM_AAAB","_MM_PERM_AAAC","_MM_PERM_AAAD","_MM_PERM_AABA","_MM_PERM_AABB","_MM_PERM_AABC","_MM_PERM_AABD","_MM_PERM_AACA","_MM_PERM_AACB","_MM_PERM_AACC","_MM_PERM_AACD","_MM_PERM_AADA","_MM_PERM_AADB","_MM_PERM_AADC","_MM_PERM_AADD","_MM_PERM_ABAA","_MM_PERM_ABAB","_MM_PERM_ABAC","_MM_PERM_ABAD","_MM_PERM_ABBA","_MM_PERM_ABBB","_MM_PERM_ABBC","_MM_PERM_ABBD","_MM_PERM_ABCA","_MM_PERM_ABCB","_MM_PERM_ABCC","_MM_PERM_ABCD","_MM_PERM_ABDA","_MM_PERM_ABDB","_MM_PERM_ABDC","_MM_PERM_ABDD","_MM_PERM_ACAA","_MM_PERM_ACAB","_MM_PERM_ACAC","_MM_PERM_ACAD","_MM_PERM_ACBA","_MM_PERM_ACBB","_MM_PERM_ACBC","_MM_PERM_ACBD","_MM_PERM_ACCA","_MM_PERM_ACCB","_MM_PERM_ACCC","_MM_PERM_ACCD","_MM_PERM_ACDA","_MM_PERM_ACDB","_MM_PERM_ACDC","_MM_PERM_ACDD","_MM_PERM_ADAA","_MM_PERM_ADAB","_MM_PERM_ADAC","_MM_PERM_ADAD","_MM_PERM_ADBA","_MM_PERM_ADBB","_MM_PERM_ADBC","_MM_PERM_ADBD","_MM_PERM_ADCA","_MM_PERM_ADCB","_MM_PERM_ADCC","_MM_PERM_ADCD","_MM_PERM_ADDA","_MM_PERM_ADDB","_MM_PERM_ADDC","_MM_PERM_ADDD","_MM_PERM_BAAA","_MM_PERM_BAAB","_MM_PERM_BAAC","_MM_PERM_BAAD","_MM_PERM_BABA","_MM_PERM_BABB","_MM_PERM_BABC","_MM_PERM_BABD","_MM_PERM_BACA","_MM_PERM_BACB","_MM_PERM_BACC","_MM_PERM_BACD","_MM_PERM_BADA","_MM_PERM_BADB","_MM_PERM_BADC","_MM_PERM_BADD","_MM_PERM_BBAA","_MM_PERM_BBAB","_MM_PERM_BBAC","_MM_PERM_BBAD","_MM_PERM_BBBA","_MM_PERM_BBBB","_MM_PERM_BBBC","_MM_PERM_BBBD","_MM_PERM_BBCA","_MM_PERM_BBCB","_MM_PERM_BBCC","_MM_PERM_BBCD","_MM_PERM_BBDA","_MM_PERM_BBDB","_MM_PERM_BBDC","_MM_PERM_BBDD","_MM_PERM_BCAA","_MM_PERM_BCAB","_MM_PERM_BCAC","_MM_PERM_BCAD","_MM_PERM_BCBA","_MM_PERM_BCBB","_MM_PERM_BCBC","_MM_PERM_BCBD","_MM_PERM_BCCA","_MM_PERM_BCCB","_MM_PERM_BCCC","_MM_PERM_BCCD","_MM_PERM_BCDA","_MM_PERM_BCDB","_MM_PERM_BCDC","_MM_PERM_BCDD","_MM_PERM_BDAA","_MM_PERM_BDAB","_MM_PERM_BDAC","_MM_PERM_BDAD","_MM_PERM_BDBA","_MM_PERM_BDBB","_MM_PERM_BDBC","_MM_PERM_BDBD","_MM_PERM_BDCA","_MM_PERM_BDCB","_MM_PERM_BDCC","_MM_PERM_BDCD","_MM_PERM_BDDA","_MM_PERM_BDDB","_MM_PERM_BDDC","_MM_PERM_BDDD","_MM_PERM_CAAA","_MM_PERM_CAAB","_MM_PERM_CAAC","_MM_PERM_CAAD","_MM_PERM_CABA","_MM_PERM_CABB","_MM_PERM_CABC","_MM_PERM_CABD","_MM_PERM_CACA","_MM_PERM_CACB","_MM_PERM_CACC","_MM_PERM_CACD","_MM_PERM_CADA","_MM_PERM_CADB","_MM_PERM_CADC","_MM_PERM_CADD","_MM_PERM_CBAA","_MM_PERM_CBAB","_MM_PERM_CBAC","_MM_PERM_CBAD","_MM_PERM_CBBA","_MM_PERM_CBBB","_MM_PERM_CBBC","_MM_PERM_CBBD","_MM_PERM_CBCA","_MM_PERM_CBCB","_MM_PERM_CBCC","_MM_PERM_CBCD","_MM_PERM_CBDA","_MM_PERM_CBDB","_MM_PERM_CBDC","_MM_PERM_CBDD","_MM_PERM_CCAA","_MM_PERM_CCAB","_MM_PERM_CCAC","_MM_PERM_CCAD","_MM_PERM_CCBA","_MM_PERM_CCBB","_MM_PERM_CCBC","_MM_PERM_CCBD","_MM_PERM_CCCA","_MM_PERM_CCCB","_MM_PERM_CCCC","_MM_PERM_CCCD","_MM_PERM_CCDA","_MM_PERM_CCDB","_MM_PERM_CCDC","_MM_PERM_CCDD","_MM_PERM_CDAA","_MM_PERM_CDAB","_MM_PERM_CDAC","_MM_PERM_CDAD","_MM_PERM_CDBA","_MM_PERM_CDBB","_MM_PERM_CDBC","_MM_PERM_CDBD","_MM_PERM_CDCA","_MM_PERM_CDCB","_MM_PERM_CDCC","_MM_PERM_CDCD","_MM_PERM_CDDA","_MM_PERM_CDDB","_MM_PERM_CDDC","_MM_PERM_CDDD","_MM_PERM_DAAA","_MM_PERM_DAAB","_MM_PERM_DAAC","_MM_PERM_DAAD","_MM_PERM_DABA","_MM_PERM_DABB","_MM_PERM_DABC","_MM_PERM_DABD","_MM_PERM_DACA","_MM_PERM_DACB","_MM_PERM_DACC","_MM_PERM_DACD","_MM_PERM_DADA","_MM_PERM_DADB","_MM_PERM_DADC","_MM_PERM_DADD","_MM_PERM_DBAA","_MM_PERM_DBAB","_MM_PERM_DBAC","_MM_PERM_DBAD","_MM_PERM_DBBA","_MM_PERM_DBBB","_MM_PERM_DBBC","_MM_PERM_DBBD","_MM_PERM_DBCA","_MM_PERM_DBCB","_MM_PERM_DBCC","_MM_PERM_DBCD","_MM_PERM_DBDA","_MM_PERM_DBDB","_MM_PERM_DBDC","_MM_PERM_DBDD","_MM_PERM_DCAA","_MM_PERM_DCAB","_MM_PERM_DCAC","_MM_PERM_DCAD","_MM_PERM_DCBA","_MM_PERM_DCBB","_MM_PERM_DCBC","_MM_PERM_DCBD","_MM_PERM_DCCA","_MM_PERM_DCCB","_MM_PERM_DCCC","_MM_PERM_DCCD","_MM_PERM_DCDA","_MM_PERM_DCDB","_MM_PERM_DCDC","_MM_PERM_DCDD","_MM_PERM_DDAA","_MM_PERM_DDAB","_MM_PERM_DDAC","_MM_PERM_DDAD","_MM_PERM_DDBA","_MM_PERM_DDBB","_MM_PERM_DDBC","_MM_PERM_DDBD","_MM_PERM_DDCA","_MM_PERM_DDCB","_MM_PERM_DDCC","_MM_PERM_DDCD","_MM_PERM_DDDA","_MM_PERM_DDDB","_MM_PERM_DDDC","_MM_PERM_DDDD","_MM_PERM_ENUM","_MM_ROUND_DOWN","_MM_ROUND_MASK","_MM_ROUND_NEAREST","_MM_ROUND_TOWARD_ZERO","_MM_ROUND_UP","_MM_SET_EXCEPTION_MASK","_MM_SET_EXCEPTION_STATE","_MM_SET_FLUSH_ZERO_MODE","_MM_SET_ROUNDING_MODE","_MM_SHUFFLE","_MM_TRANSPOSE4_PS","_SIDD_BIT_MASK","_SIDD_CMP_EQUAL_ANY","_SIDD_CMP_EQUAL_EACH","_SIDD_CMP_EQUAL_ORDERED","_SIDD_CMP_RANGES","_SIDD_LEAST_SIGNIFICANT","_SIDD_MASKED_NEGATIVE_POLARITY","_SIDD_MASKED_POSITIVE_POLARITY","_SIDD_MOST_SIGNIFICANT","_SIDD_NEGATIVE_POLARITY","_SIDD_POSITIVE_POLARITY","_SIDD_SBYTE_OPS","_SIDD_SWORD_OPS","_SIDD_UBYTE_OPS","_SIDD_UNIT_MASK","_SIDD_UWORD_OPS","_XABORT_CAPACITY","_XABORT_CONFLICT","_XABORT_DEBUG","_XABORT_EXPLICIT","_XABORT_NESTED","_XABORT_RETRY","_XBEGIN_STARTED","_XCR_XFEATURE_ENABLED_MASK","__cpuid","__cpuid_count","__get_cpuid_max","__m128","__m128bh","__m128d","__m128h","__m128i","__m256","__m256bh","__m256d","__m256h","__m256i","__m512","__m512bh","__m512d","__m512h","__m512i","__mmask16","__mmask32","__mmask64","__mmask8","__rdtscp","_addcarry_u32","_addcarry_u64","_addcarryx_u32","_addcarryx_u64","_andn_u32","_andn_u64","_bextr2_u32","_bextr2_u64","_bextr_u32","_bextr_u64","_bextri_u32","_bextri_u64","_bittest","_bittest64","_bittestandcomplement","_bittestandcomplement64","_bittestandreset","_bittestandreset64","_bittestandset","_bittestandset64","_blcfill_u32","_blcfill_u64","_blci_u32","_blci_u64","_blcic_u32","_blcic_u64","_blcmsk_u32","_blcmsk_u64","_blcs_u32","_blcs_u64","_blsfill_u32","_blsfill_u64","_blsi_u32","_blsi_u64","_blsic_u32","_blsic_u64","_blsmsk_u32","_blsmsk_u64","_blsr_u32","_blsr_u64","_bswap","_bswap64","_bzhi_u32","_bzhi_u64","_cvtmask16_u32","_cvtmask32_u32","_cvtmask64_u64","_cvtmask8_u32","_cvtu32_mask16","_cvtu32_mask32","_cvtu32_mask8","_cvtu64_mask64","_fxrstor","_fxrstor64","_fxsave","_fxsave64","_kadd_mask16","_kadd_mask32","_kadd_mask64","_kadd_mask8","_kand_mask16","_kand_mask32","_kand_mask64","_kand_mask8","_kandn_mask16","_kandn_mask32","_kandn_mask64","_kandn_mask8","_knot_mask16","_knot_mask32","_knot_mask64","_knot_mask8","_kor_mask16","_kor_mask32","_kor_mask64","_kor_mask8","_kortest_mask16_u8","_kortest_mask32_u8","_kortest_mask64_u8","_kortest_mask8_u8","_kortestc_mask16_u8","_kortestc_mask32_u8","_kortestc_mask64_u8","_kortestc_mask8_u8","_kortestz_mask16_u8","_kortestz_mask32_u8","_kortestz_mask64_u8","_kortestz_mask8_u8","_kshiftli_mask16","_kshiftli_mask32","_kshiftli_mask64","_kshiftli_mask8","_kshiftri_mask16","_kshiftri_mask32","_kshiftri_mask64","_kshiftri_mask8","_ktest_mask16_u8","_ktest_mask32_u8","_ktest_mask64_u8","_ktest_mask8_u8","_ktestc_mask16_u8","_ktestc_mask32_u8","_ktestc_mask64_u8","_ktestc_mask8_u8","_ktestz_mask16_u8","_ktestz_mask32_u8","_ktestz_mask64_u8","_ktestz_mask8_u8","_kxnor_mask16","_kxnor_mask32","_kxnor_mask64","_kxnor_mask8","_kxor_mask16","_kxor_mask32","_kxor_mask64","_kxor_mask8","_load_mask16","_load_mask32","_load_mask64","_load_mask8","_lzcnt_u32","_lzcnt_u64","_mm256_abs_epi16","_mm256_abs_epi32","_mm256_abs_epi64","_mm256_abs_epi8","_mm256_abs_ph","_mm256_add_epi16","_mm256_add_epi32","_mm256_add_epi64","_mm256_add_epi8","_mm256_add_pd","_mm256_add_ph","_mm256_add_ps","_mm256_adds_epi16","_mm256_adds_epi8","_mm256_adds_epu16","_mm256_adds_epu8","_mm256_addsub_pd","_mm256_addsub_ps","_mm256_aesdec_epi128","_mm256_aesdeclast_epi128","_mm256_aesenc_epi128","_mm256_aesenclast_epi128","_mm256_alignr_epi32","_mm256_alignr_epi64","_mm256_alignr_epi8","_mm256_and_pd","_mm256_and_ps","_mm256_and_si256","_mm256_andnot_pd","_mm256_andnot_ps","_mm256_andnot_si256","_mm256_avg_epu16","_mm256_avg_epu8","_mm256_bcstnebf16_ps","_mm256_bcstnesh_ps","_mm256_bitshuffle_epi64_mask","_mm256_blend_epi16","_mm256_blend_epi32","_mm256_blend_pd","_mm256_blend_ps","_mm256_blendv_epi8","_mm256_blendv_pd","_mm256_blendv_ps","_mm256_broadcast_f32x2","_mm256_broadcast_f32x4","_mm256_broadcast_f64x2","_mm256_broadcast_i32x2","_mm256_broadcast_i32x4","_mm256_broadcast_i64x2","_mm256_broadcast_pd","_mm256_broadcast_ps","_mm256_broadcast_sd","_mm256_broadcast_ss","_mm256_broadcastb_epi8","_mm256_broadcastd_epi32","_mm256_broadcastmb_epi64","_mm256_broadcastmw_epi32","_mm256_broadcastq_epi64","_mm256_broadcastsd_pd","_mm256_broadcastsi128_si256","_mm256_broadcastss_ps","_mm256_broadcastw_epi16","_mm256_bslli_epi128","_mm256_bsrli_epi128","_mm256_castpd128_pd256","_mm256_castpd256_pd128","_mm256_castpd_ph","_mm256_castpd_ps","_mm256_castpd_si256","_mm256_castph128_ph256","_mm256_castph256_ph128","_mm256_castph_pd","_mm256_castph_ps","_mm256_castph_si256","_mm256_castps128_ps256","_mm256_castps256_ps128","_mm256_castps_pd","_mm256_castps_ph","_mm256_castps_si256","_mm256_castsi128_si256","_mm256_castsi256_pd","_mm256_castsi256_ph","_mm256_castsi256_ps","_mm256_castsi256_si128","_mm256_ceil_pd","_mm256_ceil_ps","_mm256_clmulepi64_epi128","_mm256_cmp_epi16_mask","_mm256_cmp_epi32_mask","_mm256_cmp_epi64_mask","_mm256_cmp_epi8_mask","_mm256_cmp_epu16_mask","_mm256_cmp_epu32_mask","_mm256_cmp_epu64_mask","_mm256_cmp_epu8_mask","_mm256_cmp_pd","_mm256_cmp_pd_mask","_mm256_cmp_ph_mask","_mm256_cmp_ps","_mm256_cmp_ps_mask","_mm256_cmpeq_epi16","_mm256_cmpeq_epi16_mask","_mm256_cmpeq_epi32","_mm256_cmpeq_epi32_mask","_mm256_cmpeq_epi64","_mm256_cmpeq_epi64_mask","_mm256_cmpeq_epi8","_mm256_cmpeq_epi8_mask","_mm256_cmpeq_epu16_mask","_mm256_cmpeq_epu32_mask","_mm256_cmpeq_epu64_mask","_mm256_cmpeq_epu8_mask","_mm256_cmpge_epi16_mask","_mm256_cmpge_epi32_mask","_mm256_cmpge_epi64_mask","_mm256_cmpge_epi8_mask","_mm256_cmpge_epu16_mask","_mm256_cmpge_epu32_mask","_mm256_cmpge_epu64_mask","_mm256_cmpge_epu8_mask","_mm256_cmpgt_epi16","_mm256_cmpgt_epi16_mask","_mm256_cmpgt_epi32","_mm256_cmpgt_epi32_mask","_mm256_cmpgt_epi64","_mm256_cmpgt_epi64_mask","_mm256_cmpgt_epi8","_mm256_cmpgt_epi8_mask","_mm256_cmpgt_epu16_mask","_mm256_cmpgt_epu32_mask","_mm256_cmpgt_epu64_mask","_mm256_cmpgt_epu8_mask","_mm256_cmple_epi16_mask","_mm256_cmple_epi32_mask","_mm256_cmple_epi64_mask","_mm256_cmple_epi8_mask","_mm256_cmple_epu16_mask","_mm256_cmple_epu32_mask","_mm256_cmple_epu64_mask","_mm256_cmple_epu8_mask","_mm256_cmplt_epi16_mask","_mm256_cmplt_epi32_mask","_mm256_cmplt_epi64_mask","_mm256_cmplt_epi8_mask","_mm256_cmplt_epu16_mask","_mm256_cmplt_epu32_mask","_mm256_cmplt_epu64_mask","_mm256_cmplt_epu8_mask","_mm256_cmpneq_epi16_mask","_mm256_cmpneq_epi32_mask","_mm256_cmpneq_epi64_mask","_mm256_cmpneq_epi8_mask","_mm256_cmpneq_epu16_mask","_mm256_cmpneq_epu32_mask","_mm256_cmpneq_epu64_mask","_mm256_cmpneq_epu8_mask","_mm256_cmul_pch","_mm256_conflict_epi32","_mm256_conflict_epi64","_mm256_conj_pch","_mm256_cvtepi16_epi32","_mm256_cvtepi16_epi64","_mm256_cvtepi16_epi8","_mm256_cvtepi16_ph","_mm256_cvtepi32_epi16","_mm256_cvtepi32_epi64","_mm256_cvtepi32_epi8","_mm256_cvtepi32_pd","_mm256_cvtepi32_ph","_mm256_cvtepi32_ps","_mm256_cvtepi64_epi16","_mm256_cvtepi64_epi32","_mm256_cvtepi64_epi8","_mm256_cvtepi64_pd","_mm256_cvtepi64_ph","_mm256_cvtepi64_ps","_mm256_cvtepi8_epi16","_mm256_cvtepi8_epi32","_mm256_cvtepi8_epi64","_mm256_cvtepu16_epi32","_mm256_cvtepu16_epi64","_mm256_cvtepu16_ph","_mm256_cvtepu32_epi64","_mm256_cvtepu32_pd","_mm256_cvtepu32_ph","_mm256_cvtepu64_pd","_mm256_cvtepu64_ph","_mm256_cvtepu64_ps","_mm256_cvtepu8_epi16","_mm256_cvtepu8_epi32","_mm256_cvtepu8_epi64","_mm256_cvtne2ps_pbh","_mm256_cvtneebf16_ps","_mm256_cvtneeph_ps","_mm256_cvtneobf16_ps","_mm256_cvtneoph_ps","_mm256_cvtneps_avx_pbh","_mm256_cvtneps_pbh","_mm256_cvtpbh_ps","_mm256_cvtpd_epi32","_mm256_cvtpd_epi64","_mm256_cvtpd_epu32","_mm256_cvtpd_epu64","_mm256_cvtpd_ph","_mm256_cvtpd_ps","_mm256_cvtph_epi16","_mm256_cvtph_epi32","_mm256_cvtph_epi64","_mm256_cvtph_epu16","_mm256_cvtph_epu32","_mm256_cvtph_epu64","_mm256_cvtph_pd","_mm256_cvtph_ps","_mm256_cvtps_epi32","_mm256_cvtps_epi64","_mm256_cvtps_epu32","_mm256_cvtps_epu64","_mm256_cvtps_pd","_mm256_cvtps_ph","_mm256_cvtsd_f64","_mm256_cvtsepi16_epi8","_mm256_cvtsepi32_epi16","_mm256_cvtsepi32_epi8","_mm256_cvtsepi64_epi16","_mm256_cvtsepi64_epi32","_mm256_cvtsepi64_epi8","_mm256_cvtsh_h","_mm256_cvtsi256_si32","_mm256_cvtss_f32","_mm256_cvttpd_epi32","_mm256_cvttpd_epi64","_mm256_cvttpd_epu32","_mm256_cvttpd_epu64","_mm256_cvttph_epi16","_mm256_cvttph_epi32","_mm256_cvttph_epi64","_mm256_cvttph_epu16","_mm256_cvttph_epu32","_mm256_cvttph_epu64","_mm256_cvttps_epi32","_mm256_cvttps_epi64","_mm256_cvttps_epu32","_mm256_cvttps_epu64","_mm256_cvtusepi16_epi8","_mm256_cvtusepi32_epi16","_mm256_cvtusepi32_epi8","_mm256_cvtusepi64_epi16","_mm256_cvtusepi64_epi32","_mm256_cvtusepi64_epi8","_mm256_cvtxph_ps","_mm256_cvtxps_ph","_mm256_dbsad_epu8","_mm256_div_pd","_mm256_div_ph","_mm256_div_ps","_mm256_dp_ps","_mm256_dpbf16_ps","_mm256_dpbssd_epi32","_mm256_dpbssds_epi32","_mm256_dpbsud_epi32","_mm256_dpbsuds_epi32","_mm256_dpbusd_avx_epi32","_mm256_dpbusd_epi32","_mm256_dpbusds_avx_epi32","_mm256_dpbusds_epi32","_mm256_dpbuud_epi32","_mm256_dpbuuds_epi32","_mm256_dpwssd_avx_epi32","_mm256_dpwssd_epi32","_mm256_dpwssds_avx_epi32","_mm256_dpwssds_epi32","_mm256_dpwsud_epi32","_mm256_dpwsuds_epi32","_mm256_dpwusd_epi32","_mm256_dpwusds_epi32","_mm256_dpwuud_epi32","_mm256_dpwuuds_epi32","_mm256_extract_epi16","_mm256_extract_epi32","_mm256_extract_epi64","_mm256_extract_epi8","_mm256_extractf128_pd","_mm256_extractf128_ps","_mm256_extractf128_si256","_mm256_extractf32x4_ps","_mm256_extractf64x2_pd","_mm256_extracti128_si256","_mm256_extracti32x4_epi32","_mm256_extracti64x2_epi64","_mm256_fcmadd_pch","_mm256_fcmul_pch","_mm256_fixupimm_pd","_mm256_fixupimm_ps","_mm256_floor_pd","_mm256_floor_ps","_mm256_fmadd_pch","_mm256_fmadd_pd","_mm256_fmadd_ph","_mm256_fmadd_ps","_mm256_fmaddsub_pd","_mm256_fmaddsub_ph","_mm256_fmaddsub_ps","_mm256_fmsub_pd","_mm256_fmsub_ph","_mm256_fmsub_ps","_mm256_fmsubadd_pd","_mm256_fmsubadd_ph","_mm256_fmsubadd_ps","_mm256_fmul_pch","_mm256_fnmadd_pd","_mm256_fnmadd_ph","_mm256_fnmadd_ps","_mm256_fnmsub_pd","_mm256_fnmsub_ph","_mm256_fnmsub_ps","_mm256_fpclass_pd_mask","_mm256_fpclass_ph_mask","_mm256_fpclass_ps_mask","_mm256_getexp_pd","_mm256_getexp_ph","_mm256_getexp_ps","_mm256_getmant_pd","_mm256_getmant_ph","_mm256_getmant_ps","_mm256_gf2p8affine_epi64_epi8","_mm256_gf2p8affineinv_epi64_epi8","_mm256_gf2p8mul_epi8","_mm256_hadd_epi16","_mm256_hadd_epi32","_mm256_hadd_pd","_mm256_hadd_ps","_mm256_hadds_epi16","_mm256_hsub_epi16","_mm256_hsub_epi32","_mm256_hsub_pd","_mm256_hsub_ps","_mm256_hsubs_epi16","_mm256_i32gather_epi32","_mm256_i32gather_epi64","_mm256_i32gather_pd","_mm256_i32gather_ps","_mm256_i32scatter_epi32","_mm256_i32scatter_epi64","_mm256_i32scatter_pd","_mm256_i32scatter_ps","_mm256_i64gather_epi32","_mm256_i64gather_epi64","_mm256_i64gather_pd","_mm256_i64gather_ps","_mm256_i64scatter_epi32","_mm256_i64scatter_epi64","_mm256_i64scatter_pd","_mm256_i64scatter_ps","_mm256_insert_epi16","_mm256_insert_epi32","_mm256_insert_epi64","_mm256_insert_epi8","_mm256_insertf128_pd","_mm256_insertf128_ps","_mm256_insertf128_si256","_mm256_insertf32x4","_mm256_insertf64x2","_mm256_inserti128_si256","_mm256_inserti32x4","_mm256_inserti64x2","_mm256_lddqu_si256","_mm256_load_epi32","_mm256_load_epi64","_mm256_load_pd","_mm256_load_ph","_mm256_load_ps","_mm256_load_si256","_mm256_loadu2_m128","_mm256_loadu2_m128d","_mm256_loadu2_m128i","_mm256_loadu_epi16","_mm256_loadu_epi32","_mm256_loadu_epi64","_mm256_loadu_epi8","_mm256_loadu_pd","_mm256_loadu_ph","_mm256_loadu_ps","_mm256_loadu_si256","_mm256_lzcnt_epi32","_mm256_lzcnt_epi64","_mm256_madd52hi_avx_epu64","_mm256_madd52hi_epu64","_mm256_madd52lo_avx_epu64","_mm256_madd52lo_epu64","_mm256_madd_epi16","_mm256_maddubs_epi16","_mm256_mask2_permutex2var_epi16","_mm256_mask2_permutex2var_epi32","_mm256_mask2_permutex2var_epi64","_mm256_mask2_permutex2var_epi8","_mm256_mask2_permutex2var_pd","_mm256_mask2_permutex2var_ps","_mm256_mask3_fcmadd_pch","_mm256_mask3_fmadd_pch","_mm256_mask3_fmadd_pd","_mm256_mask3_fmadd_ph","_mm256_mask3_fmadd_ps","_mm256_mask3_fmaddsub_pd","_mm256_mask3_fmaddsub_ph","_mm256_mask3_fmaddsub_ps","_mm256_mask3_fmsub_pd","_mm256_mask3_fmsub_ph","_mm256_mask3_fmsub_ps","_mm256_mask3_fmsubadd_pd","_mm256_mask3_fmsubadd_ph","_mm256_mask3_fmsubadd_ps","_mm256_mask3_fnmadd_pd","_mm256_mask3_fnmadd_ph","_mm256_mask3_fnmadd_ps","_mm256_mask3_fnmsub_pd","_mm256_mask3_fnmsub_ph","_mm256_mask3_fnmsub_ps","_mm256_mask_abs_epi16","_mm256_mask_abs_epi32","_mm256_mask_abs_epi64","_mm256_mask_abs_epi8","_mm256_mask_add_epi16","_mm256_mask_add_epi32","_mm256_mask_add_epi64","_mm256_mask_add_epi8","_mm256_mask_add_pd","_mm256_mask_add_ph","_mm256_mask_add_ps","_mm256_mask_adds_epi16","_mm256_mask_adds_epi8","_mm256_mask_adds_epu16","_mm256_mask_adds_epu8","_mm256_mask_alignr_epi32","_mm256_mask_alignr_epi64","_mm256_mask_alignr_epi8","_mm256_mask_and_epi32","_mm256_mask_and_epi64","_mm256_mask_and_pd","_mm256_mask_and_ps","_mm256_mask_andnot_epi32","_mm256_mask_andnot_epi64","_mm256_mask_andnot_pd","_mm256_mask_andnot_ps","_mm256_mask_avg_epu16","_mm256_mask_avg_epu8","_mm256_mask_bitshuffle_epi64_mask","_mm256_mask_blend_epi16","_mm256_mask_blend_epi32","_mm256_mask_blend_epi64","_mm256_mask_blend_epi8","_mm256_mask_blend_pd","_mm256_mask_blend_ph","_mm256_mask_blend_ps","_mm256_mask_broadcast_f32x2","_mm256_mask_broadcast_f32x4","_mm256_mask_broadcast_f64x2","_mm256_mask_broadcast_i32x2","_mm256_mask_broadcast_i32x4","_mm256_mask_broadcast_i64x2","_mm256_mask_broadcastb_epi8","_mm256_mask_broadcastd_epi32","_mm256_mask_broadcastq_epi64","_mm256_mask_broadcastsd_pd","_mm256_mask_broadcastss_ps","_mm256_mask_broadcastw_epi16","_mm256_mask_cmp_epi16_mask","_mm256_mask_cmp_epi32_mask","_mm256_mask_cmp_epi64_mask","_mm256_mask_cmp_epi8_mask","_mm256_mask_cmp_epu16_mask","_mm256_mask_cmp_epu32_mask","_mm256_mask_cmp_epu64_mask","_mm256_mask_cmp_epu8_mask","_mm256_mask_cmp_pd_mask","_mm256_mask_cmp_ph_mask","_mm256_mask_cmp_ps_mask","_mm256_mask_cmpeq_epi16_mask","_mm256_mask_cmpeq_epi32_mask","_mm256_mask_cmpeq_epi64_mask","_mm256_mask_cmpeq_epi8_mask","_mm256_mask_cmpeq_epu16_mask","_mm256_mask_cmpeq_epu32_mask","_mm256_mask_cmpeq_epu64_mask","_mm256_mask_cmpeq_epu8_mask","_mm256_mask_cmpge_epi16_mask","_mm256_mask_cmpge_epi32_mask","_mm256_mask_cmpge_epi64_mask","_mm256_mask_cmpge_epi8_mask","_mm256_mask_cmpge_epu16_mask","_mm256_mask_cmpge_epu32_mask","_mm256_mask_cmpge_epu64_mask","_mm256_mask_cmpge_epu8_mask","_mm256_mask_cmpgt_epi16_mask","_mm256_mask_cmpgt_epi32_mask","_mm256_mask_cmpgt_epi64_mask","_mm256_mask_cmpgt_epi8_mask","_mm256_mask_cmpgt_epu16_mask","_mm256_mask_cmpgt_epu32_mask","_mm256_mask_cmpgt_epu64_mask","_mm256_mask_cmpgt_epu8_mask","_mm256_mask_cmple_epi16_mask","_mm256_mask_cmple_epi32_mask","_mm256_mask_cmple_epi64_mask","_mm256_mask_cmple_epi8_mask","_mm256_mask_cmple_epu16_mask","_mm256_mask_cmple_epu32_mask","_mm256_mask_cmple_epu64_mask","_mm256_mask_cmple_epu8_mask","_mm256_mask_cmplt_epi16_mask","_mm256_mask_cmplt_epi32_mask","_mm256_mask_cmplt_epi64_mask","_mm256_mask_cmplt_epi8_mask","_mm256_mask_cmplt_epu16_mask","_mm256_mask_cmplt_epu32_mask","_mm256_mask_cmplt_epu64_mask","_mm256_mask_cmplt_epu8_mask","_mm256_mask_cmpneq_epi16_mask","_mm256_mask_cmpneq_epi32_mask","_mm256_mask_cmpneq_epi64_mask","_mm256_mask_cmpneq_epi8_mask","_mm256_mask_cmpneq_epu16_mask","_mm256_mask_cmpneq_epu32_mask","_mm256_mask_cmpneq_epu64_mask","_mm256_mask_cmpneq_epu8_mask","_mm256_mask_cmul_pch","_mm256_mask_compress_epi16","_mm256_mask_compress_epi32","_mm256_mask_compress_epi64","_mm256_mask_compress_epi8","_mm256_mask_compress_pd","_mm256_mask_compress_ps","_mm256_mask_compressstoreu_epi16","_mm256_mask_compressstoreu_epi32","_mm256_mask_compressstoreu_epi64","_mm256_mask_compressstoreu_epi8","_mm256_mask_compressstoreu_pd","_mm256_mask_compressstoreu_ps","_mm256_mask_conflict_epi32","_mm256_mask_conflict_epi64","_mm256_mask_conj_pch","_mm256_mask_cvt_roundps_ph","_mm256_mask_cvtepi16_epi32","_mm256_mask_cvtepi16_epi64","_mm256_mask_cvtepi16_epi8","_mm256_mask_cvtepi16_ph","_mm256_mask_cvtepi16_storeu_epi8","_mm256_mask_cvtepi32_epi16","_mm256_mask_cvtepi32_epi64","_mm256_mask_cvtepi32_epi8","_mm256_mask_cvtepi32_pd","_mm256_mask_cvtepi32_ph","_mm256_mask_cvtepi32_ps","_mm256_mask_cvtepi32_storeu_epi16","_mm256_mask_cvtepi32_storeu_epi8","_mm256_mask_cvtepi64_epi16","_mm256_mask_cvtepi64_epi32","_mm256_mask_cvtepi64_epi8","_mm256_mask_cvtepi64_pd","_mm256_mask_cvtepi64_ph","_mm256_mask_cvtepi64_ps","_mm256_mask_cvtepi64_storeu_epi16","_mm256_mask_cvtepi64_storeu_epi32","_mm256_mask_cvtepi64_storeu_epi8","_mm256_mask_cvtepi8_epi16","_mm256_mask_cvtepi8_epi32","_mm256_mask_cvtepi8_epi64","_mm256_mask_cvtepu16_epi32","_mm256_mask_cvtepu16_epi64","_mm256_mask_cvtepu16_ph","_mm256_mask_cvtepu32_epi64","_mm256_mask_cvtepu32_pd","_mm256_mask_cvtepu32_ph","_mm256_mask_cvtepu64_pd","_mm256_mask_cvtepu64_ph","_mm256_mask_cvtepu64_ps","_mm256_mask_cvtepu8_epi16","_mm256_mask_cvtepu8_epi32","_mm256_mask_cvtepu8_epi64","_mm256_mask_cvtne2ps_pbh","_mm256_mask_cvtneps_pbh","_mm256_mask_cvtpbh_ps","_mm256_mask_cvtpd_epi32","_mm256_mask_cvtpd_epi64","_mm256_mask_cvtpd_epu32","_mm256_mask_cvtpd_epu64","_mm256_mask_cvtpd_ph","_mm256_mask_cvtpd_ps","_mm256_mask_cvtph_epi16","_mm256_mask_cvtph_epi32","_mm256_mask_cvtph_epi64","_mm256_mask_cvtph_epu16","_mm256_mask_cvtph_epu32","_mm256_mask_cvtph_epu64","_mm256_mask_cvtph_pd","_mm256_mask_cvtph_ps","_mm256_mask_cvtps_epi32","_mm256_mask_cvtps_epi64","_mm256_mask_cvtps_epu32","_mm256_mask_cvtps_epu64","_mm256_mask_cvtps_ph","_mm256_mask_cvtsepi16_epi8","_mm256_mask_cvtsepi16_storeu_epi8","_mm256_mask_cvtsepi32_epi16","_mm256_mask_cvtsepi32_epi8","_mm256_mask_cvtsepi32_storeu_epi16","_mm256_mask_cvtsepi32_storeu_epi8","_mm256_mask_cvtsepi64_epi16","_mm256_mask_cvtsepi64_epi32","_mm256_mask_cvtsepi64_epi8","_mm256_mask_cvtsepi64_storeu_epi16","_mm256_mask_cvtsepi64_storeu_epi32","_mm256_mask_cvtsepi64_storeu_epi8","_mm256_mask_cvttpd_epi32","_mm256_mask_cvttpd_epi64","_mm256_mask_cvttpd_epu32","_mm256_mask_cvttpd_epu64","_mm256_mask_cvttph_epi16","_mm256_mask_cvttph_epi32","_mm256_mask_cvttph_epi64","_mm256_mask_cvttph_epu16","_mm256_mask_cvttph_epu32","_mm256_mask_cvttph_epu64","_mm256_mask_cvttps_epi32","_mm256_mask_cvttps_epi64","_mm256_mask_cvttps_epu32","_mm256_mask_cvttps_epu64","_mm256_mask_cvtusepi16_epi8","_mm256_mask_cvtusepi16_storeu_epi8","_mm256_mask_cvtusepi32_epi16","_mm256_mask_cvtusepi32_epi8","_mm256_mask_cvtusepi32_storeu_epi16","_mm256_mask_cvtusepi32_storeu_epi8","_mm256_mask_cvtusepi64_epi16","_mm256_mask_cvtusepi64_epi32","_mm256_mask_cvtusepi64_epi8","_mm256_mask_cvtusepi64_storeu_epi16","_mm256_mask_cvtusepi64_storeu_epi32","_mm256_mask_cvtusepi64_storeu_epi8","_mm256_mask_cvtxph_ps","_mm256_mask_cvtxps_ph","_mm256_mask_dbsad_epu8","_mm256_mask_div_pd","_mm256_mask_div_ph","_mm256_mask_div_ps","_mm256_mask_dpbf16_ps","_mm256_mask_dpbusd_epi32","_mm256_mask_dpbusds_epi32","_mm256_mask_dpwssd_epi32","_mm256_mask_dpwssds_epi32","_mm256_mask_expand_epi16","_mm256_mask_expand_epi32","_mm256_mask_expand_epi64","_mm256_mask_expand_epi8","_mm256_mask_expand_pd","_mm256_mask_expand_ps","_mm256_mask_expandloadu_epi16","_mm256_mask_expandloadu_epi32","_mm256_mask_expandloadu_epi64","_mm256_mask_expandloadu_epi8","_mm256_mask_expandloadu_pd","_mm256_mask_expandloadu_ps","_mm256_mask_extractf32x4_ps","_mm256_mask_extractf64x2_pd","_mm256_mask_extracti32x4_epi32","_mm256_mask_extracti64x2_epi64","_mm256_mask_fcmadd_pch","_mm256_mask_fcmul_pch","_mm256_mask_fixupimm_pd","_mm256_mask_fixupimm_ps","_mm256_mask_fmadd_pch","_mm256_mask_fmadd_pd","_mm256_mask_fmadd_ph","_mm256_mask_fmadd_ps","_mm256_mask_fmaddsub_pd","_mm256_mask_fmaddsub_ph","_mm256_mask_fmaddsub_ps","_mm256_mask_fmsub_pd","_mm256_mask_fmsub_ph","_mm256_mask_fmsub_ps","_mm256_mask_fmsubadd_pd","_mm256_mask_fmsubadd_ph","_mm256_mask_fmsubadd_ps","_mm256_mask_fmul_pch","_mm256_mask_fnmadd_pd","_mm256_mask_fnmadd_ph","_mm256_mask_fnmadd_ps","_mm256_mask_fnmsub_pd","_mm256_mask_fnmsub_ph","_mm256_mask_fnmsub_ps","_mm256_mask_fpclass_pd_mask","_mm256_mask_fpclass_ph_mask","_mm256_mask_fpclass_ps_mask","_mm256_mask_getexp_pd","_mm256_mask_getexp_ph","_mm256_mask_getexp_ps","_mm256_mask_getmant_pd","_mm256_mask_getmant_ph","_mm256_mask_getmant_ps","_mm256_mask_gf2p8affine_epi64_epi8","_mm256_mask_gf2p8affineinv_epi64_epi8","_mm256_mask_gf2p8mul_epi8","_mm256_mask_i32gather_epi32","_mm256_mask_i32gather_epi64","_mm256_mask_i32gather_pd","_mm256_mask_i32gather_ps","_mm256_mask_i32scatter_epi32","_mm256_mask_i32scatter_epi64","_mm256_mask_i32scatter_pd","_mm256_mask_i32scatter_ps","_mm256_mask_i64gather_epi32","_mm256_mask_i64gather_epi64","_mm256_mask_i64gather_pd","_mm256_mask_i64gather_ps","_mm256_mask_i64scatter_epi32","_mm256_mask_i64scatter_epi64","_mm256_mask_i64scatter_pd","_mm256_mask_i64scatter_ps","_mm256_mask_insertf32x4","_mm256_mask_insertf64x2","_mm256_mask_inserti32x4","_mm256_mask_inserti64x2","_mm256_mask_load_epi32","_mm256_mask_load_epi64","_mm256_mask_load_pd","_mm256_mask_load_ps","_mm256_mask_loadu_epi16","_mm256_mask_loadu_epi32","_mm256_mask_loadu_epi64","_mm256_mask_loadu_epi8","_mm256_mask_loadu_pd","_mm256_mask_loadu_ps","_mm256_mask_lzcnt_epi32","_mm256_mask_lzcnt_epi64","_mm256_mask_madd52hi_epu64","_mm256_mask_madd52lo_epu64","_mm256_mask_madd_epi16","_mm256_mask_maddubs_epi16","_mm256_mask_max_epi16","_mm256_mask_max_epi32","_mm256_mask_max_epi64","_mm256_mask_max_epi8","_mm256_mask_max_epu16","_mm256_mask_max_epu32","_mm256_mask_max_epu64","_mm256_mask_max_epu8","_mm256_mask_max_pd","_mm256_mask_max_ph","_mm256_mask_max_ps","_mm256_mask_min_epi16","_mm256_mask_min_epi32","_mm256_mask_min_epi64","_mm256_mask_min_epi8","_mm256_mask_min_epu16","_mm256_mask_min_epu32","_mm256_mask_min_epu64","_mm256_mask_min_epu8","_mm256_mask_min_pd","_mm256_mask_min_ph","_mm256_mask_min_ps","_mm256_mask_mov_epi16","_mm256_mask_mov_epi32","_mm256_mask_mov_epi64","_mm256_mask_mov_epi8","_mm256_mask_mov_pd","_mm256_mask_mov_ps","_mm256_mask_movedup_pd","_mm256_mask_movehdup_ps","_mm256_mask_moveldup_ps","_mm256_mask_mul_epi32","_mm256_mask_mul_epu32","_mm256_mask_mul_pch","_mm256_mask_mul_pd","_mm256_mask_mul_ph","_mm256_mask_mul_ps","_mm256_mask_mulhi_epi16","_mm256_mask_mulhi_epu16","_mm256_mask_mulhrs_epi16","_mm256_mask_mullo_epi16","_mm256_mask_mullo_epi32","_mm256_mask_mullo_epi64","_mm256_mask_multishift_epi64_epi8","_mm256_mask_or_epi32","_mm256_mask_or_epi64","_mm256_mask_or_pd","_mm256_mask_or_ps","_mm256_mask_packs_epi16","_mm256_mask_packs_epi32","_mm256_mask_packus_epi16","_mm256_mask_packus_epi32","_mm256_mask_permute_pd","_mm256_mask_permute_ps","_mm256_mask_permutevar_pd","_mm256_mask_permutevar_ps","_mm256_mask_permutex2var_epi16","_mm256_mask_permutex2var_epi32","_mm256_mask_permutex2var_epi64","_mm256_mask_permutex2var_epi8","_mm256_mask_permutex2var_pd","_mm256_mask_permutex2var_ps","_mm256_mask_permutex_epi64","_mm256_mask_permutex_pd","_mm256_mask_permutexvar_epi16","_mm256_mask_permutexvar_epi32","_mm256_mask_permutexvar_epi64","_mm256_mask_permutexvar_epi8","_mm256_mask_permutexvar_pd","_mm256_mask_permutexvar_ps","_mm256_mask_popcnt_epi16","_mm256_mask_popcnt_epi32","_mm256_mask_popcnt_epi64","_mm256_mask_popcnt_epi8","_mm256_mask_range_pd","_mm256_mask_range_ps","_mm256_mask_rcp14_pd","_mm256_mask_rcp14_ps","_mm256_mask_rcp_ph","_mm256_mask_reduce_add_epi16","_mm256_mask_reduce_add_epi8","_mm256_mask_reduce_and_epi16","_mm256_mask_reduce_and_epi8","_mm256_mask_reduce_max_epi16","_mm256_mask_reduce_max_epi8","_mm256_mask_reduce_max_epu16","_mm256_mask_reduce_max_epu8","_mm256_mask_reduce_min_epi16","_mm256_mask_reduce_min_epi8","_mm256_mask_reduce_min_epu16","_mm256_mask_reduce_min_epu8","_mm256_mask_reduce_mul_epi16","_mm256_mask_reduce_mul_epi8","_mm256_mask_reduce_or_epi16","_mm256_mask_reduce_or_epi8","_mm256_mask_reduce_pd","_mm256_mask_reduce_ph","_mm256_mask_reduce_ps","_mm256_mask_rol_epi32","_mm256_mask_rol_epi64","_mm256_mask_rolv_epi32","_mm256_mask_rolv_epi64","_mm256_mask_ror_epi32","_mm256_mask_ror_epi64","_mm256_mask_rorv_epi32","_mm256_mask_rorv_epi64","_mm256_mask_roundscale_pd","_mm256_mask_roundscale_ph","_mm256_mask_roundscale_ps","_mm256_mask_rsqrt14_pd","_mm256_mask_rsqrt14_ps","_mm256_mask_rsqrt_ph","_mm256_mask_scalef_pd","_mm256_mask_scalef_ph","_mm256_mask_scalef_ps","_mm256_mask_set1_epi16","_mm256_mask_set1_epi32","_mm256_mask_set1_epi64","_mm256_mask_set1_epi8","_mm256_mask_shldi_epi16","_mm256_mask_shldi_epi32","_mm256_mask_shldi_epi64","_mm256_mask_shldv_epi16","_mm256_mask_shldv_epi32","_mm256_mask_shldv_epi64","_mm256_mask_shrdi_epi16","_mm256_mask_shrdi_epi32","_mm256_mask_shrdi_epi64","_mm256_mask_shrdv_epi16","_mm256_mask_shrdv_epi32","_mm256_mask_shrdv_epi64","_mm256_mask_shuffle_epi32","_mm256_mask_shuffle_epi8","_mm256_mask_shuffle_f32x4","_mm256_mask_shuffle_f64x2","_mm256_mask_shuffle_i32x4","_mm256_mask_shuffle_i64x2","_mm256_mask_shuffle_pd","_mm256_mask_shuffle_ps","_mm256_mask_shufflehi_epi16","_mm256_mask_shufflelo_epi16","_mm256_mask_sll_epi16","_mm256_mask_sll_epi32","_mm256_mask_sll_epi64","_mm256_mask_slli_epi16","_mm256_mask_slli_epi32","_mm256_mask_slli_epi64","_mm256_mask_sllv_epi16","_mm256_mask_sllv_epi32","_mm256_mask_sllv_epi64","_mm256_mask_sqrt_pd","_mm256_mask_sqrt_ph","_mm256_mask_sqrt_ps","_mm256_mask_sra_epi16","_mm256_mask_sra_epi32","_mm256_mask_sra_epi64","_mm256_mask_srai_epi16","_mm256_mask_srai_epi32","_mm256_mask_srai_epi64","_mm256_mask_srav_epi16","_mm256_mask_srav_epi32","_mm256_mask_srav_epi64","_mm256_mask_srl_epi16","_mm256_mask_srl_epi32","_mm256_mask_srl_epi64","_mm256_mask_srli_epi16","_mm256_mask_srli_epi32","_mm256_mask_srli_epi64","_mm256_mask_srlv_epi16","_mm256_mask_srlv_epi32","_mm256_mask_srlv_epi64","_mm256_mask_store_epi32","_mm256_mask_store_epi64","_mm256_mask_store_pd","_mm256_mask_store_ps","_mm256_mask_storeu_epi16","_mm256_mask_storeu_epi32","_mm256_mask_storeu_epi64","_mm256_mask_storeu_epi8","_mm256_mask_storeu_pd","_mm256_mask_storeu_ps","_mm256_mask_sub_epi16","_mm256_mask_sub_epi32","_mm256_mask_sub_epi64","_mm256_mask_sub_epi8","_mm256_mask_sub_pd","_mm256_mask_sub_ph","_mm256_mask_sub_ps","_mm256_mask_subs_epi16","_mm256_mask_subs_epi8","_mm256_mask_subs_epu16","_mm256_mask_subs_epu8","_mm256_mask_ternarylogic_epi32","_mm256_mask_ternarylogic_epi64","_mm256_mask_test_epi16_mask","_mm256_mask_test_epi32_mask","_mm256_mask_test_epi64_mask","_mm256_mask_test_epi8_mask","_mm256_mask_testn_epi16_mask","_mm256_mask_testn_epi32_mask","_mm256_mask_testn_epi64_mask","_mm256_mask_testn_epi8_mask","_mm256_mask_unpackhi_epi16","_mm256_mask_unpackhi_epi32","_mm256_mask_unpackhi_epi64","_mm256_mask_unpackhi_epi8","_mm256_mask_unpackhi_pd","_mm256_mask_unpackhi_ps","_mm256_mask_unpacklo_epi16","_mm256_mask_unpacklo_epi32","_mm256_mask_unpacklo_epi64","_mm256_mask_unpacklo_epi8","_mm256_mask_unpacklo_pd","_mm256_mask_unpacklo_ps","_mm256_mask_xor_epi32","_mm256_mask_xor_epi64","_mm256_mask_xor_pd","_mm256_mask_xor_ps","_mm256_maskload_epi32","_mm256_maskload_epi64","_mm256_maskload_pd","_mm256_maskload_ps","_mm256_maskstore_epi32","_mm256_maskstore_epi64","_mm256_maskstore_pd","_mm256_maskstore_ps","_mm256_maskz_abs_epi16","_mm256_maskz_abs_epi32","_mm256_maskz_abs_epi64","_mm256_maskz_abs_epi8","_mm256_maskz_add_epi16","_mm256_maskz_add_epi32","_mm256_maskz_add_epi64","_mm256_maskz_add_epi8","_mm256_maskz_add_pd","_mm256_maskz_add_ph","_mm256_maskz_add_ps","_mm256_maskz_adds_epi16","_mm256_maskz_adds_epi8","_mm256_maskz_adds_epu16","_mm256_maskz_adds_epu8","_mm256_maskz_alignr_epi32","_mm256_maskz_alignr_epi64","_mm256_maskz_alignr_epi8","_mm256_maskz_and_epi32","_mm256_maskz_and_epi64","_mm256_maskz_and_pd","_mm256_maskz_and_ps","_mm256_maskz_andnot_epi32","_mm256_maskz_andnot_epi64","_mm256_maskz_andnot_pd","_mm256_maskz_andnot_ps","_mm256_maskz_avg_epu16","_mm256_maskz_avg_epu8","_mm256_maskz_broadcast_f32x2","_mm256_maskz_broadcast_f32x4","_mm256_maskz_broadcast_f64x2","_mm256_maskz_broadcast_i32x2","_mm256_maskz_broadcast_i32x4","_mm256_maskz_broadcast_i64x2","_mm256_maskz_broadcastb_epi8","_mm256_maskz_broadcastd_epi32","_mm256_maskz_broadcastq_epi64","_mm256_maskz_broadcastsd_pd","_mm256_maskz_broadcastss_ps","_mm256_maskz_broadcastw_epi16","_mm256_maskz_cmul_pch","_mm256_maskz_compress_epi16","_mm256_maskz_compress_epi32","_mm256_maskz_compress_epi64","_mm256_maskz_compress_epi8","_mm256_maskz_compress_pd","_mm256_maskz_compress_ps","_mm256_maskz_conflict_epi32","_mm256_maskz_conflict_epi64","_mm256_maskz_conj_pch","_mm256_maskz_cvt_roundps_ph","_mm256_maskz_cvtepi16_epi32","_mm256_maskz_cvtepi16_epi64","_mm256_maskz_cvtepi16_epi8","_mm256_maskz_cvtepi16_ph","_mm256_maskz_cvtepi32_epi16","_mm256_maskz_cvtepi32_epi64","_mm256_maskz_cvtepi32_epi8","_mm256_maskz_cvtepi32_pd","_mm256_maskz_cvtepi32_ph","_mm256_maskz_cvtepi32_ps","_mm256_maskz_cvtepi64_epi16","_mm256_maskz_cvtepi64_epi32","_mm256_maskz_cvtepi64_epi8","_mm256_maskz_cvtepi64_pd","_mm256_maskz_cvtepi64_ph","_mm256_maskz_cvtepi64_ps","_mm256_maskz_cvtepi8_epi16","_mm256_maskz_cvtepi8_epi32","_mm256_maskz_cvtepi8_epi64","_mm256_maskz_cvtepu16_epi32","_mm256_maskz_cvtepu16_epi64","_mm256_maskz_cvtepu16_ph","_mm256_maskz_cvtepu32_epi64","_mm256_maskz_cvtepu32_pd","_mm256_maskz_cvtepu32_ph","_mm256_maskz_cvtepu64_pd","_mm256_maskz_cvtepu64_ph","_mm256_maskz_cvtepu64_ps","_mm256_maskz_cvtepu8_epi16","_mm256_maskz_cvtepu8_epi32","_mm256_maskz_cvtepu8_epi64","_mm256_maskz_cvtne2ps_pbh","_mm256_maskz_cvtneps_pbh","_mm256_maskz_cvtpbh_ps","_mm256_maskz_cvtpd_epi32","_mm256_maskz_cvtpd_epi64","_mm256_maskz_cvtpd_epu32","_mm256_maskz_cvtpd_epu64","_mm256_maskz_cvtpd_ph","_mm256_maskz_cvtpd_ps","_mm256_maskz_cvtph_epi16","_mm256_maskz_cvtph_epi32","_mm256_maskz_cvtph_epi64","_mm256_maskz_cvtph_epu16","_mm256_maskz_cvtph_epu32","_mm256_maskz_cvtph_epu64","_mm256_maskz_cvtph_pd","_mm256_maskz_cvtph_ps","_mm256_maskz_cvtps_epi32","_mm256_maskz_cvtps_epi64","_mm256_maskz_cvtps_epu32","_mm256_maskz_cvtps_epu64","_mm256_maskz_cvtps_ph","_mm256_maskz_cvtsepi16_epi8","_mm256_maskz_cvtsepi32_epi16","_mm256_maskz_cvtsepi32_epi8","_mm256_maskz_cvtsepi64_epi16","_mm256_maskz_cvtsepi64_epi32","_mm256_maskz_cvtsepi64_epi8","_mm256_maskz_cvttpd_epi32","_mm256_maskz_cvttpd_epi64","_mm256_maskz_cvttpd_epu32","_mm256_maskz_cvttpd_epu64","_mm256_maskz_cvttph_epi16","_mm256_maskz_cvttph_epi32","_mm256_maskz_cvttph_epi64","_mm256_maskz_cvttph_epu16","_mm256_maskz_cvttph_epu32","_mm256_maskz_cvttph_epu64","_mm256_maskz_cvttps_epi32","_mm256_maskz_cvttps_epi64","_mm256_maskz_cvttps_epu32","_mm256_maskz_cvttps_epu64","_mm256_maskz_cvtusepi16_epi8","_mm256_maskz_cvtusepi32_epi16","_mm256_maskz_cvtusepi32_epi8","_mm256_maskz_cvtusepi64_epi16","_mm256_maskz_cvtusepi64_epi32","_mm256_maskz_cvtusepi64_epi8","_mm256_maskz_cvtxph_ps","_mm256_maskz_cvtxps_ph","_mm256_maskz_dbsad_epu8","_mm256_maskz_div_pd","_mm256_maskz_div_ph","_mm256_maskz_div_ps","_mm256_maskz_dpbf16_ps","_mm256_maskz_dpbusd_epi32","_mm256_maskz_dpbusds_epi32","_mm256_maskz_dpwssd_epi32","_mm256_maskz_dpwssds_epi32","_mm256_maskz_expand_epi16","_mm256_maskz_expand_epi32","_mm256_maskz_expand_epi64","_mm256_maskz_expand_epi8","_mm256_maskz_expand_pd","_mm256_maskz_expand_ps","_mm256_maskz_expandloadu_epi16","_mm256_maskz_expandloadu_epi32","_mm256_maskz_expandloadu_epi64","_mm256_maskz_expandloadu_epi8","_mm256_maskz_expandloadu_pd","_mm256_maskz_expandloadu_ps","_mm256_maskz_extractf32x4_ps","_mm256_maskz_extractf64x2_pd","_mm256_maskz_extracti32x4_epi32","_mm256_maskz_extracti64x2_epi64","_mm256_maskz_fcmadd_pch","_mm256_maskz_fcmul_pch","_mm256_maskz_fixupimm_pd","_mm256_maskz_fixupimm_ps","_mm256_maskz_fmadd_pch","_mm256_maskz_fmadd_pd","_mm256_maskz_fmadd_ph","_mm256_maskz_fmadd_ps","_mm256_maskz_fmaddsub_pd","_mm256_maskz_fmaddsub_ph","_mm256_maskz_fmaddsub_ps","_mm256_maskz_fmsub_pd","_mm256_maskz_fmsub_ph","_mm256_maskz_fmsub_ps","_mm256_maskz_fmsubadd_pd","_mm256_maskz_fmsubadd_ph","_mm256_maskz_fmsubadd_ps","_mm256_maskz_fmul_pch","_mm256_maskz_fnmadd_pd","_mm256_maskz_fnmadd_ph","_mm256_maskz_fnmadd_ps","_mm256_maskz_fnmsub_pd","_mm256_maskz_fnmsub_ph","_mm256_maskz_fnmsub_ps","_mm256_maskz_getexp_pd","_mm256_maskz_getexp_ph","_mm256_maskz_getexp_ps","_mm256_maskz_getmant_pd","_mm256_maskz_getmant_ph","_mm256_maskz_getmant_ps","_mm256_maskz_gf2p8affine_epi64_epi8","_mm256_maskz_gf2p8affineinv_epi64_epi8","_mm256_maskz_gf2p8mul_epi8","_mm256_maskz_insertf32x4","_mm256_maskz_insertf64x2","_mm256_maskz_inserti32x4","_mm256_maskz_inserti64x2","_mm256_maskz_load_epi32","_mm256_maskz_load_epi64","_mm256_maskz_load_pd","_mm256_maskz_load_ps","_mm256_maskz_loadu_epi16","_mm256_maskz_loadu_epi32","_mm256_maskz_loadu_epi64","_mm256_maskz_loadu_epi8","_mm256_maskz_loadu_pd","_mm256_maskz_loadu_ps","_mm256_maskz_lzcnt_epi32","_mm256_maskz_lzcnt_epi64","_mm256_maskz_madd52hi_epu64","_mm256_maskz_madd52lo_epu64","_mm256_maskz_madd_epi16","_mm256_maskz_maddubs_epi16","_mm256_maskz_max_epi16","_mm256_maskz_max_epi32","_mm256_maskz_max_epi64","_mm256_maskz_max_epi8","_mm256_maskz_max_epu16","_mm256_maskz_max_epu32","_mm256_maskz_max_epu64","_mm256_maskz_max_epu8","_mm256_maskz_max_pd","_mm256_maskz_max_ph","_mm256_maskz_max_ps","_mm256_maskz_min_epi16","_mm256_maskz_min_epi32","_mm256_maskz_min_epi64","_mm256_maskz_min_epi8","_mm256_maskz_min_epu16","_mm256_maskz_min_epu32","_mm256_maskz_min_epu64","_mm256_maskz_min_epu8","_mm256_maskz_min_pd","_mm256_maskz_min_ph","_mm256_maskz_min_ps","_mm256_maskz_mov_epi16","_mm256_maskz_mov_epi32","_mm256_maskz_mov_epi64","_mm256_maskz_mov_epi8","_mm256_maskz_mov_pd","_mm256_maskz_mov_ps","_mm256_maskz_movedup_pd","_mm256_maskz_movehdup_ps","_mm256_maskz_moveldup_ps","_mm256_maskz_mul_epi32","_mm256_maskz_mul_epu32","_mm256_maskz_mul_pch","_mm256_maskz_mul_pd","_mm256_maskz_mul_ph","_mm256_maskz_mul_ps","_mm256_maskz_mulhi_epi16","_mm256_maskz_mulhi_epu16","_mm256_maskz_mulhrs_epi16","_mm256_maskz_mullo_epi16","_mm256_maskz_mullo_epi32","_mm256_maskz_mullo_epi64","_mm256_maskz_multishift_epi64_epi8","_mm256_maskz_or_epi32","_mm256_maskz_or_epi64","_mm256_maskz_or_pd","_mm256_maskz_or_ps","_mm256_maskz_packs_epi16","_mm256_maskz_packs_epi32","_mm256_maskz_packus_epi16","_mm256_maskz_packus_epi32","_mm256_maskz_permute_pd","_mm256_maskz_permute_ps","_mm256_maskz_permutevar_pd","_mm256_maskz_permutevar_ps","_mm256_maskz_permutex2var_epi16","_mm256_maskz_permutex2var_epi32","_mm256_maskz_permutex2var_epi64","_mm256_maskz_permutex2var_epi8","_mm256_maskz_permutex2var_pd","_mm256_maskz_permutex2var_ps","_mm256_maskz_permutex_epi64","_mm256_maskz_permutex_pd","_mm256_maskz_permutexvar_epi16","_mm256_maskz_permutexvar_epi32","_mm256_maskz_permutexvar_epi64","_mm256_maskz_permutexvar_epi8","_mm256_maskz_permutexvar_pd","_mm256_maskz_permutexvar_ps","_mm256_maskz_popcnt_epi16","_mm256_maskz_popcnt_epi32","_mm256_maskz_popcnt_epi64","_mm256_maskz_popcnt_epi8","_mm256_maskz_range_pd","_mm256_maskz_range_ps","_mm256_maskz_rcp14_pd","_mm256_maskz_rcp14_ps","_mm256_maskz_rcp_ph","_mm256_maskz_reduce_pd","_mm256_maskz_reduce_ph","_mm256_maskz_reduce_ps","_mm256_maskz_rol_epi32","_mm256_maskz_rol_epi64","_mm256_maskz_rolv_epi32","_mm256_maskz_rolv_epi64","_mm256_maskz_ror_epi32","_mm256_maskz_ror_epi64","_mm256_maskz_rorv_epi32","_mm256_maskz_rorv_epi64","_mm256_maskz_roundscale_pd","_mm256_maskz_roundscale_ph","_mm256_maskz_roundscale_ps","_mm256_maskz_rsqrt14_pd","_mm256_maskz_rsqrt14_ps","_mm256_maskz_rsqrt_ph","_mm256_maskz_scalef_pd","_mm256_maskz_scalef_ph","_mm256_maskz_scalef_ps","_mm256_maskz_set1_epi16","_mm256_maskz_set1_epi32","_mm256_maskz_set1_epi64","_mm256_maskz_set1_epi8","_mm256_maskz_shldi_epi16","_mm256_maskz_shldi_epi32","_mm256_maskz_shldi_epi64","_mm256_maskz_shldv_epi16","_mm256_maskz_shldv_epi32","_mm256_maskz_shldv_epi64","_mm256_maskz_shrdi_epi16","_mm256_maskz_shrdi_epi32","_mm256_maskz_shrdi_epi64","_mm256_maskz_shrdv_epi16","_mm256_maskz_shrdv_epi32","_mm256_maskz_shrdv_epi64","_mm256_maskz_shuffle_epi32","_mm256_maskz_shuffle_epi8","_mm256_maskz_shuffle_f32x4","_mm256_maskz_shuffle_f64x2","_mm256_maskz_shuffle_i32x4","_mm256_maskz_shuffle_i64x2","_mm256_maskz_shuffle_pd","_mm256_maskz_shuffle_ps","_mm256_maskz_shufflehi_epi16","_mm256_maskz_shufflelo_epi16","_mm256_maskz_sll_epi16","_mm256_maskz_sll_epi32","_mm256_maskz_sll_epi64","_mm256_maskz_slli_epi16","_mm256_maskz_slli_epi32","_mm256_maskz_slli_epi64","_mm256_maskz_sllv_epi16","_mm256_maskz_sllv_epi32","_mm256_maskz_sllv_epi64","_mm256_maskz_sqrt_pd","_mm256_maskz_sqrt_ph","_mm256_maskz_sqrt_ps","_mm256_maskz_sra_epi16","_mm256_maskz_sra_epi32","_mm256_maskz_sra_epi64","_mm256_maskz_srai_epi16","_mm256_maskz_srai_epi32","_mm256_maskz_srai_epi64","_mm256_maskz_srav_epi16","_mm256_maskz_srav_epi32","_mm256_maskz_srav_epi64","_mm256_maskz_srl_epi16","_mm256_maskz_srl_epi32","_mm256_maskz_srl_epi64","_mm256_maskz_srli_epi16","_mm256_maskz_srli_epi32","_mm256_maskz_srli_epi64","_mm256_maskz_srlv_epi16","_mm256_maskz_srlv_epi32","_mm256_maskz_srlv_epi64","_mm256_maskz_sub_epi16","_mm256_maskz_sub_epi32","_mm256_maskz_sub_epi64","_mm256_maskz_sub_epi8","_mm256_maskz_sub_pd","_mm256_maskz_sub_ph","_mm256_maskz_sub_ps","_mm256_maskz_subs_epi16","_mm256_maskz_subs_epi8","_mm256_maskz_subs_epu16","_mm256_maskz_subs_epu8","_mm256_maskz_ternarylogic_epi32","_mm256_maskz_ternarylogic_epi64","_mm256_maskz_unpackhi_epi16","_mm256_maskz_unpackhi_epi32","_mm256_maskz_unpackhi_epi64","_mm256_maskz_unpackhi_epi8","_mm256_maskz_unpackhi_pd","_mm256_maskz_unpackhi_ps","_mm256_maskz_unpacklo_epi16","_mm256_maskz_unpacklo_epi32","_mm256_maskz_unpacklo_epi64","_mm256_maskz_unpacklo_epi8","_mm256_maskz_unpacklo_pd","_mm256_maskz_unpacklo_ps","_mm256_maskz_xor_epi32","_mm256_maskz_xor_epi64","_mm256_maskz_xor_pd","_mm256_maskz_xor_ps","_mm256_max_epi16","_mm256_max_epi32","_mm256_max_epi64","_mm256_max_epi8","_mm256_max_epu16","_mm256_max_epu32","_mm256_max_epu64","_mm256_max_epu8","_mm256_max_pd","_mm256_max_ph","_mm256_max_ps","_mm256_min_epi16","_mm256_min_epi32","_mm256_min_epi64","_mm256_min_epi8","_mm256_min_epu16","_mm256_min_epu32","_mm256_min_epu64","_mm256_min_epu8","_mm256_min_pd","_mm256_min_ph","_mm256_min_ps","_mm256_mmask_i32gather_epi32","_mm256_mmask_i32gather_epi64","_mm256_mmask_i32gather_pd","_mm256_mmask_i32gather_ps","_mm256_mmask_i64gather_epi32","_mm256_mmask_i64gather_epi64","_mm256_mmask_i64gather_pd","_mm256_mmask_i64gather_ps","_mm256_movedup_pd","_mm256_movehdup_ps","_mm256_moveldup_ps","_mm256_movemask_epi8","_mm256_movemask_pd","_mm256_movemask_ps","_mm256_movepi16_mask","_mm256_movepi32_mask","_mm256_movepi64_mask","_mm256_movepi8_mask","_mm256_movm_epi16","_mm256_movm_epi32","_mm256_movm_epi64","_mm256_movm_epi8","_mm256_mpsadbw_epu8","_mm256_mul_epi32","_mm256_mul_epu32","_mm256_mul_pch","_mm256_mul_pd","_mm256_mul_ph","_mm256_mul_ps","_mm256_mulhi_epi16","_mm256_mulhi_epu16","_mm256_mulhrs_epi16","_mm256_mullo_epi16","_mm256_mullo_epi32","_mm256_mullo_epi64","_mm256_multishift_epi64_epi8","_mm256_or_epi32","_mm256_or_epi64","_mm256_or_pd","_mm256_or_ps","_mm256_or_si256","_mm256_packs_epi16","_mm256_packs_epi32","_mm256_packus_epi16","_mm256_packus_epi32","_mm256_permute2f128_pd","_mm256_permute2f128_ps","_mm256_permute2f128_si256","_mm256_permute2x128_si256","_mm256_permute4x64_epi64","_mm256_permute4x64_pd","_mm256_permute_pd","_mm256_permute_ps","_mm256_permutevar8x32_epi32","_mm256_permutevar8x32_ps","_mm256_permutevar_pd","_mm256_permutevar_ps","_mm256_permutex2var_epi16","_mm256_permutex2var_epi32","_mm256_permutex2var_epi64","_mm256_permutex2var_epi8","_mm256_permutex2var_pd","_mm256_permutex2var_ph","_mm256_permutex2var_ps","_mm256_permutex_epi64","_mm256_permutex_pd","_mm256_permutexvar_epi16","_mm256_permutexvar_epi32","_mm256_permutexvar_epi64","_mm256_permutexvar_epi8","_mm256_permutexvar_pd","_mm256_permutexvar_ph","_mm256_permutexvar_ps","_mm256_popcnt_epi16","_mm256_popcnt_epi32","_mm256_popcnt_epi64","_mm256_popcnt_epi8","_mm256_range_pd","_mm256_range_ps","_mm256_rcp14_pd","_mm256_rcp14_ps","_mm256_rcp_ph","_mm256_rcp_ps","_mm256_reduce_add_epi16","_mm256_reduce_add_epi8","_mm256_reduce_add_ph","_mm256_reduce_and_epi16","_mm256_reduce_and_epi8","_mm256_reduce_max_epi16","_mm256_reduce_max_epi8","_mm256_reduce_max_epu16","_mm256_reduce_max_epu8","_mm256_reduce_max_ph","_mm256_reduce_min_epi16","_mm256_reduce_min_epi8","_mm256_reduce_min_epu16","_mm256_reduce_min_epu8","_mm256_reduce_min_ph","_mm256_reduce_mul_epi16","_mm256_reduce_mul_epi8","_mm256_reduce_mul_ph","_mm256_reduce_or_epi16","_mm256_reduce_or_epi8","_mm256_reduce_pd","_mm256_reduce_ph","_mm256_reduce_ps","_mm256_rol_epi32","_mm256_rol_epi64","_mm256_rolv_epi32","_mm256_rolv_epi64","_mm256_ror_epi32","_mm256_ror_epi64","_mm256_rorv_epi32","_mm256_rorv_epi64","_mm256_round_pd","_mm256_round_ps","_mm256_roundscale_pd","_mm256_roundscale_ph","_mm256_roundscale_ps","_mm256_rsqrt14_pd","_mm256_rsqrt14_ps","_mm256_rsqrt_ph","_mm256_rsqrt_ps","_mm256_sad_epu8","_mm256_scalef_pd","_mm256_scalef_ph","_mm256_scalef_ps","_mm256_set1_epi16","_mm256_set1_epi32","_mm256_set1_epi64x","_mm256_set1_epi8","_mm256_set1_pd","_mm256_set1_ph","_mm256_set1_ps","_mm256_set_epi16","_mm256_set_epi32","_mm256_set_epi64x","_mm256_set_epi8","_mm256_set_m128","_mm256_set_m128d","_mm256_set_m128i","_mm256_set_pd","_mm256_set_ph","_mm256_set_ps","_mm256_setr_epi16","_mm256_setr_epi32","_mm256_setr_epi64x","_mm256_setr_epi8","_mm256_setr_m128","_mm256_setr_m128d","_mm256_setr_m128i","_mm256_setr_pd","_mm256_setr_ph","_mm256_setr_ps","_mm256_setzero_pd","_mm256_setzero_ph","_mm256_setzero_ps","_mm256_setzero_si256","_mm256_shldi_epi16","_mm256_shldi_epi32","_mm256_shldi_epi64","_mm256_shldv_epi16","_mm256_shldv_epi32","_mm256_shldv_epi64","_mm256_shrdi_epi16","_mm256_shrdi_epi32","_mm256_shrdi_epi64","_mm256_shrdv_epi16","_mm256_shrdv_epi32","_mm256_shrdv_epi64","_mm256_shuffle_epi32","_mm256_shuffle_epi8","_mm256_shuffle_f32x4","_mm256_shuffle_f64x2","_mm256_shuffle_i32x4","_mm256_shuffle_i64x2","_mm256_shuffle_pd","_mm256_shuffle_ps","_mm256_shufflehi_epi16","_mm256_shufflelo_epi16","_mm256_sign_epi16","_mm256_sign_epi32","_mm256_sign_epi8","_mm256_sll_epi16","_mm256_sll_epi32","_mm256_sll_epi64","_mm256_slli_epi16","_mm256_slli_epi32","_mm256_slli_epi64","_mm256_slli_si256","_mm256_sllv_epi16","_mm256_sllv_epi32","_mm256_sllv_epi64","_mm256_sqrt_pd","_mm256_sqrt_ph","_mm256_sqrt_ps","_mm256_sra_epi16","_mm256_sra_epi32","_mm256_sra_epi64","_mm256_srai_epi16","_mm256_srai_epi32","_mm256_srai_epi64","_mm256_srav_epi16","_mm256_srav_epi32","_mm256_srav_epi64","_mm256_srl_epi16","_mm256_srl_epi32","_mm256_srl_epi64","_mm256_srli_epi16","_mm256_srli_epi32","_mm256_srli_epi64","_mm256_srli_si256","_mm256_srlv_epi16","_mm256_srlv_epi32","_mm256_srlv_epi64","_mm256_store_epi32","_mm256_store_epi64","_mm256_store_pd","_mm256_store_ph","_mm256_store_ps","_mm256_store_si256","_mm256_storeu2_m128","_mm256_storeu2_m128d","_mm256_storeu2_m128i","_mm256_storeu_epi16","_mm256_storeu_epi32","_mm256_storeu_epi64","_mm256_storeu_epi8","_mm256_storeu_pd","_mm256_storeu_ph","_mm256_storeu_ps","_mm256_storeu_si256","_mm256_stream_load_si256","_mm256_stream_pd","_mm256_stream_ps","_mm256_stream_si256","_mm256_sub_epi16","_mm256_sub_epi32","_mm256_sub_epi64","_mm256_sub_epi8","_mm256_sub_pd","_mm256_sub_ph","_mm256_sub_ps","_mm256_subs_epi16","_mm256_subs_epi8","_mm256_subs_epu16","_mm256_subs_epu8","_mm256_ternarylogic_epi32","_mm256_ternarylogic_epi64","_mm256_test_epi16_mask","_mm256_test_epi32_mask","_mm256_test_epi64_mask","_mm256_test_epi8_mask","_mm256_testc_pd","_mm256_testc_ps","_mm256_testc_si256","_mm256_testn_epi16_mask","_mm256_testn_epi32_mask","_mm256_testn_epi64_mask","_mm256_testn_epi8_mask","_mm256_testnzc_pd","_mm256_testnzc_ps","_mm256_testnzc_si256","_mm256_testz_pd","_mm256_testz_ps","_mm256_testz_si256","_mm256_undefined_pd","_mm256_undefined_ph","_mm256_undefined_ps","_mm256_undefined_si256","_mm256_unpackhi_epi16","_mm256_unpackhi_epi32","_mm256_unpackhi_epi64","_mm256_unpackhi_epi8","_mm256_unpackhi_pd","_mm256_unpackhi_ps","_mm256_unpacklo_epi16","_mm256_unpacklo_epi32","_mm256_unpacklo_epi64","_mm256_unpacklo_epi8","_mm256_unpacklo_pd","_mm256_unpacklo_ps","_mm256_xor_epi32","_mm256_xor_epi64","_mm256_xor_pd","_mm256_xor_ps","_mm256_xor_si256","_mm256_zeroall","_mm256_zeroupper","_mm256_zextpd128_pd256","_mm256_zextph128_ph256","_mm256_zextps128_ps256","_mm256_zextsi128_si256","_mm512_abs_epi16","_mm512_abs_epi32","_mm512_abs_epi64","_mm512_abs_epi8","_mm512_abs_pd","_mm512_abs_ph","_mm512_abs_ps","_mm512_add_epi16","_mm512_add_epi32","_mm512_add_epi64","_mm512_add_epi8","_mm512_add_pd","_mm512_add_ph","_mm512_add_ps","_mm512_add_round_pd","_mm512_add_round_ph","_mm512_add_round_ps","_mm512_adds_epi16","_mm512_adds_epi8","_mm512_adds_epu16","_mm512_adds_epu8","_mm512_aesdec_epi128","_mm512_aesdeclast_epi128","_mm512_aesenc_epi128","_mm512_aesenclast_epi128","_mm512_alignr_epi32","_mm512_alignr_epi64","_mm512_alignr_epi8","_mm512_and_epi32","_mm512_and_epi64","_mm512_and_pd","_mm512_and_ps","_mm512_and_si512","_mm512_andnot_epi32","_mm512_andnot_epi64","_mm512_andnot_pd","_mm512_andnot_ps","_mm512_andnot_si512","_mm512_avg_epu16","_mm512_avg_epu8","_mm512_bitshuffle_epi64_mask","_mm512_broadcast_f32x2","_mm512_broadcast_f32x4","_mm512_broadcast_f32x8","_mm512_broadcast_f64x2","_mm512_broadcast_f64x4","_mm512_broadcast_i32x2","_mm512_broadcast_i32x4","_mm512_broadcast_i32x8","_mm512_broadcast_i64x2","_mm512_broadcast_i64x4","_mm512_broadcastb_epi8","_mm512_broadcastd_epi32","_mm512_broadcastmb_epi64","_mm512_broadcastmw_epi32","_mm512_broadcastq_epi64","_mm512_broadcastsd_pd","_mm512_broadcastss_ps","_mm512_broadcastw_epi16","_mm512_bslli_epi128","_mm512_bsrli_epi128","_mm512_castpd128_pd512","_mm512_castpd256_pd512","_mm512_castpd512_pd128","_mm512_castpd512_pd256","_mm512_castpd_ph","_mm512_castpd_ps","_mm512_castpd_si512","_mm512_castph128_ph512","_mm512_castph256_ph512","_mm512_castph512_ph128","_mm512_castph512_ph256","_mm512_castph_pd","_mm512_castph_ps","_mm512_castph_si512","_mm512_castps128_ps512","_mm512_castps256_ps512","_mm512_castps512_ps128","_mm512_castps512_ps256","_mm512_castps_pd","_mm512_castps_ph","_mm512_castps_si512","_mm512_castsi128_si512","_mm512_castsi256_si512","_mm512_castsi512_pd","_mm512_castsi512_ph","_mm512_castsi512_ps","_mm512_castsi512_si128","_mm512_castsi512_si256","_mm512_clmulepi64_epi128","_mm512_cmp_epi16_mask","_mm512_cmp_epi32_mask","_mm512_cmp_epi64_mask","_mm512_cmp_epi8_mask","_mm512_cmp_epu16_mask","_mm512_cmp_epu32_mask","_mm512_cmp_epu64_mask","_mm512_cmp_epu8_mask","_mm512_cmp_pd_mask","_mm512_cmp_ph_mask","_mm512_cmp_ps_mask","_mm512_cmp_round_pd_mask","_mm512_cmp_round_ph_mask","_mm512_cmp_round_ps_mask","_mm512_cmpeq_epi16_mask","_mm512_cmpeq_epi32_mask","_mm512_cmpeq_epi64_mask","_mm512_cmpeq_epi8_mask","_mm512_cmpeq_epu16_mask","_mm512_cmpeq_epu32_mask","_mm512_cmpeq_epu64_mask","_mm512_cmpeq_epu8_mask","_mm512_cmpeq_pd_mask","_mm512_cmpeq_ps_mask","_mm512_cmpge_epi16_mask","_mm512_cmpge_epi32_mask","_mm512_cmpge_epi64_mask","_mm512_cmpge_epi8_mask","_mm512_cmpge_epu16_mask","_mm512_cmpge_epu32_mask","_mm512_cmpge_epu64_mask","_mm512_cmpge_epu8_mask","_mm512_cmpgt_epi16_mask","_mm512_cmpgt_epi32_mask","_mm512_cmpgt_epi64_mask","_mm512_cmpgt_epi8_mask","_mm512_cmpgt_epu16_mask","_mm512_cmpgt_epu32_mask","_mm512_cmpgt_epu64_mask","_mm512_cmpgt_epu8_mask","_mm512_cmple_epi16_mask","_mm512_cmple_epi32_mask","_mm512_cmple_epi64_mask","_mm512_cmple_epi8_mask","_mm512_cmple_epu16_mask","_mm512_cmple_epu32_mask","_mm512_cmple_epu64_mask","_mm512_cmple_epu8_mask","_mm512_cmple_pd_mask","_mm512_cmple_ps_mask","_mm512_cmplt_epi16_mask","_mm512_cmplt_epi32_mask","_mm512_cmplt_epi64_mask","_mm512_cmplt_epi8_mask","_mm512_cmplt_epu16_mask","_mm512_cmplt_epu32_mask","_mm512_cmplt_epu64_mask","_mm512_cmplt_epu8_mask","_mm512_cmplt_pd_mask","_mm512_cmplt_ps_mask","_mm512_cmpneq_epi16_mask","_mm512_cmpneq_epi32_mask","_mm512_cmpneq_epi64_mask","_mm512_cmpneq_epi8_mask","_mm512_cmpneq_epu16_mask","_mm512_cmpneq_epu32_mask","_mm512_cmpneq_epu64_mask","_mm512_cmpneq_epu8_mask","_mm512_cmpneq_pd_mask","_mm512_cmpneq_ps_mask","_mm512_cmpnle_pd_mask","_mm512_cmpnle_ps_mask","_mm512_cmpnlt_pd_mask","_mm512_cmpnlt_ps_mask","_mm512_cmpord_pd_mask","_mm512_cmpord_ps_mask","_mm512_cmpunord_pd_mask","_mm512_cmpunord_ps_mask","_mm512_cmul_pch","_mm512_cmul_round_pch","_mm512_conflict_epi32","_mm512_conflict_epi64","_mm512_conj_pch","_mm512_cvt_roundepi16_ph","_mm512_cvt_roundepi32_ph","_mm512_cvt_roundepi32_ps","_mm512_cvt_roundepi64_pd","_mm512_cvt_roundepi64_ph","_mm512_cvt_roundepi64_ps","_mm512_cvt_roundepu16_ph","_mm512_cvt_roundepu32_ph","_mm512_cvt_roundepu32_ps","_mm512_cvt_roundepu64_pd","_mm512_cvt_roundepu64_ph","_mm512_cvt_roundepu64_ps","_mm512_cvt_roundpd_epi32","_mm512_cvt_roundpd_epi64","_mm512_cvt_roundpd_epu32","_mm512_cvt_roundpd_epu64","_mm512_cvt_roundpd_ph","_mm512_cvt_roundpd_ps","_mm512_cvt_roundph_epi16","_mm512_cvt_roundph_epi32","_mm512_cvt_roundph_epi64","_mm512_cvt_roundph_epu16","_mm512_cvt_roundph_epu32","_mm512_cvt_roundph_epu64","_mm512_cvt_roundph_pd","_mm512_cvt_roundph_ps","_mm512_cvt_roundps_epi32","_mm512_cvt_roundps_epi64","_mm512_cvt_roundps_epu32","_mm512_cvt_roundps_epu64","_mm512_cvt_roundps_pd","_mm512_cvt_roundps_ph","_mm512_cvtepi16_epi32","_mm512_cvtepi16_epi64","_mm512_cvtepi16_epi8","_mm512_cvtepi16_ph","_mm512_cvtepi32_epi16","_mm512_cvtepi32_epi64","_mm512_cvtepi32_epi8","_mm512_cvtepi32_pd","_mm512_cvtepi32_ph","_mm512_cvtepi32_ps","_mm512_cvtepi32lo_pd","_mm512_cvtepi64_epi16","_mm512_cvtepi64_epi32","_mm512_cvtepi64_epi8","_mm512_cvtepi64_pd","_mm512_cvtepi64_ph","_mm512_cvtepi64_ps","_mm512_cvtepi8_epi16","_mm512_cvtepi8_epi32","_mm512_cvtepi8_epi64","_mm512_cvtepu16_epi32","_mm512_cvtepu16_epi64","_mm512_cvtepu16_ph","_mm512_cvtepu32_epi64","_mm512_cvtepu32_pd","_mm512_cvtepu32_ph","_mm512_cvtepu32_ps","_mm512_cvtepu32lo_pd","_mm512_cvtepu64_pd","_mm512_cvtepu64_ph","_mm512_cvtepu64_ps","_mm512_cvtepu8_epi16","_mm512_cvtepu8_epi32","_mm512_cvtepu8_epi64","_mm512_cvtne2ps_pbh","_mm512_cvtneps_pbh","_mm512_cvtpbh_ps","_mm512_cvtpd_epi32","_mm512_cvtpd_epi64","_mm512_cvtpd_epu32","_mm512_cvtpd_epu64","_mm512_cvtpd_ph","_mm512_cvtpd_ps","_mm512_cvtpd_pslo","_mm512_cvtph_epi16","_mm512_cvtph_epi32","_mm512_cvtph_epi64","_mm512_cvtph_epu16","_mm512_cvtph_epu32","_mm512_cvtph_epu64","_mm512_cvtph_pd","_mm512_cvtph_ps","_mm512_cvtps_epi32","_mm512_cvtps_epi64","_mm512_cvtps_epu32","_mm512_cvtps_epu64","_mm512_cvtps_pd","_mm512_cvtps_ph","_mm512_cvtpslo_pd","_mm512_cvtsd_f64","_mm512_cvtsepi16_epi8","_mm512_cvtsepi32_epi16","_mm512_cvtsepi32_epi8","_mm512_cvtsepi64_epi16","_mm512_cvtsepi64_epi32","_mm512_cvtsepi64_epi8","_mm512_cvtsh_h","_mm512_cvtsi512_si32","_mm512_cvtss_f32","_mm512_cvtt_roundpd_epi32","_mm512_cvtt_roundpd_epi64","_mm512_cvtt_roundpd_epu32","_mm512_cvtt_roundpd_epu64","_mm512_cvtt_roundph_epi16","_mm512_cvtt_roundph_epi32","_mm512_cvtt_roundph_epi64","_mm512_cvtt_roundph_epu16","_mm512_cvtt_roundph_epu32","_mm512_cvtt_roundph_epu64","_mm512_cvtt_roundps_epi32","_mm512_cvtt_roundps_epi64","_mm512_cvtt_roundps_epu32","_mm512_cvtt_roundps_epu64","_mm512_cvttpd_epi32","_mm512_cvttpd_epi64","_mm512_cvttpd_epu32","_mm512_cvttpd_epu64","_mm512_cvttph_epi16","_mm512_cvttph_epi32","_mm512_cvttph_epi64","_mm512_cvttph_epu16","_mm512_cvttph_epu32","_mm512_cvttph_epu64","_mm512_cvttps_epi32","_mm512_cvttps_epi64","_mm512_cvttps_epu32","_mm512_cvttps_epu64","_mm512_cvtusepi16_epi8","_mm512_cvtusepi32_epi16","_mm512_cvtusepi32_epi8","_mm512_cvtusepi64_epi16","_mm512_cvtusepi64_epi32","_mm512_cvtusepi64_epi8","_mm512_cvtx_roundph_ps","_mm512_cvtx_roundps_ph","_mm512_cvtxph_ps","_mm512_cvtxps_ph","_mm512_dbsad_epu8","_mm512_div_pd","_mm512_div_ph","_mm512_div_ps","_mm512_div_round_pd","_mm512_div_round_ph","_mm512_div_round_ps","_mm512_dpbf16_ps","_mm512_dpbusd_epi32","_mm512_dpbusds_epi32","_mm512_dpwssd_epi32","_mm512_dpwssds_epi32","_mm512_extractf32x4_ps","_mm512_extractf32x8_ps","_mm512_extractf64x2_pd","_mm512_extractf64x4_pd","_mm512_extracti32x4_epi32","_mm512_extracti32x8_epi32","_mm512_extracti64x2_epi64","_mm512_extracti64x4_epi64","_mm512_fcmadd_pch","_mm512_fcmadd_round_pch","_mm512_fcmul_pch","_mm512_fcmul_round_pch","_mm512_fixupimm_pd","_mm512_fixupimm_ps","_mm512_fixupimm_round_pd","_mm512_fixupimm_round_ps","_mm512_fmadd_pch","_mm512_fmadd_pd","_mm512_fmadd_ph","_mm512_fmadd_ps","_mm512_fmadd_round_pch","_mm512_fmadd_round_pd","_mm512_fmadd_round_ph","_mm512_fmadd_round_ps","_mm512_fmaddsub_pd","_mm512_fmaddsub_ph","_mm512_fmaddsub_ps","_mm512_fmaddsub_round_pd","_mm512_fmaddsub_round_ph","_mm512_fmaddsub_round_ps","_mm512_fmsub_pd","_mm512_fmsub_ph","_mm512_fmsub_ps","_mm512_fmsub_round_pd","_mm512_fmsub_round_ph","_mm512_fmsub_round_ps","_mm512_fmsubadd_pd","_mm512_fmsubadd_ph","_mm512_fmsubadd_ps","_mm512_fmsubadd_round_pd","_mm512_fmsubadd_round_ph","_mm512_fmsubadd_round_ps","_mm512_fmul_pch","_mm512_fmul_round_pch","_mm512_fnmadd_pd","_mm512_fnmadd_ph","_mm512_fnmadd_ps","_mm512_fnmadd_round_pd","_mm512_fnmadd_round_ph","_mm512_fnmadd_round_ps","_mm512_fnmsub_pd","_mm512_fnmsub_ph","_mm512_fnmsub_ps","_mm512_fnmsub_round_pd","_mm512_fnmsub_round_ph","_mm512_fnmsub_round_ps","_mm512_fpclass_pd_mask","_mm512_fpclass_ph_mask","_mm512_fpclass_ps_mask","_mm512_getexp_pd","_mm512_getexp_ph","_mm512_getexp_ps","_mm512_getexp_round_pd","_mm512_getexp_round_ph","_mm512_getexp_round_ps","_mm512_getmant_pd","_mm512_getmant_ph","_mm512_getmant_ps","_mm512_getmant_round_pd","_mm512_getmant_round_ph","_mm512_getmant_round_ps","_mm512_gf2p8affine_epi64_epi8","_mm512_gf2p8affineinv_epi64_epi8","_mm512_gf2p8mul_epi8","_mm512_i32gather_epi32","_mm512_i32gather_epi64","_mm512_i32gather_pd","_mm512_i32gather_ps","_mm512_i32logather_epi64","_mm512_i32logather_pd","_mm512_i32loscatter_epi64","_mm512_i32loscatter_pd","_mm512_i32scatter_epi32","_mm512_i32scatter_epi64","_mm512_i32scatter_pd","_mm512_i32scatter_ps","_mm512_i64gather_epi32","_mm512_i64gather_epi64","_mm512_i64gather_pd","_mm512_i64gather_ps","_mm512_i64scatter_epi32","_mm512_i64scatter_epi64","_mm512_i64scatter_pd","_mm512_i64scatter_ps","_mm512_insertf32x4","_mm512_insertf32x8","_mm512_insertf64x2","_mm512_insertf64x4","_mm512_inserti32x4","_mm512_inserti32x8","_mm512_inserti64x2","_mm512_inserti64x4","_mm512_int2mask","_mm512_kand","_mm512_kandn","_mm512_kmov","_mm512_knot","_mm512_kor","_mm512_kortestc","_mm512_kortestz","_mm512_kunpackb","_mm512_kunpackd","_mm512_kunpackw","_mm512_kxnor","_mm512_kxor","_mm512_load_epi32","_mm512_load_epi64","_mm512_load_pd","_mm512_load_ph","_mm512_load_ps","_mm512_load_si512","_mm512_loadu_epi16","_mm512_loadu_epi32","_mm512_loadu_epi64","_mm512_loadu_epi8","_mm512_loadu_pd","_mm512_loadu_ph","_mm512_loadu_ps","_mm512_loadu_si512","_mm512_lzcnt_epi32","_mm512_lzcnt_epi64","_mm512_madd52hi_epu64","_mm512_madd52lo_epu64","_mm512_madd_epi16","_mm512_maddubs_epi16","_mm512_mask2_permutex2var_epi16","_mm512_mask2_permutex2var_epi32","_mm512_mask2_permutex2var_epi64","_mm512_mask2_permutex2var_epi8","_mm512_mask2_permutex2var_pd","_mm512_mask2_permutex2var_ps","_mm512_mask2int","_mm512_mask3_fcmadd_pch","_mm512_mask3_fcmadd_round_pch","_mm512_mask3_fmadd_pch","_mm512_mask3_fmadd_pd","_mm512_mask3_fmadd_ph","_mm512_mask3_fmadd_ps","_mm512_mask3_fmadd_round_pch","_mm512_mask3_fmadd_round_pd","_mm512_mask3_fmadd_round_ph","_mm512_mask3_fmadd_round_ps","_mm512_mask3_fmaddsub_pd","_mm512_mask3_fmaddsub_ph","_mm512_mask3_fmaddsub_ps","_mm512_mask3_fmaddsub_round_pd","_mm512_mask3_fmaddsub_round_ph","_mm512_mask3_fmaddsub_round_ps","_mm512_mask3_fmsub_pd","_mm512_mask3_fmsub_ph","_mm512_mask3_fmsub_ps","_mm512_mask3_fmsub_round_pd","_mm512_mask3_fmsub_round_ph","_mm512_mask3_fmsub_round_ps","_mm512_mask3_fmsubadd_pd","_mm512_mask3_fmsubadd_ph","_mm512_mask3_fmsubadd_ps","_mm512_mask3_fmsubadd_round_pd","_mm512_mask3_fmsubadd_round_ph","_mm512_mask3_fmsubadd_round_ps","_mm512_mask3_fnmadd_pd","_mm512_mask3_fnmadd_ph","_mm512_mask3_fnmadd_ps","_mm512_mask3_fnmadd_round_pd","_mm512_mask3_fnmadd_round_ph","_mm512_mask3_fnmadd_round_ps","_mm512_mask3_fnmsub_pd","_mm512_mask3_fnmsub_ph","_mm512_mask3_fnmsub_ps","_mm512_mask3_fnmsub_round_pd","_mm512_mask3_fnmsub_round_ph","_mm512_mask3_fnmsub_round_ps","_mm512_mask_abs_epi16","_mm512_mask_abs_epi32","_mm512_mask_abs_epi64","_mm512_mask_abs_epi8","_mm512_mask_abs_pd","_mm512_mask_abs_ps","_mm512_mask_add_epi16","_mm512_mask_add_epi32","_mm512_mask_add_epi64","_mm512_mask_add_epi8","_mm512_mask_add_pd","_mm512_mask_add_ph","_mm512_mask_add_ps","_mm512_mask_add_round_pd","_mm512_mask_add_round_ph","_mm512_mask_add_round_ps","_mm512_mask_adds_epi16","_mm512_mask_adds_epi8","_mm512_mask_adds_epu16","_mm512_mask_adds_epu8","_mm512_mask_alignr_epi32","_mm512_mask_alignr_epi64","_mm512_mask_alignr_epi8","_mm512_mask_and_epi32","_mm512_mask_and_epi64","_mm512_mask_and_pd","_mm512_mask_and_ps","_mm512_mask_andnot_epi32","_mm512_mask_andnot_epi64","_mm512_mask_andnot_pd","_mm512_mask_andnot_ps","_mm512_mask_avg_epu16","_mm512_mask_avg_epu8","_mm512_mask_bitshuffle_epi64_mask","_mm512_mask_blend_epi16","_mm512_mask_blend_epi32","_mm512_mask_blend_epi64","_mm512_mask_blend_epi8","_mm512_mask_blend_pd","_mm512_mask_blend_ph","_mm512_mask_blend_ps","_mm512_mask_broadcast_f32x2","_mm512_mask_broadcast_f32x4","_mm512_mask_broadcast_f32x8","_mm512_mask_broadcast_f64x2","_mm512_mask_broadcast_f64x4","_mm512_mask_broadcast_i32x2","_mm512_mask_broadcast_i32x4","_mm512_mask_broadcast_i32x8","_mm512_mask_broadcast_i64x2","_mm512_mask_broadcast_i64x4","_mm512_mask_broadcastb_epi8","_mm512_mask_broadcastd_epi32","_mm512_mask_broadcastq_epi64","_mm512_mask_broadcastsd_pd","_mm512_mask_broadcastss_ps","_mm512_mask_broadcastw_epi16","_mm512_mask_cmp_epi16_mask","_mm512_mask_cmp_epi32_mask","_mm512_mask_cmp_epi64_mask","_mm512_mask_cmp_epi8_mask","_mm512_mask_cmp_epu16_mask","_mm512_mask_cmp_epu32_mask","_mm512_mask_cmp_epu64_mask","_mm512_mask_cmp_epu8_mask","_mm512_mask_cmp_pd_mask","_mm512_mask_cmp_ph_mask","_mm512_mask_cmp_ps_mask","_mm512_mask_cmp_round_pd_mask","_mm512_mask_cmp_round_ph_mask","_mm512_mask_cmp_round_ps_mask","_mm512_mask_cmpeq_epi16_mask","_mm512_mask_cmpeq_epi32_mask","_mm512_mask_cmpeq_epi64_mask","_mm512_mask_cmpeq_epi8_mask","_mm512_mask_cmpeq_epu16_mask","_mm512_mask_cmpeq_epu32_mask","_mm512_mask_cmpeq_epu64_mask","_mm512_mask_cmpeq_epu8_mask","_mm512_mask_cmpeq_pd_mask","_mm512_mask_cmpeq_ps_mask","_mm512_mask_cmpge_epi16_mask","_mm512_mask_cmpge_epi32_mask","_mm512_mask_cmpge_epi64_mask","_mm512_mask_cmpge_epi8_mask","_mm512_mask_cmpge_epu16_mask","_mm512_mask_cmpge_epu32_mask","_mm512_mask_cmpge_epu64_mask","_mm512_mask_cmpge_epu8_mask","_mm512_mask_cmpgt_epi16_mask","_mm512_mask_cmpgt_epi32_mask","_mm512_mask_cmpgt_epi64_mask","_mm512_mask_cmpgt_epi8_mask","_mm512_mask_cmpgt_epu16_mask","_mm512_mask_cmpgt_epu32_mask","_mm512_mask_cmpgt_epu64_mask","_mm512_mask_cmpgt_epu8_mask","_mm512_mask_cmple_epi16_mask","_mm512_mask_cmple_epi32_mask","_mm512_mask_cmple_epi64_mask","_mm512_mask_cmple_epi8_mask","_mm512_mask_cmple_epu16_mask","_mm512_mask_cmple_epu32_mask","_mm512_mask_cmple_epu64_mask","_mm512_mask_cmple_epu8_mask","_mm512_mask_cmple_pd_mask","_mm512_mask_cmple_ps_mask","_mm512_mask_cmplt_epi16_mask","_mm512_mask_cmplt_epi32_mask","_mm512_mask_cmplt_epi64_mask","_mm512_mask_cmplt_epi8_mask","_mm512_mask_cmplt_epu16_mask","_mm512_mask_cmplt_epu32_mask","_mm512_mask_cmplt_epu64_mask","_mm512_mask_cmplt_epu8_mask","_mm512_mask_cmplt_pd_mask","_mm512_mask_cmplt_ps_mask","_mm512_mask_cmpneq_epi16_mask","_mm512_mask_cmpneq_epi32_mask","_mm512_mask_cmpneq_epi64_mask","_mm512_mask_cmpneq_epi8_mask","_mm512_mask_cmpneq_epu16_mask","_mm512_mask_cmpneq_epu32_mask","_mm512_mask_cmpneq_epu64_mask","_mm512_mask_cmpneq_epu8_mask","_mm512_mask_cmpneq_pd_mask","_mm512_mask_cmpneq_ps_mask","_mm512_mask_cmpnle_pd_mask","_mm512_mask_cmpnle_ps_mask","_mm512_mask_cmpnlt_pd_mask","_mm512_mask_cmpnlt_ps_mask","_mm512_mask_cmpord_pd_mask","_mm512_mask_cmpord_ps_mask","_mm512_mask_cmpunord_pd_mask","_mm512_mask_cmpunord_ps_mask","_mm512_mask_cmul_pch","_mm512_mask_cmul_round_pch","_mm512_mask_compress_epi16","_mm512_mask_compress_epi32","_mm512_mask_compress_epi64","_mm512_mask_compress_epi8","_mm512_mask_compress_pd","_mm512_mask_compress_ps","_mm512_mask_compressstoreu_epi16","_mm512_mask_compressstoreu_epi32","_mm512_mask_compressstoreu_epi64","_mm512_mask_compressstoreu_epi8","_mm512_mask_compressstoreu_pd","_mm512_mask_compressstoreu_ps","_mm512_mask_conflict_epi32","_mm512_mask_conflict_epi64","_mm512_mask_conj_pch","_mm512_mask_cvt_roundepi16_ph","_mm512_mask_cvt_roundepi32_ph","_mm512_mask_cvt_roundepi32_ps","_mm512_mask_cvt_roundepi64_pd","_mm512_mask_cvt_roundepi64_ph","_mm512_mask_cvt_roundepi64_ps","_mm512_mask_cvt_roundepu16_ph","_mm512_mask_cvt_roundepu32_ph","_mm512_mask_cvt_roundepu32_ps","_mm512_mask_cvt_roundepu64_pd","_mm512_mask_cvt_roundepu64_ph","_mm512_mask_cvt_roundepu64_ps","_mm512_mask_cvt_roundpd_epi32","_mm512_mask_cvt_roundpd_epi64","_mm512_mask_cvt_roundpd_epu32","_mm512_mask_cvt_roundpd_epu64","_mm512_mask_cvt_roundpd_ph","_mm512_mask_cvt_roundpd_ps","_mm512_mask_cvt_roundph_epi16","_mm512_mask_cvt_roundph_epi32","_mm512_mask_cvt_roundph_epi64","_mm512_mask_cvt_roundph_epu16","_mm512_mask_cvt_roundph_epu32","_mm512_mask_cvt_roundph_epu64","_mm512_mask_cvt_roundph_pd","_mm512_mask_cvt_roundph_ps","_mm512_mask_cvt_roundps_epi32","_mm512_mask_cvt_roundps_epi64","_mm512_mask_cvt_roundps_epu32","_mm512_mask_cvt_roundps_epu64","_mm512_mask_cvt_roundps_pd","_mm512_mask_cvt_roundps_ph","_mm512_mask_cvtepi16_epi32","_mm512_mask_cvtepi16_epi64","_mm512_mask_cvtepi16_epi8","_mm512_mask_cvtepi16_ph","_mm512_mask_cvtepi16_storeu_epi8","_mm512_mask_cvtepi32_epi16","_mm512_mask_cvtepi32_epi64","_mm512_mask_cvtepi32_epi8","_mm512_mask_cvtepi32_pd","_mm512_mask_cvtepi32_ph","_mm512_mask_cvtepi32_ps","_mm512_mask_cvtepi32_storeu_epi16","_mm512_mask_cvtepi32_storeu_epi8","_mm512_mask_cvtepi32lo_pd","_mm512_mask_cvtepi64_epi16","_mm512_mask_cvtepi64_epi32","_mm512_mask_cvtepi64_epi8","_mm512_mask_cvtepi64_pd","_mm512_mask_cvtepi64_ph","_mm512_mask_cvtepi64_ps","_mm512_mask_cvtepi64_storeu_epi16","_mm512_mask_cvtepi64_storeu_epi32","_mm512_mask_cvtepi64_storeu_epi8","_mm512_mask_cvtepi8_epi16","_mm512_mask_cvtepi8_epi32","_mm512_mask_cvtepi8_epi64","_mm512_mask_cvtepu16_epi32","_mm512_mask_cvtepu16_epi64","_mm512_mask_cvtepu16_ph","_mm512_mask_cvtepu32_epi64","_mm512_mask_cvtepu32_pd","_mm512_mask_cvtepu32_ph","_mm512_mask_cvtepu32_ps","_mm512_mask_cvtepu32lo_pd","_mm512_mask_cvtepu64_pd","_mm512_mask_cvtepu64_ph","_mm512_mask_cvtepu64_ps","_mm512_mask_cvtepu8_epi16","_mm512_mask_cvtepu8_epi32","_mm512_mask_cvtepu8_epi64","_mm512_mask_cvtne2ps_pbh","_mm512_mask_cvtneps_pbh","_mm512_mask_cvtpbh_ps","_mm512_mask_cvtpd_epi32","_mm512_mask_cvtpd_epi64","_mm512_mask_cvtpd_epu32","_mm512_mask_cvtpd_epu64","_mm512_mask_cvtpd_ph","_mm512_mask_cvtpd_ps","_mm512_mask_cvtpd_pslo","_mm512_mask_cvtph_epi16","_mm512_mask_cvtph_epi32","_mm512_mask_cvtph_epi64","_mm512_mask_cvtph_epu16","_mm512_mask_cvtph_epu32","_mm512_mask_cvtph_epu64","_mm512_mask_cvtph_pd","_mm512_mask_cvtph_ps","_mm512_mask_cvtps_epi32","_mm512_mask_cvtps_epi64","_mm512_mask_cvtps_epu32","_mm512_mask_cvtps_epu64","_mm512_mask_cvtps_pd","_mm512_mask_cvtps_ph","_mm512_mask_cvtpslo_pd","_mm512_mask_cvtsepi16_epi8","_mm512_mask_cvtsepi16_storeu_epi8","_mm512_mask_cvtsepi32_epi16","_mm512_mask_cvtsepi32_epi8","_mm512_mask_cvtsepi32_storeu_epi16","_mm512_mask_cvtsepi32_storeu_epi8","_mm512_mask_cvtsepi64_epi16","_mm512_mask_cvtsepi64_epi32","_mm512_mask_cvtsepi64_epi8","_mm512_mask_cvtsepi64_storeu_epi16","_mm512_mask_cvtsepi64_storeu_epi32","_mm512_mask_cvtsepi64_storeu_epi8","_mm512_mask_cvtt_roundpd_epi32","_mm512_mask_cvtt_roundpd_epi64","_mm512_mask_cvtt_roundpd_epu32","_mm512_mask_cvtt_roundpd_epu64","_mm512_mask_cvtt_roundph_epi16","_mm512_mask_cvtt_roundph_epi32","_mm512_mask_cvtt_roundph_epi64","_mm512_mask_cvtt_roundph_epu16","_mm512_mask_cvtt_roundph_epu32","_mm512_mask_cvtt_roundph_epu64","_mm512_mask_cvtt_roundps_epi32","_mm512_mask_cvtt_roundps_epi64","_mm512_mask_cvtt_roundps_epu32","_mm512_mask_cvtt_roundps_epu64","_mm512_mask_cvttpd_epi32","_mm512_mask_cvttpd_epi64","_mm512_mask_cvttpd_epu32","_mm512_mask_cvttpd_epu64","_mm512_mask_cvttph_epi16","_mm512_mask_cvttph_epi32","_mm512_mask_cvttph_epi64","_mm512_mask_cvttph_epu16","_mm512_mask_cvttph_epu32","_mm512_mask_cvttph_epu64","_mm512_mask_cvttps_epi32","_mm512_mask_cvttps_epi64","_mm512_mask_cvttps_epu32","_mm512_mask_cvttps_epu64","_mm512_mask_cvtusepi16_epi8","_mm512_mask_cvtusepi16_storeu_epi8","_mm512_mask_cvtusepi32_epi16","_mm512_mask_cvtusepi32_epi8","_mm512_mask_cvtusepi32_storeu_epi16","_mm512_mask_cvtusepi32_storeu_epi8","_mm512_mask_cvtusepi64_epi16","_mm512_mask_cvtusepi64_epi32","_mm512_mask_cvtusepi64_epi8","_mm512_mask_cvtusepi64_storeu_epi16","_mm512_mask_cvtusepi64_storeu_epi32","_mm512_mask_cvtusepi64_storeu_epi8","_mm512_mask_cvtx_roundph_ps","_mm512_mask_cvtx_roundps_ph","_mm512_mask_cvtxph_ps","_mm512_mask_cvtxps_ph","_mm512_mask_dbsad_epu8","_mm512_mask_div_pd","_mm512_mask_div_ph","_mm512_mask_div_ps","_mm512_mask_div_round_pd","_mm512_mask_div_round_ph","_mm512_mask_div_round_ps","_mm512_mask_dpbf16_ps","_mm512_mask_dpbusd_epi32","_mm512_mask_dpbusds_epi32","_mm512_mask_dpwssd_epi32","_mm512_mask_dpwssds_epi32","_mm512_mask_expand_epi16","_mm512_mask_expand_epi32","_mm512_mask_expand_epi64","_mm512_mask_expand_epi8","_mm512_mask_expand_pd","_mm512_mask_expand_ps","_mm512_mask_expandloadu_epi16","_mm512_mask_expandloadu_epi32","_mm512_mask_expandloadu_epi64","_mm512_mask_expandloadu_epi8","_mm512_mask_expandloadu_pd","_mm512_mask_expandloadu_ps","_mm512_mask_extractf32x4_ps","_mm512_mask_extractf32x8_ps","_mm512_mask_extractf64x2_pd","_mm512_mask_extractf64x4_pd","_mm512_mask_extracti32x4_epi32","_mm512_mask_extracti32x8_epi32","_mm512_mask_extracti64x2_epi64","_mm512_mask_extracti64x4_epi64","_mm512_mask_fcmadd_pch","_mm512_mask_fcmadd_round_pch","_mm512_mask_fcmul_pch","_mm512_mask_fcmul_round_pch","_mm512_mask_fixupimm_pd","_mm512_mask_fixupimm_ps","_mm512_mask_fixupimm_round_pd","_mm512_mask_fixupimm_round_ps","_mm512_mask_fmadd_pch","_mm512_mask_fmadd_pd","_mm512_mask_fmadd_ph","_mm512_mask_fmadd_ps","_mm512_mask_fmadd_round_pch","_mm512_mask_fmadd_round_pd","_mm512_mask_fmadd_round_ph","_mm512_mask_fmadd_round_ps","_mm512_mask_fmaddsub_pd","_mm512_mask_fmaddsub_ph","_mm512_mask_fmaddsub_ps","_mm512_mask_fmaddsub_round_pd","_mm512_mask_fmaddsub_round_ph","_mm512_mask_fmaddsub_round_ps","_mm512_mask_fmsub_pd","_mm512_mask_fmsub_ph","_mm512_mask_fmsub_ps","_mm512_mask_fmsub_round_pd","_mm512_mask_fmsub_round_ph","_mm512_mask_fmsub_round_ps","_mm512_mask_fmsubadd_pd","_mm512_mask_fmsubadd_ph","_mm512_mask_fmsubadd_ps","_mm512_mask_fmsubadd_round_pd","_mm512_mask_fmsubadd_round_ph","_mm512_mask_fmsubadd_round_ps","_mm512_mask_fmul_pch","_mm512_mask_fmul_round_pch","_mm512_mask_fnmadd_pd","_mm512_mask_fnmadd_ph","_mm512_mask_fnmadd_ps","_mm512_mask_fnmadd_round_pd","_mm512_mask_fnmadd_round_ph","_mm512_mask_fnmadd_round_ps","_mm512_mask_fnmsub_pd","_mm512_mask_fnmsub_ph","_mm512_mask_fnmsub_ps","_mm512_mask_fnmsub_round_pd","_mm512_mask_fnmsub_round_ph","_mm512_mask_fnmsub_round_ps","_mm512_mask_fpclass_pd_mask","_mm512_mask_fpclass_ph_mask","_mm512_mask_fpclass_ps_mask","_mm512_mask_getexp_pd","_mm512_mask_getexp_ph","_mm512_mask_getexp_ps","_mm512_mask_getexp_round_pd","_mm512_mask_getexp_round_ph","_mm512_mask_getexp_round_ps","_mm512_mask_getmant_pd","_mm512_mask_getmant_ph","_mm512_mask_getmant_ps","_mm512_mask_getmant_round_pd","_mm512_mask_getmant_round_ph","_mm512_mask_getmant_round_ps","_mm512_mask_gf2p8affine_epi64_epi8","_mm512_mask_gf2p8affineinv_epi64_epi8","_mm512_mask_gf2p8mul_epi8","_mm512_mask_i32gather_epi32","_mm512_mask_i32gather_epi64","_mm512_mask_i32gather_pd","_mm512_mask_i32gather_ps","_mm512_mask_i32logather_epi64","_mm512_mask_i32logather_pd","_mm512_mask_i32loscatter_epi64","_mm512_mask_i32loscatter_pd","_mm512_mask_i32scatter_epi32","_mm512_mask_i32scatter_epi64","_mm512_mask_i32scatter_pd","_mm512_mask_i32scatter_ps","_mm512_mask_i64gather_epi32","_mm512_mask_i64gather_epi64","_mm512_mask_i64gather_pd","_mm512_mask_i64gather_ps","_mm512_mask_i64scatter_epi32","_mm512_mask_i64scatter_epi64","_mm512_mask_i64scatter_pd","_mm512_mask_i64scatter_ps","_mm512_mask_insertf32x4","_mm512_mask_insertf32x8","_mm512_mask_insertf64x2","_mm512_mask_insertf64x4","_mm512_mask_inserti32x4","_mm512_mask_inserti32x8","_mm512_mask_inserti64x2","_mm512_mask_inserti64x4","_mm512_mask_load_epi32","_mm512_mask_load_epi64","_mm512_mask_load_pd","_mm512_mask_load_ps","_mm512_mask_loadu_epi16","_mm512_mask_loadu_epi32","_mm512_mask_loadu_epi64","_mm512_mask_loadu_epi8","_mm512_mask_loadu_pd","_mm512_mask_loadu_ps","_mm512_mask_lzcnt_epi32","_mm512_mask_lzcnt_epi64","_mm512_mask_madd52hi_epu64","_mm512_mask_madd52lo_epu64","_mm512_mask_madd_epi16","_mm512_mask_maddubs_epi16","_mm512_mask_max_epi16","_mm512_mask_max_epi32","_mm512_mask_max_epi64","_mm512_mask_max_epi8","_mm512_mask_max_epu16","_mm512_mask_max_epu32","_mm512_mask_max_epu64","_mm512_mask_max_epu8","_mm512_mask_max_pd","_mm512_mask_max_ph","_mm512_mask_max_ps","_mm512_mask_max_round_pd","_mm512_mask_max_round_ph","_mm512_mask_max_round_ps","_mm512_mask_min_epi16","_mm512_mask_min_epi32","_mm512_mask_min_epi64","_mm512_mask_min_epi8","_mm512_mask_min_epu16","_mm512_mask_min_epu32","_mm512_mask_min_epu64","_mm512_mask_min_epu8","_mm512_mask_min_pd","_mm512_mask_min_ph","_mm512_mask_min_ps","_mm512_mask_min_round_pd","_mm512_mask_min_round_ph","_mm512_mask_min_round_ps","_mm512_mask_mov_epi16","_mm512_mask_mov_epi32","_mm512_mask_mov_epi64","_mm512_mask_mov_epi8","_mm512_mask_mov_pd","_mm512_mask_mov_ps","_mm512_mask_movedup_pd","_mm512_mask_movehdup_ps","_mm512_mask_moveldup_ps","_mm512_mask_mul_epi32","_mm512_mask_mul_epu32","_mm512_mask_mul_pch","_mm512_mask_mul_pd","_mm512_mask_mul_ph","_mm512_mask_mul_ps","_mm512_mask_mul_round_pch","_mm512_mask_mul_round_pd","_mm512_mask_mul_round_ph","_mm512_mask_mul_round_ps","_mm512_mask_mulhi_epi16","_mm512_mask_mulhi_epu16","_mm512_mask_mulhrs_epi16","_mm512_mask_mullo_epi16","_mm512_mask_mullo_epi32","_mm512_mask_mullo_epi64","_mm512_mask_mullox_epi64","_mm512_mask_multishift_epi64_epi8","_mm512_mask_or_epi32","_mm512_mask_or_epi64","_mm512_mask_or_pd","_mm512_mask_or_ps","_mm512_mask_packs_epi16","_mm512_mask_packs_epi32","_mm512_mask_packus_epi16","_mm512_mask_packus_epi32","_mm512_mask_permute_pd","_mm512_mask_permute_ps","_mm512_mask_permutevar_epi32","_mm512_mask_permutevar_pd","_mm512_mask_permutevar_ps","_mm512_mask_permutex2var_epi16","_mm512_mask_permutex2var_epi32","_mm512_mask_permutex2var_epi64","_mm512_mask_permutex2var_epi8","_mm512_mask_permutex2var_pd","_mm512_mask_permutex2var_ps","_mm512_mask_permutex_epi64","_mm512_mask_permutex_pd","_mm512_mask_permutexvar_epi16","_mm512_mask_permutexvar_epi32","_mm512_mask_permutexvar_epi64","_mm512_mask_permutexvar_epi8","_mm512_mask_permutexvar_pd","_mm512_mask_permutexvar_ps","_mm512_mask_popcnt_epi16","_mm512_mask_popcnt_epi32","_mm512_mask_popcnt_epi64","_mm512_mask_popcnt_epi8","_mm512_mask_range_pd","_mm512_mask_range_ps","_mm512_mask_range_round_pd","_mm512_mask_range_round_ps","_mm512_mask_rcp14_pd","_mm512_mask_rcp14_ps","_mm512_mask_rcp_ph","_mm512_mask_reduce_add_epi32","_mm512_mask_reduce_add_epi64","_mm512_mask_reduce_add_pd","_mm512_mask_reduce_add_ps","_mm512_mask_reduce_and_epi32","_mm512_mask_reduce_and_epi64","_mm512_mask_reduce_max_epi32","_mm512_mask_reduce_max_epi64","_mm512_mask_reduce_max_epu32","_mm512_mask_reduce_max_epu64","_mm512_mask_reduce_max_pd","_mm512_mask_reduce_max_ps","_mm512_mask_reduce_min_epi32","_mm512_mask_reduce_min_epi64","_mm512_mask_reduce_min_epu32","_mm512_mask_reduce_min_epu64","_mm512_mask_reduce_min_pd","_mm512_mask_reduce_min_ps","_mm512_mask_reduce_mul_epi32","_mm512_mask_reduce_mul_epi64","_mm512_mask_reduce_mul_pd","_mm512_mask_reduce_mul_ps","_mm512_mask_reduce_or_epi32","_mm512_mask_reduce_or_epi64","_mm512_mask_reduce_pd","_mm512_mask_reduce_ph","_mm512_mask_reduce_ps","_mm512_mask_reduce_round_pd","_mm512_mask_reduce_round_ph","_mm512_mask_reduce_round_ps","_mm512_mask_rol_epi32","_mm512_mask_rol_epi64","_mm512_mask_rolv_epi32","_mm512_mask_rolv_epi64","_mm512_mask_ror_epi32","_mm512_mask_ror_epi64","_mm512_mask_rorv_epi32","_mm512_mask_rorv_epi64","_mm512_mask_roundscale_pd","_mm512_mask_roundscale_ph","_mm512_mask_roundscale_ps","_mm512_mask_roundscale_round_pd","_mm512_mask_roundscale_round_ph","_mm512_mask_roundscale_round_ps","_mm512_mask_rsqrt14_pd","_mm512_mask_rsqrt14_ps","_mm512_mask_rsqrt_ph","_mm512_mask_scalef_pd","_mm512_mask_scalef_ph","_mm512_mask_scalef_ps","_mm512_mask_scalef_round_pd","_mm512_mask_scalef_round_ph","_mm512_mask_scalef_round_ps","_mm512_mask_set1_epi16","_mm512_mask_set1_epi32","_mm512_mask_set1_epi64","_mm512_mask_set1_epi8","_mm512_mask_shldi_epi16","_mm512_mask_shldi_epi32","_mm512_mask_shldi_epi64","_mm512_mask_shldv_epi16","_mm512_mask_shldv_epi32","_mm512_mask_shldv_epi64","_mm512_mask_shrdi_epi16","_mm512_mask_shrdi_epi32","_mm512_mask_shrdi_epi64","_mm512_mask_shrdv_epi16","_mm512_mask_shrdv_epi32","_mm512_mask_shrdv_epi64","_mm512_mask_shuffle_epi32","_mm512_mask_shuffle_epi8","_mm512_mask_shuffle_f32x4","_mm512_mask_shuffle_f64x2","_mm512_mask_shuffle_i32x4","_mm512_mask_shuffle_i64x2","_mm512_mask_shuffle_pd","_mm512_mask_shuffle_ps","_mm512_mask_shufflehi_epi16","_mm512_mask_shufflelo_epi16","_mm512_mask_sll_epi16","_mm512_mask_sll_epi32","_mm512_mask_sll_epi64","_mm512_mask_slli_epi16","_mm512_mask_slli_epi32","_mm512_mask_slli_epi64","_mm512_mask_sllv_epi16","_mm512_mask_sllv_epi32","_mm512_mask_sllv_epi64","_mm512_mask_sqrt_pd","_mm512_mask_sqrt_ph","_mm512_mask_sqrt_ps","_mm512_mask_sqrt_round_pd","_mm512_mask_sqrt_round_ph","_mm512_mask_sqrt_round_ps","_mm512_mask_sra_epi16","_mm512_mask_sra_epi32","_mm512_mask_sra_epi64","_mm512_mask_srai_epi16","_mm512_mask_srai_epi32","_mm512_mask_srai_epi64","_mm512_mask_srav_epi16","_mm512_mask_srav_epi32","_mm512_mask_srav_epi64","_mm512_mask_srl_epi16","_mm512_mask_srl_epi32","_mm512_mask_srl_epi64","_mm512_mask_srli_epi16","_mm512_mask_srli_epi32","_mm512_mask_srli_epi64","_mm512_mask_srlv_epi16","_mm512_mask_srlv_epi32","_mm512_mask_srlv_epi64","_mm512_mask_store_epi32","_mm512_mask_store_epi64","_mm512_mask_store_pd","_mm512_mask_store_ps","_mm512_mask_storeu_epi16","_mm512_mask_storeu_epi32","_mm512_mask_storeu_epi64","_mm512_mask_storeu_epi8","_mm512_mask_storeu_pd","_mm512_mask_storeu_ps","_mm512_mask_sub_epi16","_mm512_mask_sub_epi32","_mm512_mask_sub_epi64","_mm512_mask_sub_epi8","_mm512_mask_sub_pd","_mm512_mask_sub_ph","_mm512_mask_sub_ps","_mm512_mask_sub_round_pd","_mm512_mask_sub_round_ph","_mm512_mask_sub_round_ps","_mm512_mask_subs_epi16","_mm512_mask_subs_epi8","_mm512_mask_subs_epu16","_mm512_mask_subs_epu8","_mm512_mask_ternarylogic_epi32","_mm512_mask_ternarylogic_epi64","_mm512_mask_test_epi16_mask","_mm512_mask_test_epi32_mask","_mm512_mask_test_epi64_mask","_mm512_mask_test_epi8_mask","_mm512_mask_testn_epi16_mask","_mm512_mask_testn_epi32_mask","_mm512_mask_testn_epi64_mask","_mm512_mask_testn_epi8_mask","_mm512_mask_unpackhi_epi16","_mm512_mask_unpackhi_epi32","_mm512_mask_unpackhi_epi64","_mm512_mask_unpackhi_epi8","_mm512_mask_unpackhi_pd","_mm512_mask_unpackhi_ps","_mm512_mask_unpacklo_epi16","_mm512_mask_unpacklo_epi32","_mm512_mask_unpacklo_epi64","_mm512_mask_unpacklo_epi8","_mm512_mask_unpacklo_pd","_mm512_mask_unpacklo_ps","_mm512_mask_xor_epi32","_mm512_mask_xor_epi64","_mm512_mask_xor_pd","_mm512_mask_xor_ps","_mm512_maskz_abs_epi16","_mm512_maskz_abs_epi32","_mm512_maskz_abs_epi64","_mm512_maskz_abs_epi8","_mm512_maskz_add_epi16","_mm512_maskz_add_epi32","_mm512_maskz_add_epi64","_mm512_maskz_add_epi8","_mm512_maskz_add_pd","_mm512_maskz_add_ph","_mm512_maskz_add_ps","_mm512_maskz_add_round_pd","_mm512_maskz_add_round_ph","_mm512_maskz_add_round_ps","_mm512_maskz_adds_epi16","_mm512_maskz_adds_epi8","_mm512_maskz_adds_epu16","_mm512_maskz_adds_epu8","_mm512_maskz_alignr_epi32","_mm512_maskz_alignr_epi64","_mm512_maskz_alignr_epi8","_mm512_maskz_and_epi32","_mm512_maskz_and_epi64","_mm512_maskz_and_pd","_mm512_maskz_and_ps","_mm512_maskz_andnot_epi32","_mm512_maskz_andnot_epi64","_mm512_maskz_andnot_pd","_mm512_maskz_andnot_ps","_mm512_maskz_avg_epu16","_mm512_maskz_avg_epu8","_mm512_maskz_broadcast_f32x2","_mm512_maskz_broadcast_f32x4","_mm512_maskz_broadcast_f32x8","_mm512_maskz_broadcast_f64x2","_mm512_maskz_broadcast_f64x4","_mm512_maskz_broadcast_i32x2","_mm512_maskz_broadcast_i32x4","_mm512_maskz_broadcast_i32x8","_mm512_maskz_broadcast_i64x2","_mm512_maskz_broadcast_i64x4","_mm512_maskz_broadcastb_epi8","_mm512_maskz_broadcastd_epi32","_mm512_maskz_broadcastq_epi64","_mm512_maskz_broadcastsd_pd","_mm512_maskz_broadcastss_ps","_mm512_maskz_broadcastw_epi16","_mm512_maskz_cmul_pch","_mm512_maskz_cmul_round_pch","_mm512_maskz_compress_epi16","_mm512_maskz_compress_epi32","_mm512_maskz_compress_epi64","_mm512_maskz_compress_epi8","_mm512_maskz_compress_pd","_mm512_maskz_compress_ps","_mm512_maskz_conflict_epi32","_mm512_maskz_conflict_epi64","_mm512_maskz_conj_pch","_mm512_maskz_cvt_roundepi16_ph","_mm512_maskz_cvt_roundepi32_ph","_mm512_maskz_cvt_roundepi32_ps","_mm512_maskz_cvt_roundepi64_pd","_mm512_maskz_cvt_roundepi64_ph","_mm512_maskz_cvt_roundepi64_ps","_mm512_maskz_cvt_roundepu16_ph","_mm512_maskz_cvt_roundepu32_ph","_mm512_maskz_cvt_roundepu32_ps","_mm512_maskz_cvt_roundepu64_pd","_mm512_maskz_cvt_roundepu64_ph","_mm512_maskz_cvt_roundepu64_ps","_mm512_maskz_cvt_roundpd_epi32","_mm512_maskz_cvt_roundpd_epi64","_mm512_maskz_cvt_roundpd_epu32","_mm512_maskz_cvt_roundpd_epu64","_mm512_maskz_cvt_roundpd_ph","_mm512_maskz_cvt_roundpd_ps","_mm512_maskz_cvt_roundph_epi16","_mm512_maskz_cvt_roundph_epi32","_mm512_maskz_cvt_roundph_epi64","_mm512_maskz_cvt_roundph_epu16","_mm512_maskz_cvt_roundph_epu32","_mm512_maskz_cvt_roundph_epu64","_mm512_maskz_cvt_roundph_pd","_mm512_maskz_cvt_roundph_ps","_mm512_maskz_cvt_roundps_epi32","_mm512_maskz_cvt_roundps_epi64","_mm512_maskz_cvt_roundps_epu32","_mm512_maskz_cvt_roundps_epu64","_mm512_maskz_cvt_roundps_pd","_mm512_maskz_cvt_roundps_ph","_mm512_maskz_cvtepi16_epi32","_mm512_maskz_cvtepi16_epi64","_mm512_maskz_cvtepi16_epi8","_mm512_maskz_cvtepi16_ph","_mm512_maskz_cvtepi32_epi16","_mm512_maskz_cvtepi32_epi64","_mm512_maskz_cvtepi32_epi8","_mm512_maskz_cvtepi32_pd","_mm512_maskz_cvtepi32_ph","_mm512_maskz_cvtepi32_ps","_mm512_maskz_cvtepi64_epi16","_mm512_maskz_cvtepi64_epi32","_mm512_maskz_cvtepi64_epi8","_mm512_maskz_cvtepi64_pd","_mm512_maskz_cvtepi64_ph","_mm512_maskz_cvtepi64_ps","_mm512_maskz_cvtepi8_epi16","_mm512_maskz_cvtepi8_epi32","_mm512_maskz_cvtepi8_epi64","_mm512_maskz_cvtepu16_epi32","_mm512_maskz_cvtepu16_epi64","_mm512_maskz_cvtepu16_ph","_mm512_maskz_cvtepu32_epi64","_mm512_maskz_cvtepu32_pd","_mm512_maskz_cvtepu32_ph","_mm512_maskz_cvtepu32_ps","_mm512_maskz_cvtepu64_pd","_mm512_maskz_cvtepu64_ph","_mm512_maskz_cvtepu64_ps","_mm512_maskz_cvtepu8_epi16","_mm512_maskz_cvtepu8_epi32","_mm512_maskz_cvtepu8_epi64","_mm512_maskz_cvtne2ps_pbh","_mm512_maskz_cvtneps_pbh","_mm512_maskz_cvtpbh_ps","_mm512_maskz_cvtpd_epi32","_mm512_maskz_cvtpd_epi64","_mm512_maskz_cvtpd_epu32","_mm512_maskz_cvtpd_epu64","_mm512_maskz_cvtpd_ph","_mm512_maskz_cvtpd_ps","_mm512_maskz_cvtph_epi16","_mm512_maskz_cvtph_epi32","_mm512_maskz_cvtph_epi64","_mm512_maskz_cvtph_epu16","_mm512_maskz_cvtph_epu32","_mm512_maskz_cvtph_epu64","_mm512_maskz_cvtph_pd","_mm512_maskz_cvtph_ps","_mm512_maskz_cvtps_epi32","_mm512_maskz_cvtps_epi64","_mm512_maskz_cvtps_epu32","_mm512_maskz_cvtps_epu64","_mm512_maskz_cvtps_pd","_mm512_maskz_cvtps_ph","_mm512_maskz_cvtsepi16_epi8","_mm512_maskz_cvtsepi32_epi16","_mm512_maskz_cvtsepi32_epi8","_mm512_maskz_cvtsepi64_epi16","_mm512_maskz_cvtsepi64_epi32","_mm512_maskz_cvtsepi64_epi8","_mm512_maskz_cvtt_roundpd_epi32","_mm512_maskz_cvtt_roundpd_epi64","_mm512_maskz_cvtt_roundpd_epu32","_mm512_maskz_cvtt_roundpd_epu64","_mm512_maskz_cvtt_roundph_epi16","_mm512_maskz_cvtt_roundph_epi32","_mm512_maskz_cvtt_roundph_epi64","_mm512_maskz_cvtt_roundph_epu16","_mm512_maskz_cvtt_roundph_epu32","_mm512_maskz_cvtt_roundph_epu64","_mm512_maskz_cvtt_roundps_epi32","_mm512_maskz_cvtt_roundps_epi64","_mm512_maskz_cvtt_roundps_epu32","_mm512_maskz_cvtt_roundps_epu64","_mm512_maskz_cvttpd_epi32","_mm512_maskz_cvttpd_epi64","_mm512_maskz_cvttpd_epu32","_mm512_maskz_cvttpd_epu64","_mm512_maskz_cvttph_epi16","_mm512_maskz_cvttph_epi32","_mm512_maskz_cvttph_epi64","_mm512_maskz_cvttph_epu16","_mm512_maskz_cvttph_epu32","_mm512_maskz_cvttph_epu64","_mm512_maskz_cvttps_epi32","_mm512_maskz_cvttps_epi64","_mm512_maskz_cvttps_epu32","_mm512_maskz_cvttps_epu64","_mm512_maskz_cvtusepi16_epi8","_mm512_maskz_cvtusepi32_epi16","_mm512_maskz_cvtusepi32_epi8","_mm512_maskz_cvtusepi64_epi16","_mm512_maskz_cvtusepi64_epi32","_mm512_maskz_cvtusepi64_epi8","_mm512_maskz_cvtx_roundph_ps","_mm512_maskz_cvtx_roundps_ph","_mm512_maskz_cvtxph_ps","_mm512_maskz_cvtxps_ph","_mm512_maskz_dbsad_epu8","_mm512_maskz_div_pd","_mm512_maskz_div_ph","_mm512_maskz_div_ps","_mm512_maskz_div_round_pd","_mm512_maskz_div_round_ph","_mm512_maskz_div_round_ps","_mm512_maskz_dpbf16_ps","_mm512_maskz_dpbusd_epi32","_mm512_maskz_dpbusds_epi32","_mm512_maskz_dpwssd_epi32","_mm512_maskz_dpwssds_epi32","_mm512_maskz_expand_epi16","_mm512_maskz_expand_epi32","_mm512_maskz_expand_epi64","_mm512_maskz_expand_epi8","_mm512_maskz_expand_pd","_mm512_maskz_expand_ps","_mm512_maskz_expandloadu_epi16","_mm512_maskz_expandloadu_epi32","_mm512_maskz_expandloadu_epi64","_mm512_maskz_expandloadu_epi8","_mm512_maskz_expandloadu_pd","_mm512_maskz_expandloadu_ps","_mm512_maskz_extractf32x4_ps","_mm512_maskz_extractf32x8_ps","_mm512_maskz_extractf64x2_pd","_mm512_maskz_extractf64x4_pd","_mm512_maskz_extracti32x4_epi32","_mm512_maskz_extracti32x8_epi32","_mm512_maskz_extracti64x2_epi64","_mm512_maskz_extracti64x4_epi64","_mm512_maskz_fcmadd_pch","_mm512_maskz_fcmadd_round_pch","_mm512_maskz_fcmul_pch","_mm512_maskz_fcmul_round_pch","_mm512_maskz_fixupimm_pd","_mm512_maskz_fixupimm_ps","_mm512_maskz_fixupimm_round_pd","_mm512_maskz_fixupimm_round_ps","_mm512_maskz_fmadd_pch","_mm512_maskz_fmadd_pd","_mm512_maskz_fmadd_ph","_mm512_maskz_fmadd_ps","_mm512_maskz_fmadd_round_pch","_mm512_maskz_fmadd_round_pd","_mm512_maskz_fmadd_round_ph","_mm512_maskz_fmadd_round_ps","_mm512_maskz_fmaddsub_pd","_mm512_maskz_fmaddsub_ph","_mm512_maskz_fmaddsub_ps","_mm512_maskz_fmaddsub_round_pd","_mm512_maskz_fmaddsub_round_ph","_mm512_maskz_fmaddsub_round_ps","_mm512_maskz_fmsub_pd","_mm512_maskz_fmsub_ph","_mm512_maskz_fmsub_ps","_mm512_maskz_fmsub_round_pd","_mm512_maskz_fmsub_round_ph","_mm512_maskz_fmsub_round_ps","_mm512_maskz_fmsubadd_pd","_mm512_maskz_fmsubadd_ph","_mm512_maskz_fmsubadd_ps","_mm512_maskz_fmsubadd_round_pd","_mm512_maskz_fmsubadd_round_ph","_mm512_maskz_fmsubadd_round_ps","_mm512_maskz_fmul_pch","_mm512_maskz_fmul_round_pch","_mm512_maskz_fnmadd_pd","_mm512_maskz_fnmadd_ph","_mm512_maskz_fnmadd_ps","_mm512_maskz_fnmadd_round_pd","_mm512_maskz_fnmadd_round_ph","_mm512_maskz_fnmadd_round_ps","_mm512_maskz_fnmsub_pd","_mm512_maskz_fnmsub_ph","_mm512_maskz_fnmsub_ps","_mm512_maskz_fnmsub_round_pd","_mm512_maskz_fnmsub_round_ph","_mm512_maskz_fnmsub_round_ps","_mm512_maskz_getexp_pd","_mm512_maskz_getexp_ph","_mm512_maskz_getexp_ps","_mm512_maskz_getexp_round_pd","_mm512_maskz_getexp_round_ph","_mm512_maskz_getexp_round_ps","_mm512_maskz_getmant_pd","_mm512_maskz_getmant_ph","_mm512_maskz_getmant_ps","_mm512_maskz_getmant_round_pd","_mm512_maskz_getmant_round_ph","_mm512_maskz_getmant_round_ps","_mm512_maskz_gf2p8affine_epi64_epi8","_mm512_maskz_gf2p8affineinv_epi64_epi8","_mm512_maskz_gf2p8mul_epi8","_mm512_maskz_insertf32x4","_mm512_maskz_insertf32x8","_mm512_maskz_insertf64x2","_mm512_maskz_insertf64x4","_mm512_maskz_inserti32x4","_mm512_maskz_inserti32x8","_mm512_maskz_inserti64x2","_mm512_maskz_inserti64x4","_mm512_maskz_load_epi32","_mm512_maskz_load_epi64","_mm512_maskz_load_pd","_mm512_maskz_load_ps","_mm512_maskz_loadu_epi16","_mm512_maskz_loadu_epi32","_mm512_maskz_loadu_epi64","_mm512_maskz_loadu_epi8","_mm512_maskz_loadu_pd","_mm512_maskz_loadu_ps","_mm512_maskz_lzcnt_epi32","_mm512_maskz_lzcnt_epi64","_mm512_maskz_madd52hi_epu64","_mm512_maskz_madd52lo_epu64","_mm512_maskz_madd_epi16","_mm512_maskz_maddubs_epi16","_mm512_maskz_max_epi16","_mm512_maskz_max_epi32","_mm512_maskz_max_epi64","_mm512_maskz_max_epi8","_mm512_maskz_max_epu16","_mm512_maskz_max_epu32","_mm512_maskz_max_epu64","_mm512_maskz_max_epu8","_mm512_maskz_max_pd","_mm512_maskz_max_ph","_mm512_maskz_max_ps","_mm512_maskz_max_round_pd","_mm512_maskz_max_round_ph","_mm512_maskz_max_round_ps","_mm512_maskz_min_epi16","_mm512_maskz_min_epi32","_mm512_maskz_min_epi64","_mm512_maskz_min_epi8","_mm512_maskz_min_epu16","_mm512_maskz_min_epu32","_mm512_maskz_min_epu64","_mm512_maskz_min_epu8","_mm512_maskz_min_pd","_mm512_maskz_min_ph","_mm512_maskz_min_ps","_mm512_maskz_min_round_pd","_mm512_maskz_min_round_ph","_mm512_maskz_min_round_ps","_mm512_maskz_mov_epi16","_mm512_maskz_mov_epi32","_mm512_maskz_mov_epi64","_mm512_maskz_mov_epi8","_mm512_maskz_mov_pd","_mm512_maskz_mov_ps","_mm512_maskz_movedup_pd","_mm512_maskz_movehdup_ps","_mm512_maskz_moveldup_ps","_mm512_maskz_mul_epi32","_mm512_maskz_mul_epu32","_mm512_maskz_mul_pch","_mm512_maskz_mul_pd","_mm512_maskz_mul_ph","_mm512_maskz_mul_ps","_mm512_maskz_mul_round_pch","_mm512_maskz_mul_round_pd","_mm512_maskz_mul_round_ph","_mm512_maskz_mul_round_ps","_mm512_maskz_mulhi_epi16","_mm512_maskz_mulhi_epu16","_mm512_maskz_mulhrs_epi16","_mm512_maskz_mullo_epi16","_mm512_maskz_mullo_epi32","_mm512_maskz_mullo_epi64","_mm512_maskz_multishift_epi64_epi8","_mm512_maskz_or_epi32","_mm512_maskz_or_epi64","_mm512_maskz_or_pd","_mm512_maskz_or_ps","_mm512_maskz_packs_epi16","_mm512_maskz_packs_epi32","_mm512_maskz_packus_epi16","_mm512_maskz_packus_epi32","_mm512_maskz_permute_pd","_mm512_maskz_permute_ps","_mm512_maskz_permutevar_pd","_mm512_maskz_permutevar_ps","_mm512_maskz_permutex2var_epi16","_mm512_maskz_permutex2var_epi32","_mm512_maskz_permutex2var_epi64","_mm512_maskz_permutex2var_epi8","_mm512_maskz_permutex2var_pd","_mm512_maskz_permutex2var_ps","_mm512_maskz_permutex_epi64","_mm512_maskz_permutex_pd","_mm512_maskz_permutexvar_epi16","_mm512_maskz_permutexvar_epi32","_mm512_maskz_permutexvar_epi64","_mm512_maskz_permutexvar_epi8","_mm512_maskz_permutexvar_pd","_mm512_maskz_permutexvar_ps","_mm512_maskz_popcnt_epi16","_mm512_maskz_popcnt_epi32","_mm512_maskz_popcnt_epi64","_mm512_maskz_popcnt_epi8","_mm512_maskz_range_pd","_mm512_maskz_range_ps","_mm512_maskz_range_round_pd","_mm512_maskz_range_round_ps","_mm512_maskz_rcp14_pd","_mm512_maskz_rcp14_ps","_mm512_maskz_rcp_ph","_mm512_maskz_reduce_pd","_mm512_maskz_reduce_ph","_mm512_maskz_reduce_ps","_mm512_maskz_reduce_round_pd","_mm512_maskz_reduce_round_ph","_mm512_maskz_reduce_round_ps","_mm512_maskz_rol_epi32","_mm512_maskz_rol_epi64","_mm512_maskz_rolv_epi32","_mm512_maskz_rolv_epi64","_mm512_maskz_ror_epi32","_mm512_maskz_ror_epi64","_mm512_maskz_rorv_epi32","_mm512_maskz_rorv_epi64","_mm512_maskz_roundscale_pd","_mm512_maskz_roundscale_ph","_mm512_maskz_roundscale_ps","_mm512_maskz_roundscale_round_pd","_mm512_maskz_roundscale_round_ph","_mm512_maskz_roundscale_round_ps","_mm512_maskz_rsqrt14_pd","_mm512_maskz_rsqrt14_ps","_mm512_maskz_rsqrt_ph","_mm512_maskz_scalef_pd","_mm512_maskz_scalef_ph","_mm512_maskz_scalef_ps","_mm512_maskz_scalef_round_pd","_mm512_maskz_scalef_round_ph","_mm512_maskz_scalef_round_ps","_mm512_maskz_set1_epi16","_mm512_maskz_set1_epi32","_mm512_maskz_set1_epi64","_mm512_maskz_set1_epi8","_mm512_maskz_shldi_epi16","_mm512_maskz_shldi_epi32","_mm512_maskz_shldi_epi64","_mm512_maskz_shldv_epi16","_mm512_maskz_shldv_epi32","_mm512_maskz_shldv_epi64","_mm512_maskz_shrdi_epi16","_mm512_maskz_shrdi_epi32","_mm512_maskz_shrdi_epi64","_mm512_maskz_shrdv_epi16","_mm512_maskz_shrdv_epi32","_mm512_maskz_shrdv_epi64","_mm512_maskz_shuffle_epi32","_mm512_maskz_shuffle_epi8","_mm512_maskz_shuffle_f32x4","_mm512_maskz_shuffle_f64x2","_mm512_maskz_shuffle_i32x4","_mm512_maskz_shuffle_i64x2","_mm512_maskz_shuffle_pd","_mm512_maskz_shuffle_ps","_mm512_maskz_shufflehi_epi16","_mm512_maskz_shufflelo_epi16","_mm512_maskz_sll_epi16","_mm512_maskz_sll_epi32","_mm512_maskz_sll_epi64","_mm512_maskz_slli_epi16","_mm512_maskz_slli_epi32","_mm512_maskz_slli_epi64","_mm512_maskz_sllv_epi16","_mm512_maskz_sllv_epi32","_mm512_maskz_sllv_epi64","_mm512_maskz_sqrt_pd","_mm512_maskz_sqrt_ph","_mm512_maskz_sqrt_ps","_mm512_maskz_sqrt_round_pd","_mm512_maskz_sqrt_round_ph","_mm512_maskz_sqrt_round_ps","_mm512_maskz_sra_epi16","_mm512_maskz_sra_epi32","_mm512_maskz_sra_epi64","_mm512_maskz_srai_epi16","_mm512_maskz_srai_epi32","_mm512_maskz_srai_epi64","_mm512_maskz_srav_epi16","_mm512_maskz_srav_epi32","_mm512_maskz_srav_epi64","_mm512_maskz_srl_epi16","_mm512_maskz_srl_epi32","_mm512_maskz_srl_epi64","_mm512_maskz_srli_epi16","_mm512_maskz_srli_epi32","_mm512_maskz_srli_epi64","_mm512_maskz_srlv_epi16","_mm512_maskz_srlv_epi32","_mm512_maskz_srlv_epi64","_mm512_maskz_sub_epi16","_mm512_maskz_sub_epi32","_mm512_maskz_sub_epi64","_mm512_maskz_sub_epi8","_mm512_maskz_sub_pd","_mm512_maskz_sub_ph","_mm512_maskz_sub_ps","_mm512_maskz_sub_round_pd","_mm512_maskz_sub_round_ph","_mm512_maskz_sub_round_ps","_mm512_maskz_subs_epi16","_mm512_maskz_subs_epi8","_mm512_maskz_subs_epu16","_mm512_maskz_subs_epu8","_mm512_maskz_ternarylogic_epi32","_mm512_maskz_ternarylogic_epi64","_mm512_maskz_unpackhi_epi16","_mm512_maskz_unpackhi_epi32","_mm512_maskz_unpackhi_epi64","_mm512_maskz_unpackhi_epi8","_mm512_maskz_unpackhi_pd","_mm512_maskz_unpackhi_ps","_mm512_maskz_unpacklo_epi16","_mm512_maskz_unpacklo_epi32","_mm512_maskz_unpacklo_epi64","_mm512_maskz_unpacklo_epi8","_mm512_maskz_unpacklo_pd","_mm512_maskz_unpacklo_ps","_mm512_maskz_xor_epi32","_mm512_maskz_xor_epi64","_mm512_maskz_xor_pd","_mm512_maskz_xor_ps","_mm512_max_epi16","_mm512_max_epi32","_mm512_max_epi64","_mm512_max_epi8","_mm512_max_epu16","_mm512_max_epu32","_mm512_max_epu64","_mm512_max_epu8","_mm512_max_pd","_mm512_max_ph","_mm512_max_ps","_mm512_max_round_pd","_mm512_max_round_ph","_mm512_max_round_ps","_mm512_min_epi16","_mm512_min_epi32","_mm512_min_epi64","_mm512_min_epi8","_mm512_min_epu16","_mm512_min_epu32","_mm512_min_epu64","_mm512_min_epu8","_mm512_min_pd","_mm512_min_ph","_mm512_min_ps","_mm512_min_round_pd","_mm512_min_round_ph","_mm512_min_round_ps","_mm512_movedup_pd","_mm512_movehdup_ps","_mm512_moveldup_ps","_mm512_movepi16_mask","_mm512_movepi32_mask","_mm512_movepi64_mask","_mm512_movepi8_mask","_mm512_movm_epi16","_mm512_movm_epi32","_mm512_movm_epi64","_mm512_movm_epi8","_mm512_mul_epi32","_mm512_mul_epu32","_mm512_mul_pch","_mm512_mul_pd","_mm512_mul_ph","_mm512_mul_ps","_mm512_mul_round_pch","_mm512_mul_round_pd","_mm512_mul_round_ph","_mm512_mul_round_ps","_mm512_mulhi_epi16","_mm512_mulhi_epu16","_mm512_mulhrs_epi16","_mm512_mullo_epi16","_mm512_mullo_epi32","_mm512_mullo_epi64","_mm512_mullox_epi64","_mm512_multishift_epi64_epi8","_mm512_or_epi32","_mm512_or_epi64","_mm512_or_pd","_mm512_or_ps","_mm512_or_si512","_mm512_packs_epi16","_mm512_packs_epi32","_mm512_packus_epi16","_mm512_packus_epi32","_mm512_permute_pd","_mm512_permute_ps","_mm512_permutevar_epi32","_mm512_permutevar_pd","_mm512_permutevar_ps","_mm512_permutex2var_epi16","_mm512_permutex2var_epi32","_mm512_permutex2var_epi64","_mm512_permutex2var_epi8","_mm512_permutex2var_pd","_mm512_permutex2var_ph","_mm512_permutex2var_ps","_mm512_permutex_epi64","_mm512_permutex_pd","_mm512_permutexvar_epi16","_mm512_permutexvar_epi32","_mm512_permutexvar_epi64","_mm512_permutexvar_epi8","_mm512_permutexvar_pd","_mm512_permutexvar_ph","_mm512_permutexvar_ps","_mm512_popcnt_epi16","_mm512_popcnt_epi32","_mm512_popcnt_epi64","_mm512_popcnt_epi8","_mm512_range_pd","_mm512_range_ps","_mm512_range_round_pd","_mm512_range_round_ps","_mm512_rcp14_pd","_mm512_rcp14_ps","_mm512_rcp_ph","_mm512_reduce_add_epi32","_mm512_reduce_add_epi64","_mm512_reduce_add_pd","_mm512_reduce_add_ph","_mm512_reduce_add_ps","_mm512_reduce_and_epi32","_mm512_reduce_and_epi64","_mm512_reduce_max_epi32","_mm512_reduce_max_epi64","_mm512_reduce_max_epu32","_mm512_reduce_max_epu64","_mm512_reduce_max_pd","_mm512_reduce_max_ph","_mm512_reduce_max_ps","_mm512_reduce_min_epi32","_mm512_reduce_min_epi64","_mm512_reduce_min_epu32","_mm512_reduce_min_epu64","_mm512_reduce_min_pd","_mm512_reduce_min_ph","_mm512_reduce_min_ps","_mm512_reduce_mul_epi32","_mm512_reduce_mul_epi64","_mm512_reduce_mul_pd","_mm512_reduce_mul_ph","_mm512_reduce_mul_ps","_mm512_reduce_or_epi32","_mm512_reduce_or_epi64","_mm512_reduce_pd","_mm512_reduce_ph","_mm512_reduce_ps","_mm512_reduce_round_pd","_mm512_reduce_round_ph","_mm512_reduce_round_ps","_mm512_rol_epi32","_mm512_rol_epi64","_mm512_rolv_epi32","_mm512_rolv_epi64","_mm512_ror_epi32","_mm512_ror_epi64","_mm512_rorv_epi32","_mm512_rorv_epi64","_mm512_roundscale_pd","_mm512_roundscale_ph","_mm512_roundscale_ps","_mm512_roundscale_round_pd","_mm512_roundscale_round_ph","_mm512_roundscale_round_ps","_mm512_rsqrt14_pd","_mm512_rsqrt14_ps","_mm512_rsqrt_ph","_mm512_sad_epu8","_mm512_scalef_pd","_mm512_scalef_ph","_mm512_scalef_ps","_mm512_scalef_round_pd","_mm512_scalef_round_ph","_mm512_scalef_round_ps","_mm512_set1_epi16","_mm512_set1_epi32","_mm512_set1_epi64","_mm512_set1_epi8","_mm512_set1_pd","_mm512_set1_ph","_mm512_set1_ps","_mm512_set4_epi32","_mm512_set4_epi64","_mm512_set4_pd","_mm512_set4_ps","_mm512_set_epi16","_mm512_set_epi32","_mm512_set_epi64","_mm512_set_epi8","_mm512_set_pd","_mm512_set_ph","_mm512_set_ps","_mm512_setr4_epi32","_mm512_setr4_epi64","_mm512_setr4_pd","_mm512_setr4_ps","_mm512_setr_epi32","_mm512_setr_epi64","_mm512_setr_pd","_mm512_setr_ph","_mm512_setr_ps","_mm512_setzero","_mm512_setzero_epi32","_mm512_setzero_pd","_mm512_setzero_ph","_mm512_setzero_ps","_mm512_setzero_si512","_mm512_shldi_epi16","_mm512_shldi_epi32","_mm512_shldi_epi64","_mm512_shldv_epi16","_mm512_shldv_epi32","_mm512_shldv_epi64","_mm512_shrdi_epi16","_mm512_shrdi_epi32","_mm512_shrdi_epi64","_mm512_shrdv_epi16","_mm512_shrdv_epi32","_mm512_shrdv_epi64","_mm512_shuffle_epi32","_mm512_shuffle_epi8","_mm512_shuffle_f32x4","_mm512_shuffle_f64x2","_mm512_shuffle_i32x4","_mm512_shuffle_i64x2","_mm512_shuffle_pd","_mm512_shuffle_ps","_mm512_shufflehi_epi16","_mm512_shufflelo_epi16","_mm512_sll_epi16","_mm512_sll_epi32","_mm512_sll_epi64","_mm512_slli_epi16","_mm512_slli_epi32","_mm512_slli_epi64","_mm512_sllv_epi16","_mm512_sllv_epi32","_mm512_sllv_epi64","_mm512_sqrt_pd","_mm512_sqrt_ph","_mm512_sqrt_ps","_mm512_sqrt_round_pd","_mm512_sqrt_round_ph","_mm512_sqrt_round_ps","_mm512_sra_epi16","_mm512_sra_epi32","_mm512_sra_epi64","_mm512_srai_epi16","_mm512_srai_epi32","_mm512_srai_epi64","_mm512_srav_epi16","_mm512_srav_epi32","_mm512_srav_epi64","_mm512_srl_epi16","_mm512_srl_epi32","_mm512_srl_epi64","_mm512_srli_epi16","_mm512_srli_epi32","_mm512_srli_epi64","_mm512_srlv_epi16","_mm512_srlv_epi32","_mm512_srlv_epi64","_mm512_store_epi32","_mm512_store_epi64","_mm512_store_pd","_mm512_store_ph","_mm512_store_ps","_mm512_store_si512","_mm512_storeu_epi16","_mm512_storeu_epi32","_mm512_storeu_epi64","_mm512_storeu_epi8","_mm512_storeu_pd","_mm512_storeu_ph","_mm512_storeu_ps","_mm512_storeu_si512","_mm512_stream_load_si512","_mm512_stream_pd","_mm512_stream_ps","_mm512_stream_si512","_mm512_sub_epi16","_mm512_sub_epi32","_mm512_sub_epi64","_mm512_sub_epi8","_mm512_sub_pd","_mm512_sub_ph","_mm512_sub_ps","_mm512_sub_round_pd","_mm512_sub_round_ph","_mm512_sub_round_ps","_mm512_subs_epi16","_mm512_subs_epi8","_mm512_subs_epu16","_mm512_subs_epu8","_mm512_ternarylogic_epi32","_mm512_ternarylogic_epi64","_mm512_test_epi16_mask","_mm512_test_epi32_mask","_mm512_test_epi64_mask","_mm512_test_epi8_mask","_mm512_testn_epi16_mask","_mm512_testn_epi32_mask","_mm512_testn_epi64_mask","_mm512_testn_epi8_mask","_mm512_undefined","_mm512_undefined_epi32","_mm512_undefined_pd","_mm512_undefined_ph","_mm512_undefined_ps","_mm512_unpackhi_epi16","_mm512_unpackhi_epi32","_mm512_unpackhi_epi64","_mm512_unpackhi_epi8","_mm512_unpackhi_pd","_mm512_unpackhi_ps","_mm512_unpacklo_epi16","_mm512_unpacklo_epi32","_mm512_unpacklo_epi64","_mm512_unpacklo_epi8","_mm512_unpacklo_pd","_mm512_unpacklo_ps","_mm512_xor_epi32","_mm512_xor_epi64","_mm512_xor_pd","_mm512_xor_ps","_mm512_xor_si512","_mm512_zextpd128_pd512","_mm512_zextpd256_pd512","_mm512_zextph128_ph512","_mm512_zextph256_ph512","_mm512_zextps128_ps512","_mm512_zextps256_ps512","_mm512_zextsi128_si512","_mm512_zextsi256_si512","_mm_abs_epi16","_mm_abs_epi32","_mm_abs_epi64","_mm_abs_epi8","_mm_abs_ph","_mm_add_epi16","_mm_add_epi32","_mm_add_epi64","_mm_add_epi8","_mm_add_pd","_mm_add_ph","_mm_add_ps","_mm_add_round_sd","_mm_add_round_sh","_mm_add_round_ss","_mm_add_sd","_mm_add_sh","_mm_add_ss","_mm_adds_epi16","_mm_adds_epi8","_mm_adds_epu16","_mm_adds_epu8","_mm_addsub_pd","_mm_addsub_ps","_mm_aesdec_si128","_mm_aesdeclast_si128","_mm_aesenc_si128","_mm_aesenclast_si128","_mm_aesimc_si128","_mm_aeskeygenassist_si128","_mm_alignr_epi32","_mm_alignr_epi64","_mm_alignr_epi8","_mm_and_pd","_mm_and_ps","_mm_and_si128","_mm_andnot_pd","_mm_andnot_ps","_mm_andnot_si128","_mm_avg_epu16","_mm_avg_epu8","_mm_bcstnebf16_ps","_mm_bcstnesh_ps","_mm_bitshuffle_epi64_mask","_mm_blend_epi16","_mm_blend_epi32","_mm_blend_pd","_mm_blend_ps","_mm_blendv_epi8","_mm_blendv_pd","_mm_blendv_ps","_mm_broadcast_i32x2","_mm_broadcast_ss","_mm_broadcastb_epi8","_mm_broadcastd_epi32","_mm_broadcastmb_epi64","_mm_broadcastmw_epi32","_mm_broadcastq_epi64","_mm_broadcastsd_pd","_mm_broadcastsi128_si256","_mm_broadcastss_ps","_mm_broadcastw_epi16","_mm_bslli_si128","_mm_bsrli_si128","_mm_castpd_ph","_mm_castpd_ps","_mm_castpd_si128","_mm_castph_pd","_mm_castph_ps","_mm_castph_si128","_mm_castps_pd","_mm_castps_ph","_mm_castps_si128","_mm_castsi128_pd","_mm_castsi128_ph","_mm_castsi128_ps","_mm_ceil_pd","_mm_ceil_ps","_mm_ceil_sd","_mm_ceil_ss","_mm_clflush","_mm_clmulepi64_si128","_mm_cmp_epi16_mask","_mm_cmp_epi32_mask","_mm_cmp_epi64_mask","_mm_cmp_epi8_mask","_mm_cmp_epu16_mask","_mm_cmp_epu32_mask","_mm_cmp_epu64_mask","_mm_cmp_epu8_mask","_mm_cmp_pd","_mm_cmp_pd_mask","_mm_cmp_ph_mask","_mm_cmp_ps","_mm_cmp_ps_mask","_mm_cmp_round_sd_mask","_mm_cmp_round_sh_mask","_mm_cmp_round_ss_mask","_mm_cmp_sd","_mm_cmp_sd_mask","_mm_cmp_sh_mask","_mm_cmp_ss","_mm_cmp_ss_mask","_mm_cmpeq_epi16","_mm_cmpeq_epi16_mask","_mm_cmpeq_epi32","_mm_cmpeq_epi32_mask","_mm_cmpeq_epi64","_mm_cmpeq_epi64_mask","_mm_cmpeq_epi8","_mm_cmpeq_epi8_mask","_mm_cmpeq_epu16_mask","_mm_cmpeq_epu32_mask","_mm_cmpeq_epu64_mask","_mm_cmpeq_epu8_mask","_mm_cmpeq_pd","_mm_cmpeq_ps","_mm_cmpeq_sd","_mm_cmpeq_ss","_mm_cmpestra","_mm_cmpestrc","_mm_cmpestri","_mm_cmpestrm","_mm_cmpestro","_mm_cmpestrs","_mm_cmpestrz","_mm_cmpge_epi16_mask","_mm_cmpge_epi32_mask","_mm_cmpge_epi64_mask","_mm_cmpge_epi8_mask","_mm_cmpge_epu16_mask","_mm_cmpge_epu32_mask","_mm_cmpge_epu64_mask","_mm_cmpge_epu8_mask","_mm_cmpge_pd","_mm_cmpge_ps","_mm_cmpge_sd","_mm_cmpge_ss","_mm_cmpgt_epi16","_mm_cmpgt_epi16_mask","_mm_cmpgt_epi32","_mm_cmpgt_epi32_mask","_mm_cmpgt_epi64","_mm_cmpgt_epi64_mask","_mm_cmpgt_epi8","_mm_cmpgt_epi8_mask","_mm_cmpgt_epu16_mask","_mm_cmpgt_epu32_mask","_mm_cmpgt_epu64_mask","_mm_cmpgt_epu8_mask","_mm_cmpgt_pd","_mm_cmpgt_ps","_mm_cmpgt_sd","_mm_cmpgt_ss","_mm_cmpistra","_mm_cmpistrc","_mm_cmpistri","_mm_cmpistrm","_mm_cmpistro","_mm_cmpistrs","_mm_cmpistrz","_mm_cmple_epi16_mask","_mm_cmple_epi32_mask","_mm_cmple_epi64_mask","_mm_cmple_epi8_mask","_mm_cmple_epu16_mask","_mm_cmple_epu32_mask","_mm_cmple_epu64_mask","_mm_cmple_epu8_mask","_mm_cmple_pd","_mm_cmple_ps","_mm_cmple_sd","_mm_cmple_ss","_mm_cmplt_epi16","_mm_cmplt_epi16_mask","_mm_cmplt_epi32","_mm_cmplt_epi32_mask","_mm_cmplt_epi64_mask","_mm_cmplt_epi8","_mm_cmplt_epi8_mask","_mm_cmplt_epu16_mask","_mm_cmplt_epu32_mask","_mm_cmplt_epu64_mask","_mm_cmplt_epu8_mask","_mm_cmplt_pd","_mm_cmplt_ps","_mm_cmplt_sd","_mm_cmplt_ss","_mm_cmpneq_epi16_mask","_mm_cmpneq_epi32_mask","_mm_cmpneq_epi64_mask","_mm_cmpneq_epi8_mask","_mm_cmpneq_epu16_mask","_mm_cmpneq_epu32_mask","_mm_cmpneq_epu64_mask","_mm_cmpneq_epu8_mask","_mm_cmpneq_pd","_mm_cmpneq_ps","_mm_cmpneq_sd","_mm_cmpneq_ss","_mm_cmpnge_pd","_mm_cmpnge_ps","_mm_cmpnge_sd","_mm_cmpnge_ss","_mm_cmpngt_pd","_mm_cmpngt_ps","_mm_cmpngt_sd","_mm_cmpngt_ss","_mm_cmpnle_pd","_mm_cmpnle_ps","_mm_cmpnle_sd","_mm_cmpnle_ss","_mm_cmpnlt_pd","_mm_cmpnlt_ps","_mm_cmpnlt_sd","_mm_cmpnlt_ss","_mm_cmpord_pd","_mm_cmpord_ps","_mm_cmpord_sd","_mm_cmpord_ss","_mm_cmpunord_pd","_mm_cmpunord_ps","_mm_cmpunord_sd","_mm_cmpunord_ss","_mm_cmul_pch","_mm_cmul_round_sch","_mm_cmul_sch","_mm_comi_round_sd","_mm_comi_round_sh","_mm_comi_round_ss","_mm_comi_sh","_mm_comieq_sd","_mm_comieq_sh","_mm_comieq_ss","_mm_comige_sd","_mm_comige_sh","_mm_comige_ss","_mm_comigt_sd","_mm_comigt_sh","_mm_comigt_ss","_mm_comile_sd","_mm_comile_sh","_mm_comile_ss","_mm_comilt_sd","_mm_comilt_sh","_mm_comilt_ss","_mm_comineq_sd","_mm_comineq_sh","_mm_comineq_ss","_mm_conflict_epi32","_mm_conflict_epi64","_mm_conj_pch","_mm_crc32_u16","_mm_crc32_u32","_mm_crc32_u64","_mm_crc32_u8","_mm_cvt_roundi32_sh","_mm_cvt_roundi32_ss","_mm_cvt_roundi64_sd","_mm_cvt_roundi64_sh","_mm_cvt_roundi64_ss","_mm_cvt_roundsd_i32","_mm_cvt_roundsd_i64","_mm_cvt_roundsd_sh","_mm_cvt_roundsd_si32","_mm_cvt_roundsd_si64","_mm_cvt_roundsd_ss","_mm_cvt_roundsd_u32","_mm_cvt_roundsd_u64","_mm_cvt_roundsh_i32","_mm_cvt_roundsh_i64","_mm_cvt_roundsh_sd","_mm_cvt_roundsh_ss","_mm_cvt_roundsh_u32","_mm_cvt_roundsh_u64","_mm_cvt_roundsi32_ss","_mm_cvt_roundsi64_sd","_mm_cvt_roundsi64_ss","_mm_cvt_roundss_i32","_mm_cvt_roundss_i64","_mm_cvt_roundss_sd","_mm_cvt_roundss_sh","_mm_cvt_roundss_si32","_mm_cvt_roundss_si64","_mm_cvt_roundss_u32","_mm_cvt_roundss_u64","_mm_cvt_roundu32_sh","_mm_cvt_roundu32_ss","_mm_cvt_roundu64_sd","_mm_cvt_roundu64_sh","_mm_cvt_roundu64_ss","_mm_cvt_si2ss","_mm_cvt_ss2si","_mm_cvtepi16_epi32","_mm_cvtepi16_epi64","_mm_cvtepi16_epi8","_mm_cvtepi16_ph","_mm_cvtepi32_epi16","_mm_cvtepi32_epi64","_mm_cvtepi32_epi8","_mm_cvtepi32_pd","_mm_cvtepi32_ph","_mm_cvtepi32_ps","_mm_cvtepi64_epi16","_mm_cvtepi64_epi32","_mm_cvtepi64_epi8","_mm_cvtepi64_pd","_mm_cvtepi64_ph","_mm_cvtepi64_ps","_mm_cvtepi8_epi16","_mm_cvtepi8_epi32","_mm_cvtepi8_epi64","_mm_cvtepu16_epi32","_mm_cvtepu16_epi64","_mm_cvtepu16_ph","_mm_cvtepu32_epi64","_mm_cvtepu32_pd","_mm_cvtepu32_ph","_mm_cvtepu64_pd","_mm_cvtepu64_ph","_mm_cvtepu64_ps","_mm_cvtepu8_epi16","_mm_cvtepu8_epi32","_mm_cvtepu8_epi64","_mm_cvti32_sd","_mm_cvti32_sh","_mm_cvti32_ss","_mm_cvti64_sd","_mm_cvti64_sh","_mm_cvti64_ss","_mm_cvtne2ps_pbh","_mm_cvtneebf16_ps","_mm_cvtneeph_ps","_mm_cvtneobf16_ps","_mm_cvtneoph_ps","_mm_cvtneps_avx_pbh","_mm_cvtneps_pbh","_mm_cvtness_sbh","_mm_cvtpbh_ps","_mm_cvtpd_epi32","_mm_cvtpd_epi64","_mm_cvtpd_epu32","_mm_cvtpd_epu64","_mm_cvtpd_ph","_mm_cvtpd_ps","_mm_cvtph_epi16","_mm_cvtph_epi32","_mm_cvtph_epi64","_mm_cvtph_epu16","_mm_cvtph_epu32","_mm_cvtph_epu64","_mm_cvtph_pd","_mm_cvtph_ps","_mm_cvtps_epi32","_mm_cvtps_epi64","_mm_cvtps_epu32","_mm_cvtps_epu64","_mm_cvtps_pd","_mm_cvtps_ph","_mm_cvtsbh_ss","_mm_cvtsd_f64","_mm_cvtsd_i32","_mm_cvtsd_i64","_mm_cvtsd_sh","_mm_cvtsd_si32","_mm_cvtsd_si64","_mm_cvtsd_si64x","_mm_cvtsd_ss","_mm_cvtsd_u32","_mm_cvtsd_u64","_mm_cvtsepi16_epi8","_mm_cvtsepi32_epi16","_mm_cvtsepi32_epi8","_mm_cvtsepi64_epi16","_mm_cvtsepi64_epi32","_mm_cvtsepi64_epi8","_mm_cvtsh_h","_mm_cvtsh_i32","_mm_cvtsh_i64","_mm_cvtsh_sd","_mm_cvtsh_ss","_mm_cvtsh_u32","_mm_cvtsh_u64","_mm_cvtsi128_si16","_mm_cvtsi128_si32","_mm_cvtsi128_si64","_mm_cvtsi128_si64x","_mm_cvtsi16_si128","_mm_cvtsi32_sd","_mm_cvtsi32_si128","_mm_cvtsi32_ss","_mm_cvtsi64_sd","_mm_cvtsi64_si128","_mm_cvtsi64_ss","_mm_cvtsi64x_sd","_mm_cvtsi64x_si128","_mm_cvtss_f32","_mm_cvtss_i32","_mm_cvtss_i64","_mm_cvtss_sd","_mm_cvtss_sh","_mm_cvtss_si32","_mm_cvtss_si64","_mm_cvtss_u32","_mm_cvtss_u64","_mm_cvtt_roundsd_i32","_mm_cvtt_roundsd_i64","_mm_cvtt_roundsd_si32","_mm_cvtt_roundsd_si64","_mm_cvtt_roundsd_u32","_mm_cvtt_roundsd_u64","_mm_cvtt_roundsh_i32","_mm_cvtt_roundsh_i64","_mm_cvtt_roundsh_u32","_mm_cvtt_roundsh_u64","_mm_cvtt_roundss_i32","_mm_cvtt_roundss_i64","_mm_cvtt_roundss_si32","_mm_cvtt_roundss_si64","_mm_cvtt_roundss_u32","_mm_cvtt_roundss_u64","_mm_cvtt_ss2si","_mm_cvttpd_epi32","_mm_cvttpd_epi64","_mm_cvttpd_epu32","_mm_cvttpd_epu64","_mm_cvttph_epi16","_mm_cvttph_epi32","_mm_cvttph_epi64","_mm_cvttph_epu16","_mm_cvttph_epu32","_mm_cvttph_epu64","_mm_cvttps_epi32","_mm_cvttps_epi64","_mm_cvttps_epu32","_mm_cvttps_epu64","_mm_cvttsd_i32","_mm_cvttsd_i64","_mm_cvttsd_si32","_mm_cvttsd_si64","_mm_cvttsd_si64x","_mm_cvttsd_u32","_mm_cvttsd_u64","_mm_cvttsh_i32","_mm_cvttsh_i64","_mm_cvttsh_u32","_mm_cvttsh_u64","_mm_cvttss_i32","_mm_cvttss_i64","_mm_cvttss_si32","_mm_cvttss_si64","_mm_cvttss_u32","_mm_cvttss_u64","_mm_cvtu32_sd","_mm_cvtu32_sh","_mm_cvtu32_ss","_mm_cvtu64_sd","_mm_cvtu64_sh","_mm_cvtu64_ss","_mm_cvtusepi16_epi8","_mm_cvtusepi32_epi16","_mm_cvtusepi32_epi8","_mm_cvtusepi64_epi16","_mm_cvtusepi64_epi32","_mm_cvtusepi64_epi8","_mm_cvtxph_ps","_mm_cvtxps_ph","_mm_dbsad_epu8","_mm_div_pd","_mm_div_ph","_mm_div_ps","_mm_div_round_sd","_mm_div_round_sh","_mm_div_round_ss","_mm_div_sd","_mm_div_sh","_mm_div_ss","_mm_dp_pd","_mm_dp_ps","_mm_dpbf16_ps","_mm_dpbssd_epi32","_mm_dpbssds_epi32","_mm_dpbsud_epi32","_mm_dpbsuds_epi32","_mm_dpbusd_avx_epi32","_mm_dpbusd_epi32","_mm_dpbusds_avx_epi32","_mm_dpbusds_epi32","_mm_dpbuud_epi32","_mm_dpbuuds_epi32","_mm_dpwssd_avx_epi32","_mm_dpwssd_epi32","_mm_dpwssds_avx_epi32","_mm_dpwssds_epi32","_mm_dpwsud_epi32","_mm_dpwsuds_epi32","_mm_dpwusd_epi32","_mm_dpwusds_epi32","_mm_dpwuud_epi32","_mm_dpwuuds_epi32","_mm_extract_epi16","_mm_extract_epi32","_mm_extract_epi64","_mm_extract_epi8","_mm_extract_ps","_mm_extract_si64","_mm_extracti_si64","_mm_fcmadd_pch","_mm_fcmadd_round_sch","_mm_fcmadd_sch","_mm_fcmul_pch","_mm_fcmul_round_sch","_mm_fcmul_sch","_mm_fixupimm_pd","_mm_fixupimm_ps","_mm_fixupimm_round_sd","_mm_fixupimm_round_ss","_mm_fixupimm_sd","_mm_fixupimm_ss","_mm_floor_pd","_mm_floor_ps","_mm_floor_sd","_mm_floor_ss","_mm_fmadd_pch","_mm_fmadd_pd","_mm_fmadd_ph","_mm_fmadd_ps","_mm_fmadd_round_sch","_mm_fmadd_round_sd","_mm_fmadd_round_sh","_mm_fmadd_round_ss","_mm_fmadd_sch","_mm_fmadd_sd","_mm_fmadd_sh","_mm_fmadd_ss","_mm_fmaddsub_pd","_mm_fmaddsub_ph","_mm_fmaddsub_ps","_mm_fmsub_pd","_mm_fmsub_ph","_mm_fmsub_ps","_mm_fmsub_round_sd","_mm_fmsub_round_sh","_mm_fmsub_round_ss","_mm_fmsub_sd","_mm_fmsub_sh","_mm_fmsub_ss","_mm_fmsubadd_pd","_mm_fmsubadd_ph","_mm_fmsubadd_ps","_mm_fmul_pch","_mm_fmul_round_sch","_mm_fmul_sch","_mm_fnmadd_pd","_mm_fnmadd_ph","_mm_fnmadd_ps","_mm_fnmadd_round_sd","_mm_fnmadd_round_sh","_mm_fnmadd_round_ss","_mm_fnmadd_sd","_mm_fnmadd_sh","_mm_fnmadd_ss","_mm_fnmsub_pd","_mm_fnmsub_ph","_mm_fnmsub_ps","_mm_fnmsub_round_sd","_mm_fnmsub_round_sh","_mm_fnmsub_round_ss","_mm_fnmsub_sd","_mm_fnmsub_sh","_mm_fnmsub_ss","_mm_fpclass_pd_mask","_mm_fpclass_ph_mask","_mm_fpclass_ps_mask","_mm_fpclass_sd_mask","_mm_fpclass_sh_mask","_mm_fpclass_ss_mask","_mm_getcsr","_mm_getexp_pd","_mm_getexp_ph","_mm_getexp_ps","_mm_getexp_round_sd","_mm_getexp_round_sh","_mm_getexp_round_ss","_mm_getexp_sd","_mm_getexp_sh","_mm_getexp_ss","_mm_getmant_pd","_mm_getmant_ph","_mm_getmant_ps","_mm_getmant_round_sd","_mm_getmant_round_sh","_mm_getmant_round_ss","_mm_getmant_sd","_mm_getmant_sh","_mm_getmant_ss","_mm_gf2p8affine_epi64_epi8","_mm_gf2p8affineinv_epi64_epi8","_mm_gf2p8mul_epi8","_mm_hadd_epi16","_mm_hadd_epi32","_mm_hadd_pd","_mm_hadd_ps","_mm_hadds_epi16","_mm_hsub_epi16","_mm_hsub_epi32","_mm_hsub_pd","_mm_hsub_ps","_mm_hsubs_epi16","_mm_i32gather_epi32","_mm_i32gather_epi64","_mm_i32gather_pd","_mm_i32gather_ps","_mm_i32scatter_epi32","_mm_i32scatter_epi64","_mm_i32scatter_pd","_mm_i32scatter_ps","_mm_i64gather_epi32","_mm_i64gather_epi64","_mm_i64gather_pd","_mm_i64gather_ps","_mm_i64scatter_epi32","_mm_i64scatter_epi64","_mm_i64scatter_pd","_mm_i64scatter_ps","_mm_insert_epi16","_mm_insert_epi32","_mm_insert_epi64","_mm_insert_epi8","_mm_insert_ps","_mm_insert_si64","_mm_inserti_si64","_mm_lddqu_si128","_mm_lfence","_mm_load1_pd","_mm_load1_ps","_mm_load_epi32","_mm_load_epi64","_mm_load_pd","_mm_load_pd1","_mm_load_ph","_mm_load_ps","_mm_load_ps1","_mm_load_sd","_mm_load_sh","_mm_load_si128","_mm_load_ss","_mm_loaddup_pd","_mm_loadh_pd","_mm_loadl_epi64","_mm_loadl_pd","_mm_loadr_pd","_mm_loadr_ps","_mm_loadu_epi16","_mm_loadu_epi32","_mm_loadu_epi64","_mm_loadu_epi8","_mm_loadu_pd","_mm_loadu_ph","_mm_loadu_ps","_mm_loadu_si128","_mm_loadu_si16","_mm_loadu_si32","_mm_loadu_si64","_mm_lzcnt_epi32","_mm_lzcnt_epi64","_mm_madd52hi_avx_epu64","_mm_madd52hi_epu64","_mm_madd52lo_avx_epu64","_mm_madd52lo_epu64","_mm_madd_epi16","_mm_maddubs_epi16","_mm_mask2_permutex2var_epi16","_mm_mask2_permutex2var_epi32","_mm_mask2_permutex2var_epi64","_mm_mask2_permutex2var_epi8","_mm_mask2_permutex2var_pd","_mm_mask2_permutex2var_ps","_mm_mask3_fcmadd_pch","_mm_mask3_fcmadd_round_sch","_mm_mask3_fcmadd_sch","_mm_mask3_fmadd_pch","_mm_mask3_fmadd_pd","_mm_mask3_fmadd_ph","_mm_mask3_fmadd_ps","_mm_mask3_fmadd_round_sch","_mm_mask3_fmadd_round_sd","_mm_mask3_fmadd_round_sh","_mm_mask3_fmadd_round_ss","_mm_mask3_fmadd_sch","_mm_mask3_fmadd_sd","_mm_mask3_fmadd_sh","_mm_mask3_fmadd_ss","_mm_mask3_fmaddsub_pd","_mm_mask3_fmaddsub_ph","_mm_mask3_fmaddsub_ps","_mm_mask3_fmsub_pd","_mm_mask3_fmsub_ph","_mm_mask3_fmsub_ps","_mm_mask3_fmsub_round_sd","_mm_mask3_fmsub_round_sh","_mm_mask3_fmsub_round_ss","_mm_mask3_fmsub_sd","_mm_mask3_fmsub_sh","_mm_mask3_fmsub_ss","_mm_mask3_fmsubadd_pd","_mm_mask3_fmsubadd_ph","_mm_mask3_fmsubadd_ps","_mm_mask3_fnmadd_pd","_mm_mask3_fnmadd_ph","_mm_mask3_fnmadd_ps","_mm_mask3_fnmadd_round_sd","_mm_mask3_fnmadd_round_sh","_mm_mask3_fnmadd_round_ss","_mm_mask3_fnmadd_sd","_mm_mask3_fnmadd_sh","_mm_mask3_fnmadd_ss","_mm_mask3_fnmsub_pd","_mm_mask3_fnmsub_ph","_mm_mask3_fnmsub_ps","_mm_mask3_fnmsub_round_sd","_mm_mask3_fnmsub_round_sh","_mm_mask3_fnmsub_round_ss","_mm_mask3_fnmsub_sd","_mm_mask3_fnmsub_sh","_mm_mask3_fnmsub_ss","_mm_mask_abs_epi16","_mm_mask_abs_epi32","_mm_mask_abs_epi64","_mm_mask_abs_epi8","_mm_mask_add_epi16","_mm_mask_add_epi32","_mm_mask_add_epi64","_mm_mask_add_epi8","_mm_mask_add_pd","_mm_mask_add_ph","_mm_mask_add_ps","_mm_mask_add_round_sd","_mm_mask_add_round_sh","_mm_mask_add_round_ss","_mm_mask_add_sd","_mm_mask_add_sh","_mm_mask_add_ss","_mm_mask_adds_epi16","_mm_mask_adds_epi8","_mm_mask_adds_epu16","_mm_mask_adds_epu8","_mm_mask_alignr_epi32","_mm_mask_alignr_epi64","_mm_mask_alignr_epi8","_mm_mask_and_epi32","_mm_mask_and_epi64","_mm_mask_and_pd","_mm_mask_and_ps","_mm_mask_andnot_epi32","_mm_mask_andnot_epi64","_mm_mask_andnot_pd","_mm_mask_andnot_ps","_mm_mask_avg_epu16","_mm_mask_avg_epu8","_mm_mask_bitshuffle_epi64_mask","_mm_mask_blend_epi16","_mm_mask_blend_epi32","_mm_mask_blend_epi64","_mm_mask_blend_epi8","_mm_mask_blend_pd","_mm_mask_blend_ph","_mm_mask_blend_ps","_mm_mask_broadcast_i32x2","_mm_mask_broadcastb_epi8","_mm_mask_broadcastd_epi32","_mm_mask_broadcastq_epi64","_mm_mask_broadcastss_ps","_mm_mask_broadcastw_epi16","_mm_mask_cmp_epi16_mask","_mm_mask_cmp_epi32_mask","_mm_mask_cmp_epi64_mask","_mm_mask_cmp_epi8_mask","_mm_mask_cmp_epu16_mask","_mm_mask_cmp_epu32_mask","_mm_mask_cmp_epu64_mask","_mm_mask_cmp_epu8_mask","_mm_mask_cmp_pd_mask","_mm_mask_cmp_ph_mask","_mm_mask_cmp_ps_mask","_mm_mask_cmp_round_sd_mask","_mm_mask_cmp_round_sh_mask","_mm_mask_cmp_round_ss_mask","_mm_mask_cmp_sd_mask","_mm_mask_cmp_sh_mask","_mm_mask_cmp_ss_mask","_mm_mask_cmpeq_epi16_mask","_mm_mask_cmpeq_epi32_mask","_mm_mask_cmpeq_epi64_mask","_mm_mask_cmpeq_epi8_mask","_mm_mask_cmpeq_epu16_mask","_mm_mask_cmpeq_epu32_mask","_mm_mask_cmpeq_epu64_mask","_mm_mask_cmpeq_epu8_mask","_mm_mask_cmpge_epi16_mask","_mm_mask_cmpge_epi32_mask","_mm_mask_cmpge_epi64_mask","_mm_mask_cmpge_epi8_mask","_mm_mask_cmpge_epu16_mask","_mm_mask_cmpge_epu32_mask","_mm_mask_cmpge_epu64_mask","_mm_mask_cmpge_epu8_mask","_mm_mask_cmpgt_epi16_mask","_mm_mask_cmpgt_epi32_mask","_mm_mask_cmpgt_epi64_mask","_mm_mask_cmpgt_epi8_mask","_mm_mask_cmpgt_epu16_mask","_mm_mask_cmpgt_epu32_mask","_mm_mask_cmpgt_epu64_mask","_mm_mask_cmpgt_epu8_mask","_mm_mask_cmple_epi16_mask","_mm_mask_cmple_epi32_mask","_mm_mask_cmple_epi64_mask","_mm_mask_cmple_epi8_mask","_mm_mask_cmple_epu16_mask","_mm_mask_cmple_epu32_mask","_mm_mask_cmple_epu64_mask","_mm_mask_cmple_epu8_mask","_mm_mask_cmplt_epi16_mask","_mm_mask_cmplt_epi32_mask","_mm_mask_cmplt_epi64_mask","_mm_mask_cmplt_epi8_mask","_mm_mask_cmplt_epu16_mask","_mm_mask_cmplt_epu32_mask","_mm_mask_cmplt_epu64_mask","_mm_mask_cmplt_epu8_mask","_mm_mask_cmpneq_epi16_mask","_mm_mask_cmpneq_epi32_mask","_mm_mask_cmpneq_epi64_mask","_mm_mask_cmpneq_epi8_mask","_mm_mask_cmpneq_epu16_mask","_mm_mask_cmpneq_epu32_mask","_mm_mask_cmpneq_epu64_mask","_mm_mask_cmpneq_epu8_mask","_mm_mask_cmul_pch","_mm_mask_cmul_round_sch","_mm_mask_cmul_sch","_mm_mask_compress_epi16","_mm_mask_compress_epi32","_mm_mask_compress_epi64","_mm_mask_compress_epi8","_mm_mask_compress_pd","_mm_mask_compress_ps","_mm_mask_compressstoreu_epi16","_mm_mask_compressstoreu_epi32","_mm_mask_compressstoreu_epi64","_mm_mask_compressstoreu_epi8","_mm_mask_compressstoreu_pd","_mm_mask_compressstoreu_ps","_mm_mask_conflict_epi32","_mm_mask_conflict_epi64","_mm_mask_conj_pch","_mm_mask_cvt_roundps_ph","_mm_mask_cvt_roundsd_sh","_mm_mask_cvt_roundsd_ss","_mm_mask_cvt_roundsh_sd","_mm_mask_cvt_roundsh_ss","_mm_mask_cvt_roundss_sd","_mm_mask_cvt_roundss_sh","_mm_mask_cvtepi16_epi32","_mm_mask_cvtepi16_epi64","_mm_mask_cvtepi16_epi8","_mm_mask_cvtepi16_ph","_mm_mask_cvtepi16_storeu_epi8","_mm_mask_cvtepi32_epi16","_mm_mask_cvtepi32_epi64","_mm_mask_cvtepi32_epi8","_mm_mask_cvtepi32_pd","_mm_mask_cvtepi32_ph","_mm_mask_cvtepi32_ps","_mm_mask_cvtepi32_storeu_epi16","_mm_mask_cvtepi32_storeu_epi8","_mm_mask_cvtepi64_epi16","_mm_mask_cvtepi64_epi32","_mm_mask_cvtepi64_epi8","_mm_mask_cvtepi64_pd","_mm_mask_cvtepi64_ph","_mm_mask_cvtepi64_ps","_mm_mask_cvtepi64_storeu_epi16","_mm_mask_cvtepi64_storeu_epi32","_mm_mask_cvtepi64_storeu_epi8","_mm_mask_cvtepi8_epi16","_mm_mask_cvtepi8_epi32","_mm_mask_cvtepi8_epi64","_mm_mask_cvtepu16_epi32","_mm_mask_cvtepu16_epi64","_mm_mask_cvtepu16_ph","_mm_mask_cvtepu32_epi64","_mm_mask_cvtepu32_pd","_mm_mask_cvtepu32_ph","_mm_mask_cvtepu64_pd","_mm_mask_cvtepu64_ph","_mm_mask_cvtepu64_ps","_mm_mask_cvtepu8_epi16","_mm_mask_cvtepu8_epi32","_mm_mask_cvtepu8_epi64","_mm_mask_cvtne2ps_pbh","_mm_mask_cvtneps_pbh","_mm_mask_cvtpbh_ps","_mm_mask_cvtpd_epi32","_mm_mask_cvtpd_epi64","_mm_mask_cvtpd_epu32","_mm_mask_cvtpd_epu64","_mm_mask_cvtpd_ph","_mm_mask_cvtpd_ps","_mm_mask_cvtph_epi16","_mm_mask_cvtph_epi32","_mm_mask_cvtph_epi64","_mm_mask_cvtph_epu16","_mm_mask_cvtph_epu32","_mm_mask_cvtph_epu64","_mm_mask_cvtph_pd","_mm_mask_cvtph_ps","_mm_mask_cvtps_epi32","_mm_mask_cvtps_epi64","_mm_mask_cvtps_epu32","_mm_mask_cvtps_epu64","_mm_mask_cvtps_ph","_mm_mask_cvtsd_sh","_mm_mask_cvtsd_ss","_mm_mask_cvtsepi16_epi8","_mm_mask_cvtsepi16_storeu_epi8","_mm_mask_cvtsepi32_epi16","_mm_mask_cvtsepi32_epi8","_mm_mask_cvtsepi32_storeu_epi16","_mm_mask_cvtsepi32_storeu_epi8","_mm_mask_cvtsepi64_epi16","_mm_mask_cvtsepi64_epi32","_mm_mask_cvtsepi64_epi8","_mm_mask_cvtsepi64_storeu_epi16","_mm_mask_cvtsepi64_storeu_epi32","_mm_mask_cvtsepi64_storeu_epi8","_mm_mask_cvtsh_sd","_mm_mask_cvtsh_ss","_mm_mask_cvtss_sd","_mm_mask_cvtss_sh","_mm_mask_cvttpd_epi32","_mm_mask_cvttpd_epi64","_mm_mask_cvttpd_epu32","_mm_mask_cvttpd_epu64","_mm_mask_cvttph_epi16","_mm_mask_cvttph_epi32","_mm_mask_cvttph_epi64","_mm_mask_cvttph_epu16","_mm_mask_cvttph_epu32","_mm_mask_cvttph_epu64","_mm_mask_cvttps_epi32","_mm_mask_cvttps_epi64","_mm_mask_cvttps_epu32","_mm_mask_cvttps_epu64","_mm_mask_cvtusepi16_epi8","_mm_mask_cvtusepi16_storeu_epi8","_mm_mask_cvtusepi32_epi16","_mm_mask_cvtusepi32_epi8","_mm_mask_cvtusepi32_storeu_epi16","_mm_mask_cvtusepi32_storeu_epi8","_mm_mask_cvtusepi64_epi16","_mm_mask_cvtusepi64_epi32","_mm_mask_cvtusepi64_epi8","_mm_mask_cvtusepi64_storeu_epi16","_mm_mask_cvtusepi64_storeu_epi32","_mm_mask_cvtusepi64_storeu_epi8","_mm_mask_cvtxph_ps","_mm_mask_cvtxps_ph","_mm_mask_dbsad_epu8","_mm_mask_div_pd","_mm_mask_div_ph","_mm_mask_div_ps","_mm_mask_div_round_sd","_mm_mask_div_round_sh","_mm_mask_div_round_ss","_mm_mask_div_sd","_mm_mask_div_sh","_mm_mask_div_ss","_mm_mask_dpbf16_ps","_mm_mask_dpbusd_epi32","_mm_mask_dpbusds_epi32","_mm_mask_dpwssd_epi32","_mm_mask_dpwssds_epi32","_mm_mask_expand_epi16","_mm_mask_expand_epi32","_mm_mask_expand_epi64","_mm_mask_expand_epi8","_mm_mask_expand_pd","_mm_mask_expand_ps","_mm_mask_expandloadu_epi16","_mm_mask_expandloadu_epi32","_mm_mask_expandloadu_epi64","_mm_mask_expandloadu_epi8","_mm_mask_expandloadu_pd","_mm_mask_expandloadu_ps","_mm_mask_fcmadd_pch","_mm_mask_fcmadd_round_sch","_mm_mask_fcmadd_sch","_mm_mask_fcmul_pch","_mm_mask_fcmul_round_sch","_mm_mask_fcmul_sch","_mm_mask_fixupimm_pd","_mm_mask_fixupimm_ps","_mm_mask_fixupimm_round_sd","_mm_mask_fixupimm_round_ss","_mm_mask_fixupimm_sd","_mm_mask_fixupimm_ss","_mm_mask_fmadd_pch","_mm_mask_fmadd_pd","_mm_mask_fmadd_ph","_mm_mask_fmadd_ps","_mm_mask_fmadd_round_sch","_mm_mask_fmadd_round_sd","_mm_mask_fmadd_round_sh","_mm_mask_fmadd_round_ss","_mm_mask_fmadd_sch","_mm_mask_fmadd_sd","_mm_mask_fmadd_sh","_mm_mask_fmadd_ss","_mm_mask_fmaddsub_pd","_mm_mask_fmaddsub_ph","_mm_mask_fmaddsub_ps","_mm_mask_fmsub_pd","_mm_mask_fmsub_ph","_mm_mask_fmsub_ps","_mm_mask_fmsub_round_sd","_mm_mask_fmsub_round_sh","_mm_mask_fmsub_round_ss","_mm_mask_fmsub_sd","_mm_mask_fmsub_sh","_mm_mask_fmsub_ss","_mm_mask_fmsubadd_pd","_mm_mask_fmsubadd_ph","_mm_mask_fmsubadd_ps","_mm_mask_fmul_pch","_mm_mask_fmul_round_sch","_mm_mask_fmul_sch","_mm_mask_fnmadd_pd","_mm_mask_fnmadd_ph","_mm_mask_fnmadd_ps","_mm_mask_fnmadd_round_sd","_mm_mask_fnmadd_round_sh","_mm_mask_fnmadd_round_ss","_mm_mask_fnmadd_sd","_mm_mask_fnmadd_sh","_mm_mask_fnmadd_ss","_mm_mask_fnmsub_pd","_mm_mask_fnmsub_ph","_mm_mask_fnmsub_ps","_mm_mask_fnmsub_round_sd","_mm_mask_fnmsub_round_sh","_mm_mask_fnmsub_round_ss","_mm_mask_fnmsub_sd","_mm_mask_fnmsub_sh","_mm_mask_fnmsub_ss","_mm_mask_fpclass_pd_mask","_mm_mask_fpclass_ph_mask","_mm_mask_fpclass_ps_mask","_mm_mask_fpclass_sd_mask","_mm_mask_fpclass_sh_mask","_mm_mask_fpclass_ss_mask","_mm_mask_getexp_pd","_mm_mask_getexp_ph","_mm_mask_getexp_ps","_mm_mask_getexp_round_sd","_mm_mask_getexp_round_sh","_mm_mask_getexp_round_ss","_mm_mask_getexp_sd","_mm_mask_getexp_sh","_mm_mask_getexp_ss","_mm_mask_getmant_pd","_mm_mask_getmant_ph","_mm_mask_getmant_ps","_mm_mask_getmant_round_sd","_mm_mask_getmant_round_sh","_mm_mask_getmant_round_ss","_mm_mask_getmant_sd","_mm_mask_getmant_sh","_mm_mask_getmant_ss","_mm_mask_gf2p8affine_epi64_epi8","_mm_mask_gf2p8affineinv_epi64_epi8","_mm_mask_gf2p8mul_epi8","_mm_mask_i32gather_epi32","_mm_mask_i32gather_epi64","_mm_mask_i32gather_pd","_mm_mask_i32gather_ps","_mm_mask_i32scatter_epi32","_mm_mask_i32scatter_epi64","_mm_mask_i32scatter_pd","_mm_mask_i32scatter_ps","_mm_mask_i64gather_epi32","_mm_mask_i64gather_epi64","_mm_mask_i64gather_pd","_mm_mask_i64gather_ps","_mm_mask_i64scatter_epi32","_mm_mask_i64scatter_epi64","_mm_mask_i64scatter_pd","_mm_mask_i64scatter_ps","_mm_mask_load_epi32","_mm_mask_load_epi64","_mm_mask_load_pd","_mm_mask_load_ps","_mm_mask_load_sd","_mm_mask_load_sh","_mm_mask_load_ss","_mm_mask_loadu_epi16","_mm_mask_loadu_epi32","_mm_mask_loadu_epi64","_mm_mask_loadu_epi8","_mm_mask_loadu_pd","_mm_mask_loadu_ps","_mm_mask_lzcnt_epi32","_mm_mask_lzcnt_epi64","_mm_mask_madd52hi_epu64","_mm_mask_madd52lo_epu64","_mm_mask_madd_epi16","_mm_mask_maddubs_epi16","_mm_mask_max_epi16","_mm_mask_max_epi32","_mm_mask_max_epi64","_mm_mask_max_epi8","_mm_mask_max_epu16","_mm_mask_max_epu32","_mm_mask_max_epu64","_mm_mask_max_epu8","_mm_mask_max_pd","_mm_mask_max_ph","_mm_mask_max_ps","_mm_mask_max_round_sd","_mm_mask_max_round_sh","_mm_mask_max_round_ss","_mm_mask_max_sd","_mm_mask_max_sh","_mm_mask_max_ss","_mm_mask_min_epi16","_mm_mask_min_epi32","_mm_mask_min_epi64","_mm_mask_min_epi8","_mm_mask_min_epu16","_mm_mask_min_epu32","_mm_mask_min_epu64","_mm_mask_min_epu8","_mm_mask_min_pd","_mm_mask_min_ph","_mm_mask_min_ps","_mm_mask_min_round_sd","_mm_mask_min_round_sh","_mm_mask_min_round_ss","_mm_mask_min_sd","_mm_mask_min_sh","_mm_mask_min_ss","_mm_mask_mov_epi16","_mm_mask_mov_epi32","_mm_mask_mov_epi64","_mm_mask_mov_epi8","_mm_mask_mov_pd","_mm_mask_mov_ps","_mm_mask_move_sd","_mm_mask_move_sh","_mm_mask_move_ss","_mm_mask_movedup_pd","_mm_mask_movehdup_ps","_mm_mask_moveldup_ps","_mm_mask_mul_epi32","_mm_mask_mul_epu32","_mm_mask_mul_pch","_mm_mask_mul_pd","_mm_mask_mul_ph","_mm_mask_mul_ps","_mm_mask_mul_round_sch","_mm_mask_mul_round_sd","_mm_mask_mul_round_sh","_mm_mask_mul_round_ss","_mm_mask_mul_sch","_mm_mask_mul_sd","_mm_mask_mul_sh","_mm_mask_mul_ss","_mm_mask_mulhi_epi16","_mm_mask_mulhi_epu16","_mm_mask_mulhrs_epi16","_mm_mask_mullo_epi16","_mm_mask_mullo_epi32","_mm_mask_mullo_epi64","_mm_mask_multishift_epi64_epi8","_mm_mask_or_epi32","_mm_mask_or_epi64","_mm_mask_or_pd","_mm_mask_or_ps","_mm_mask_packs_epi16","_mm_mask_packs_epi32","_mm_mask_packus_epi16","_mm_mask_packus_epi32","_mm_mask_permute_pd","_mm_mask_permute_ps","_mm_mask_permutevar_pd","_mm_mask_permutevar_ps","_mm_mask_permutex2var_epi16","_mm_mask_permutex2var_epi32","_mm_mask_permutex2var_epi64","_mm_mask_permutex2var_epi8","_mm_mask_permutex2var_pd","_mm_mask_permutex2var_ps","_mm_mask_permutexvar_epi16","_mm_mask_permutexvar_epi8","_mm_mask_popcnt_epi16","_mm_mask_popcnt_epi32","_mm_mask_popcnt_epi64","_mm_mask_popcnt_epi8","_mm_mask_range_pd","_mm_mask_range_ps","_mm_mask_range_round_sd","_mm_mask_range_round_ss","_mm_mask_range_sd","_mm_mask_range_ss","_mm_mask_rcp14_pd","_mm_mask_rcp14_ps","_mm_mask_rcp14_sd","_mm_mask_rcp14_ss","_mm_mask_rcp_ph","_mm_mask_rcp_sh","_mm_mask_reduce_add_epi16","_mm_mask_reduce_add_epi8","_mm_mask_reduce_and_epi16","_mm_mask_reduce_and_epi8","_mm_mask_reduce_max_epi16","_mm_mask_reduce_max_epi8","_mm_mask_reduce_max_epu16","_mm_mask_reduce_max_epu8","_mm_mask_reduce_min_epi16","_mm_mask_reduce_min_epi8","_mm_mask_reduce_min_epu16","_mm_mask_reduce_min_epu8","_mm_mask_reduce_mul_epi16","_mm_mask_reduce_mul_epi8","_mm_mask_reduce_or_epi16","_mm_mask_reduce_or_epi8","_mm_mask_reduce_pd","_mm_mask_reduce_ph","_mm_mask_reduce_ps","_mm_mask_reduce_round_sd","_mm_mask_reduce_round_sh","_mm_mask_reduce_round_ss","_mm_mask_reduce_sd","_mm_mask_reduce_sh","_mm_mask_reduce_ss","_mm_mask_rol_epi32","_mm_mask_rol_epi64","_mm_mask_rolv_epi32","_mm_mask_rolv_epi64","_mm_mask_ror_epi32","_mm_mask_ror_epi64","_mm_mask_rorv_epi32","_mm_mask_rorv_epi64","_mm_mask_roundscale_pd","_mm_mask_roundscale_ph","_mm_mask_roundscale_ps","_mm_mask_roundscale_round_sd","_mm_mask_roundscale_round_sh","_mm_mask_roundscale_round_ss","_mm_mask_roundscale_sd","_mm_mask_roundscale_sh","_mm_mask_roundscale_ss","_mm_mask_rsqrt14_pd","_mm_mask_rsqrt14_ps","_mm_mask_rsqrt14_sd","_mm_mask_rsqrt14_ss","_mm_mask_rsqrt_ph","_mm_mask_rsqrt_sh","_mm_mask_scalef_pd","_mm_mask_scalef_ph","_mm_mask_scalef_ps","_mm_mask_scalef_round_sd","_mm_mask_scalef_round_sh","_mm_mask_scalef_round_ss","_mm_mask_scalef_sd","_mm_mask_scalef_sh","_mm_mask_scalef_ss","_mm_mask_set1_epi16","_mm_mask_set1_epi32","_mm_mask_set1_epi64","_mm_mask_set1_epi8","_mm_mask_shldi_epi16","_mm_mask_shldi_epi32","_mm_mask_shldi_epi64","_mm_mask_shldv_epi16","_mm_mask_shldv_epi32","_mm_mask_shldv_epi64","_mm_mask_shrdi_epi16","_mm_mask_shrdi_epi32","_mm_mask_shrdi_epi64","_mm_mask_shrdv_epi16","_mm_mask_shrdv_epi32","_mm_mask_shrdv_epi64","_mm_mask_shuffle_epi32","_mm_mask_shuffle_epi8","_mm_mask_shuffle_pd","_mm_mask_shuffle_ps","_mm_mask_shufflehi_epi16","_mm_mask_shufflelo_epi16","_mm_mask_sll_epi16","_mm_mask_sll_epi32","_mm_mask_sll_epi64","_mm_mask_slli_epi16","_mm_mask_slli_epi32","_mm_mask_slli_epi64","_mm_mask_sllv_epi16","_mm_mask_sllv_epi32","_mm_mask_sllv_epi64","_mm_mask_sqrt_pd","_mm_mask_sqrt_ph","_mm_mask_sqrt_ps","_mm_mask_sqrt_round_sd","_mm_mask_sqrt_round_sh","_mm_mask_sqrt_round_ss","_mm_mask_sqrt_sd","_mm_mask_sqrt_sh","_mm_mask_sqrt_ss","_mm_mask_sra_epi16","_mm_mask_sra_epi32","_mm_mask_sra_epi64","_mm_mask_srai_epi16","_mm_mask_srai_epi32","_mm_mask_srai_epi64","_mm_mask_srav_epi16","_mm_mask_srav_epi32","_mm_mask_srav_epi64","_mm_mask_srl_epi16","_mm_mask_srl_epi32","_mm_mask_srl_epi64","_mm_mask_srli_epi16","_mm_mask_srli_epi32","_mm_mask_srli_epi64","_mm_mask_srlv_epi16","_mm_mask_srlv_epi32","_mm_mask_srlv_epi64","_mm_mask_store_epi32","_mm_mask_store_epi64","_mm_mask_store_pd","_mm_mask_store_ps","_mm_mask_store_sd","_mm_mask_store_sh","_mm_mask_store_ss","_mm_mask_storeu_epi16","_mm_mask_storeu_epi32","_mm_mask_storeu_epi64","_mm_mask_storeu_epi8","_mm_mask_storeu_pd","_mm_mask_storeu_ps","_mm_mask_sub_epi16","_mm_mask_sub_epi32","_mm_mask_sub_epi64","_mm_mask_sub_epi8","_mm_mask_sub_pd","_mm_mask_sub_ph","_mm_mask_sub_ps","_mm_mask_sub_round_sd","_mm_mask_sub_round_sh","_mm_mask_sub_round_ss","_mm_mask_sub_sd","_mm_mask_sub_sh","_mm_mask_sub_ss","_mm_mask_subs_epi16","_mm_mask_subs_epi8","_mm_mask_subs_epu16","_mm_mask_subs_epu8","_mm_mask_ternarylogic_epi32","_mm_mask_ternarylogic_epi64","_mm_mask_test_epi16_mask","_mm_mask_test_epi32_mask","_mm_mask_test_epi64_mask","_mm_mask_test_epi8_mask","_mm_mask_testn_epi16_mask","_mm_mask_testn_epi32_mask","_mm_mask_testn_epi64_mask","_mm_mask_testn_epi8_mask","_mm_mask_unpackhi_epi16","_mm_mask_unpackhi_epi32","_mm_mask_unpackhi_epi64","_mm_mask_unpackhi_epi8","_mm_mask_unpackhi_pd","_mm_mask_unpackhi_ps","_mm_mask_unpacklo_epi16","_mm_mask_unpacklo_epi32","_mm_mask_unpacklo_epi64","_mm_mask_unpacklo_epi8","_mm_mask_unpacklo_pd","_mm_mask_unpacklo_ps","_mm_mask_xor_epi32","_mm_mask_xor_epi64","_mm_mask_xor_pd","_mm_mask_xor_ps","_mm_maskload_epi32","_mm_maskload_epi64","_mm_maskload_pd","_mm_maskload_ps","_mm_maskmoveu_si128","_mm_maskstore_epi32","_mm_maskstore_epi64","_mm_maskstore_pd","_mm_maskstore_ps","_mm_maskz_abs_epi16","_mm_maskz_abs_epi32","_mm_maskz_abs_epi64","_mm_maskz_abs_epi8","_mm_maskz_add_epi16","_mm_maskz_add_epi32","_mm_maskz_add_epi64","_mm_maskz_add_epi8","_mm_maskz_add_pd","_mm_maskz_add_ph","_mm_maskz_add_ps","_mm_maskz_add_round_sd","_mm_maskz_add_round_sh","_mm_maskz_add_round_ss","_mm_maskz_add_sd","_mm_maskz_add_sh","_mm_maskz_add_ss","_mm_maskz_adds_epi16","_mm_maskz_adds_epi8","_mm_maskz_adds_epu16","_mm_maskz_adds_epu8","_mm_maskz_alignr_epi32","_mm_maskz_alignr_epi64","_mm_maskz_alignr_epi8","_mm_maskz_and_epi32","_mm_maskz_and_epi64","_mm_maskz_and_pd","_mm_maskz_and_ps","_mm_maskz_andnot_epi32","_mm_maskz_andnot_epi64","_mm_maskz_andnot_pd","_mm_maskz_andnot_ps","_mm_maskz_avg_epu16","_mm_maskz_avg_epu8","_mm_maskz_broadcast_i32x2","_mm_maskz_broadcastb_epi8","_mm_maskz_broadcastd_epi32","_mm_maskz_broadcastq_epi64","_mm_maskz_broadcastss_ps","_mm_maskz_broadcastw_epi16","_mm_maskz_cmul_pch","_mm_maskz_cmul_round_sch","_mm_maskz_cmul_sch","_mm_maskz_compress_epi16","_mm_maskz_compress_epi32","_mm_maskz_compress_epi64","_mm_maskz_compress_epi8","_mm_maskz_compress_pd","_mm_maskz_compress_ps","_mm_maskz_conflict_epi32","_mm_maskz_conflict_epi64","_mm_maskz_conj_pch","_mm_maskz_cvt_roundps_ph","_mm_maskz_cvt_roundsd_sh","_mm_maskz_cvt_roundsd_ss","_mm_maskz_cvt_roundsh_sd","_mm_maskz_cvt_roundsh_ss","_mm_maskz_cvt_roundss_sd","_mm_maskz_cvt_roundss_sh","_mm_maskz_cvtepi16_epi32","_mm_maskz_cvtepi16_epi64","_mm_maskz_cvtepi16_epi8","_mm_maskz_cvtepi16_ph","_mm_maskz_cvtepi32_epi16","_mm_maskz_cvtepi32_epi64","_mm_maskz_cvtepi32_epi8","_mm_maskz_cvtepi32_pd","_mm_maskz_cvtepi32_ph","_mm_maskz_cvtepi32_ps","_mm_maskz_cvtepi64_epi16","_mm_maskz_cvtepi64_epi32","_mm_maskz_cvtepi64_epi8","_mm_maskz_cvtepi64_pd","_mm_maskz_cvtepi64_ph","_mm_maskz_cvtepi64_ps","_mm_maskz_cvtepi8_epi16","_mm_maskz_cvtepi8_epi32","_mm_maskz_cvtepi8_epi64","_mm_maskz_cvtepu16_epi32","_mm_maskz_cvtepu16_epi64","_mm_maskz_cvtepu16_ph","_mm_maskz_cvtepu32_epi64","_mm_maskz_cvtepu32_pd","_mm_maskz_cvtepu32_ph","_mm_maskz_cvtepu64_pd","_mm_maskz_cvtepu64_ph","_mm_maskz_cvtepu64_ps","_mm_maskz_cvtepu8_epi16","_mm_maskz_cvtepu8_epi32","_mm_maskz_cvtepu8_epi64","_mm_maskz_cvtne2ps_pbh","_mm_maskz_cvtneps_pbh","_mm_maskz_cvtpbh_ps","_mm_maskz_cvtpd_epi32","_mm_maskz_cvtpd_epi64","_mm_maskz_cvtpd_epu32","_mm_maskz_cvtpd_epu64","_mm_maskz_cvtpd_ph","_mm_maskz_cvtpd_ps","_mm_maskz_cvtph_epi16","_mm_maskz_cvtph_epi32","_mm_maskz_cvtph_epi64","_mm_maskz_cvtph_epu16","_mm_maskz_cvtph_epu32","_mm_maskz_cvtph_epu64","_mm_maskz_cvtph_pd","_mm_maskz_cvtph_ps","_mm_maskz_cvtps_epi32","_mm_maskz_cvtps_epi64","_mm_maskz_cvtps_epu32","_mm_maskz_cvtps_epu64","_mm_maskz_cvtps_ph","_mm_maskz_cvtsd_sh","_mm_maskz_cvtsd_ss","_mm_maskz_cvtsepi16_epi8","_mm_maskz_cvtsepi32_epi16","_mm_maskz_cvtsepi32_epi8","_mm_maskz_cvtsepi64_epi16","_mm_maskz_cvtsepi64_epi32","_mm_maskz_cvtsepi64_epi8","_mm_maskz_cvtsh_sd","_mm_maskz_cvtsh_ss","_mm_maskz_cvtss_sd","_mm_maskz_cvtss_sh","_mm_maskz_cvttpd_epi32","_mm_maskz_cvttpd_epi64","_mm_maskz_cvttpd_epu32","_mm_maskz_cvttpd_epu64","_mm_maskz_cvttph_epi16","_mm_maskz_cvttph_epi32","_mm_maskz_cvttph_epi64","_mm_maskz_cvttph_epu16","_mm_maskz_cvttph_epu32","_mm_maskz_cvttph_epu64","_mm_maskz_cvttps_epi32","_mm_maskz_cvttps_epi64","_mm_maskz_cvttps_epu32","_mm_maskz_cvttps_epu64","_mm_maskz_cvtusepi16_epi8","_mm_maskz_cvtusepi32_epi16","_mm_maskz_cvtusepi32_epi8","_mm_maskz_cvtusepi64_epi16","_mm_maskz_cvtusepi64_epi32","_mm_maskz_cvtusepi64_epi8","_mm_maskz_cvtxph_ps","_mm_maskz_cvtxps_ph","_mm_maskz_dbsad_epu8","_mm_maskz_div_pd","_mm_maskz_div_ph","_mm_maskz_div_ps","_mm_maskz_div_round_sd","_mm_maskz_div_round_sh","_mm_maskz_div_round_ss","_mm_maskz_div_sd","_mm_maskz_div_sh","_mm_maskz_div_ss","_mm_maskz_dpbf16_ps","_mm_maskz_dpbusd_epi32","_mm_maskz_dpbusds_epi32","_mm_maskz_dpwssd_epi32","_mm_maskz_dpwssds_epi32","_mm_maskz_expand_epi16","_mm_maskz_expand_epi32","_mm_maskz_expand_epi64","_mm_maskz_expand_epi8","_mm_maskz_expand_pd","_mm_maskz_expand_ps","_mm_maskz_expandloadu_epi16","_mm_maskz_expandloadu_epi32","_mm_maskz_expandloadu_epi64","_mm_maskz_expandloadu_epi8","_mm_maskz_expandloadu_pd","_mm_maskz_expandloadu_ps","_mm_maskz_fcmadd_pch","_mm_maskz_fcmadd_round_sch","_mm_maskz_fcmadd_sch","_mm_maskz_fcmul_pch","_mm_maskz_fcmul_round_sch","_mm_maskz_fcmul_sch","_mm_maskz_fixupimm_pd","_mm_maskz_fixupimm_ps","_mm_maskz_fixupimm_round_sd","_mm_maskz_fixupimm_round_ss","_mm_maskz_fixupimm_sd","_mm_maskz_fixupimm_ss","_mm_maskz_fmadd_pch","_mm_maskz_fmadd_pd","_mm_maskz_fmadd_ph","_mm_maskz_fmadd_ps","_mm_maskz_fmadd_round_sch","_mm_maskz_fmadd_round_sd","_mm_maskz_fmadd_round_sh","_mm_maskz_fmadd_round_ss","_mm_maskz_fmadd_sch","_mm_maskz_fmadd_sd","_mm_maskz_fmadd_sh","_mm_maskz_fmadd_ss","_mm_maskz_fmaddsub_pd","_mm_maskz_fmaddsub_ph","_mm_maskz_fmaddsub_ps","_mm_maskz_fmsub_pd","_mm_maskz_fmsub_ph","_mm_maskz_fmsub_ps","_mm_maskz_fmsub_round_sd","_mm_maskz_fmsub_round_sh","_mm_maskz_fmsub_round_ss","_mm_maskz_fmsub_sd","_mm_maskz_fmsub_sh","_mm_maskz_fmsub_ss","_mm_maskz_fmsubadd_pd","_mm_maskz_fmsubadd_ph","_mm_maskz_fmsubadd_ps","_mm_maskz_fmul_pch","_mm_maskz_fmul_round_sch","_mm_maskz_fmul_sch","_mm_maskz_fnmadd_pd","_mm_maskz_fnmadd_ph","_mm_maskz_fnmadd_ps","_mm_maskz_fnmadd_round_sd","_mm_maskz_fnmadd_round_sh","_mm_maskz_fnmadd_round_ss","_mm_maskz_fnmadd_sd","_mm_maskz_fnmadd_sh","_mm_maskz_fnmadd_ss","_mm_maskz_fnmsub_pd","_mm_maskz_fnmsub_ph","_mm_maskz_fnmsub_ps","_mm_maskz_fnmsub_round_sd","_mm_maskz_fnmsub_round_sh","_mm_maskz_fnmsub_round_ss","_mm_maskz_fnmsub_sd","_mm_maskz_fnmsub_sh","_mm_maskz_fnmsub_ss","_mm_maskz_getexp_pd","_mm_maskz_getexp_ph","_mm_maskz_getexp_ps","_mm_maskz_getexp_round_sd","_mm_maskz_getexp_round_sh","_mm_maskz_getexp_round_ss","_mm_maskz_getexp_sd","_mm_maskz_getexp_sh","_mm_maskz_getexp_ss","_mm_maskz_getmant_pd","_mm_maskz_getmant_ph","_mm_maskz_getmant_ps","_mm_maskz_getmant_round_sd","_mm_maskz_getmant_round_sh","_mm_maskz_getmant_round_ss","_mm_maskz_getmant_sd","_mm_maskz_getmant_sh","_mm_maskz_getmant_ss","_mm_maskz_gf2p8affine_epi64_epi8","_mm_maskz_gf2p8affineinv_epi64_epi8","_mm_maskz_gf2p8mul_epi8","_mm_maskz_load_epi32","_mm_maskz_load_epi64","_mm_maskz_load_pd","_mm_maskz_load_ps","_mm_maskz_load_sd","_mm_maskz_load_sh","_mm_maskz_load_ss","_mm_maskz_loadu_epi16","_mm_maskz_loadu_epi32","_mm_maskz_loadu_epi64","_mm_maskz_loadu_epi8","_mm_maskz_loadu_pd","_mm_maskz_loadu_ps","_mm_maskz_lzcnt_epi32","_mm_maskz_lzcnt_epi64","_mm_maskz_madd52hi_epu64","_mm_maskz_madd52lo_epu64","_mm_maskz_madd_epi16","_mm_maskz_maddubs_epi16","_mm_maskz_max_epi16","_mm_maskz_max_epi32","_mm_maskz_max_epi64","_mm_maskz_max_epi8","_mm_maskz_max_epu16","_mm_maskz_max_epu32","_mm_maskz_max_epu64","_mm_maskz_max_epu8","_mm_maskz_max_pd","_mm_maskz_max_ph","_mm_maskz_max_ps","_mm_maskz_max_round_sd","_mm_maskz_max_round_sh","_mm_maskz_max_round_ss","_mm_maskz_max_sd","_mm_maskz_max_sh","_mm_maskz_max_ss","_mm_maskz_min_epi16","_mm_maskz_min_epi32","_mm_maskz_min_epi64","_mm_maskz_min_epi8","_mm_maskz_min_epu16","_mm_maskz_min_epu32","_mm_maskz_min_epu64","_mm_maskz_min_epu8","_mm_maskz_min_pd","_mm_maskz_min_ph","_mm_maskz_min_ps","_mm_maskz_min_round_sd","_mm_maskz_min_round_sh","_mm_maskz_min_round_ss","_mm_maskz_min_sd","_mm_maskz_min_sh","_mm_maskz_min_ss","_mm_maskz_mov_epi16","_mm_maskz_mov_epi32","_mm_maskz_mov_epi64","_mm_maskz_mov_epi8","_mm_maskz_mov_pd","_mm_maskz_mov_ps","_mm_maskz_move_sd","_mm_maskz_move_sh","_mm_maskz_move_ss","_mm_maskz_movedup_pd","_mm_maskz_movehdup_ps","_mm_maskz_moveldup_ps","_mm_maskz_mul_epi32","_mm_maskz_mul_epu32","_mm_maskz_mul_pch","_mm_maskz_mul_pd","_mm_maskz_mul_ph","_mm_maskz_mul_ps","_mm_maskz_mul_round_sch","_mm_maskz_mul_round_sd","_mm_maskz_mul_round_sh","_mm_maskz_mul_round_ss","_mm_maskz_mul_sch","_mm_maskz_mul_sd","_mm_maskz_mul_sh","_mm_maskz_mul_ss","_mm_maskz_mulhi_epi16","_mm_maskz_mulhi_epu16","_mm_maskz_mulhrs_epi16","_mm_maskz_mullo_epi16","_mm_maskz_mullo_epi32","_mm_maskz_mullo_epi64","_mm_maskz_multishift_epi64_epi8","_mm_maskz_or_epi32","_mm_maskz_or_epi64","_mm_maskz_or_pd","_mm_maskz_or_ps","_mm_maskz_packs_epi16","_mm_maskz_packs_epi32","_mm_maskz_packus_epi16","_mm_maskz_packus_epi32","_mm_maskz_permute_pd","_mm_maskz_permute_ps","_mm_maskz_permutevar_pd","_mm_maskz_permutevar_ps","_mm_maskz_permutex2var_epi16","_mm_maskz_permutex2var_epi32","_mm_maskz_permutex2var_epi64","_mm_maskz_permutex2var_epi8","_mm_maskz_permutex2var_pd","_mm_maskz_permutex2var_ps","_mm_maskz_permutexvar_epi16","_mm_maskz_permutexvar_epi8","_mm_maskz_popcnt_epi16","_mm_maskz_popcnt_epi32","_mm_maskz_popcnt_epi64","_mm_maskz_popcnt_epi8","_mm_maskz_range_pd","_mm_maskz_range_ps","_mm_maskz_range_round_sd","_mm_maskz_range_round_ss","_mm_maskz_range_sd","_mm_maskz_range_ss","_mm_maskz_rcp14_pd","_mm_maskz_rcp14_ps","_mm_maskz_rcp14_sd","_mm_maskz_rcp14_ss","_mm_maskz_rcp_ph","_mm_maskz_rcp_sh","_mm_maskz_reduce_pd","_mm_maskz_reduce_ph","_mm_maskz_reduce_ps","_mm_maskz_reduce_round_sd","_mm_maskz_reduce_round_sh","_mm_maskz_reduce_round_ss","_mm_maskz_reduce_sd","_mm_maskz_reduce_sh","_mm_maskz_reduce_ss","_mm_maskz_rol_epi32","_mm_maskz_rol_epi64","_mm_maskz_rolv_epi32","_mm_maskz_rolv_epi64","_mm_maskz_ror_epi32","_mm_maskz_ror_epi64","_mm_maskz_rorv_epi32","_mm_maskz_rorv_epi64","_mm_maskz_roundscale_pd","_mm_maskz_roundscale_ph","_mm_maskz_roundscale_ps","_mm_maskz_roundscale_round_sd","_mm_maskz_roundscale_round_sh","_mm_maskz_roundscale_round_ss","_mm_maskz_roundscale_sd","_mm_maskz_roundscale_sh","_mm_maskz_roundscale_ss","_mm_maskz_rsqrt14_pd","_mm_maskz_rsqrt14_ps","_mm_maskz_rsqrt14_sd","_mm_maskz_rsqrt14_ss","_mm_maskz_rsqrt_ph","_mm_maskz_rsqrt_sh","_mm_maskz_scalef_pd","_mm_maskz_scalef_ph","_mm_maskz_scalef_ps","_mm_maskz_scalef_round_sd","_mm_maskz_scalef_round_sh","_mm_maskz_scalef_round_ss","_mm_maskz_scalef_sd","_mm_maskz_scalef_sh","_mm_maskz_scalef_ss","_mm_maskz_set1_epi16","_mm_maskz_set1_epi32","_mm_maskz_set1_epi64","_mm_maskz_set1_epi8","_mm_maskz_shldi_epi16","_mm_maskz_shldi_epi32","_mm_maskz_shldi_epi64","_mm_maskz_shldv_epi16","_mm_maskz_shldv_epi32","_mm_maskz_shldv_epi64","_mm_maskz_shrdi_epi16","_mm_maskz_shrdi_epi32","_mm_maskz_shrdi_epi64","_mm_maskz_shrdv_epi16","_mm_maskz_shrdv_epi32","_mm_maskz_shrdv_epi64","_mm_maskz_shuffle_epi32","_mm_maskz_shuffle_epi8","_mm_maskz_shuffle_pd","_mm_maskz_shuffle_ps","_mm_maskz_shufflehi_epi16","_mm_maskz_shufflelo_epi16","_mm_maskz_sll_epi16","_mm_maskz_sll_epi32","_mm_maskz_sll_epi64","_mm_maskz_slli_epi16","_mm_maskz_slli_epi32","_mm_maskz_slli_epi64","_mm_maskz_sllv_epi16","_mm_maskz_sllv_epi32","_mm_maskz_sllv_epi64","_mm_maskz_sqrt_pd","_mm_maskz_sqrt_ph","_mm_maskz_sqrt_ps","_mm_maskz_sqrt_round_sd","_mm_maskz_sqrt_round_sh","_mm_maskz_sqrt_round_ss","_mm_maskz_sqrt_sd","_mm_maskz_sqrt_sh","_mm_maskz_sqrt_ss","_mm_maskz_sra_epi16","_mm_maskz_sra_epi32","_mm_maskz_sra_epi64","_mm_maskz_srai_epi16","_mm_maskz_srai_epi32","_mm_maskz_srai_epi64","_mm_maskz_srav_epi16","_mm_maskz_srav_epi32","_mm_maskz_srav_epi64","_mm_maskz_srl_epi16","_mm_maskz_srl_epi32","_mm_maskz_srl_epi64","_mm_maskz_srli_epi16","_mm_maskz_srli_epi32","_mm_maskz_srli_epi64","_mm_maskz_srlv_epi16","_mm_maskz_srlv_epi32","_mm_maskz_srlv_epi64","_mm_maskz_sub_epi16","_mm_maskz_sub_epi32","_mm_maskz_sub_epi64","_mm_maskz_sub_epi8","_mm_maskz_sub_pd","_mm_maskz_sub_ph","_mm_maskz_sub_ps","_mm_maskz_sub_round_sd","_mm_maskz_sub_round_sh","_mm_maskz_sub_round_ss","_mm_maskz_sub_sd","_mm_maskz_sub_sh","_mm_maskz_sub_ss","_mm_maskz_subs_epi16","_mm_maskz_subs_epi8","_mm_maskz_subs_epu16","_mm_maskz_subs_epu8","_mm_maskz_ternarylogic_epi32","_mm_maskz_ternarylogic_epi64","_mm_maskz_unpackhi_epi16","_mm_maskz_unpackhi_epi32","_mm_maskz_unpackhi_epi64","_mm_maskz_unpackhi_epi8","_mm_maskz_unpackhi_pd","_mm_maskz_unpackhi_ps","_mm_maskz_unpacklo_epi16","_mm_maskz_unpacklo_epi32","_mm_maskz_unpacklo_epi64","_mm_maskz_unpacklo_epi8","_mm_maskz_unpacklo_pd","_mm_maskz_unpacklo_ps","_mm_maskz_xor_epi32","_mm_maskz_xor_epi64","_mm_maskz_xor_pd","_mm_maskz_xor_ps","_mm_max_epi16","_mm_max_epi32","_mm_max_epi64","_mm_max_epi8","_mm_max_epu16","_mm_max_epu32","_mm_max_epu64","_mm_max_epu8","_mm_max_pd","_mm_max_ph","_mm_max_ps","_mm_max_round_sd","_mm_max_round_sh","_mm_max_round_ss","_mm_max_sd","_mm_max_sh","_mm_max_ss","_mm_mfence","_mm_min_epi16","_mm_min_epi32","_mm_min_epi64","_mm_min_epi8","_mm_min_epu16","_mm_min_epu32","_mm_min_epu64","_mm_min_epu8","_mm_min_pd","_mm_min_ph","_mm_min_ps","_mm_min_round_sd","_mm_min_round_sh","_mm_min_round_ss","_mm_min_sd","_mm_min_sh","_mm_min_ss","_mm_minpos_epu16","_mm_mmask_i32gather_epi32","_mm_mmask_i32gather_epi64","_mm_mmask_i32gather_pd","_mm_mmask_i32gather_ps","_mm_mmask_i64gather_epi32","_mm_mmask_i64gather_epi64","_mm_mmask_i64gather_pd","_mm_mmask_i64gather_ps","_mm_move_epi64","_mm_move_sd","_mm_move_sh","_mm_move_ss","_mm_movedup_pd","_mm_movehdup_ps","_mm_movehl_ps","_mm_moveldup_ps","_mm_movelh_ps","_mm_movemask_epi8","_mm_movemask_pd","_mm_movemask_ps","_mm_movepi16_mask","_mm_movepi32_mask","_mm_movepi64_mask","_mm_movepi8_mask","_mm_movm_epi16","_mm_movm_epi32","_mm_movm_epi64","_mm_movm_epi8","_mm_mpsadbw_epu8","_mm_mul_epi32","_mm_mul_epu32","_mm_mul_pch","_mm_mul_pd","_mm_mul_ph","_mm_mul_ps","_mm_mul_round_sch","_mm_mul_round_sd","_mm_mul_round_sh","_mm_mul_round_ss","_mm_mul_sch","_mm_mul_sd","_mm_mul_sh","_mm_mul_ss","_mm_mulhi_epi16","_mm_mulhi_epu16","_mm_mulhrs_epi16","_mm_mullo_epi16","_mm_mullo_epi32","_mm_mullo_epi64","_mm_multishift_epi64_epi8","_mm_or_epi32","_mm_or_epi64","_mm_or_pd","_mm_or_ps","_mm_or_si128","_mm_packs_epi16","_mm_packs_epi32","_mm_packus_epi16","_mm_packus_epi32","_mm_pause","_mm_permute_pd","_mm_permute_ps","_mm_permutevar_pd","_mm_permutevar_ps","_mm_permutex2var_epi16","_mm_permutex2var_epi32","_mm_permutex2var_epi64","_mm_permutex2var_epi8","_mm_permutex2var_pd","_mm_permutex2var_ph","_mm_permutex2var_ps","_mm_permutexvar_epi16","_mm_permutexvar_epi8","_mm_permutexvar_ph","_mm_popcnt_epi16","_mm_popcnt_epi32","_mm_popcnt_epi64","_mm_popcnt_epi8","_mm_prefetch","_mm_range_pd","_mm_range_ps","_mm_range_round_sd","_mm_range_round_ss","_mm_rcp14_pd","_mm_rcp14_ps","_mm_rcp14_sd","_mm_rcp14_ss","_mm_rcp_ph","_mm_rcp_ps","_mm_rcp_sh","_mm_rcp_ss","_mm_reduce_add_epi16","_mm_reduce_add_epi8","_mm_reduce_add_ph","_mm_reduce_and_epi16","_mm_reduce_and_epi8","_mm_reduce_max_epi16","_mm_reduce_max_epi8","_mm_reduce_max_epu16","_mm_reduce_max_epu8","_mm_reduce_max_ph","_mm_reduce_min_epi16","_mm_reduce_min_epi8","_mm_reduce_min_epu16","_mm_reduce_min_epu8","_mm_reduce_min_ph","_mm_reduce_mul_epi16","_mm_reduce_mul_epi8","_mm_reduce_mul_ph","_mm_reduce_or_epi16","_mm_reduce_or_epi8","_mm_reduce_pd","_mm_reduce_ph","_mm_reduce_ps","_mm_reduce_round_sd","_mm_reduce_round_sh","_mm_reduce_round_ss","_mm_reduce_sd","_mm_reduce_sh","_mm_reduce_ss","_mm_rol_epi32","_mm_rol_epi64","_mm_rolv_epi32","_mm_rolv_epi64","_mm_ror_epi32","_mm_ror_epi64","_mm_rorv_epi32","_mm_rorv_epi64","_mm_round_pd","_mm_round_ps","_mm_round_sd","_mm_round_ss","_mm_roundscale_pd","_mm_roundscale_ph","_mm_roundscale_ps","_mm_roundscale_round_sd","_mm_roundscale_round_sh","_mm_roundscale_round_ss","_mm_roundscale_sd","_mm_roundscale_sh","_mm_roundscale_ss","_mm_rsqrt14_pd","_mm_rsqrt14_ps","_mm_rsqrt14_sd","_mm_rsqrt14_ss","_mm_rsqrt_ph","_mm_rsqrt_ps","_mm_rsqrt_sh","_mm_rsqrt_ss","_mm_sad_epu8","_mm_scalef_pd","_mm_scalef_ph","_mm_scalef_ps","_mm_scalef_round_sd","_mm_scalef_round_sh","_mm_scalef_round_ss","_mm_scalef_sd","_mm_scalef_sh","_mm_scalef_ss","_mm_set1_epi16","_mm_set1_epi32","_mm_set1_epi64x","_mm_set1_epi8","_mm_set1_pd","_mm_set1_ph","_mm_set1_ps","_mm_set_epi16","_mm_set_epi32","_mm_set_epi64x","_mm_set_epi8","_mm_set_pd","_mm_set_pd1","_mm_set_ph","_mm_set_ps","_mm_set_ps1","_mm_set_sd","_mm_set_sh","_mm_set_ss","_mm_setcsr","_mm_setr_epi16","_mm_setr_epi32","_mm_setr_epi8","_mm_setr_pd","_mm_setr_ph","_mm_setr_ps","_mm_setzero_pd","_mm_setzero_ph","_mm_setzero_ps","_mm_setzero_si128","_mm_sfence","_mm_sha1msg1_epu32","_mm_sha1msg2_epu32","_mm_sha1nexte_epu32","_mm_sha1rnds4_epu32","_mm_sha256msg1_epu32","_mm_sha256msg2_epu32","_mm_sha256rnds2_epu32","_mm_shldi_epi16","_mm_shldi_epi32","_mm_shldi_epi64","_mm_shldv_epi16","_mm_shldv_epi32","_mm_shldv_epi64","_mm_shrdi_epi16","_mm_shrdi_epi32","_mm_shrdi_epi64","_mm_shrdv_epi16","_mm_shrdv_epi32","_mm_shrdv_epi64","_mm_shuffle_epi32","_mm_shuffle_epi8","_mm_shuffle_pd","_mm_shuffle_ps","_mm_shufflehi_epi16","_mm_shufflelo_epi16","_mm_sign_epi16","_mm_sign_epi32","_mm_sign_epi8","_mm_sll_epi16","_mm_sll_epi32","_mm_sll_epi64","_mm_slli_epi16","_mm_slli_epi32","_mm_slli_epi64","_mm_slli_si128","_mm_sllv_epi16","_mm_sllv_epi32","_mm_sllv_epi64","_mm_sqrt_pd","_mm_sqrt_ph","_mm_sqrt_ps","_mm_sqrt_round_sd","_mm_sqrt_round_sh","_mm_sqrt_round_ss","_mm_sqrt_sd","_mm_sqrt_sh","_mm_sqrt_ss","_mm_sra_epi16","_mm_sra_epi32","_mm_sra_epi64","_mm_srai_epi16","_mm_srai_epi32","_mm_srai_epi64","_mm_srav_epi16","_mm_srav_epi32","_mm_srav_epi64","_mm_srl_epi16","_mm_srl_epi32","_mm_srl_epi64","_mm_srli_epi16","_mm_srli_epi32","_mm_srli_epi64","_mm_srli_si128","_mm_srlv_epi16","_mm_srlv_epi32","_mm_srlv_epi64","_mm_store1_pd","_mm_store1_ps","_mm_store_epi32","_mm_store_epi64","_mm_store_pd","_mm_store_pd1","_mm_store_ph","_mm_store_ps","_mm_store_ps1","_mm_store_sd","_mm_store_sh","_mm_store_si128","_mm_store_ss","_mm_storeh_pd","_mm_storel_epi64","_mm_storel_pd","_mm_storer_pd","_mm_storer_ps","_mm_storeu_epi16","_mm_storeu_epi32","_mm_storeu_epi64","_mm_storeu_epi8","_mm_storeu_pd","_mm_storeu_ph","_mm_storeu_ps","_mm_storeu_si128","_mm_storeu_si16","_mm_storeu_si32","_mm_storeu_si64","_mm_stream_load_si128","_mm_stream_pd","_mm_stream_ps","_mm_stream_sd","_mm_stream_si128","_mm_stream_si32","_mm_stream_si64","_mm_stream_ss","_mm_sub_epi16","_mm_sub_epi32","_mm_sub_epi64","_mm_sub_epi8","_mm_sub_pd","_mm_sub_ph","_mm_sub_ps","_mm_sub_round_sd","_mm_sub_round_sh","_mm_sub_round_ss","_mm_sub_sd","_mm_sub_sh","_mm_sub_ss","_mm_subs_epi16","_mm_subs_epi8","_mm_subs_epu16","_mm_subs_epu8","_mm_ternarylogic_epi32","_mm_ternarylogic_epi64","_mm_test_all_ones","_mm_test_all_zeros","_mm_test_epi16_mask","_mm_test_epi32_mask","_mm_test_epi64_mask","_mm_test_epi8_mask","_mm_test_mix_ones_zeros","_mm_testc_pd","_mm_testc_ps","_mm_testc_si128","_mm_testn_epi16_mask","_mm_testn_epi32_mask","_mm_testn_epi64_mask","_mm_testn_epi8_mask","_mm_testnzc_pd","_mm_testnzc_ps","_mm_testnzc_si128","_mm_testz_pd","_mm_testz_ps","_mm_testz_si128","_mm_tzcnt_32","_mm_tzcnt_64","_mm_ucomieq_sd","_mm_ucomieq_sh","_mm_ucomieq_ss","_mm_ucomige_sd","_mm_ucomige_sh","_mm_ucomige_ss","_mm_ucomigt_sd","_mm_ucomigt_sh","_mm_ucomigt_ss","_mm_ucomile_sd","_mm_ucomile_sh","_mm_ucomile_ss","_mm_ucomilt_sd","_mm_ucomilt_sh","_mm_ucomilt_ss","_mm_ucomineq_sd","_mm_ucomineq_sh","_mm_ucomineq_ss","_mm_undefined_pd","_mm_undefined_ph","_mm_undefined_ps","_mm_undefined_si128","_mm_unpackhi_epi16","_mm_unpackhi_epi32","_mm_unpackhi_epi64","_mm_unpackhi_epi8","_mm_unpackhi_pd","_mm_unpackhi_ps","_mm_unpacklo_epi16","_mm_unpacklo_epi32","_mm_unpacklo_epi64","_mm_unpacklo_epi8","_mm_unpacklo_pd","_mm_unpacklo_ps","_mm_xor_epi32","_mm_xor_epi64","_mm_xor_pd","_mm_xor_ps","_mm_xor_si128","_mulx_u32","_mulx_u64","_pdep_u32","_pdep_u64","_pext_u32","_pext_u64","_popcnt32","_popcnt64","_rdrand16_step","_rdrand32_step","_rdrand64_step","_rdseed16_step","_rdseed32_step","_rdseed64_step","_rdtsc","_store_mask16","_store_mask32","_store_mask64","_store_mask8","_subborrow_u32","_subborrow_u64","_t1mskc_u32","_t1mskc_u64","_tile_cmmimfp16ps","_tile_cmmrlfp16ps","_tile_dpbf16ps","_tile_dpbssd","_tile_dpbsud","_tile_dpbusd","_tile_dpbuud","_tile_dpfp16ps","_tile_loadconfig","_tile_loadd","_tile_release","_tile_storeconfig","_tile_stored","_tile_stream_loadd","_tile_zero","_tzcnt_u16","_tzcnt_u32","_tzcnt_u64","_tzmsk_u32","_tzmsk_u64","_xabort","_xabort_code","_xbegin","_xend","_xgetbv","_xrstor","_xrstor64","_xrstors","_xrstors64","_xsave","_xsave64","_xsavec","_xsavec64","_xsaveopt","_xsaveopt64","_xsaves","_xsaves64","_xsetbv","_xtest","bf16","borrow","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","clone","","","","","","","","","","","","","","","","","clone_into","","","","","","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","","","","","","cmp","cmpxchg16b","eax","ebx","ecx","edx","eq","fmt","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_bits","into","","","","","","","","","","","","","","","","","partial_cmp","to_bits","to_owned","","","","","","","","","","","","","","","","","try_from","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","IntoIter","TryFromSliceError","advance_back_by","advance_by","as_mut_slice","as_slice","borrow","","borrow_mut","","clone","","clone_into","","clone_to_uninit","","count","description","drop","empty","fmt","","","fold","from","","","from_fn","from_mut","from_ref","into","","into_iter","is_empty","last","len","new","new_unchecked","next","next_back","repeat","rfold","size_hint","to_owned","","to_string","try_from","","try_from_fn","try_into","","type_id","","Acknowledge","Ampersand","Apostrophe","AsciiExt","Asterisk","Backspace","Bell","Cancel","CapitalA","CapitalB","CapitalC","CapitalD","CapitalE","CapitalF","CapitalG","CapitalH","CapitalI","CapitalJ","CapitalK","CapitalL","CapitalM","CapitalN","CapitalO","CapitalP","CapitalQ","CapitalR","CapitalS","CapitalT","CapitalU","CapitalV","CapitalW","CapitalX","CapitalY","CapitalZ","CarriageReturn","Char","CharacterTabulation","CircumflexAccent","Colon","Comma","CommercialAt","DataLinkEscape","Delete","DeviceControlFour","DeviceControlOne","DeviceControlThree","DeviceControlTwo","Digit0","Digit1","Digit2","Digit3","Digit4","Digit5","Digit6","Digit7","Digit8","Digit9","DollarSign","EndOfMedium","EndOfText","EndOfTransmission","EndOfTransmissionBlock","Enquiry","EqualsSign","Escape","EscapeDefault","ExclamationMark","FormFeed","FullStop","GraveAccent","GreaterThanSign","HyphenMinus","InformationSeparatorFour","InformationSeparatorOne","InformationSeparatorThree","InformationSeparatorTwo","LeftCurlyBracket","LeftParenthesis","LeftSquareBracket","LessThanSign","LineFeed","LineTabulation","LowLine","NegativeAcknowledge","Null","NumberSign","Owned","PercentSign","PlusSign","QuestionMark","QuotationMark","ReverseSolidus","RightCurlyBracket","RightParenthesis","RightSquareBracket","Semicolon","ShiftIn","ShiftOut","SmallA","SmallB","SmallC","SmallD","SmallE","SmallF","SmallG","SmallH","SmallI","SmallJ","SmallK","SmallL","SmallM","SmallN","SmallO","SmallP","SmallQ","SmallR","SmallS","SmallT","SmallU","SmallV","SmallW","SmallX","SmallY","SmallZ","Solidus","Space","StartOfHeading","StartOfText","Substitute","SynchronousIdle","Tilde","VerticalLine","advance_back_by","advance_by","as_str","backward_checked","backward_unchecked","borrow","","borrow_mut","","clone","","clone_into","","clone_to_uninit","","cmp","count","default","digit","digit_unchecked","eq","eq_ignore_ascii_case","escape_default","fmt","","","","forward_checked","forward_unchecked","from","","from_u8","from_u8_unchecked","hash","into","","into_iter","is_ascii","last","len","make_ascii_lowercase","make_ascii_uppercase","next","next_back","partial_cmp","size_hint","steps_between","to_ascii_lowercase","to_ascii_uppercase","to_char","to_owned","","to_string","","to_u8","try_from","","try_into","","type_id","","assert_matches","debug_assert_matches","AsyncIterator","FromIter","IntoAsyncIter","IntoAsyncIterator","Item","","borrow","borrow_mut","clone","clone_into","clone_to_uninit","fmt","from","from_iter","into","into_async_iter","","poll_next","","size_hint","","to_owned","try_from","try_into","type_id","Backtrace","BacktraceFrame","BacktraceStatus","Captured","Disabled","Unsupported","borrow","","","borrow_mut","","","capture","disabled","eq","fmt","","","","force_capture","frames","from","","","into","","","status","to_string","try_from","","","try_into","","","type_id","","","Borrow","BorrowMut","Borrowed","Cow","Owned","","ToOwned","add","","add_assign","","as_ref","","borrow","","","borrow_mut","","clone","clone_from","clone_into","","clone_to_uninit","cmp","default","deref","eq","","","","","","","","","","","","","","","","","","","fmt","","from","","","","","","","","","","","","","","","","","from_iter","","","","hash","into","into_owned","is_borrowed","is_owned","ne","","","","","","partial_cmp","","","","","","","","","","","","","to_mut","to_owned","","to_string","try_from","try_into","type_id","Box","ThinBox","allocator","as_fd","as_mut","as_mut_ptr","as_ptr","as_raw_fd","as_ref","assume_init","","async_call","async_call_mut","async_call_once","borrow","","","borrow_mut","","","call","call_mut","call_once","cause","clone","","","","","","clone_from","","clone_into","clone_to_uninit","cmp","consume","default","","","","","deref","","deref_mut","","description","downcast","","","downcast_unchecked","","","drop","","eq","fill_buf","finish","flush","fmt","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_iter","","","","","","","from_raw","from_raw_in","ge","gt","hash","into","","into_async_iter","into_boxed_slice","into_future","into_inner","into_iter","","","","into_pin","into_raw","into_raw_with_allocator","into_searcher","is_contained_in","is_empty","is_prefix_of","is_read_vectored","is_suffix_of","is_write_vectored","last","le","leak","len","lt","ne","new","","new_in","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_unsize","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","next","next_back","nth","nth_back","partial_cmp","pin","pin_in","poll","poll_next","provide","read","read_buf","read_buf_exact","read_exact","read_line","read_to_end","read_to_string","read_until","read_vectored","resume","seek","size_hint","","source","","stream_position","strip_prefix_of","strip_suffix_of","to_owned","to_string","","try_from","","","","try_into","","try_new","","try_new_in","try_new_uninit","try_new_uninit_in","try_new_uninit_slice","try_new_uninit_slice_in","try_new_zeroed","try_new_zeroed_in","try_new_zeroed_slice","try_new_zeroed_slice_in","type_id","","write","","","write_all","write_fmt","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_length_prefix","write_str","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","write_vectored","BorrowError","BorrowMutError","Cell","LazyCell","OnceCell","Ref","RefCell","RefMut","SyncUnsafeCell","UnsafeCell","as_array_of_cells","as_ptr","","as_slice_of_cells","borrow","","","","","","","","","","","borrow_mut","","","","","","","","","","","clone","","","","clone_from","clone_into","","","clone_to_uninit","","","cmp","","default","","","","","","deref","","","deref_mut","description","","eq","","","filter_map","","fmt","","","","","","","","","","","","","","force","from","","","","","","","","","","","","","","","","","","","","from_mut","","ge","","get","","","","get_mut","","","","","get_mut_or_init","get_mut_or_try_init","get_or_init","get_or_try_init","gt","","into","","","","","","","","","","into_inner","","","","","","le","","leak","","lt","","map","","map_split","","new","","","","","","partial_cmp","","raw_get","","replace","","replace_with","set","","swap","","take","","","to_owned","","","to_string","","","","try_borrow","try_borrow_mut","try_borrow_unguarded","try_from","","","","","","","","","","try_insert","try_into","","","","","","","","","","type_id","","","","","","","","","","undo_leak","update","CharTryFromError","DecodeUtf16","DecodeUtf16Error","EscapeDebug","EscapeDefault","EscapeUnicode","MAX","ParseCharError","REPLACEMENT_CHARACTER","ToLowercase","ToUppercase","TryFromCharError","UNICODE_VERSION","advance_back_by","","advance_by","","","","borrow","","","","","","","","","","borrow_mut","","","","","","","","","","clone","","","","","","","","","","clone_into","","","","","","","","","","clone_to_uninit","","","","","","","","","","count","","","","","decode_utf16","description","","","eq","","","","fmt","","","","","","","","","","","","","","","","","","","fold","","from","","","","","","","","","","from_digit","from_u32","from_u32_unchecked","into","","","","","","","","","","into_iter","","","","","","is_empty","","last","","","","len","","","","","next","","","","","","next_back","","rfold","","size_hint","","","","","","to_owned","","","","","","","","","","to_string","","","","","","","","","try_from","","","","","","","","","","try_into","","","","","","","","","","type_id","","","","","","","","","","unpaired_surrogate","Clone","","CloneToUninit","clone","clone_from","clone_to_uninit","Eq","","Equal","Greater","Less","Ord","","Ordering","PartialEq","","PartialOrd","","Reverse","borrow","","borrow_mut","","clamp","clone","","clone_from","clone_into","","clone_to_uninit","","cmp","","","default","eq","","","fmt","","from","","ge","","gt","","hash","","into","","is_eq","is_ge","is_gt","is_le","is_lt","is_ne","le","","lt","","max","","max_by","max_by_key","min","","min_by","min_by_key","minmax","minmax_by","minmax_by_key","ne","partial_cmp","","","reverse","then","then_with","to_owned","","try_from","","try_into","","type_id","","AllocError","BTreeMap","BTreeSet","BinaryHeap","Bound","CapacityOverflow","Excluded","HashMap","HashSet","Included","LinkedList","TryReserveError","TryReserveErrorKind","Unbounded","VecDeque","allocator","","append","","","","","as_mut_slices","as_slice","as_slices","back","","back_mut","","binary_heap","binary_search","binary_search_by","binary_search_by_key","bitand","","bitor","","bitxor","","borrow","","","","","","","","","borrow_mut","","","","","","","","","btree_map","btree_set","capacity","","","","clear","","","","","","","clone","","","","","","","","","clone_from","","","","","","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cmp","","","","consume","contains","","","","contains_key","","cursor_back","cursor_back_mut","cursor_front","cursor_front_mut","default","","","","","","","difference","","drain","","","","drain_sorted","drop","","","entry","","eq","","","","","","","","","","","","","","extend","","","","","","","","","","","","","","extend_one","","","","","","","","","","","","","","extend_reserve","","","","","","","","extract_if","","","","","fill_buf","first","first_entry","first_key_value","flush","fmt","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","from_iter","","","","","","","front","","front_mut","","get","","","","","get_key_value","","get_many_mut","get_many_unchecked_mut","get_mut","","","get_or_insert","get_or_insert_owned","get_or_insert_with","hash","","","","hash_map","hash_set","hasher","","index","","","index_mut","insert","","","","","intersection","","into","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","into_iter_sorted","into_keys","","into_sorted_vec","into_values","","into_vec","is_disjoint","","is_empty","","","","","","","is_subset","","is_superset","","is_write_vectored","iter","","","","","","","iter_mut","","","","keys","","kind","last","last_entry","last_key_value","len","","","","","","","linked_list","lower_bound","","lower_bound_mut","","make_contiguous","ne","new","","","","","","","new_in","","","","","partial_cmp","","","","partition_point","peek","peek_mut","pop","pop_back","","pop_first","","pop_front","","pop_last","","push","push_back","","push_front","","range","","","range_mut","","raw_entry","raw_entry_mut","read","read_buf","read_to_end","read_to_string","remove","","","","","","remove_entry","","replace","","reserve","","","","reserve_exact","","resize","resize_with","retain","","","","","","","retain_mut","","rotate_left","rotate_right","shrink_to","","","","shrink_to_fit","","","","split_off","","","","sub","","swap","swap_remove_back","swap_remove_front","symmetric_difference","","take","","to_owned","","","","","","","","","to_string","truncate","try_from","","","","","","","","","try_insert","","try_into","","","","","","","","","try_reserve","","","","try_reserve_exact","","try_with_capacity","type_id","","","","","","","","","union","","upper_bound","","upper_bound_mut","","values","","values_mut","","vec_deque","with_capacity","","","","with_capacity_and_hasher","","with_capacity_in","","with_hasher","","write","write_all","write_vectored","layout","BinaryHeap","Drain","DrainSorted","IntoIter","IntoIterSorted","Iter","PeekMut","allocator","","","","borrow","","","","","","borrow_mut","","","","","","clone","","","clone_into","","","clone_to_uninit","","","default","","deref","deref_mut","drop","","fmt","","","","","","from","","","","","","into","","","","","","into_iter","","","","","is_empty","","","last","next","","","","","next_back","","","pop","size_hint","","","","","to_owned","","","try_from","","","","","","try_into","","","","","","type_id","","","","","","BTreeMap","Cursor","CursorMut","CursorMutKey","Entry","ExtractIf","IntoIter","IntoKeys","IntoValues","Iter","IterMut","Keys","Occupied","OccupiedEntry","OccupiedError","Range","RangeMut","UnorderedKeyError","Vacant","VacantEntry","Values","ValuesMut","and_modify","as_cursor","","borrow","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","default","","","","","","","","","","description","drop","entry","fmt","","","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","get","get_mut","insert","","insert_after","","insert_after_unchecked","","insert_before","","insert_before_unchecked","","into","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","into_key","into_mut","key","","","last","","","","","","","","","len","","","","","","","","max","","","","","","min","","","","","","next","","","","","","","","","","","","","","next_back","","","","","","","","","","or_default","or_insert","or_insert_with","or_insert_with_key","peek_next","","","peek_prev","","","prev","","","remove","remove_entry","remove_next","","remove_prev","","size_hint","","","","","","","","","to_owned","","","","","to_string","try_from","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","value","with_mutable_key","BTreeSet","Cursor","CursorMut","CursorMutKey","Difference","ExtractIf","Intersection","IntoIter","Iter","Range","SymmetricDifference","Union","UnorderedKeyError","as_cursor","","borrow","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","clone","","","","","","","","clone_into","","","","","","","","clone_to_uninit","","","","","","","","default","","","eq","fmt","","","","","","","","","","","","","from","","","","","","","","","","","","insert_after","","insert_after_unchecked","","insert_before","","insert_before_unchecked","","into","","","","","","","","","","","","into_iter","","","","","","","","last","","len","","max","","min","","","","","","next","","","","","","","","","","","next_back","","","peek_next","","","peek_prev","","","prev","","","remove_next","","remove_prev","","size_hint","","","","","","","to_owned","","","","","","","","to_string","try_from","","","","","","","","","","","","try_into","","","","","","","","","","","","type_id","","","","","","","","","","","","with_mutable_key","DefaultHasher","Drain","Entry","ExtractIf","HashMap","IntoIter","IntoKeys","IntoValues","Iter","IterMut","Keys","Occupied","","OccupiedEntry","OccupiedError","RandomState","RawEntryBuilder","RawEntryBuilderMut","RawEntryMut","RawOccupiedEntryMut","RawVacantEntryMut","Vacant","","VacantEntry","Values","ValuesMut","and_modify","","borrow","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","clone","","","clone_into","","","clone_to_uninit","","","count","","","","","","","","description","entry","fmt","","","","","","","","","","","","","","","","","","","","fold","","","","","","","","","from","","","","","","","","","","","","","","","","","","","from_hash","","from_key","","from_key_hashed_nocheck","","get","","get_key_value","get_key_value_mut","get_mut","","insert","","","","insert_entry","","insert_hashed_nocheck","insert_key","into","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","into_key","","into_key_value","into_mut","","key","","","","key_mut","len","","","","","","","","","next","","","","","","","","","","or_default","or_insert","","or_insert_with","","or_insert_with_key","remove","","remove_entry","","replace_entry","replace_key","size_hint","","","","","","","","","","to_owned","","","to_string","try_from","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","value","Difference","Drain","ExtractIf","HashSet","Intersection","IntoIter","Iter","SymmetricDifference","Union","borrow","","","","","","","","borrow_mut","","","","","","","","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","count","","","fmt","","","","","","","","fold","","","","","","","from","","","","","","","","into","","","","","","","","into_iter","","","","","","","","len","","","next","","","","","","","","size_hint","","","","","","","","to_owned","","","","","try_from","","","","","","","","try_into","","","","","","","","type_id","","","","","","","","Cursor","CursorMut","ExtractIf","IntoIter","Iter","IterMut","LinkedList","as_cursor","as_list","","back","","back_mut","borrow","","","","","","borrow_mut","","","","","","clone","","","clone_into","","","clone_to_uninit","","","current","","default","","","fmt","","","","","","from","","","","","","front","","front_mut","index","","insert_after","insert_before","into","","","","","","into_iter","","","","last","","move_next","","move_prev","","next","","","","next_back","","","peek_next","","peek_prev","","pop_back","pop_front","push_back","push_front","remove_current","remove_current_as_list","size_hint","","","","splice_after","splice_before","split_after","split_before","to_owned","","","try_from","","","","","","try_into","","","","","","type_id","","","","","","Drain","IntoIter","Iter","IterMut","VecDeque","advance_back_by","","","advance_by","","","borrow","","","","borrow_mut","","","","clone","","clone_into","","clone_to_uninit","","count","default","","drop","fmt","","","","fold","","","from","","","","into","","","","into_iter","","","","is_empty","","","last","","","len","","next","","","","next_back","","","","next_chunk","rfold","","","size_hint","","","","to_owned","","try_fold","","","try_from","","","","try_into","","","","try_rfold","","","type_id","","","","AsMut","AsRef","Error","","FloatToInt","From","Infallible","Into","TryFrom","TryInto","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","clone_to_uninit","cmp","description","eq","fmt","","from","","","","hash","identity","into","","partial_cmp","report","to_owned","to_string","try_from","","try_into","","type_id","Default","","default","Args","ArgsOs","JoinPathsError","NotPresent","NotUnicode","SplitPaths","VarError","Vars","VarsOs","args","args_os","borrow","","","","","","","borrow_mut","","","","","","","clone","clone_into","clone_to_uninit","consts","current_dir","current_exe","description","","eq","fmt","","","","","","","","","from","","","","","","","home_dir","into","","","","","","","into_iter","","","","","is_empty","","join_paths","len","","next","","","","","next_back","","remove_var","set_current_dir","set_var","size_hint","","","","","split_paths","temp_dir","to_owned","to_string","","try_from","","","","","","","try_into","","","","","","","type_id","","","","","","","var","var_os","vars","vars_os","ARCH","DLL_EXTENSION","DLL_PREFIX","DLL_SUFFIX","EXE_EXTENSION","EXE_SUFFIX","FAMILY","OS","Error","Report","Request","borrow","","borrow_mut","","cause","description","downcast","","","downcast_mut","","","downcast_ref","","","fmt","","","from","","","into","is","","","new","pretty","provide","provide_ref","provide_ref_with","provide_value","provide_value_with","request_ref","request_value","show_backtrace","source","sources","to_string","try_from","try_into","type_id","","would_be_satisfied_by_ref_of","would_be_satisfied_by_value_of","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","DIGITS","EPSILON","INFINITY","MANTISSA_DIGITS","MAX","MAX_10_EXP","MAX_EXP","MIN","MIN_10_EXP","MIN_EXP","MIN_POSITIVE","NAN","NEG_INFINITY","RADIX","consts","E","EGAMMA","FRAC_1_PI","FRAC_1_SQRT_2","FRAC_1_SQRT_2PI","FRAC_1_SQRT_3","FRAC_1_SQRT_PI","FRAC_2_PI","FRAC_2_SQRT_PI","FRAC_PI_2","FRAC_PI_3","FRAC_PI_4","FRAC_PI_6","FRAC_PI_8","LN_10","LN_2","LOG10_2","LOG10_E","LOG2_10","LOG2_E","PHI","PI","SQRT_2","SQRT_3","TAU","CStr","CString","FromBytesUntilNulError","FromBytesWithNulError","FromVecWithNulError","IntoStringError","NulError","OsStr","OsString","VaList","VaListImpl","arg","as_bytes","","","as_bytes_with_nul","as_c_str","as_encoded_bytes","as_os_str","as_ptr","as_ref","","","","","","as_va_list","borrow","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","bytes","c_char","c_double","c_float","c_int","c_long","c_longlong","c_schar","c_short","c_str","c_uchar","c_uint","c_ulong","c_ulonglong","c_ushort","c_void","capacity","clear","clone","","","","","","","","clone_from","clone_into","","","","","","","","","","clone_to_uninit","","","","","","","","","","cmp","","","","count_bytes","default","","","","deref","","","deref_mut","","description","","","display","drop","","eq","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eq_ignore_ascii_case","extend","","","fmt","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","from_bytes","from_bytes_until_nul","from_bytes_with_nul","from_bytes_with_nul_unchecked","from_encoded_bytes_unchecked","","from_iter","","","from_ptr","from_raw","from_str","from_vec","from_vec_unchecked","from_vec_with_nul","from_vec_with_nul_unchecked","ge","","gt","","hash","","","","index","","","index_mut","into","","","","","","","","","","into_boxed_c_str","into_boxed_os_str","into_bytes","","into_bytes_with_nul","into_c_string","into_cstring","into_encoded_bytes","into_os_string","into_raw","into_string","","into_vec","","is_ascii","is_empty","","le","","leak","len","lt","","make_ascii_lowercase","make_ascii_uppercase","new","","","nul_position","os_str","partial_cmp","","","","","","","","","","","","","","","","","","","","","","","","push","reserve","reserve_exact","shrink_to","shrink_to_fit","slice_encoded_bytes","source","to_ascii_lowercase","to_ascii_uppercase","to_bytes","to_bytes_with_nul","to_os_string","to_owned","","","","","","","","","","to_str","","to_string","","","","","to_string_lossy","","try_from","","","","","","","","","","try_into","","","","","","","","","","try_reserve","try_reserve_exact","type_id","","","","","","","","","","","","utf8_error","with_capacity","with_copy","write_str","CStr","CString","FromBytesUntilNulError","FromBytesWithNulError","FromVecWithNulError","IntoStringError","NulError","Display","OsStr","OsString","borrow","borrow_mut","fmt","","from","into","to_string","try_from","try_into","type_id","Alignment","Arguments","Binary","Center","Debug","","DebugList","DebugMap","DebugSet","DebugStruct","DebugTuple","Display","Err","Error","Formatter","FromFn","Left","LowerExp","LowerHex","Octal","Ok","Pointer","Result","Right","UpperExp","UpperHex","Write","align","alternate","as_str","borrow","","","","","","","","","","borrow_mut","","","","","","","","","","clone","","","clone_into","","","clone_to_uninit","","","cmp","debug_list","debug_map","debug_set","debug_struct","debug_tuple","default","description","entries","","","entry","","","entry_with","","eq","","field","","field_with","","fill","finish","","","","","finish_non_exhaustive","","","","","flags","fmt","","","","","","","","","","","","","","","","format","from","","","","","","","","","","from_fn","hash","into","","","","","","","","","","key","key_with","pad","pad_integral","partial_cmp","precision","sign_aware_zero_pad","sign_minus","sign_plus","to_owned","","","to_string","","","try_from","","","","","","","","","","try_into","","","","","","","","","","type_id","","","","","","","","","","value","value_with","width","write","write_char","","write_fmt","","","write_str","","","DirBuilder","DirEntry","File","FileTimes","FileType","Metadata","OpenOptions","Permissions","ReadDir","accessed","append","as_fd","as_raw_fd","as_raw_stat","atime","atime_nsec","blksize","blocks","borrow","","","","","","","","","borrow_mut","","","","","","","","","canonicalize","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","copy","create","","","create_dir","create_dir_all","create_new","","created","ctime","ctime_nsec","custom_flags","default","dev","eq","","exists","file_name","file_name_ref","file_type","","flush","","fmt","","","","","","","","","from","","","","","","","","","","from_mode","from_raw_fd","gid","hard_link","hash","ino","","into","","","","","","","","","into_iter","into_raw_fd","is_block_device","is_char_device","is_dir","","is_fifo","is_file","","is_read_vectored","","is_socket","is_symlink","","is_terminal","is_write_vectored","","len","metadata","","","mode","","","","modified","mtime","mtime_nsec","new","","","next","nlink","open","","options","path","permissions","rdev","read","","","","read_at","read_buf","","read_dir","read_link","read_to_end","","read_to_string","","","read_vectored","","read_vectored_at","readonly","recursive","remove_dir","remove_dir_all","remove_file","rename","seek","","set_accessed","set_len","set_mode","set_modified","","set_permissions","","set_readonly","set_times","size","soft_link","st_atime","st_atime_nsec","st_blksize","st_blocks","st_ctime","st_ctime_nsec","st_dev","st_gid","st_ino","st_mode","st_mtime","st_mtime_nsec","st_nlink","st_rdev","st_size","st_uid","symlink_metadata","sync_all","sync_data","to_owned","","","","","truncate","try_clone","try_from","","","","","","","","","try_into","","","","","","","","","type_id","","","","","","","","","uid","write","","","","write_at","write_vectored","","write_vectored_at","AsyncDrop","AsyncDropInPlace","Dropper","Future","IntoFuture","","Output","","Pending","PollFn","Ready","async_drop","","async_drop_in_place","borrow","","","","borrow_mut","","","","clone","","clone_into","","clone_to_uninit","","fmt","","","","from","","","","into","","","","into_future","","","","","into_inner","join","pending","poll","","","","","poll_fn","ready","to_owned","","try_from","","","","try_into","","","","type_id","","","","BuildHasher","BuildHasherDefault","DefaultHasher","Hash","","Hasher","","RandomState","SipHasher","borrow","","","","borrow_mut","","","","build_hasher","","","clone","","","","clone_into","","","","clone_to_uninit","","","","default","","","","eq","finish","","","fmt","","","","from","","","","hash","hash_one","hash_slice","into","","","","new","","","","new_with_keys","to_owned","","","","try_from","","","","try_into","","","","type_id","","","","write","","","write_i128","write_i16","write_i32","write_i64","write_i8","write_isize","write_length_prefix","write_str","","","write_u128","write_u16","write_u32","write_u64","write_u8","write_usize","assert_unchecked","black_box","must_use","spin_loop","unreachable_unchecked","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","AggregateRawPtr","Metadata","abort","add_with_overflow","aggregate_raw_ptr","arith_offset","assert_inhabited","assert_mem_uninitialized_valid","assert_zero_valid","assume","atomic_and_acqrel","atomic_and_acquire","atomic_and_relaxed","atomic_and_release","atomic_and_seqcst","atomic_cxchg_acqrel_acquire","atomic_cxchg_acqrel_relaxed","atomic_cxchg_acqrel_seqcst","atomic_cxchg_acquire_acquire","atomic_cxchg_acquire_relaxed","atomic_cxchg_acquire_seqcst","atomic_cxchg_relaxed_acquire","atomic_cxchg_relaxed_relaxed","atomic_cxchg_relaxed_seqcst","atomic_cxchg_release_acquire","atomic_cxchg_release_relaxed","atomic_cxchg_release_seqcst","atomic_cxchg_seqcst_acquire","atomic_cxchg_seqcst_relaxed","atomic_cxchg_seqcst_seqcst","atomic_cxchgweak_acqrel_acquire","atomic_cxchgweak_acqrel_relaxed","atomic_cxchgweak_acqrel_seqcst","atomic_cxchgweak_acquire_acquire","atomic_cxchgweak_acquire_relaxed","atomic_cxchgweak_acquire_seqcst","atomic_cxchgweak_relaxed_acquire","atomic_cxchgweak_relaxed_relaxed","atomic_cxchgweak_relaxed_seqcst","atomic_cxchgweak_release_acquire","atomic_cxchgweak_release_relaxed","atomic_cxchgweak_release_seqcst","atomic_cxchgweak_seqcst_acquire","atomic_cxchgweak_seqcst_relaxed","atomic_cxchgweak_seqcst_seqcst","atomic_fence_acqrel","atomic_fence_acquire","atomic_fence_release","atomic_fence_seqcst","atomic_load_acquire","atomic_load_relaxed","atomic_load_seqcst","atomic_load_unordered","atomic_max_acqrel","atomic_max_acquire","atomic_max_relaxed","atomic_max_release","atomic_max_seqcst","atomic_min_acqrel","atomic_min_acquire","atomic_min_relaxed","atomic_min_release","atomic_min_seqcst","atomic_nand_acqrel","atomic_nand_acquire","atomic_nand_relaxed","atomic_nand_release","atomic_nand_seqcst","atomic_or_acqrel","atomic_or_acquire","atomic_or_relaxed","atomic_or_release","atomic_or_seqcst","atomic_singlethreadfence_acqrel","atomic_singlethreadfence_acquire","atomic_singlethreadfence_release","atomic_singlethreadfence_seqcst","atomic_store_relaxed","atomic_store_release","atomic_store_seqcst","atomic_store_unordered","atomic_umax_acqrel","atomic_umax_acquire","atomic_umax_relaxed","atomic_umax_release","atomic_umax_seqcst","atomic_umin_acqrel","atomic_umin_acquire","atomic_umin_relaxed","atomic_umin_release","atomic_umin_seqcst","atomic_xadd_acqrel","atomic_xadd_acquire","atomic_xadd_relaxed","atomic_xadd_release","atomic_xadd_seqcst","atomic_xchg_acqrel","atomic_xchg_acquire","atomic_xchg_relaxed","atomic_xchg_release","atomic_xchg_seqcst","atomic_xor_acqrel","atomic_xor_acquire","atomic_xor_relaxed","atomic_xor_release","atomic_xor_seqcst","atomic_xsub_acqrel","atomic_xsub_acquire","atomic_xsub_relaxed","atomic_xsub_release","atomic_xsub_seqcst","bitreverse","black_box","breakpoint","bswap","caller_location","catch_unwind","ceilf128","ceilf16","ceilf32","ceilf64","compare_bytes","const_allocate","const_deallocate","const_eval_select","copy","copy_nonoverlapping","copysignf128","copysignf16","copysignf32","copysignf64","cosf128","cosf16","cosf32","cosf64","ctlz","ctlz_nonzero","ctpop","cttz","cttz_nonzero","discriminant_value","drop_in_place","exact_div","exp2f128","exp2f16","exp2f32","exp2f64","expf128","expf16","expf32","expf64","fabsf128","fabsf16","fabsf32","fabsf64","fadd_algebraic","fadd_fast","fdiv_algebraic","fdiv_fast","float_to_int_unchecked","floorf128","floorf16","floorf32","floorf64","fmaf128","fmaf16","fmaf32","fmaf64","fmul_algebraic","fmul_fast","forget","frem_algebraic","frem_fast","fsub_algebraic","fsub_fast","is_val_statically_known","likely","log10f128","log10f16","log10f32","log10f64","log2f128","log2f16","log2f32","log2f64","logf128","logf16","logf32","logf64","maxnumf128","maxnumf16","maxnumf32","maxnumf64","min_align_of","min_align_of_val","minnumf128","minnumf16","minnumf32","minnumf64","mir","mul_with_overflow","nearbyintf128","nearbyintf16","nearbyintf32","nearbyintf64","needs_drop","nontemporal_store","offset","powf128","powf16","powf32","powf64","powif128","powif16","powif32","powif64","pref_align_of","prefetch_read_data","prefetch_read_instruction","prefetch_write_data","prefetch_write_instruction","ptr_guaranteed_cmp","ptr_mask","ptr_metadata","ptr_offset_from","ptr_offset_from_unsigned","raw_eq","read_via_copy","rintf128","rintf16","rintf32","rintf64","rotate_left","rotate_right","roundevenf128","roundevenf16","roundevenf32","roundevenf64","roundf128","roundf16","roundf32","roundf64","rustc_peek","saturating_add","saturating_sub","select_unpredictable","simd","sinf128","sinf16","sinf32","sinf64","size_of","size_of_val","sqrtf128","sqrtf16","sqrtf32","sqrtf64","sub_with_overflow","three_way_compare","transmute","transmute_unchecked","truncf128","truncf16","truncf32","truncf64","type_id","type_name","typed_swap","ub_checks","unaligned_volatile_load","unaligned_volatile_store","unchecked_add","unchecked_div","unchecked_mul","unchecked_rem","unchecked_shl","unchecked_shr","unchecked_sub","unlikely","unreachable","variant_count","volatile_copy_memory","volatile_copy_nonoverlapping_memory","volatile_load","volatile_set_memory","volatile_store","vtable_align","vtable_size","wrapping_add","wrapping_mul","wrapping_sub","write_bytes","write_via_move","Abi","Assume","BasicBlock","Call","CastPtrToPtr","CastTransmute","Checked","Cleanup","CopyForDeref","Deinit","Discriminant","Drop","Field","Goto","InCleanup","Len","Move","Normal","Offset","PtrMetadata","Retag","Return","ReturnTo","ReturnToArg","SetDiscriminant","Static","StaticMut","StorageDead","StorageLive","TailCall","Unreachable","UnwindActionArg","UnwindCleanup","UnwindContinue","UnwindResume","UnwindTerminate","UnwindTerminateReason","UnwindUnreachable","Variant","borrow","","","","borrow_mut","","","","from","","","","into","","","","mir","place","try_from","","","","try_into","","","","type_id","","","","simd_add","simd_and","simd_arith_offset","simd_as","simd_bitmask","simd_bitreverse","simd_bswap","simd_cast","simd_cast_ptr","simd_ceil","simd_ctlz","simd_ctpop","simd_cttz","simd_div","simd_eq","simd_expose_provenance","simd_extract","simd_fabs","simd_fcos","simd_fexp","simd_fexp2","simd_flog","simd_flog10","simd_flog2","simd_floor","simd_fma","simd_fmax","simd_fmin","simd_fsin","simd_fsqrt","simd_gather","simd_ge","simd_gt","simd_insert","simd_le","simd_lt","simd_masked_load","simd_masked_store","simd_mul","simd_ne","simd_neg","simd_or","simd_reduce_add_ordered","simd_reduce_add_unordered","simd_reduce_all","simd_reduce_and","simd_reduce_any","simd_reduce_max","simd_reduce_min","simd_reduce_mul_ordered","simd_reduce_mul_unordered","simd_reduce_or","simd_reduce_xor","simd_rem","simd_round","simd_saturating_add","simd_saturating_sub","simd_scatter","simd_select","simd_select_bitmask","simd_shl","simd_shr","simd_shuffle","simd_sub","simd_trunc","simd_with_exposed_provenance","simd_xor","AddrInUse","AddrNotAvailable","AlreadyExists","ArgumentListTooLong","BorrowedBuf","BorrowedCursor","BrokenPipe","BufRead","BufReader","BufWriter","Bytes","Chain","ConnectionAborted","ConnectionRefused","ConnectionReset","CrossesDevices","Current","Cursor","Deadlock","DirectoryNotEmpty","Empty","End","Err","Error","ErrorKind","ExecutableFileBusy","FileTooLarge","FilesystemLoop","FilesystemQuotaExceeded","HostUnreachable","Interrupted","IntoInnerError","InvalidData","InvalidFilename","InvalidInput","IoSlice","IoSliceMut","IsADirectory","IsTerminal","LineWriter","Lines","NetworkDown","NetworkUnreachable","NotADirectory","NotConnected","NotFound","NotSeekable","Ok","Other","OutOfMemory","PermissionDenied","RawOsError","Read","ReadOnlyFilesystem","Repeat","ResourceBusy","Result","Seek","SeekFrom","Sink","Split","StaleNetworkFileHandle","Start","Stderr","StderrLock","Stdin","StdinLock","Stdout","StdoutLock","StorageFull","Take","TimedOut","TooManyLinks","UnexpectedEof","Unsupported","WouldBlock","Write","WriteZero","WriterPanicked","advance","","","advance_slices","","advance_unchecked","append","as_fd","","","","","","as_mut","as_raw_fd","","","","","","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","","buffer","","by_ref","","bytes","capacity","","","","cause","chain","clear","clone","","","","","","clone_from","clone_into","","","","","","clone_to_uninit","","","","","","cmp","consume","","","","","","","copy","default","","","deref","","deref_mut","description","","","downcast","drop","empty","ensure_init","eq","","","error","fill_buf","","","","","","","filled","filled_mut","flush","","","","","","","","","","","","","","","","","","","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_raw_os_error","get_mut","","","","","","","get_ref","","","","","","","has_data_left","hash","init_len","init_mut","init_ref","into","","","","","","","","","","","","","","","","","","","","","","","","","","","into_error","into_inner","","","","","","","","","into_iter","","","into_parts","","is_read_vectored","","","","","","","","is_terminal","","","","","","","is_write_vectored","","","","","","","","","","","","","","","","","","kind","last_os_error","len","limit","lines","","lock","","","new","","","","","","","next","","","other","partial_cmp","peek","position","prelude","raw_os_error","read","","","","","","","","","","read_buf","","","","","","","","","","read_buf_exact","","","","","","read_exact","","","","","","read_line","","","read_to_end","","","","","","","","read_to_string","","","","","","","","read_until","","","read_vectored","","","","","","","","reborrow","repeat","rewind","seek","","","","","seek_relative","","","set_init","","set_limit","set_position","sink","size_hint","skip_until","source","split","","split_mut","stderr","stdin","stdout","stream_len","","","stream_position","","","","take","to_owned","","","","","","to_string","","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","","unfilled","uninit_mut","with_capacity","","","write","","","","","","","","","","","","","","","","","","","write_all","","","","","","","","","write_all_vectored","","","","","","","","write_fmt","","","","","","write_vectored","","","","","","","","","","","","","","","","","","written","BufRead","Read","Seek","Write","by_ref","","bytes","chain","consume","fill_buf","flush","has_data_left","is_read_vectored","is_write_vectored","lines","read","read_buf","read_buf_exact","read_exact","read_line","read_to_end","read_to_string","read_until","read_vectored","rewind","seek","seek_relative","skip_until","split","stream_len","stream_position","take","write","write_all","write_all_vectored","write_fmt","write_vectored","MAX","MIN","ArrayChunks","ByRefSized","Chain","Cloned","Copied","Cycle","DoubleEndedIterator","Empty","Enumerate","ExactSizeIterator","Extend","Filter","FilterMap","FlatMap","Flatten","FromFn","FromIterator","Fuse","FusedIterator","Inspect","Intersperse","IntersperseWith","IntoIter","IntoIterator","Item","","Iterator","Map","MapWhile","MapWindows","Once","OnceWith","Peekable","Product","Repeat","RepeatN","RepeatWith","Rev","Scan","Skip","SkipWhile","Step","StepBy","Successors","Sum","Take","TakeWhile","TrustedLen","TrustedStep","Zip","advance_back_by","","","","","","","","","","","","","advance_by","","","","","","","","","","","","","all","any","array_chunks","backward","backward_checked","backward_unchecked","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","by_ref","chain","","clone","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","clone_into","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","cloned","cmp","cmp_by","collect","collect_into","copied","count","","","","","","","","","","","","","cycle","default","","","","","","","","drop","empty","enumerate","eq","eq_by","extend","extend_one","extend_reserve","filter","filter_map","find","","","","find_map","flat_map","flatten","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","fold","","","","","","","","","","","","","","","","","","","","","","","","","","for_each","","forward","forward_checked","forward_unchecked","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_coroutine","from_fn","from_iter","fuse","ge","gt","inspect","intersperse","intersperse_with","into","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","into_remainder","is_empty","","","","","","","","","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","","","","","","","","","","le","len","","","","","","","","","","","","","","","lt","map","map_while","map_windows","max","max_by","max_by_key","min","min_by","min_by_key","ne","next","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","next_back","","","","","","","","","","","","","","","","","","","","","","","","","","next_chunk","","","","next_if","next_if_eq","nth","","","","","","","","","","","","","nth_back","","","","","","","","","","","","once","once_with","partial_cmp","partial_cmp_by","partition","partition_in_place","peek","peek_mut","peekable","position","product","","reduce","repeat","repeat_n","repeat_with","rev","rfind","","","","rfold","","","","","","","","","","","","","","","","","","","","rposition","scan","size_hint","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","skip","skip_while","step_by","steps_between","successors","sum","","take","take_while","to_owned","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_collect","try_find","try_fold","","","","","","","","","","","","","","","","","","","","","","","","","try_for_each","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_reduce","try_rfold","","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","unzip","zip","","ConstParamTy","ConstParamTy_","Copy","","Destruct","Discriminant","DiscriminantKind","FnPtr","Freeze","PhantomData","PhantomPinned","PointerLike","Send","Sized","SmartPointer","StructuralPartialEq","Sync","Tuple","Unpin","Unsize","UnsizedConstParamTy","","addr","borrow","","borrow_mut","","clone","","clone_into","","clone_to_uninit","","cmp","","default","","eq","","fmt","","from","","hash","","into","","partial_cmp","","to_owned","","try_from","","try_into","","type_id","","ALIGNMENT","Assume","Discriminant","LIFETIMES","ManuallyDrop","MaybeUninit","NOTHING","SAFETY","TransmuteFrom","VALIDITY","add","align_of","align_of_val","align_of_val_raw","alignment","and","array_assume_init","as_bytes","as_bytes_mut","as_mut_ptr","as_ptr","assume_init","assume_init_drop","assume_init_mut","assume_init_read","assume_init_ref","borrow","","","","borrow_mut","","","","but_not","clone","","","","clone_from_slice","clone_into","","","","clone_to_uninit","","","","cmp","copy","copy_from_slice","default","deref","deref_mut","discriminant","drop","","eq","","","fill","fill_from","fill_with","fmt","","","","forget","forget_unsized","from","","","","hash","","into","","","","into_inner","lifetimes","min_align_of","min_align_of_val","needs_drop","new","","offset_of","partial_cmp","replace","safety","size_of","size_of_val","size_of_val_raw","slice_as_bytes","slice_as_bytes_mut","slice_as_mut_ptr","slice_as_ptr","slice_assume_init_mut","slice_assume_init_ref","sub","swap","take","","to_owned","","","","transmute","","transmute_copy","transpose","try_from","","","","try_into","","","","type_id","","","","uninit","uninit_array","uninitialized","validity","variant_count","write","zeroed","","AddrParseError","AdminLocal","BITS","","BROADCAST","Both","Global","Incoming","InterfaceLocal","IntoIncoming","IpAddr","Ipv4Addr","Ipv6Addr","Ipv6MulticastScope","Iter","LOCALHOST","","LinkLocal","OrganizationLocal","Read","RealmLocal","Shutdown","SiteLocal","SocketAddr","SocketAddrV4","SocketAddrV6","TcpListener","TcpStream","ToSocketAddrs","UNSPECIFIED","","UdpSocket","V4","","V6","","Write","accept","as_fd","","","as_raw_fd","","","backward_checked","","backward_unchecked","","bind","","bitand","","","","","","","","bitand_assign","","","","bitor","","","","","","","","bitor_assign","","","","borrow","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","broadcast","clone","","","","","","","","","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cmp","","","","","","connect","","connect_timeout","deferaccept","description","eq","","","","","","","","","","","","","flowinfo","flush","","fmt","","","","","","","","","","","","","","","","","","","","","forward_checked","","forward_unchecked","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_bits","","from_raw_fd","","","from_str","","","","","","hash","","","","","","","incoming","into","","","","","","","","","","","","","","into_incoming","into_iter","","into_raw_fd","","","ip","","","is_benchmarking","","","is_broadcast","is_documentation","","","is_global","","","is_ipv4","","is_ipv4_mapped","is_ipv6","","is_link_local","is_loopback","","","is_multicast","","","is_private","is_read_vectored","","is_reserved","is_shared","is_unicast","is_unicast_global","is_unicast_link_local","is_unique_local","is_unspecified","","","is_write_vectored","","join_multicast_v4","join_multicast_v6","leave_multicast_v4","leave_multicast_v6","linger","local_addr","","","multicast_loop_v4","multicast_loop_v6","multicast_scope","multicast_ttl_v4","new","","","","","next","","nodelay","not","","","","octets","","only_v6","parse_ascii","","","","","","partial_cmp","","","","","","","","","","peek","","peek_from","peer_addr","","port","","","quickack","read","","read_buf","","read_timeout","","read_vectored","","recv","recv_from","scope_id","segments","send","send_to","set_broadcast","set_deferaccept","set_flowinfo","set_ip","","","set_linger","set_multicast_loop_v4","set_multicast_loop_v6","set_multicast_ttl_v4","set_nodelay","set_nonblocking","","","set_only_v6","set_port","","","set_quickack","set_read_timeout","","set_scope_id","set_ttl","","","set_write_timeout","","shutdown","steps_between","","take_error","","","to_bits","","to_canonical","","to_ipv4","to_ipv4_mapped","to_ipv6_compatible","to_ipv6_mapped","to_owned","","","","","","","","","to_socket_addrs","","","","to_string","","","","","","","try_clone","","","try_from","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","ttl","","","type_id","","","","","","","","","","","","","","write","","write_timeout","","write_vectored","","BITS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Empty","FpCategory","Infinite","IntErrorKind","InvalidDigit","MAX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","MIN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Nan","NegOverflow","NonZero","NonZeroI128","NonZeroI16","NonZeroI32","NonZeroI64","NonZeroI8","NonZeroIsize","NonZeroU128","NonZeroU16","NonZeroU32","NonZeroU64","NonZeroU8","NonZeroUsize","Normal","ParseFloatError","ParseIntError","PosOverflow","Saturating","Subnormal","TryFromIntError","Wrapping","Zero","","ZeroablePrimitive","abs","","","","","","","","","","","","","","","","","","add","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","add_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitand","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitand_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitor","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitor_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitxor","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","bitxor_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow","","","","","","","","borrow_mut","","","","","","","","checked_abs","","","","","","checked_add","","","","","","checked_mul","","","","","","","","","","","","checked_neg","","","","","","checked_next_power_of_two","","","","","","checked_pow","","","","","","","","","","","","clamp","clone","","","","","","","","clone_into","","","","","","","","clone_to_uninit","","","","","","","","cmp","","","count_ones","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","count_zeros","","","","","","","","","","","","","","","","","","","","","","","","default","","description","","","div","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","div_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eq","","","","","","","","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_be","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_le","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_mut","from_mut_unchecked","from_str","","","","","","","","","","","","ge","get","gt","hash","","","ilog10","","","","","","ilog2","","","","","","into","","","","","","","","is_negative","","","","","","","","","","","","","","","","","","is_positive","","","","","","","","","","","","","","","","","","is_power_of_two","","","","","","","","","","","","","","","","","","isqrt","","","","","","kind","le","leading_zeros","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lt","max","midpoint","","","","","","min","mul","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","mul_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ne","neg","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","new","new_unchecked","next_power_of_two","","","","","","not","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","overflowing_abs","","","","","","overflowing_neg","","","","","","partial_cmp","","","pow","","","","","","","","","","","","","","","","","","","","","","","","product","","","","","","","","","","","","","","","","","","","","","","","","rem","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rem_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","reverse_bits","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rotate_left","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rotate_right","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","saturating_abs","","","","","","saturating_add","","","","","","saturating_mul","","","","","","","","","","","","saturating_neg","","","","","","saturating_pow","","","","","","","","","","","","shl","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shl_assign","","","","","","","","","","","","","","","","","","","","","","","","shr","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shr_assign","","","","","","","","","","","","","","","","","","","","","","","","signum","","","","","","","","","","","","sub","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","sub_assign","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","sum","","","","","","","","","","","","","","","","","","","","","","","","swap_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_be","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_le","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_owned","","","","","","","","to_string","","","","","","trailing_zeros","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","type_id","","","","","","","","unchecked_add","","","","","","unchecked_mul","","","","","","","","","","","","unsigned_abs","","","","","","wrapping_abs","","","","","","wrapping_neg","","","","","","Add","AddAssign","AsyncFn","AsyncFnMut","AsyncFnOnce","BitAnd","BitAndAssign","BitOr","BitOrAssign","BitXor","BitXorAssign","Bound","Break","CallOnceFuture","CallRefFuture","CoerceUnsized","Complete","Continue","ControlFlow","Coroutine","CoroutineState","Deref","DerefMut","DerefPure","DispatchFromDyn","Div","DivAssign","Drop","Excluded","Fn","FnMut","FnOnce","FromResidual","Included","Index","IndexMut","Mul","MulAssign","Neg","Not","OneSidedRange","Output","","","","","","","","","","","","","","","","Range","RangeBounds","RangeFrom","RangeFull","RangeInclusive","RangeTo","RangeToInclusive","Rem","RemAssign","Residual","","Return","Shl","ShlAssign","Shr","ShrAssign","Sub","SubAssign","Target","Try","TryType","Unbounded","Yeet","Yield","Yielded","add","add_assign","advance_back_by","advance_by","as_mut","as_ref","async_call","async_call_mut","async_call_once","bitand","bitand_assign","bitor","bitor_assign","bitxor","bitxor_assign","borrow","","","","","","","","","","borrow_mut","","","","","","","","","","branch","","break_value","call","call_mut","call_once","clone","","","","","","","","","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cloned","cmp","contains","","","","","","continue_value","count","","default","","deref","deref_mut","div","div_assign","drop","end","","","","end_bound","","","","","","","","","","","","eq","","","","","","","","","fmt","","","","","","","","","","fold","from","","","","","","","","","","","","","from_output","","from_residual","","get","","","","","","","","","","","","get_mut","","","","","","","","","","","","get_unchecked","","","","","","","","","","","","get_unchecked_mut","","","","","","","","","","","","hash","","","","","","","","","index","","","","","","","","","","","","","index_mut","","","","","","","","","","","","","into","","","","","","","","","","into_inner","into_iter","","","is_break","is_continue","is_empty","","is_sorted","","last","","map","map_break","map_continue","max","","min","","mul","mul_assign","neg","new","next","","","next_back","","not","nth","","","nth_back","","partial_cmp","rem","rem_assign","resume","rfold","shl","shl_assign","shr","shr_assign","size_hint","","","start","","","start_bound","","","","","","","","","","","","sub","sub_assign","to_owned","","","","","","","","","try_fold","try_from","","","","","","","","","","try_into","","","","","","","","","","try_rfold","type_id","","","","","","","","","","IntoIter","Iter","IterMut","None","Option","Some","and","and_then","as_deref","as_deref_mut","as_mut","as_mut_slice","as_pin_mut","as_pin_ref","as_ref","as_slice","borrow","","","","borrow_mut","","","","branch","clone","","","clone_from","clone_into","","","clone_to_uninit","","","cloned","","cmp","copied","","default","eq","expect","filter","flatten","fmt","","","","from","","","","","","","","from_iter","from_output","from_residual","","get_or_insert","get_or_insert_default","get_or_insert_with","hash","insert","inspect","into","","","","into_iter","","","","","","is_none","is_none_or","is_some","is_some_and","iter","iter_mut","map","map_or","map_or_else","next","","","next_back","","","ok_or","ok_or_else","or","or_else","partial_cmp","product","replace","size_hint","","","sum","take","take_if","to_owned","","","transpose","try_from","","","","try_into","","","","type_id","","","","unwrap","unwrap_or","unwrap_or_default","unwrap_or_else","unwrap_unchecked","unzip","xor","zip","zip_with","fd","linux","raw","unix","AsFd","AsRawFd","BorrowedFd","FromRawFd","IntoRawFd","OwnedFd","RawFd","as_fd","","","as_raw_fd","","","borrow","","borrow_mut","","borrow_raw","clone","clone_into","clone_to_uninit","drop","fmt","","from","","","","","","","","","","","","","","","from_raw_fd","","into","","into_raw_fd","","is_terminal","","to_owned","try_clone","try_clone_to_owned","try_from","","try_into","","type_id","","fs","net","process","raw","MetadataExt","as_raw_stat","st_atime","st_atime_nsec","st_blksize","st_blocks","st_ctime","st_ctime_nsec","st_dev","st_gid","st_ino","st_mode","st_mtime","st_mtime_nsec","st_nlink","st_rdev","st_size","st_uid","SocketAddrExt","TcpStreamExt","UnixSocketExt","as_abstract_name","deferaccept","from_abstract_name","passcred","quickack","set_deferaccept","set_passcred","set_quickack","ChildExt","CommandExt","PidFd","as_fd","as_raw_fd","borrow","borrow_mut","create_pidfd","fmt","from","","from_raw_fd","into","into_pidfd","into_raw_fd","kill","pidfd","try_from","try_into","try_wait","type_id","wait","__pad0","__unused","blkcnt_t","blksize_t","borrow","borrow_mut","clone","clone_into","clone_to_uninit","dev_t","from","ino_t","into","mode_t","nlink_t","off_t","pthread_t","st_atime","st_atime_nsec","st_blksize","st_blocks","st_ctime","st_ctime_nsec","st_dev","st_gid","st_ino","st_mode","st_mtime","st_mtime_nsec","st_nlink","st_rdev","st_size","st_uid","stat","time_t","to_owned","try_from","try_into","type_id","c_char","c_double","c_float","c_int","c_long","c_longlong","c_schar","c_short","c_uchar","c_uint","c_ulong","c_ulonglong","c_ushort","c_void","ffi","fs","io","net","prelude","process","raw","thread","OsStrExt","OsStringExt","as_bytes","from_bytes","from_vec","into_vec","DirBuilderExt","DirEntryExt","DirEntryExt2","FileExt","FileTypeExt","MetadataExt","OpenOptionsExt","PermissionsExt","atime","atime_nsec","blksize","blocks","chown","chroot","ctime","ctime_nsec","custom_flags","dev","fchown","file_name_ref","from_mode","gid","ino","","is_block_device","is_char_device","is_fifo","is_socket","lchown","mode","","","","mtime","mtime_nsec","nlink","rdev","read_at","read_exact_at","read_vectored_at","set_mode","size","symlink","uid","write_all_at","write_at","write_vectored_at","AsFd","AsRawFd","BorrowedFd","FromRawFd","IntoRawFd","OwnedFd","RawFd","as_fd","as_raw_fd","from_raw_fd","into_raw_fd","AncillaryData","AncillaryError","Incoming","Messages","ScmCredentials","","ScmRights","","SocketAddr","SocketAncillary","SocketCred","UCred","UnixDatagram","UnixListener","UnixStream","Unknown","accept","add_creds","add_fds","as_abstract_name","as_fd","","","as_pathname","as_raw_fd","","","bind","","bind_addr","","borrow","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","capacity","clear","clone","","","clone_into","","","clone_to_uninit","","","connect","","connect_addr","","eq","flush","","fmt","","","","","","","","from","","","","","","","","","","","","","","","","from_abstract_name","from_pathname","from_raw_fd","","","get_gid","get_pid","get_uid","gid","hash","incoming","into","","","","","","","","","","","","","into_iter","","","","","into_raw_fd","","","is_empty","is_read_vectored","","is_unnamed","is_write_vectored","","len","local_addr","","","messages","new","","next","","","","pair","","passcred","","peek","","peek_from","peer_addr","","peer_cred","pid","read","","read_buf","","read_timeout","","read_vectored","","recv","recv_from","recv_vectored_with_ancillary","","recv_vectored_with_ancillary_from","send","send_to","send_to_addr","send_vectored_with_ancillary","","send_vectored_with_ancillary_to","set_gid","set_mark","","set_nonblocking","","","set_passcred","","set_pid","set_read_timeout","","set_uid","set_write_timeout","","shutdown","","size_hint","take_error","","","to_owned","","","truncated","try_clone","","","try_from","","","","","","","","","","","","","try_into","","","","","","","","","","","","","type_id","","","","","","","","","","","","","uid","unbound","write","","write_timeout","","write_vectored","","cmsg_level","cmsg_type","AsFd","AsRawFd","BorrowedFd","CommandExt","DirEntryExt","ExitStatusExt","FileExt","FileTypeExt","FromRawFd","IntoRawFd","JoinHandleExt","MetadataExt","OpenOptionsExt","OsStrExt","OsStringExt","OwnedFd","PermissionsExt","RawFd","arg0","as_bytes","as_fd","as_pthread_t","as_raw_fd","atime","atime_nsec","before_exec","blksize","blocks","continued","core_dumped","ctime","ctime_nsec","custom_flags","dev","exec","from_bytes","from_mode","from_raw","from_raw_fd","from_vec","gid","","groups","ino","","into_pthread_t","into_raw","into_raw_fd","into_vec","is_block_device","is_char_device","is_fifo","is_socket","mode","","","mtime","mtime_nsec","nlink","pre_exec","process_group","rdev","read_at","read_exact_at","read_vectored_at","set_mode","signal","size","stopped_signal","uid","","write_all_at","write_at","write_vectored_at","CommandExt","ExitStatusExt","arg0","before_exec","continued","core_dumped","exec","from_raw","gid","groups","into_raw","parent_id","pre_exec","process_group","signal","stopped_signal","uid","blkcnt_t","blksize_t","dev_t","gid_t","ino_t","mode_t","nlink_t","off_t","pid_t","pthread_t","time_t","uid_t","JoinHandleExt","RawPthread","as_pthread_t","into_pthread_t","AssertUnwindSafe","BacktraceStyle","Full","Location","Off","PanicHookInfo","PanicInfo","RefUnwindSafe","Short","UnwindSafe","always_abort","borrow","","","","borrow_mut","","","","call_once","caller","can_unwind","catch_unwind","clone","","clone_into","","clone_to_uninit","","cmp","column","default","deref","deref_mut","eq","","file","fmt","","","","","","from","","","","get_backtrace_style","hash","into","","","","into_async_iter","into_future","line","location","panic_any","partial_cmp","payload","payload_as_str","poll","poll_next","resume_unwind","set_backtrace_style","set_hook","size_hint","take_hook","to_owned","","to_string","","try_from","","","","try_into","","","","type_id","","","","update_hook","pattern_type","Ancestors","Component","Components","CurDir","DeviceNS","Disk","Display","Iter","MAIN_SEPARATOR","MAIN_SEPARATOR_STR","Normal","ParentDir","Path","PathBuf","Prefix","","PrefixComponent","RootDir","StripPrefixError","UNC","Verbatim","VerbatimDisk","VerbatimUNC","absolute","add_extension","ancestors","as_mut_os_str","as_mut_os_string","as_os_str","","","as_path","","","as_ref","","","","","","","","","","borrow","","","","","","","","","","","borrow_mut","","","","","","","","","","canonicalize","capacity","clear","clone","","","","","","","","clone_from","clone_into","","","","","","","","","clone_to_uninit","","","","","","","","","cmp","","","","","","components","default","deref","deref_mut","description","display","ends_with","eq","","","","","","","","","","","","","","","","","","","","","","","","","exists","extend","extend_one","extension","file_name","file_prefix","file_stem","fmt","","","","","","","","","","","","from","","","","","","","","","","","","","","from_iter","from_str","has_root","hash","","","","","into","","","","","","","","","into_boxed_path","into_iter","","","","","into_os_string","into_path_buf","is_absolute","is_dir","is_file","is_relative","is_separator","is_symlink","is_verbatim","iter","join","kind","leak","metadata","new","","next","","","next_back","","parent","partial_cmp","","","","","","","","","","","","","","","","","","","","","","","","pop","push","read_dir","read_link","reserve","reserve_exact","set_extension","set_file_name","shrink_to","shrink_to_fit","starts_with","strip_prefix","symlink_metadata","to_owned","","","","","","","","","to_path_buf","to_str","to_string","","to_string_lossy","try_exists","try_from","","","","","","","","","try_into","","","","","","","","","try_reserve","try_reserve_exact","type_id","","","","","","","","","","with_added_extension","with_capacity","with_extension","with_file_name","Pin","PinCoerceUnsized","as_deref_mut","as_mut","as_ref","borrow","borrow_mut","clone","clone_into","clone_to_uninit","cmp","deref","deref_mut","eq","fmt","","","from","","ge","get_mut","get_ref","get_unchecked_mut","gt","hash","into","into_async_iter","into_future","into_inner","into_inner_unchecked","into_ref","le","lt","map_unchecked","map_unchecked_mut","ne","new","new_unchecked","partial_cmp","pin","poll","poll_next","resume","","set","size_hint","static_mut","static_ref","to_owned","to_string","try_from","try_into","type_id","PipeReader","PipeWriter","as_fd","","as_raw_fd","","borrow","","borrow_mut","","flush","","fmt","","from","","","","from_raw_fd","","into","","into_raw_fd","","is_read_vectored","","is_write_vectored","","pipe","read","","read_buf","","read_to_end","","read_vectored","","try_clone","","try_from","","try_into","","type_id","","write","","write_vectored","","rust_2015","rust_2018","rust_2021","rust_2024","v1","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","TryFrom","TryInto","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","Error","","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","FromIterator","Future","Hash","Into","IntoFuture","","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","","","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","TryFrom","TryInto","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","from_iter","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_future","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","poll","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_from","try_into","try_reduce","try_rfold","type_ascribe","unzip","zip","AsMut","AsRef","Box","Clone","","Copy","","Debug","Default","","DoubleEndedIterator","Drop","Eq","","Err","ExactSizeIterator","Extend","Fn","FnMut","FnOnce","From","Hash","Into","IntoIter","IntoIterator","Item","","Iterator","None","Ok","Option","Ord","","Output","Owned","PartialEq","","PartialOrd","","Result","Send","Sized","Some","String","Sync","ToOwned","ToString","Unpin","Vec","advance_back_by","advance_by","align_of","align_of_val","all","alloc_error_handler","any","array_chunks","as_mut","as_ref","assert","bench","by_ref","call","call_mut","call_once","cfg","cfg_accessible","cfg_eval","chain","clamp","clone","clone_from","clone_into","cloned","cmp","","cmp_by","collect","collect_into","column","compile_error","concat","concat_bytes","concat_idents","copied","count","cycle","default","deref","derive","derive_const","drop","","enumerate","env","eq","","eq_by","extend","extend_one","extend_reserve","file","filter","filter_map","find","find_map","flat_map","flatten","fold","for_each","format_args","format_args_nl","from","fuse","ge","","global_allocator","gt","","include","include_bytes","include_str","inspect","intersperse","intersperse_with","into","into_iter","is_empty","is_partitioned","is_sorted","is_sorted_by","is_sorted_by_key","last","le","","len","line","log_syntax","lt","","map","map_while","map_windows","max","","max_by","max_by_key","min","","min_by","min_by_key","module_path","ne","","next","next_back","next_chunk","nth","nth_back","option_env","partial_cmp","","partial_cmp_by","partition","partition_in_place","peekable","position","product","reduce","rev","rfind","rfold","rposition","scan","size_hint","size_of","size_of_val","skip","skip_while","step_by","stringify","sum","take","take_while","test","test_case","to_owned","to_string","trace_macros","try_collect","try_find","try_fold","try_for_each","try_reduce","try_rfold","type_ascribe","unzip","zip","bool","char","f32","f64","i128","i16","i32","i64","i8","isize","str","u128","u16","u32","u64","u8","usize","Child","ChildStderr","ChildStdin","ChildStdout","Command","CommandArgs","CommandEnvs","ExitCode","ExitStatus","ExitStatusError","FAILURE","Output","SUCCESS","Stdio","Termination","abort","arg","arg0","args","as_fd","","","as_raw_fd","","","borrow","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","clone","","","","clone_into","","","","clone_to_uninit","","","","code","","code_nonzero","continued","","core_dumped","","create_pidfd","current_dir","default","","env","env_clear","env_remove","envs","eq","","","exec","exit","exit_ok","exit_process","flush","","fmt","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","from_raw","","from_raw_fd","get_args","get_current_dir","get_envs","get_program","gid","groups","id","","inherit","into","","","","","","","","","","","","into_iter","","into_pidfd","into_raw","","into_raw_fd","","","into_status","is_empty","","is_read_vectored","","is_write_vectored","","kill","len","","makes_pipe","new","next","","null","output","pidfd","piped","pre_exec","process_group","read","","read_buf","","read_to_end","","read_vectored","","report","","signal","","size_hint","","spawn","status","","stderr","","","stdin","","stdout","","","stopped_signal","","success","to_owned","","","","to_string","","try_from","","","","","","","","","","","","try_into","","","","","","","","","","","","try_wait","type_id","","","","","","","","","","","","uid","wait","wait_with_output","write","","write_vectored","","Alignment","DynMetadata","MIN","Metadata","NonNull","Pointee","add","addr","addr_eq","addr_of","addr_of_mut","align_of","align_offset","as_mut","as_mut_ptr","as_non_null_ptr","as_nonzero","as_ptr","as_ref","as_uninit_mut","as_uninit_ref","as_uninit_slice","as_uninit_slice_mut","as_usize","borrow","","","borrow_mut","","","byte_add","byte_offset","byte_offset_from","byte_sub","cast","clone","","","clone_into","","","clone_to_uninit","","","cmp","","","copy","copy_from","copy_from_nonoverlapping","copy_nonoverlapping","copy_to","copy_to_nonoverlapping","dangling","","dangling_mut","default","drop_in_place","","eq","","","","fmt","","","","fn_addr_eq","from","","","","","from_mut","from_raw_parts","","from_raw_parts_mut","from_ref","get_unchecked_mut","hash","","","","into","","","is_aligned","is_aligned_to","is_empty","layout","len","log2","map_addr","mask","metadata","new","","new_unchecked","","null","null_mut","of","offset","offset_from","partial_cmp","","","read","","read_unaligned","","read_volatile","","replace","","size_of","slice_from_raw_parts","","slice_from_raw_parts_mut","sub","sub_ptr","swap","","swap_nonoverlapping","to_owned","","","to_raw_parts","try_from","","","","","try_into","","","type_id","","","with_addr","with_exposed_provenance","with_exposed_provenance_mut","without_provenance","without_provenance_mut","write","","write_bytes","","write_unaligned","","write_volatile","","Rc","UniqueRc","Weak","allocator","","as_fd","as_ptr","","as_raw_fd","as_ref","assume_init","","borrow","","","","borrow_mut","","","clone","","clone_into","","clone_to_uninit","","cmp","decrement_strong_count","decrement_strong_count_in","default","","","","","deref","","deref_mut","downcast","downcast_unchecked","downgrade","","drop","","","eq","fmt","","","","","from","","","","","","","","","","","","","","","","","","","from_iter","from_raw","","from_raw_in","","ge","get_mut","get_mut_unchecked","gt","hash","increment_strong_count","increment_strong_count_in","into","","","into_inner","into_raw","","into_raw_with_allocator","","into_rc","le","lt","make_mut","ne","new","","","new_cyclic","new_in","","","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","partial_cmp","pin","pin_in","ptr_eq","","strong_count","","to_owned","","to_string","try_from","","","","try_into","","","try_new","try_new_in","try_new_uninit","try_new_uninit_in","try_new_zeroed","try_new_zeroed_in","try_unwrap","type_id","","","unwrap_or_clone","upgrade","weak_count","","Err","IntoIter","Iter","IterMut","Ok","Result","and","and_then","as_deref","as_deref_mut","as_mut","as_ref","borrow","","","","borrow_mut","","","","branch","clone","","","clone_from","clone_into","","","clone_to_uninit","","","cloned","","cmp","copied","","eq","err","expect","expect_err","flatten","fmt","","","","from","","","","","","from_iter","from_output","from_residual","","hash","inspect","inspect_err","into","","","","into_err","into_iter","","","","","","into_ok","is_err","is_err_and","is_ok","is_ok_and","iter","iter_mut","map","map_err","map_or","map_or_else","next","","","next_back","","","ok","or","or_else","partial_cmp","product","report","size_hint","","","sum","to_owned","","","transpose","try_from","","","","try_into","","","","type_id","","","","unwrap","unwrap_err","unwrap_err_unchecked","unwrap_or","unwrap_or_default","unwrap_or_else","unwrap_unchecked","BITMASK_LEN","Bytes","INDEX","LaneCount","Mask","","MaskElement","Simd","SimdCast","SimdElement","StdFloat","SupportedLaneCount","Swizzle","ToBytes","borrow","borrow_mut","ceil","cmp","concat_swizzle","concat_swizzle_mask","cos","exp","exp2","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","floor","fract","from","from_be_bytes","from_le_bytes","from_ne_bytes","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","into","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","ln","log","log10","log2","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","mul_add","num","prelude","ptr","round","simd_swizzle","sin","sqrt","swizzle","swizzle_mask","to_be_bytes","to_le_bytes","to_ne_bytes","trunc","try_from","try_into","type_id","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","Mask","SimdOrd","SimdPartialEq","SimdPartialOrd","simd_clamp","simd_eq","simd_ge","simd_gt","simd_le","simd_lt","simd_max","simd_min","simd_ne","Bits","Cast","","","Mask","","Scalar","","","SimdFloat","SimdInt","SimdUint","Unsigned","abs","","cast","","","copysign","from_bits","is_finite","is_infinite","is_nan","is_negative","is_normal","is_positive","is_sign_negative","is_sign_positive","is_subnormal","leading_ones","","leading_zeros","","recip","reduce_and","","reduce_max","","","reduce_min","","","reduce_or","","reduce_product","","","reduce_sum","","","reduce_xor","","reverse_bits","","saturating_abs","saturating_add","","saturating_neg","saturating_sub","","signum","","simd_clamp","simd_max","simd_min","swap_bytes","","to_bits","to_degrees","to_int_unchecked","to_radians","trailing_ones","","trailing_zeros","","wrapping_neg","Bits","Cast","","","CastPtr","","ConstPtr","Isize","","LEN","Mask","","","","","","MutPtr","Scalar","","","Simd","SimdConstPtr","SimdFloat","SimdInt","SimdMutPtr","SimdOrd","SimdPartialEq","SimdPartialOrd","SimdUint","Unsigned","Usize","","abs","","","","","","","","","add","","","","","","","","","","","","","","","add_assign","addr","","","","all","any","as_array","as_mut","","as_mut_array","as_ref","","bitand","","","","","","","","","","","","","","","bitand_assign","","","bitor","","","","","","","","","","","","","","","bitor_assign","","","bitxor","","","","","","","","","","","","","","","bitxor_assign","","","borrow","","borrow_mut","","cast","","","","","","","","","","","","","","","","","","","","cast_const","","cast_mut","","clone","","clone_into","","clone_to_uninit","","cmp","copy_to_slice","copysign","","","cos","","default","","deinterleave","div","","","","","","","","","","","","","","","div_assign","eq","","exp","","exp2","","expose_provenance","","","","f32x1","f32x16","f32x2","f32x32","f32x4","f32x64","f32x8","f64x1","f64x16","f64x2","f64x32","f64x4","f64x64","f64x8","first_set","fmt","","fract","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_array","","from_be_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_bitmask","from_bitmask_vector","from_bits","","","from_int","from_int_unchecked","from_le_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_ne_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_slice","gather_or","gather_or_default","gather_ptr","gather_select","gather_select_ptr","gather_select_unchecked","hash","i16x1","i16x16","i16x2","i16x32","i16x4","i16x64","i16x8","i32x1","i32x16","i32x2","i32x32","i32x4","i32x64","i32x8","i64x1","i64x16","i64x2","i64x32","i64x4","i64x64","i64x8","i8x1","i8x16","i8x2","i8x32","i8x4","i8x64","i8x8","index","index_mut","interleave","into","","is_finite","","","is_infinite","","","is_nan","","","is_negative","","","","","","is_normal","","","is_null","","","","is_positive","","","","","","is_sign_negative","","","is_sign_positive","","","is_subnormal","","","isizex1","isizex16","isizex2","isizex32","isizex4","isizex64","isizex8","leading_ones","","","","","","","","","","","","leading_zeros","","","","","","","","","","","","len","ln","","load_or","load_or_default","load_select","load_select_or_default","load_select_ptr","load_select_unchecked","log10","","log2","","mask16x1","mask16x16","mask16x2","mask16x32","mask16x4","mask16x64","mask16x8","mask32x1","mask32x16","mask32x2","mask32x32","mask32x4","mask32x64","mask32x8","mask64x1","mask64x16","mask64x2","mask64x32","mask64x4","mask64x64","mask64x8","mask8x1","mask8x16","mask8x2","mask8x32","mask8x4","mask8x64","mask8x8","masksizex1","masksizex16","masksizex2","masksizex32","masksizex4","masksizex64","masksizex8","mul","","","","","","","","","","","","","","","mul_assign","ne","neg","","","","","","","not","","","","","","","","","","","partial_cmp","","product","","","","","","","","","","","","","","","","","","","","","","","","recip","","","reduce_and","","","","","","","","","","","","reduce_max","","","","","","","","","","","","","","","reduce_min","","","","","","","","","","","","","","","reduce_or","","","","","","","","","","","","reduce_product","","","","","","","","","","","","","","","reduce_sum","","","","","","","","","","","","","","","reduce_xor","","","","","","","","","","","","rem","","","","","","","","","","","","","","","rem_assign","resize","reverse","reverse_bits","","","","","","","","","","","","rotate_elements_left","rotate_elements_right","saturating_abs","","","","","","saturating_add","","","","","","","","","","","","saturating_neg","","","","","","saturating_sub","","","","","","","","","","","","scatter","scatter_ptr","scatter_select","scatter_select_ptr","scatter_select_unchecked","select","select_mask","set","set_unchecked","shl","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shl_assign","shr","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","shr_assign","signum","","","","","","","","","simd_clamp","","","","","","","","","","","","","","","","","","","","","simd_eq","","","","","","","","","","","","","","","","","","","","simd_ge","","","","","","","","","","","","","","","","","","","","simd_gt","","","","","","","","","","","","","","","","","","","","simd_le","","","","","","","","","","","","","","","","","","","","simd_lt","","","","","","","","","","","","","","","","","","","","simd_max","","","","","","","","","","","","","","","","","","","","","simd_min","","","","","","","","","","","","","","","","","","","","","simd_ne","","","","","","","","","","","","","","","","","","","","simd_swizzle","sin","","splat","","store_select","store_select_ptr","store_select_unchecked","sub","","","","","","","","","","","","","","","sub_assign","sum","","","","","","","","","","","","","","","","","","","","","","","","swap_bytes","","","","","","","","","","","","swizzle_dyn","test","test_unchecked","to_array","","to_be_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_bitmask","to_bitmask_vector","to_bits","","","to_degrees","","","to_int","to_int_unchecked","","","to_le_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_ne_bytes","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","to_owned","","to_radians","","","trailing_ones","","","","","","","","","","","","trailing_zeros","","","","","","","","","","","","try_from","","","","try_into","","type_id","","u16x1","u16x16","u16x2","u16x32","u16x4","u16x64","u16x8","u32x1","u32x16","u32x2","u32x32","u32x4","u32x64","u32x8","u64x1","u64x16","u64x2","u64x32","u64x4","u64x64","u64x8","u8x1","u8x16","u8x2","u8x32","u8x4","u8x64","u8x8","usizex1","usizex16","usizex2","usizex32","usizex4","usizex64","usizex8","with_addr","","","","with_exposed_provenance","","","","wrapping_add","","","","wrapping_neg","","","","","","wrapping_offset","","","","wrapping_sub","","","","CastPtr","","ConstPtr","Isize","","Mask","","MutPtr","SimdConstPtr","SimdMutPtr","Usize","","addr","","cast","","cast_const","cast_mut","expose_provenance","","is_null","","with_addr","","with_exposed_provenance","","wrapping_add","","wrapping_offset","","wrapping_sub","","ArrayChunks","ArrayChunksMut","ArrayWindows","ChunkBy","ChunkByMut","Chunks","ChunksExact","ChunksExactMut","ChunksMut","Concat","EscapeAscii","Iter","IterMut","Join","Output","","","RChunks","RChunksExact","RChunksExactMut","RChunksMut","RSplit","RSplitMut","RSplitN","RSplitNMut","SliceIndex","Split","SplitInclusive","SplitInclusiveMut","SplitMut","SplitN","SplitNMut","Windows","advance_back_by","","advance_by","","all","","any","","as_mut_slice","as_ref","","as_slice","","","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","","clone","","","","","","","","","","","","clone_into","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","concat","count","","","","","","","","","","","","","","default","","find","","find_map","","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","fold","","","for_each","","from","","","","","","","","","","","","","","","","","","","","","","","","","","","from_mut","from_mut_ptr_range","from_ptr_range","from_raw_parts","from_raw_parts_mut","from_ref","get","get_mut","get_unchecked","get_unchecked_mut","index","index_mut","into","","","","","","","","","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","","","","","","","","","","into_remainder","","","into_slice","is_empty","","","","","","","","","is_sorted_by","join","last","","","","","","","","","","","","","","","","","len","","next","","","","","","","","","","","","","","","","","","","","","","","","","","","next_back","","","","","","","","","","","","","","","","","","","","","","","nth","","","","","","","","","","","","","","nth_back","","","","","","","","","","","","","","position","","range","remainder","","","rposition","","size_hint","","","","","","","","","","","","","","","","","","","","","","","","","","","to_owned","","","","","","","","","","","","to_string","try_fold","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","","try_range","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","","Bytes","CharIndices","Chars","EncodeUtf16","Err","EscapeDebug","EscapeDefault","EscapeUnicode","FromStr","Lines","LinesAny","MatchIndices","Matches","ParseBoolError","RMatchIndices","RMatches","RSplit","RSplitN","RSplitTerminator","Split","SplitAsciiWhitespace","SplitInclusive","SplitN","SplitTerminator","SplitWhitespace","Utf8Chunk","Utf8Chunks","Utf8Error","advance_by","all","any","as_str","","borrow","","","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","","","","clone","","","","","","","","","","","","","","","","","","","","","","","","","","clone_into","","","","","","","","","","","","","","","","","","","","","","","","","","clone_to_uninit","","","","","","","","","","","","","","","","","","","","","","","","","","count","","","description","","eq","","","error_len","find","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","fold","","","from","","","","","","","","","","","","","","","","","","","","","","","","","","from_boxed_utf8_unchecked","from_raw_parts","from_raw_parts_mut","from_str","from_utf8","from_utf8_mut","from_utf8_unchecked","from_utf8_unchecked_mut","into","","","","","","","","","","","","","","","","","","","","","","","","","","into_iter","","","","","","","","","","","","","","","","","","","","","","","invalid","is_empty","last","","","","","","len","next","","","","","","","","","","","","","","","","","","","","","","","next_back","","","","","","","","","","","","","","","","nth","nth_back","offset","pattern","position","remainder","","","","","","","","","","rfind","rposition","size_hint","","","","","","","","","","","to_owned","","","","","","","","","","","","","","","","","","","","","","","","","","to_string","","","","","try_fold","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","","","try_into","","","","","","","","","","","","","","","","","","","","","","","","","","type_id","","","","","","","","","","","","","","","","","","","","","","","","","","valid","valid_up_to","CharArrayRefSearcher","CharArraySearcher","CharPredicateSearcher","CharSearcher","CharSliceSearcher","Done","DoubleEndedSearcher","Match","Pattern","Reject","ReverseSearcher","SearchStep","Searcher","","StrSearcher","borrow","","","","","","","borrow_mut","","","","","","","clone","","","","","","","clone_into","","","","","","","clone_to_uninit","","","","","","","eq","fmt","","","","","","","from","","","","","","","haystack","","","","","","","into","","","","","","","into_searcher","is_contained_in","is_prefix_of","is_suffix_of","next","","","","","","","next_back","","","","","","","next_match","","","","","","","next_match_back","","","","","","","next_reject","","","","","next_reject_back","","","","","strip_prefix_of","strip_suffix_of","to_owned","","","","","","","try_from","","","","","","","try_into","","","","","","","type_id","","","","","","","Drain","FromUtf16Error","FromUtf8Error","ParseError","String","ToString","add","add_assign","as_bytes","","as_mut","as_mut_str","as_mut_vec","as_ref","","","","","","as_str","","borrow","","","","","borrow_mut","","","","","capacity","clear","clone","","clone_from","clone_into","","clone_to_uninit","","cmp","default","deref","deref_mut","description","","drain","drop","eq","","","","","extend","","","","","","extend_from_within","extend_one","","","","","extend_reserve","","fmt","","","","","","","from","","","","","","","","","","from_iter","","","","","","from_raw_parts","from_str","from_utf16","from_utf16_lossy","from_utf16be","from_utf16be_lossy","from_utf16le","from_utf16le_lossy","from_utf8","from_utf8_lossy","from_utf8_unchecked","hash","index","index_mut","insert","insert_str","into","","","","into_boxed_str","into_bytes","","into_iter","into_raw_parts","into_searcher","is_contained_in","is_empty","is_prefix_of","is_suffix_of","last","leak","len","ne","","","new","next","next_back","partial_cmp","pop","push","push_str","remove","remove_matches","replace_range","reserve","reserve_exact","retain","shrink_to","shrink_to_fit","size_hint","split_off","strip_prefix_of","strip_suffix_of","to_owned","","to_socket_addrs","to_string","","","","truncate","try_from","","","","try_into","","","","try_reserve","try_reserve_exact","try_with_capacity","type_id","","","","utf8_error","with_capacity","write_char","write_str","Arc","Barrier","BarrierWaitResult","Condvar","Err","","Exclusive","LazyLock","LockResult","MappedMutexGuard","MappedRwLockReadGuard","MappedRwLockWriteGuard","Mutex","MutexGuard","ONCE_INIT","Ok","","Once","OnceLock","OnceState","PoisonError","Poisoned","ReentrantLock","ReentrantLockGuard","RwLock","RwLockReadGuard","RwLockWriteGuard","TryLockError","TryLockResult","WaitTimeoutResult","Weak","WouldBlock","allocator","","as_fd","as_ptr","","as_raw_fd","as_ref","assume_init","","atomic","borrow","","","","","","","","","","","","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","","","","","","","","","","","call_mut","call_once","","call_once_force","cause","","clear_poison","","clone","","","","clone_into","","","","clone_to_uninit","","","","cmp","decrement_strong_count","decrement_strong_count_in","default","","","","","","","","","","","","deref","","","","","","","","","deref_mut","","","","description","","","downcast","downcast_unchecked","downgrade","drop","","","","","","","","","","","eq","","","flush","fmt","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","force","from","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","from_iter","from_mut","from_pin_mut","from_raw","","from_raw_in","","ge","get","get_mut","","","","","","","get_mut_or_init","get_mut_or_try_init","get_mut_unchecked","get_or_init","get_or_try_init","get_pin_mut","get_ref","gt","hash","increment_strong_count","increment_strong_count_in","into","","","","","","","","","","","","","","","","","","","","","","","into_future","into_inner","","","","","","","","into_raw","","into_raw_with_allocator","","into_searcher","is_completed","is_contained_in","is_leader","is_poisoned","","","is_prefix_of","is_read_vectored","is_suffix_of","is_write_vectored","le","lock","","lt","make_mut","map","","","","","","mpsc","ne","new","","","","","","","","","","","","new_cyclic","new_in","","new_uninit","new_uninit_in","new_uninit_slice","new_uninit_slice_in","new_zeroed","new_zeroed_in","new_zeroed_slice","new_zeroed_slice_in","notify_all","notify_one","partial_cmp","pin","pin_in","poll","provide","ptr_eq","","read","","read_buf","read_to_end","read_to_string","read_vectored","resume","seek","set","source","strip_prefix_of","strip_suffix_of","strong_count","","take","timed_out","to_owned","","","","to_string","","","","","","","","","","try_from","","","","","","","","","","","","","","","","","","","","","","","","try_insert","try_into","","","","","","","","","","","","","","","","","","","","","","","try_lock","try_map","","","","","","try_new","try_new_in","try_new_uninit","try_new_uninit_in","try_new_zeroed","try_new_zeroed_in","try_pin","try_pin_in","try_read","try_unwrap","try_write","type_id","","","","","","","","","","","","","","","","","","","","","","","unwrap_or_clone","upgrade","wait","","","","wait_force","wait_timeout","wait_timeout_ms","wait_timeout_while","wait_while","weak_count","","write","","write_vectored","ATOMIC_BOOL_INIT","ATOMIC_ISIZE_INIT","ATOMIC_USIZE_INIT","AcqRel","Acquire","AtomicBool","AtomicI16","AtomicI32","AtomicI64","AtomicI8","AtomicIsize","AtomicPtr","AtomicU16","AtomicU32","AtomicU64","AtomicU8","AtomicUsize","Ordering","Relaxed","Release","SeqCst","as_ptr","","","","","","","","","","","","borrow","","","","","","","","","","","","","borrow_mut","","","","","","","","","","","","","clone","clone_into","clone_to_uninit","compare_and_swap","","","","","","","","","","","","compare_exchange","","","","","","","","","","","","compare_exchange_weak","","","","","","","","","","","","compiler_fence","default","","","","","","","","","","","","eq","fence","fetch_add","","","","","","","","","","fetch_and","","","","","","","","","","","","fetch_byte_add","fetch_byte_sub","fetch_max","","","","","","","","","","fetch_min","","","","","","","","","","fetch_nand","","","","","","","","","","","fetch_not","fetch_or","","","","","","","","","","","","fetch_ptr_add","fetch_ptr_sub","fetch_sub","","","","","","","","","","fetch_update","","","","","","","","","","","","fetch_xor","","","","","","","","","","","","fmt","","","","","","","","","","","","","","from","","","","","","","","","","","","","","","","","","","","","","","","","from_mut","","","","","","","","","","","","from_mut_slice","","","","","","","","","","","","from_ptr","","","","","","","","","","","","get_mut","","","","","","","","","","","","get_mut_slice","","","","","","","","","","","","hash","into","","","","","","","","","","","","","into_inner","","","","","","","","","","","","load","","","","","","","","","","","","new","","","","","","","","","","","","spin_loop_hint","store","","","","","","","","","","","","swap","","","","","","","","","","","","to_owned","try_from","","","","","","","","","","","","","try_into","","","","","","","","","","","","","type_id","","","","","","","","","","","","","Disconnected","","","Empty","Full","IntoIter","Iter","Receiver","RecvError","RecvTimeoutError","SendError","Sender","SyncSender","Timeout","TryIter","TryRecvError","TrySendError","borrow","","","","","","","","","","","borrow_mut","","","","","","","","","","","channel","clone","","","","","","","clone_into","","","","","","","clone_to_uninit","","","","","","","description","","","","","eq","","","","","fmt","","","","","","","","","","","","","","","","from","","","","","","","","","","","","","","into","","","","","","","","","","","into_iter","","","","","iter","next","","","recv","recv_deadline","recv_timeout","send","","sync_channel","to_owned","","","","","","","to_string","","","","","try_from","","","","","","","","","","","try_into","","","","","","","","","","","try_iter","try_recv","try_send","type_id","","","","","","","","","","","Context","ContextBuilder","LocalWake","LocalWaker","Pending","Poll","RawWaker","RawWakerVTable","Ready","Wake","Waker","as_raw","","as_ref","borrow","","","","","","","borrow_mut","","","","","","","branch","","build","clone","","","","clone_from","","clone_into","","","","clone_to_uninit","","","","cmp","data","drop","","eq","","","ext","","fmt","","","","","","","from","","","","","","","","","","","","","","from_output","","from_raw","","from_residual","","from_waker","","hash","into","","","","","","","is_pending","is_ready","local_waker","","map","map_err","","map_ok","","new","","noop","","partial_cmp","ready","to_owned","","","","try_from","","","","","","","try_into","","","","","","","type_id","","","","","","","vtable","wake","","","","wake_by_ref","","","","waker","","will_wake","","AccessError","Builder","Err","JoinHandle","LocalKey","Ok","Result","Scope","ScopedJoinHandle","Thread","ThreadId","as_pthread_t","as_u64","available_parallelism","borrow","","","","","","","","borrow_mut","","","","","","","","clone","","","clone_into","","","clone_to_uninit","","","current","eq","","fmt","","","","","","","","","from","","","","","","","","get","hash","id","into","","","","","","","","into_pthread_t","is_finished","","join","","name","","new","panicking","park","park_timeout","park_timeout_ms","replace","","scope","set","","sleep","sleep_ms","sleep_until","spawn","","","spawn_scoped","spawn_unchecked","stack_size","take","","thread","","to_owned","","","to_string","try_from","","","","","","","","try_into","","","","","","","","try_with","type_id","","","","","","","","unpark","with","with_borrow","with_borrow_mut","yield_now","Duration","Instant","MAX","MICROSECOND","MILLISECOND","NANOSECOND","SECOND","SystemTime","SystemTimeError","TryFromFloatSecsError","UNIX_EPOCH","","ZERO","abs_diff","add","","","add_assign","","","as_micros","as_millis","as_millis_f32","as_millis_f64","as_nanos","as_secs","as_secs_f32","as_secs_f64","borrow","","","","","borrow_mut","","","","","checked_add","","","checked_div","checked_duration_since","checked_mul","checked_sub","","","clone","","","","","clone_into","","","","","clone_to_uninit","","","","","cmp","","","default","description","div","div_assign","div_duration_f32","div_duration_f64","div_f32","div_f64","duration","duration_since","","elapsed","","eq","","","","fmt","","","","","","","from","","","","","from_days","from_hours","from_micros","from_millis","from_mins","from_nanos","from_secs","from_secs_f32","from_secs_f64","from_weeks","hash","","","into","","","","","is_zero","mul","mul_assign","mul_f32","mul_f64","new","now","","partial_cmp","","","saturating_add","saturating_duration_since","saturating_mul","saturating_sub","sub","","","","sub_assign","","","subsec_micros","subsec_millis","subsec_nanos","sum","","to_owned","","","","","to_string","","try_from","","","","","try_from_secs_f32","try_from_secs_f64","try_into","","","","","type_id","","","","","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","MAX","MIN","Drain","ExtractIf","IntoIter","Splice","Vec","advance_back_by","advance_by","allocator","","","","append","as_mut","","as_mut_ptr","as_mut_slice","","as_ptr","as_ref","","","","as_slice","","","borrow","","","","","","borrow_mut","","","","","","capacity","clear","clone","","clone_from","clone_into","","clone_to_uninit","","cmp","count","dedup","dedup_by","dedup_by_key","default","","deref","deref_mut","drain","drop","","","","","eq","","","","","","extend","","extend_from_slice","extend_from_within","extend_one","","extend_reserve","","extract_if","flush","fmt","","","","","fold","from","","","","","","","","","","","","","","","","","from_iter","from_raw_parts","from_raw_parts_in","hash","index","index_mut","insert","into","","","","","into_boxed_slice","into_flattened","into_iter","","","","","","","into_raw_parts","into_raw_parts_with_alloc","is_empty","","","is_write_vectored","keep_rest","leak","len","ne","","","","","","new","new_in","next","","","","next_back","","","next_chunk","partial_cmp","pop","pop_if","push","push_within_capacity","remove","reserve","reserve_exact","resize","resize_with","retain","retain_mut","set_len","shrink_to","shrink_to_fit","size_hint","","","","spare_capacity_mut","splice","split_at_spare_mut","split_off","swap_remove","to_owned","","truncate","try_fold","try_from","","","","","try_into","","","","","try_reserve","try_reserve_exact","try_with_capacity","try_with_capacity_in","type_id","","","","","with_capacity","with_capacity_in","write","write_all","write_vectored","export_all_submodules","ChunkedSlice","UnsafeBufWriteGuard","add_byte_count","as_mut_ptr","borrow","","borrow_mut","","from","","into","","into_full_vec","new","next_frame_unchecked","to_slice","try_from","","try_into","","type_id","","with_capacity","with_remainder_unchecked","write_bytes","write_bytes_const"],"q":[[0,"wiwi"],[12,"wiwi::encoding"],[14,"wiwi::encoding::hex"],[33,"wiwi::encoding::z85"],[68,"wiwi::h"],[70,"wiwi::num"],[298,"wiwi::prelude"],[521,"wiwi::prelude::vec"],[526,"wiwi::rust_alloc"],[541,"wiwi::rust_alloc::alloc"],[564,"wiwi::rust_alloc::borrow"],[575,"wiwi::rust_alloc::boxed"],[577,"wiwi::rust_alloc::collections"],[591,"wiwi::rust_alloc::collections::TryReserveErrorKind"],[592,"wiwi::rust_alloc::collections::binary_heap"],[599,"wiwi::rust_alloc::collections::btree_map"],[623,"wiwi::rust_alloc::collections::btree_set"],[636,"wiwi::rust_alloc::collections::linked_list"],[643,"wiwi::rust_alloc::collections::vec_deque"],[648,"wiwi::rust_alloc::ffi"],[653,"wiwi::rust_alloc::ffi::c_str"],[657,"wiwi::rust_alloc::fmt"],[699,"wiwi::rust_alloc::rc"],[702,"wiwi::rust_alloc::slice"],[751,"wiwi::rust_alloc::str"],[788,"wiwi::rust_alloc::str::pattern"],[816,"wiwi::rust_alloc::string"],[823,"wiwi::rust_alloc::sync"],[825,"wiwi::rust_alloc::task"],[831,"wiwi::rust_alloc::vec"],[836,"wiwi::rust_core"],[935,"wiwi::rust_core::alloc"],[952,"wiwi::rust_core::any"],[957,"wiwi::rust_core::arch"],[960,"wiwi::rust_core::arch::x86_64"],[7591,"wiwi::rust_core::array"],[7598,"wiwi::rust_core::ascii"],[7729,"wiwi::rust_core::assert_matches"],[7731,"wiwi::rust_core::async_iter"],[7741,"wiwi::rust_core::borrow"],[7745,"wiwi::rust_core::cell"],[7755,"wiwi::rust_core::char"],[7772,"wiwi::rust_core::clone"],[7778,"wiwi::rust_core::cmp"],[7811,"wiwi::rust_core::convert"],[7828,"wiwi::rust_core::default"],[7831,"wiwi::rust_core::error"],[7855,"wiwi::rust_core::f128"],[7856,"wiwi::rust_core::f128::consts"],[7881,"wiwi::rust_core::f16"],[7882,"wiwi::rust_core::f16::consts"],[7907,"wiwi::rust_core::f32"],[7922,"wiwi::rust_core::f32::consts"],[7947,"wiwi::rust_core::f64"],[7962,"wiwi::rust_core::f64::consts"],[7987,"wiwi::rust_core::ffi"],[8011,"wiwi::rust_core::ffi::c_str"],[8031,"wiwi::rust_core::ffi::va_list"],[8033,"wiwi::rust_core::fmt"],[8074,"wiwi::rust_core::future"],[8094,"wiwi::rust_core::hash"],[8121,"wiwi::rust_core::hint"],[8126,"wiwi::rust_core::i128"],[8128,"wiwi::rust_core::i16"],[8130,"wiwi::rust_core::i32"],[8132,"wiwi::rust_core::i64"],[8134,"wiwi::rust_core::i8"],[8136,"wiwi::rust_core::intrinsics"],[8429,"wiwi::rust_core::intrinsics::mir"],[8470,"wiwi::rust_core::intrinsics::simd"],[8537,"wiwi::rust_core::io"],[8539,"wiwi::rust_core::isize"],[8541,"wiwi::rust_core::iter"],[8700,"wiwi::rust_core::marker"],[8723,"wiwi::rust_core::mem"],[8756,"wiwi::rust_core::net"],[8775,"wiwi::rust_core::num"],[8806,"wiwi::rust_core::ops"],[8933,"wiwi::rust_core::option"],[8939,"wiwi::rust_core::panic"],[8970,"wiwi::rust_core::panicking"],[8981,"wiwi::rust_core::panicking::panic_const"],[8999,"wiwi::rust_core::pin"],[9002,"wiwi::rust_core::prelude"],[9007,"wiwi::rust_core::prelude::rust_2015"],[9196,"wiwi::rust_core::prelude::rust_2018"],[9385,"wiwi::rust_core::prelude::rust_2021"],[9582,"wiwi::rust_core::prelude::rust_2024"],[9786,"wiwi::rust_core::prelude::v1"],[9975,"wiwi::rust_core::primitive"],[9992,"wiwi::rust_core::ptr"],[10031,"wiwi::rust_core::range"],[10239,"wiwi::rust_core::range::legacy"],[10245,"wiwi::rust_core::result"],[10251,"wiwi::rust_core::simd"],[10397,"wiwi::rust_core::simd::cmp"],[10410,"wiwi::rust_core::simd::num"],[10486,"wiwi::rust_core::simd::prelude"],[10729,"wiwi::rust_core::simd::ptr"],[10761,"wiwi::rust_core::slice"],[10819,"wiwi::rust_core::slice::memchr"],[10821,"wiwi::rust_core::str"],[10859,"wiwi::rust_core::str::pattern"],[10887,"wiwi::rust_core::sync"],[10889,"wiwi::rust_core::sync::atomic"],[10913,"wiwi::rust_core::task"],[10923,"wiwi::rust_core::time"],[10925,"wiwi::rust_core::u128"],[10927,"wiwi::rust_core::u16"],[10929,"wiwi::rust_core::u32"],[10931,"wiwi::rust_core::u64"],[10933,"wiwi::rust_core::u8"],[10935,"wiwi::rust_core::ub_checks"],[10937,"wiwi::rust_core::unicode"],[10941,"wiwi::rust_core::unicode::conversions"],[10943,"wiwi::rust_core::usize"],[10945,"wiwi::rust_std"],[11060,"wiwi::rust_std::alloc"],[11188,"wiwi::rust_std::any"],[11228,"wiwi::rust_std::arch"],[11239,"wiwi::rust_std::arch::x86_64"],[18115,"wiwi::rust_std::array"],[18168,"wiwi::rust_std::ascii"],[18361,"wiwi::rust_std::assert_matches"],[18363,"wiwi::rust_std::async_iter"],[18388,"wiwi::rust_std::backtrace"],[18426,"wiwi::rust_std::borrow"],[18525,"wiwi::rust_std::boxed"],[18737,"wiwi::rust_std::cell"],[18946,"wiwi::rust_std::char"],[19155,"wiwi::rust_std::clone"],[19161,"wiwi::rust_std::cmp"],[19241,"wiwi::rust_std::collections"],[19757,"wiwi::rust_std::collections::TryReserveErrorKind"],[19758,"wiwi::rust_std::collections::binary_heap"],[19858,"wiwi::rust_std::collections::btree_map"],[20173,"wiwi::rust_std::collections::btree_set"],[20385,"wiwi::rust_std::collections::hash_map"],[20680,"wiwi::rust_std::collections::hash_set"],[20810,"wiwi::rust_std::collections::linked_list"],[20930,"wiwi::rust_std::collections::vec_deque"],[21022,"wiwi::rust_std::convert"],[21061,"wiwi::rust_std::default"],[21064,"wiwi::rust_std::env"],[21177,"wiwi::rust_std::env::consts"],[21185,"wiwi::rust_std::error"],[21232,"wiwi::rust_std::f128"],[21233,"wiwi::rust_std::f128::consts"],[21258,"wiwi::rust_std::f16"],[21259,"wiwi::rust_std::f16::consts"],[21284,"wiwi::rust_std::f32"],[21299,"wiwi::rust_std::f32::consts"],[21324,"wiwi::rust_std::f64"],[21339,"wiwi::rust_std::f64::consts"],[21364,"wiwi::rust_std::ffi"],[21715,"wiwi::rust_std::ffi::c_str"],[21722,"wiwi::rust_std::ffi::os_str"],[21735,"wiwi::rust_std::fmt"],[21924,"wiwi::rust_std::fs"],[22171,"wiwi::rust_std::future"],[22240,"wiwi::rust_std::hash"],[22335,"wiwi::rust_std::hint"],[22340,"wiwi::rust_std::i128"],[22342,"wiwi::rust_std::i16"],[22344,"wiwi::rust_std::i32"],[22346,"wiwi::rust_std::i64"],[22348,"wiwi::rust_std::i8"],[22350,"wiwi::rust_std::intrinsics"],[22643,"wiwi::rust_std::intrinsics::mir"],[22712,"wiwi::rust_std::intrinsics::simd"],[22779,"wiwi::rust_std::io"],[23453,"wiwi::rust_std::io::prelude"],[23490,"wiwi::rust_std::isize"],[23492,"wiwi::rust_std::iter"],[24397,"wiwi::rust_std::marker"],[24454,"wiwi::rust_std::mem"],[24585,"wiwi::rust_std::net"],[25056,"wiwi::rust_std::num"],[28035,"wiwi::rust_std::ops"],[28453,"wiwi::rust_std::option"],[28583,"wiwi::rust_std::os"],[28587,"wiwi::rust_std::os::fd"],[28643,"wiwi::rust_std::os::linux"],[28647,"wiwi::rust_std::os::linux::fs"],[28665,"wiwi::rust_std::os::linux::net"],[28676,"wiwi::rust_std::os::linux::process"],[28698,"wiwi::rust_std::os::linux::raw"],[28737,"wiwi::rust_std::os::raw"],[28751,"wiwi::rust_std::os::unix"],[28759,"wiwi::rust_std::os::unix::ffi"],[28765,"wiwi::rust_std::os::unix::fs"],[28812,"wiwi::rust_std::os::unix::io"],[28823,"wiwi::rust_std::os::unix::net"],[29075,"wiwi::rust_std::os::unix::net::AncillaryError"],[29077,"wiwi::rust_std::os::unix::prelude"],[29151,"wiwi::rust_std::os::unix::process"],[29168,"wiwi::rust_std::os::unix::raw"],[29180,"wiwi::rust_std::os::unix::thread"],[29184,"wiwi::rust_std::panic"],[29269,"wiwi::rust_std::pat"],[29270,"wiwi::rust_std::path"],[29567,"wiwi::rust_std::pin"],[29620,"wiwi::rust_std::pipe"],[29669,"wiwi::rust_std::prelude"],[29674,"wiwi::rust_std::prelude::rust_2015"],[29872,"wiwi::rust_std::prelude::rust_2018"],[30070,"wiwi::rust_std::prelude::rust_2021"],[30276,"wiwi::rust_std::prelude::rust_2024"],[30489,"wiwi::rust_std::prelude::v1"],[30687,"wiwi::rust_std::primitive"],[30704,"wiwi::rust_std::process"],[30959,"wiwi::rust_std::ptr"],[31111,"wiwi::rust_std::rc"],[31250,"wiwi::rust_std::result"],[31369,"wiwi::rust_std::simd"],[31539,"wiwi::rust_std::simd::cmp"],[31552,"wiwi::rust_std::simd::num"],[31628,"wiwi::rust_std::simd::prelude"],[33145,"wiwi::rust_std::simd::ptr"],[33177,"wiwi::rust_std::slice"],[33704,"wiwi::rust_std::str"],[34184,"wiwi::rust_std::str::pattern"],[34335,"wiwi::rust_std::string"],[34507,"wiwi::rust_std::sync"],[35004,"wiwi::rust_std::sync::atomic"],[35435,"wiwi::rust_std::sync::mpsc"],[35610,"wiwi::rust_std::task"],[35754,"wiwi::rust_std::thread"],[35888,"wiwi::rust_std::time"],[36051,"wiwi::rust_std::u128"],[36053,"wiwi::rust_std::u16"],[36055,"wiwi::rust_std::u32"],[36057,"wiwi::rust_std::u64"],[36059,"wiwi::rust_std::u8"],[36061,"wiwi::rust_std::usize"],[36063,"wiwi::rust_std::vec"],[36261,"wiwi::util"],[36262,"wiwi::util_unsafe"],[36288,"alloc::vec"],[36289,"core::result"],[36290,"alloc::string"],[36291,"core::fmt"],[36292,"core::any"],[36293,"wiwi::num::add_carrying"],[36294,"wiwi::num::add_checked"],[36295,"core::option"],[36296,"wiwi::num::add_overflowing"],[36297,"wiwi::num::add_regular"],[36298,"wiwi::num::and_regular"],[36299,"wiwi::num::signedness"],[36300,"wiwi::num::count_bits"],[36301,"wiwi::num::div_checked"],[36302,"wiwi::num::div_float"],[36303,"wiwi::num::div_int"],[36304,"wiwi::num::div_overflowing"],[36305,"wiwi::num::div_regular"],[36306,"wiwi::num::array_conversions"],[36307,"wiwi::num::base"],[36308,"wiwi::num::from_lossless"],[36309,"wiwi::num::from_lossy"],[36310,"wiwi::num::into_lossless"],[36311,"wiwi::num::into_lossy"],[36312,"wiwi::num::widening"],[36313,"wiwi::num::narrowing"],[36314,"wiwi::num::mul_checked"],[36315,"wiwi::num::mul_overflowing"],[36316,"wiwi::num::mul_regular"],[36317,"wiwi::num::mul_unchecked"],[36318,"wiwi::num::mul_widening"],[36319,"wiwi::num::neg_checked"],[36320,"wiwi::num::neg_regular"],[36321,"wiwi::num::not_regular"],[36322,"wiwi::num::or_regular"],[36323,"wiwi::num::rem_checked"],[36324,"wiwi::num::rem_regular"],[36325,"wiwi::num::shl_checked"],[36326,"wiwi::num::shl_regular"],[36327,"wiwi::num::shr_checked"],[36328,"wiwi::num::shr_regular"],[36329,"wiwi::num::sub_borrowing"],[36330,"wiwi::num::sub_checked"],[36331,"wiwi::num::sub_overflowing"],[36332,"wiwi::num::sub_regular"],[36333,"wiwi::num::xor_regular"],[36334,"core::iter::traits::double_ended"],[36335,"core::num::nonzero"],[36336,"core::iter::traits::iterator"],[36337,"core::marker"],[36338,"core::ops::function"],[36339,"core::iter::adapters::array_chunks"],[36340,"core::convert"],[36341,"core::iter::adapters::chain"],[36342,"core::iter::traits::collect"],[36343,"core::cmp"],[36344,"core::clone"],[36345,"alloc::borrow"],[36346,"core::borrow"],[36347,"core::iter::adapters::cloned"],[36348,"core::iter::adapters::copied"],[36349,"core::iter::adapters::cycle"],[36350,"core::ops::drop"],[36351,"core::iter::adapters::enumerate"],[36352,"core::iter::adapters::filter"],[36353,"core::iter::adapters::filter_map"],[36354,"core::iter::adapters::flatten"],[36355,"core::iter::adapters::fuse"],[36356,"core::iter::adapters::inspect"],[36357,"core::iter::adapters::intersperse"],[36358,"core::future::into_future"],[36359,"core::future::future"],[36360,"core::iter::traits::exact_size"],[36361,"core::iter::adapters::map"],[36362,"core::iter::adapters::map_while"],[36363,"core::iter::adapters::map_windows"],[36364,"core::array::iter"],[36365,"core::default"],[36366,"core::iter::adapters::peekable"],[36367,"core::pin"],[36368,"core::task::wake"],[36369,"core::task::poll"],[36370,"core::iter::traits::accum"],[36371,"core::iter::adapters::rev"],[36372,"core::iter::adapters::scan"],[36373,"core::iter::adapters::skip"],[36374,"core::iter::adapters::skip_while"],[36375,"core::iter::adapters::step_by"],[36376,"core::iter::adapters::take"],[36377,"core::iter::adapters::take_while"],[36378,"core::ops::try_trait"],[36379,"core::iter::adapters::zip"],[36380,"core::alloc::layout"],[36381,"core::alloc::global"],[36382,"core::alloc"],[36383,"core::ptr::non_null"],[36384,"core::fmt::builders"],[36385,"alloc::slice"],[36386,"core::ops::range"],[36387,"core::slice::index"],[36388,"alloc::boxed"],[36389,"core::str::traits"],[36390,"core::str::error"],[36391,"core::str::pattern"],[36392,"alloc::task"],[36393,"alloc::sync"],[36394,"alloc::rc"],[36395,"core::core_arch::x86"],[36396,"core::core_arch::x86::cpuid"],[36397,"core::sync::atomic"],[36398,"core::ascii"],[36399,"core::async_iter::from_iter"],[36400,"core::async_iter::async_iter"],[36401,"core::char::decode"],[36402,"core::error"],[36403,"core::ffi::c_str"],[36404,"core::future::async_drop"],[36405,"core::future::pending"],[36406,"core::future::poll_fn"],[36407,"core::future::ready"],[36408,"core::hash"],[36409,"core::intrinsics"],[36410,"core::panic::location"],[36411,"core::intrinsics::mir"],[36412,"core::iter::range"],[36413,"core::iter::sources::empty"],[36414,"core::iter::sources::from_coroutine"],[36415,"core::ops::coroutine"],[36416,"core::iter::sources::from_fn"],[36417,"core::iter::sources::once"],[36418,"core::iter::sources::once_with"],[36419,"core::iter::sources::repeat"],[36420,"core::iter::sources::repeat_n"],[36421,"core::iter::sources::repeat_with"],[36422,"core::iter::sources::successors"],[36423,"core::mem"],[36424,"core::mem::transmutability"],[36425,"core::ops::arith"],[36426,"core::ops::async_function"],[36427,"core::ops::bit"],[36428,"core::ops::control_flow"],[36429,"core::ops::deref"],[36430,"core::ops::index"],[36431,"core::panic::panic_info"],[36432,"core::range::iter"],[36433,"core::range"],[36434,"core::core_simd::vector"],[36435,"core::core_simd::masks"],[36436,"core::core_simd::to_bytes"],[36437,"core::core_simd::simd::num::uint"],[36438,"core::core_simd::simd::cmp::ord"],[36439,"core::core_simd::simd::cmp::eq"],[36440,"core::core_simd::simd::num::float"],[36441,"core::core_simd::simd::num::int"],[36442,"core::core_simd::simd::ptr::const_ptr"],[36443,"core::core_simd::simd::ptr::mut_ptr"],[36444,"core::slice"],[36445,"std::alloc"],[36446,"alloc::alloc"],[36447,"core::array"],[36448,"core::mem::maybe_uninit"],[36449,"std::ascii"],[36450,"std::backtrace"],[36451,"std::ffi::os_str"],[36452,"std::path"],[36453,"alloc::ffi::c_str"],[36454,"std::os::fd::owned"],[36455,"std::os::fd::raw"],[36456,"std::io"],[36457,"alloc::boxed::thin"],[36458,"std::io::error"],[36459,"core::slice::iter"],[36460,"alloc::vec::into_iter"],[36461,"core::io::borrowed_buf"],[36462,"core::cell"],[36463,"core::cell::once"],[36464,"core::cell::lazy"],[36465,"core::char"],[36466,"core::char::convert"],[36467,"alloc::collections::binary_heap"],[36468,"alloc::collections::vec_deque"],[36469,"alloc::collections::btree::map"],[36470,"alloc::collections::btree::set"],[36471,"alloc::collections::linked_list"],[36472,"std::collections::hash::set"],[36473,"std::collections::hash::map"],[36474,"alloc::collections"],[36475,"alloc::collections::vec_deque::drain"],[36476,"alloc::collections::btree::map::entry"],[36477,"alloc::collections::vec_deque::iter_mut"],[36478,"alloc::collections::vec_deque::iter"],[36479,"alloc::collections::vec_deque::into_iter"],[36480,"std::process"],[36481,"std::env"],[36482,"std::error"],[36483,"core::ffi::va_list"],[36484,"core::ffi::va_list::sealed_trait"],[36485,"core::ffi"],[36486,"std::fs"],[36487,"std::time"],[36488,"std::os::linux::raw::arch"],[36489,"std::hash::random"],[36490,"core::hash::sip"],[36491,"std::io::stdio"],[36492,"std::io::buffered::bufreader"],[36493,"std::io::buffered::bufwriter"],[36494,"std::io::cursor"],[36495,"std::io::util"],[36496,"std::io::buffered"],[36497,"std::io::buffered::linewriter"],[36498,"core::iter::adapters::by_ref_sized"],[36499,"core::mem::manually_drop"],[36500,"std::net::tcp"],[36501,"core::net::socket_addr"],[36502,"std::net::udp"],[36503,"core::net::ip_addr"],[36504,"std::net::socket_addr"],[36505,"std::net"],[36506,"core::net::parser"],[36507,"core::time"],[36508,"core::num::saturating"],[36509,"core::num::wrapping"],[36510,"core::num::dec2flt"],[36511,"core::num::error"],[36512,"core::num"],[36513,"core::ptr::alignment"],[36514,"std::os::linux::process"],[36515,"std::pipe"],[36516,"std::os::unix::net::datagram"],[36517,"std::os::unix::net::stream"],[36518,"std::os::unix::net::listener"],[36519,"std::os::linux::fs"],[36520,"std::os::net::linux_ext::addr"],[36521,"std::os::net::linux_ext::tcp"],[36522,"std::os::unix::net::addr"],[36523,"std::os::net::linux_ext::socket"],[36524,"std::os::unix::ffi::os_str"],[36525,"std::os::unix::fs"],[36526,"std::os::unix::net::ancillary"],[36527,"std::os::unix::net::ucred"],[36528,"std::os::unix::process"],[36529,"std::os::unix::thread"],[36530,"core::panic::unwind_safe"],[36531,"std::panic"],[36532,"std::sys_common::process"],[36533,"core::ptr::metadata"],[36534,"miniz_oxide"],[36535,"std::std_float"],[36536,"core::core_simd::masks::mask_impl"],[36537,"core::slice::ascii"],[36538,"core::str::iter"],[36539,"core::str::lossy"],[36540,"core::sync::exclusive"],[36541,"std::sync::once"],[36542,"std::sync::poison"],[36543,"std::sync::mutex"],[36544,"std::sync::rwlock"],[36545,"std::sync::once_lock"],[36546,"std::sync::condvar"],[36547,"std::sync::lazy_lock"],[36548,"std::sync::reentrant_lock"],[36549,"std::sync::barrier"],[36550,"std::sync::mpsc"],[36551,"std::thread"],[36552,"std::thread::local"],[36553,"std::thread::scoped"],[36554,"alloc::vec::drain"],[36555,"alloc::vec::extract_if"],[36556,"alloc::vec::splice"],[36557,"wiwi::util_unsafe::encoding_utils"],[36558,"wiwi::encoding::hex::encode"],[36559,"core::fmt::macros"],[36560,"core::result::Result"],[36561,"core::option::Option"],[36562,"core"],[36563,"std"],[36564,"alloc"],[36565,"alloc::ffi"],[36566,"alloc::fmt"],[36567,"core::slice::raw"],[36568,"alloc::str"],[36569,"core::str::converts"],[36570,"core::str"],[36571,"core::macros"],[36572,"core::arch"],[36573,"core::core_arch::arch"],[36574,"core::core_arch::x86::avx"],[36575,"core::core_arch::x86::avx512f"],[36576,"core::core_arch::x86::sse"],[36577,"core::core_arch::x86::sse41"],[36578,"core::core_arch::x86::sse42"],[36579,"core::core_arch::x86::rtm"],[36580,"core::core_arch::x86::xsave"],[36581,"core::core_arch::x86::rdtsc"],[36582,"core::core_arch::x86::adx"],[36583,"core::core_arch::x86_64::adx"],[36584,"core::core_arch::x86::bmi1"],[36585,"core::core_arch::x86_64::bmi"],[36586,"core::core_arch::x86::tbm"],[36587,"core::core_arch::x86_64::tbm"],[36588,"core::core_arch::x86::bt"],[36589,"core::core_arch::x86_64::bt"],[36590,"core::core_arch::x86::bswap"],[36591,"core::core_arch::x86_64::bswap"],[36592,"core::core_arch::x86::bmi2"],[36593,"core::core_arch::x86_64::bmi2"],[36594,"core::core_arch::x86::avx512bw"],[36595,"core::core_arch::x86_64::avx512bw"],[36596,"core::core_arch::x86::avx512dq"],[36597,"core::core_arch::x86::fxsr"],[36598,"core::core_arch::x86_64::fxsr"],[36599,"core::core_arch::x86::abm"],[36600,"core::core_arch::x86_64::abm"],[36601,"core::core_arch::x86::avx2"],[36602,"core::core_arch::x86::avx512fp16"],[36603,"core::core_arch::x86::vaes"],[36604,"core::core_arch::x86::avxneconvert"],[36605,"core::core_arch::x86::avx512bitalg"],[36606,"core::core_arch::x86::avx512cd"],[36607,"core::core_arch::x86::vpclmulqdq"],[36608,"core::core_arch::x86::avx512bf16"],[36609,"core::core_arch::x86::f16c"],[36610,"core::core_arch::x86::avx512vnni"],[36611,"core::core_arch::x86_64::avx"],[36612,"core::core_arch::x86::fma"],[36613,"core::core_arch::x86::gfni"],[36614,"core::core_arch::x86::avx512ifma"],[36615,"core::core_arch::x86::avx512vbmi"],[36616,"core::core_arch::x86::avx512vbmi2"],[36617,"core::core_arch::x86::avx512vpopcntdq"],[36618,"core::core_arch::x86::ssse3"],[36619,"core::core_arch::x86::sse2"],[36620,"core::core_arch::x86::sse3"],[36621,"core::core_arch::x86::aes"],[36622,"core::core_arch::x86::pclmulqdq"],[36623,"core::core_arch::x86_64::sse42"],[36624,"core::core_arch::x86_64::avx512f"],[36625,"core::core_arch::x86_64::avx512fp16"],[36626,"core::core_arch::x86_64::sse2"],[36627,"core::core_arch::x86_64::sse"],[36628,"core::core_arch::x86_64::sse41"],[36629,"core::core_arch::x86::sse4a"],[36630,"core::core_arch::x86::sha"],[36631,"core::core_arch::x86::rdrand"],[36632,"core::core_arch::x86_64::rdrand"],[36633,"core::core_arch::x86_64::amx"],[36634,"core::core_arch::x86_64::xsave"],[36635,"core::core_arch::x86_64::cmpxchg16b"],[36636,"core::convert::num"],[36637,"core::f128"],[36638,"core::f128::consts"],[36639,"core::f16"],[36640,"core::f16::consts"],[36641,"core::f32"],[36642,"core::f32::consts"],[36643,"core::f64"],[36644,"core::f64::consts"],[36645,"core::future::join"],[36646,"core::hash::macros"],[36647,"core::hint"],[36648,"core::i128"],[36649,"core::i16"],[36650,"core::i32"],[36651,"core::i64"],[36652,"core::i8"],[36653,"core::intrinsics::simd"],[36654,"core::isize"],[36655,"core::iter::traits::marker"],[36656,"core::ops::unsize"],[36657,"core::panicking"],[36658,"core::panicking::panic_const"],[36659,"core::prelude"],[36660,"core::macros::builtin"],[36661,"core::ptr"],[36662,"core::core_simd::lane_count"],[36663,"core::core_simd::cast"],[36664,"core::core_simd::swizzle"],[36665,"core::core_simd::simd"],[36666,"core::core_simd::alias"],[36667,"core::slice::memchr"],[36668,"core::str::validations"],[36669,"core::sync"],[36670,"core::task::ready"],[36671,"core::u128"],[36672,"core::u16"],[36673,"core::u32"],[36674,"core::u64"],[36675,"core::u8"],[36676,"core::unicode"],[36677,"core::unicode::unicode_data"],[36678,"core::unicode::unicode_data::conversions"],[36679,"core::usize"],[36680,"std_detect"],[36681,"std::collections"],[36682,"std::env::consts"],[36683,"std::ffi"],[36684,"std::io::copy"],[36685,"std::os"],[36686,"std::os::linux"],[36687,"std::os::linux::raw"],[36688,"std::os::raw"],[36689,"std::os::unix"],[36690,"std::os::unix::raw"],[36691,"std::panicking"],[36692,"std::prelude"],[36693,"std::sync"]],"i":"```````````````l0```00```00000000```Ah00`````An101``111000101001010101``Df0``````0000`````````````````````````````````````````````````````````````````00`````````0```````C`````Cd``2B`0BdBhBj0Bl065Cf0ChCj0Cl0CnD`0Dd>DjDlE`EbEfEhElEnFbFdFhFjFnG`GdGfDd0GjGlH`HbHfHhHlHnI`IbIdIf>>>>>AD`ADdA@d0```ADfABj2ADj303`333AEbAEfAAjAEl77777470`47777>777>777;77Ol880`588888AEh9``99`9119```99``999`9``99ABbAHb``;;;;AHhAHj=5`=```=````````````````````````````AI``0AIb00`1000``10``C@n`06`ABdAIj88``CGj```0`````````FEn```````````````````CI``````0```CNn0`````````````````````````````````````DCf````````Ad```1```0``1```AD`ADdAIlAInAJ`AJbAJdAJfAJh```AJn00`````````````````AKdAKjAKh````````````````2``````0000001``````ALd``````````````````````````0``````````ALn`0`0```ALl`ALh11110AM`101022``````AHb````AMbAMf10``````````````````````````````````````````````````````````````````````````````````````````````````````````````AI`0AIb00100010``AMj````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````AMn000```````C@d000000000000000000000000000000000`00000000000000000000000000000`00000000000000000000000000000000000000000000000000000000000000000`````B@h`B@j1`100``ABdAIj``````````````````````````````AAn0B@n``ABh00````````AAl0ACfADj000`2```2`````10``AHjAHh``````A@nAA`ADf`AEb45``AFf```BAb0BA`1110111110``101111````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````BAf000000000000000`````DCf````````Ad```1```0``1```AD`ADdAIlAInAJ`AJbAJdAJfAJh``AJn00``BAl``AEfAEh1````2`1``0```````BBh`0BBjBBl20111111111111111````````````````BCb```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````BD```````BCn``````1``0````````````````````````````````````````````````````````````````````````````````````````````````````````````````````AAj`0A@d````````````````````````Ol1111BDb002`222222222`222ABl0033333333111``ABj4444445AEl55555505555555555554554``555555AG`66```6556666664`AGl7777777767`7`````FF`````````````````BEl````````DIf`````0`````0``````BF```1```DJl00````0000```DJjDIn10DLj`DLl`101`````````````0``1`0``10`````````````BGnBFnBFj`BJ`3``````````BHj````0```````BFbBJjBIf6BIhAAfAHdBIbBHfBIjBG`BGdBGhBJbBJfBHn``````````9BDj``````BHb`FFbBHj`3BJ`BFbBFdBFfBFjBFn?BGb?BGf?BGjAHdAAbA@jAAfAKnBHbBHdBHfBHhACbAKfAKlDM`8`0>```>>>AEbAAjAElA@d0000401``40000;000;000`700Ol110`511111111100111``111`111```111110`11`````````````n````````4`42`Bf1```AAf```````1``34``4`44A@nAA```6AAbA@j4```8AAlAAn0:1::::`````:::AFf````ACb<`ACf==ABl00`>>>>>>>>``ADf?ADjA@d`10```000AEbAAjAEl33333430``43333;333;333`733Ol440`544444444400444``444`444```444440`44`````````````nAHjAHh`````````5`57`Bf3```AAf```````1````59``9`99A@nAA```;AAbA@j4```=AAlAAn0?1????`````???AFf````ACbA@d`ACf11ABl00`22222222``ADfABj4ADj5`05```555AEbAAjAEl88888380``38888<888<888`788Ol990`499999999900999``999`999```9999AHhAHj;2`;;`````````````n12```````````AEf6`6=`Bf2```AAfAEh3```````2````7A@d``0`00A@nAA```2AAbA@j6```4AAlAAn0616666`````666AFf````ACb8`ACf99ABl00`::::::::``ADfABj;>CI`COnCIlCNn0CJlCK`CJnCMbCOfCOjCLjCLnCMnCNbCIdCMdCMhCOlCI`COnCIlCNnCJlCK`CJnCMbCOfCOjCLjCLnCMnCNbCIdCMdCMhCOl??COnCIl32323232CI`21CNnCJlCK`CJnCMbCOfCOjCLjCLnCMnCNbCIdCMdCMhCOl=<;:9876543COnCIlCI`21CJlCK`?>=<;:910CJnCMbCOfCOjCLjCLn7641CMnCNb9863109876543210CIdCMdCMhCOl=<;:987654>>>>210210210??1010=<;:98763=:952CNn?COnCIl2CJlCK`CJnCMbCOfCOjCLjCLnCMnCNbCIdCMdCMhCOlCI`COnCIlCNnCJlCK`CJnCMbCOfCOjCLjCLnCMnCNbCIdCMdCMhCOlCI`COnCIlCNnCJlCK`CJnCMbCOfCOjCLjCLnCMnCNbCIdCMdCMhCOl>1`````````````CMjD@bCKfCHbCNjCJ`CObCIh76D@`CKhCN`CMf987654;:32109876531098765310987653109213987654;:33210987654;:3210;:;:;:;:987654;:321098765421919291987651987654;:210921;:0;:0;:0;:;:9876542987653103987654;:3210987654;:3210987654;:3210;```````````D@dCHn````````10```10CJdCJbCJfCM`COdCHdCIbCOhCLhCLlCNfD@jD@lCNlCJdCJbCJfCM`COdCHdCIbCOhCLhCLlCNfD@dD@fD@hCNdCHnD@jD@lCNlCJdCM`COd2102102CJbCJf32COhCLhCLl8874365CHdCIb432CNfD@dD@fD@hCNdCHnD@jD@lCNl0CJdCJbCJfCM`COd?COhCLhCLl76543CHdCIb432CNfD@dD@fD@hCNdCHnD@jD@lCNl84848462666265213156CJdCJbCJfCM`COd?>COhCLhCLlCNfD@dD@fD@hCNdCHnD@jD@lCNlCJdCJbCJfCM`COdCHdCIbCOhCLhCLlD@f<00=0>=<0:98765321:987654321>D@d?0??1>1>>>;:98765432;87<;:98765432CNf12D@hCNdCHnD@jD@lCNlCJdCJbCJfCM`COdCHdCIbCOhCLhCLlCNfD@dD@fD@hCNdCHnD@jD@lCNlCJdCJbCJfCM`COdCHdCIbCOhCLhCLlCNfD@dD@fD@hCNdCHnD@jD@lCNl0`````````CKbCKdCHhCIfCInCH`CNhCO`76543210732107321073210760765432107653210765432107654321076543210765765432107654321073210765432107654321076543210```````CGnCGl1011CKlCKj23CIjCKn32451034034034045320324510324510455455532451032103245453210320454555555532105555340324510324510324510`````CL`CLbCLd210CHj32103212121211320032132103210321032132132132032103211321032121321032103213210321``AHjAHh``````A@nAA`C@`000000000ADf1111`AEb2222252622``AFf```DAd0``````DAhDAjDAlDA`DAb5DAf5432160666```6065432166005432160`54321605432121`215432121```54321``660543216054321605432160```````````````DAnBAd10BA`000000000022122220002201111``2002222111```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````DB`CA`CAhDBd112CAfCAj1144305114DCb44DBh4DBj3DBlDBn:DBf7:59483621;06```````````````777948321;77:9483621;7:9483621;7:9667:9679070432:9;7777777777:::::::::::::9483621:7777:5944883362211;077777759999948321;0:6667:77769779997:7:7:96796775948321;097989637:97974::67:7:7:::7:94`777777777:::::::::::::9677777:3::66:7:9483621;:648321:675948321;075948321;0777:59483621;037;7``````````DC`000000000```DCf````````Ad```1```0``1```Ab0AJjDCnDD`DClDChDCjAJl79ADb76543218:07:07:07:070888880043243243:06565865432654328AD`ADdAIlAInAJ`AJbAJdAJfAJh::DCf::AJj0`DCnDD`DClDChDCjAJlAb8ADb8`07654321908331101111908208765432190876543219087654321908331`AJn2022022`````````DDbDDfDDh0222220DEd3DEf3DDlDDnDE`DEb658473210`873218732187321`670``6788873821`5558666584732106658473210268`158658473210461181181661816668`65872088873048676588`667666``66`6666620````6636263`6268`8888888888888888`6687321766584732106584732106584732108`6676666``BAl``AEfAEh1````2`BAnBB`BBbBBd3210202020321032103210532100``43210``20321032103210``````BBh``DEjDElDEnDF`321043132103210321032101BBj3143214321BBl6054325432254325432543254321421111111412111111````````````````BCb```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````BD```````BCn``````1``0`````````````````````01BClBCj231023102310``231023102310```````````````````````````````````````````````````````````````````DGj000``0`````0000CCj`11`0FFh``222222`222``2```2222220222``2`2`````21``````2`22222`2`CChCCnCCf2100DFbDFdDFfDFhDFjDFl6543210DFnDG`DHbDHfCBf:98765DHh>DGdDHdDGhDGjDGlDGnCCnCCjDGfDH`DGbDHjDHlCCfDFnDG`DHbDHfCBfDFbDFdDFfDFhDFjDFlDHhCChDGdDHdDGhDGjDGlDGnCCnCCjDGfDH`DGbDHjDHlCCfDFnDG`CCbCBh132DGd5CBf31DGhDGjDGlDGnCCnCCj55432105432104CBb=928DFn8?=76DGd0CBh4DHfDFf0DFhDFj0DFlDGh0000DGl0DGn0;:<>>7CBf0DFbDFd9876DHhCCh>DHd08DGj087CCnCCjDGfDH`DGbDHjDHlCCfDFnDG`DHbDHfCBf0000DFbDFdDFfDFhDFjDFlDHhCChDGd00DHdDGhDGjDGlDGnCCnCCjDGfDH`DGbDHjDHlCCfCBfDFnDG`DHf3?982103?98CBb?DGd6643DHb36DFbDFdDFfDFhDFjDFlDHhCCh9DHdDGhDGjDGlDGnCCnCCjDGfDH`DGbDHjDHlCCfCBb?97DFnDG`DHfCBfCChDGhCCnDGbDHjDHl6DGj:5`7CCb;DFb0DFdDHh9DGlDGfDH`DFn66547=32106657=06657=65CBb177658>3`177658>603177658>3CCf`CCl03DG`DGh8552DGd471`DGb6CBf733```53;853;?3DGj:1DHf7DFbDFdDFfDFhDFjDFlDHhCChDGd:DGhDGjDGlDGnCCnCCjDGfDH`DGbDHjDHlCCfDFnDG`DHbDHfCBfDFbDFdDFfDFhDFjDFlDHhCChDGdDHdDGhDGjDGlDGnCCnCCjDGfDH`DGbDHjDHlCCfDFnDG`DHbDHfCBfDFbDFdDFfDFhDFjDFlDHhCChDGdDHdDGhDGjDGlDGnCCnCCjDGfDH`DGbDHjDHlCCf=0DFnDG`DHfCBh21DFf0DFhDFj0DFlDGh0000DGl0DGn0;98665443786654437866447986654437222221100;````CCb800CBb090190111101101CCl0011002:::::````````````````````````AAj`0A@d````````````````````````AClACnOlDI`AAhABnACdAGbAGfAGn0BEdBEf;:<876AC`654321===BDb00==ABf=6=:8BDd7ABf764AGbBEf`>>>ABl00???;72???>=AE`AFb6>DI`>6=AC`=28105;9=<>2810;9=<>2810;9=<>28109=<81065662;999==<<>281006667543;99==<<>22881100=<=<66775543;999999===<<<<>2888810=<6759=<8109=<>810767543;9=<>28107436758109=<=9=<9=<98<98=9=<9=<=66==<<<<9=<665555667555<5=<810436==<<=<79=<810999==<<81065565810666666566550<555608106555667578106650675656=<675=<9<<<==;9=<>2810:8109=<281067567543;9=<>281067543;9=<>281067567543;9=<>2810666566A@`00000000000DKn00000000000DL`00000000000DLj`DLl`144444444444433333333333322222222222244444444444433333333333322222222222201`````````````0``1`0``10`44444433333322222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222233333333333333333333333333333333333333333333333322222222222222222222222222222222222222222222222244333333333333333333333333333333333333333333333333222222222222222222222222222222222222222222222222443333333333333333333333333333333333333333333333332222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333332222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333332222222222222222222222222222222222222222222222224DLdDLfDLh465372104653777777777777777777777777777777777777777777777777772104653721046537210465376577777777777766666666666655555555555566666666666655555555555565210666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555721046537777772211004666666555555377777777777777777777777777777777777772111104653777777777777666666666666555555555555777777777777666666666666555555555555777777777777777777657777777777777210465377777766666655555577777766666655555577777766666655555577777707777777777777666666666666555555555555777777777666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555777777777777766666666666655555555555555555555555577555555666666666666666666666666555555555555555555555555777777777777765666666666666555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555777777777777666666666666555555555555777777777777666666666666555555555555777777777777666666666666555555555555777777777777777777777777777777777777777777555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555666666555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555555555555555555555555555777777777777666666666666555555555555777777777777666666666666555555555555777777777777666666666666555555555555721046537210657777777777776666666666665555555555557777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777721046537210465372104653777777777777777777777777777777777777````````````BGnBFnBFj`BJ`3``````````BHj````0```````BFbBJjBIf6BIhAAfAHdBIbBHfBIjBG`BGdBGhBJbBJfBHn``````````9BDj``````BHb`FFbBHj`3BJ`BFbBFdAKf044BFfBFjBFnBG`BGbBGdBGfBGhBGjBGn=DCd;BL`AKlBKnDM`BHjDMb7BJ`7AKf765432AHd::AAbA@jAAf=5<4;:987=5<4;:987=5<4;:98775AKn5<;:9>5:=5BHbBHdBHfBHhACb?:AKl?6DCd<=9=BIh:?>:>;BIjBIlBDjBKnBJbBJdBJfBJhAKfBL`6610AKnDCd3322AKl099DM`0BJjBJlBGnBJ`6985>4BHj?217:96?50DMb328;:7BKn7210439<;80721```Bf`000000000000DMdDMfDKl32103320332032033333333333210333332103333333333321033321033333333321021033333332103333203321032103210333333333```````````CAnDEhCAlCB`2121211111221222222222222221DNj332DNl443343434343`````DNn0000000000000000```DO`DOb1DOf1101```DMj000DOh11111DOl22022222DDj0``00000`0`0````0000000000000000``0000````````````````````````E@`0E@b0````````E@d000``00E@f1`E@hE@j33E@lE@n000`245EA`6666EAb0047`7000```````CAnCB`DNjDNl`````FFj`0```````EAjDNhEAd0DOdDNb3DNf21401414EB`EBb8EAn4735EAf97EAlEAh54<37:682;9109982082082076760667:68;91054<377::6682;910887:622200:54<37:682;910543:17:696686697:692954317676767766066667666777677777672767:6762762767617:682097:654<37:682;91054<37:682;91054<37:682;91007667666FFl0``````````````````EBdE@`CAnEBfCB`E@d0500EBh011E@f276E@j2DNjE@b5::5E@l85DNl2E@n000568888==8EAb0068989>000``>>88>8>>8`>>88>``````````````;;``EC``0```0``EBl1EBjBCd2310102`303030001113002231002310`023101102`02211```1`3020231023102310`````ECfECl0````11```1`1`0000`CAdCAb010ECd42EChECj4433661100443ED`63721ECbECn76285943106777859431077685943107685943107685946777066777777776666666666668594067766667622859431007777772859431077676859728594310776431766666`68665767643143677777777666666666666859477667777776667685943106620667285943107285943107776285943106766``AFj000000000000000000000000000000000000`0000000000000``DNdDMn101010001011001010101100`11111111101010100000```````````````````n````````AAj`0A@d`Bf3```AAfABb```````2``````Ol4``4`44A@nAA```6AAbA@j6```8AAlAAn07:1::::`````:::AFf````ACb<`ACf==ABl00`>>>>>>>>``ADf?ADjA@d`10```000AEbAAjAEl33333430``43333;333;333`733Ol440`544444444400444``444`444``ABbAHb`666662`66``````````````n````````5`57`Bf1```AAf4```````1``````59``9`99A@nAA```;AAbA@j4```=AAlAAn0:?1????`````???AFf````ACbA@d`ACf11ABl00`22222222``ADf3ADj4`04```444AEbAAjAEl77777370``37777;777;777`677Ol880`488888888800888``888`888``ABbAHb`:::::2`::``````````````nAHjAHh`````````7`7=`Bf3```AAf6```````1````````7?``?`??A@nAA```A@dAAbA@j5```2AAlAAn0=414444`````444AFf````ACb6`ACf77ABl00`88888888``ADfABj:ADj;`0;```;;;AEbAAjAEl>>>>>3>0``3>>>>;>>>;>>>`7>>Ol??0`4?????????00???``???`???``ABbAHb`A@d000AHhAHj25`22``````````````n12```````````AEf9`94`Bf2```AAfAEh39```````2````````:7``7`77A@nAA```9AAbA@j5```;AAlAAn0?=1====`````===AFf````ACb?`ACfA@d0ABl00`11111111``ADfABj3ADj4`04```444AEbAEfAAjAEl88888480``48888=888=888`988Ol990`599999AEh::::11:::``:::`:::``ABbAHb`<<<5`>>``````````````n````````8`8?`Bf1```AAf6```````1``````8A@d``0`00A@nAA```2AAbA@j5```4AAlAAn0=616666`````666AFf````ACb8`ACf99ABl00`::::::::``ADf;ADj<`0<```<<1010EFfEFhEHfEHhEFjEHjEHlEHnEI`EIbEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHd``````AKh00000CBjCBlEFfEFhEHfEHhEFjEHjEHlEHnEI`EIbEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHdCBjCBlEFfEFhEHfEHhEFjEHjEHlEHnEI`EIbEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHd740CBlCBj1:9876320AKj12EIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHdCBjCBl10EFfEFhEHfEHhEFjEHjEHlEHnEI`EIbEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHdCBjCBlEFfEFhEHfEHhEFjEHjEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHdCBjCBl=<;:9876543210=<;:9876543210`:731010EFfEFhEHfEHhEFjEHjEHlEHnEI`EIbEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHdCBjEFfEFhEFjEFlEFnEG`?=<:8226CBl65EHfEHh6EHjEHlEHnEI`EIbEIdEIf<;:EGlEGbEGnEGdEGfEH`EGhEHbEGjEHdCBjCBlEFfEFhEHfEHhEFjEHjEHlEHnEI`EIbEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHd`CBjCBlEFfEFhEHfEHhEFjEHjEHlEHnEI`EIbEIdEIfEFlEFnEG`EGlEGbEGnEGdEGfEH`EGhEHbEGjEHd````ALd```````````````````````EIhEIj01EIlEInALfEJ`534EJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEIhEIlEIjALfEJ`10612EIn2211543EJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`0ELb0ELd0ELfELh432EInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELh```ALd````EInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEInEIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELhELfEIjEIhEIl2<:92EIn213EJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELhEInEIhEIlEIjEJbEJdEJfEJhEJnEK`EKbEKdEKfEKhEKjEKl<<=`>EIhEIlEIj8765EKnEL`ELbELdEInALfEJ`987EJbEJdEJfEJh?>EJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhALfEJ`654654EIn21EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELhEInALfEJ`EIhEIlEIjEJbEJdEJfEJhEJjEJlEJnEK`EKbEKdEKfEKhEKjEKlEKnEL`ELbELdELfELh1ALf`````ALn`0`0```ALl`1ELjELlELnEM`CC`EMb7543210754321075432107543210775432107543210ALh654321865432177770654321AM`765432176543207654321654306543889765432976543297654329765432``````A`00EMd111EMf02222020221EMh13320333233232333320313333233333333333333133220013333333203333333333333333333333132033213333331333333113333333333331333323AHb43142431243144424313444````FG`FGb`````````10````ENb`````````0AMdEMj1101111`F@bF@dENlENn554ENdEMnEN`ENhF@`;EO`EObENfENjEOdEOfEOhEOjEOlEOnEMlF@bF@dENlENnAMdEMjENdEMnEN`ENhF@`ENbEO`EObENfENjEOdEOfEOhEOjEOlEOnEMl0?0?AMd=<;:9>=;97F@`ENb99949762EOdEOfEOhEOjEOlEOn?222EMjENdEMnEN`ENhF@`0ENb0EO`EOb0ENf=EOd0EOf0EOh0EOj0EOl0EOn0EMlENnF@bF@dENl3AMd0000000000000000EMjENd00EMnEN`ENh00F@`ENb0EO`00EObENf00ENjEOdEOfEOhEOjEOlEOnEMl00AMd110EMj101?1ENdENhF@`?=511411504444F@bF@dENlENn876EMnEN`76ENbEO`EObENfENjEOdEOfEOhEOjEOlEOnEMl0>AMdENdENhF@`><43EMj405EMn6F@d5EN`ENf989887EO`99EOdEOfEOhEOjEOlEOn`?F@bENlENnAMd?ENd?ENhF@`=>EMl44EMj555555557755515505ENf6666264622614ENj725074ENbEObEOdEOfEOhEOjEOlEOnF@bF@dENlENnAMd0?ENdEMnEN`ENhF@`ENbEO`EObENfENjEOdEOfEOhEOjEOlEOnEMl=F@bF@dENlENnAMdEMjENdEMnEN`ENhF@`ENbEO`EObENfENjEOdEOfEOhEOjEOlEOnEMlENd765432AMd0000000:0:F@bF@dENlENn4EMj6EMnEN`ENhF@`ENbEO`EObENfENjEOdEOfEOhEOjEOlEOnEMlAMdEMjF@bENlEMnENh12222545>5```B@`0`````````````000F@fF@hF@jF@lF@nFA`FAbFAdFAfFAhFAjFAl;:<9876543210;:<9876543210<<<;:9876543210;:9876543210;:9876543210`;:9876543210<`9876543210;:9876543210::98765432109876543210;9876543210;;:9876543210::9876543210;:9876543210;:9876543210;::<9876543210;;::<99887766554433221100;:9876543210;:9876543210;:9876543210;:9876543210;:9876543210<;:<9876543210;:9876543210;:9876543210;:9876543210`;:9876543210;:9876543210<;:<9876543210;:<9876543210;:<9876543210FBhFBjFBl20````````1```FB`FAnFBbFBnFC`FCbFBdFBf:9876543210:98`6510:986510:986510:9810:9810:987654321100::998876543210::998876543210:9877432743277765`6510:9810:9876543210:9876543210:9877576543210:98````AFn```0``FCfFCj1AFl213FChFCnFCl354621066054615454615461625462130354621035544666222100665466306354621066306666621546`54613546210354621035462102AMbAMf7610765276``FGd``0`````FD`FDb`FDhFDjFDl4FDdFDn5FDf54372160260260260`26543722160543721603605437216074747101````33`33````511113347260254372160543721603543721600333```DKd0000````DDd11FCd120122222222201FE`3FEb2314023442423423140231402314023441444444123232340231140023140444444444423423140444444232344244223423444444231401023140442314023140`````````````````CBn0FEd1jFEf1111311231123123110FEh34221022422424224222422223421022222222222222223421043422222222222221022222223421022342221022342232222222222341034042222222222222223410222224224342103421022223421022222```FEj00FEl10101010001010101011","f":"````````````````````{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{{h{f}}}}}{{n{{j{f}}l}}}}{{{b{{h{f}}}}}A`}0{{{b{l}}{b{dAb}}}Ad}0{cc{}}{{}c{}}{bA`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{bAf}```````````::99{{{b{{h{f}}}}}{{n{{j{f}}Ah}}}}8{{{b{Ah}}{b{Ah}}}Aj}{{{b{Ah}}{b{dAb}}}Ad}0{AlAn}`9988``7665544{{}A`}0`````````````````````````````````````````````````````````````````````````````````````````````````````````{{B`B`Aj}{{Bb{B`Aj}}}}0{{BdBd}{{Bf{Bd}}}}{{BhBh}{{Bb{BhAj}}}}{{BjBj}Bj}0{{BlBl}Bl}0{{{C`{}{{Bn{c}}}}}c{{Cd{}{{Cb{{C`{}{{Bn{c}}}}}}}}}}{{{Cd{}{{Cb{c}}}}}c{{C`{}{{Bn{{Cd{}{{Cb{c}}}}}}}}}}{CfCf}0{{ChCh}{{Bf{Ch}}}}{{CjCj}Cj}0{{ClCl}Cl}0{{CnCn}{{Bb{CnAj}}}}{{D`D`}D`}0{{{Db{f}}}Dd}{AjDf}{DhDj}{DhDl}{DnE`}{DnEb}{EdEf}{EdEh}{EjEl}{EjEn}{F`Fb}{F`Fd}{FfFh}{FfFj}{FlFn}{FlG`}{GbGd}{GbGf}{{{Db{f}}}Dd}0{GhGj}{GhGl}{GnH`}{GnHb}{HdHf}{HdHh}{HjHl}{HjHn}{fI`}{fIb}{AlId}{AlIf}{Dd{{Db{f}}}}{IhDh}{IjDh}{IlDn}{InDn}{J`Ed}{JbEd}{JdEj}{JfEj}{JhF`}{JjF`}{JlFf}{JnFf}{K`Fl}{KbFl}{KdGb}{KfGb}{Dd{{Db{f}}}}0{KhGh}{KjGh}{KlGn}{KnGn}{L`Hd}{LbHd}{LdHj}{LfHj}{Lhf}{Ljf}{LlAl}{LnAl}{{M`M`}c{}}{{cc}Mb{}}{CfCf}0{{MdMd}{{Bf{Md}}}}{{MfMf}{{Bb{MfAj}}}}{{MhMh}Mh}0{{MjMj}Mj}{{MlMl}{{Bb{MlMl}}}}{Mn{{Bf{Mn}}}}{N`N`}0{NbNb}0{{NdNd}Nd}0{{NfNf}{{Bf{Nf}}}}{{NhNh}Nh}0{{NjNj}{{Bf{Nj}}}}{{NlNl}Nl}0{{NnNn}{{Bf{Nn}}}}{{O`O`}O`}0{c{{Bb{M`M`}}}{}}{Mb{{Bb{cc}}}{}}{{ObObAj}{{Bb{ObAj}}}}0{{OdOd}{{Bf{Od}}}}{{OfOf}{{Bb{OfAj}}}}{{OhOh}Oh}0{CfCf}0{M`c{}}{cMb{}}{{OjOj}Oj}0````````````````````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}```{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}`{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}```{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}````{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}``{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AD`}}{b{dAb}}}{{n{OnADb}}}}{{{b{ADd}}{b{dAb}}}{{n{OnADb}}}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}{cOn{}}``{cADf{}}{eABj{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}10{cc{}}{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AEf{}{{A@h{c}}{AEd{e}}}}}e{}{{AEh{}{{A@h{c}}}}}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}>={{{b{AEl}}}Al}`?>{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}5{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2710{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{AFj{{b{d{AEh{}{{A@h{c}}}}}}}}{b{dAFl}}}{{AFn{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}``{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{b{dc}}c}c{}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}6```{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{b{dc}}{b{dc}}}On{}}{{{b{dc}}}cAFf}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{b{AHb}}}A`}{ce{}{}}{{{b{c}}}e{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{{AHh{}{{AHf{e}}}}e}}}{}{}}{{{AHj{}{{AHf{c}}}}}{{n{ec}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}``{{}c{}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}```````````````````````````{AHnf}{{{b{AI`}}AHn}f}10{{{b{AIb}}AHn}{{n{{AId{{h{f}}}}AIf}}}}0{{{b{AIb}}}{{b{AIb}}}}{{fAHn}On}{{{b{AI`}}fAHn}On}{{{b{AIb}}{AId{f}}AHn}On}{{{b{AIb}}{AId{f}}AHnAHn}{{n{{AId{{h{f}}}}AIf}}}}0{AHnAIh}{{fAHnAl}f}{{{b{AI`}}fAHnAl}f}3```````{{{b{ABd}}}{{b{c}}}A@f}{{{b{dAIj}}}{{b{dc}}}A@f}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}`````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{b{AD`}}{b{dAb}}}{{n{OnADb}}}}{{{b{ADd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AIl}}{b{dAb}}}{{n{OnADb}}}}{{{b{AIn}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJ`}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJb}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJf}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJh}}{b{dAb}}}{{n{OnADb}}}}{AJjA`}{c{{AJl{c}}}{{AAb{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{dAJn}}AJj}{{n{OnADb}}}}{{{b{dAJn}}AK`}{{n{OnADb}}}}1{{{b{dAJn}}{b{AKb}}}{{n{OnADb}}}}````````````````````````````````````{{{b{{AKd{}{{A@h{c}}}}}}}c{}}{{{b{dc}}}{{b{d{h{c}}}}}{}}{AKf{{b{d{h{c}}}}}{}}{AKf{{b{{h{c}}}}}{}}{Al{{b{{h{c}}}}}{}}{Al{{b{d{h{c}}}}}{}}{{{b{c}}}{{b{{h{c}}}}}{}}{{{AKh{}{{A@h{c}}}}{b{e}}}{{Bf{{b{c}}}}}A@fA@f}{{{AKh{}{{A@h{c}}}}{b{de}}}{{Bf{{b{dc}}}}}A@fA@f}{{{AKh{}{{A@h{c}}}}}cA@f}0{{{AKh{}{{A@h{c}}}}{b{e}}}{{b{c}}}A@fA@f}{{{AKh{}{{A@h{c}}}}{b{de}}}{{b{dc}}}A@fA@f}{{{b{{AKj{}{{A@h{c}}}}}}e}c{}{}}{{c{AKl{Al}}}{{AKf{Al}}}{{AKn{Al}}}}{{c{AKl{Al}}}{{Bf{{AKf{Al}}}}}{{AKn{Al}}}}````````````````````````````{{{AL`{{h{f}}}}}{{AL`{AKb}}}}{{fAl}{{b{AKb}}}}{{fAl}{{b{dAKb}}}}{{{b{AKb}}}{{n{{ALd{}{{ALb{c}}}}c}}}{}}{{{b{{h{f}}}}}{{n{{b{AKb}}ALf}}}}{{{b{d{h{f}}}}}{{n{{b{dAKb}}ALf}}}}{{{b{{h{f}}}}}{{b{AKb}}}}{{{b{d{h{f}}}}}{{b{dAKb}}}}````````````````{{{b{ALh}}}{{b{AKb}}}}{{{ALl{}{{ALj{c}}}}{b{AKb}}}cALh}{{{ALl{}{{ALj{c}}}}{b{AKb}}}AjALh}00{{{b{dALh}}}ALn}{{{b{dAM`}}}ALn}{{{b{dALh}}}{{Bf{{Bb{AlAl}}}}}}{{{b{dAM`}}}{{Bf{{Bb{AlAl}}}}}}10{{{ALl{}{{ALj{c}}}}{b{AKb}}}{{Bf{{b{AKb}}}}}ALh}0``````{{{b{AHb}}}A`}````{{{AMd{AMb}}}On}{{{AMh{AMf}}}On}{{{b{{AMd{AMb}}}}}On}{{{b{{AMh{AMf}}}}}On}``````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{b{AI`}}AHn}f}0{{{b{AIb}}AHn}{{n{{AId{{h{f}}}}AIf}}}}0{{{b{AIb}}}{{b{AIb}}}}{{{b{AI`}}fAHn}On}{{{b{AIb}}{AId{f}}AHn}On}{{{b{AIb}}{AId{f}}AHnAHn}{{n{{AId{{h{f}}}}AIf}}}}0{{{b{AI`}}fAHnAl}f}1``{{{b{AMj}}}Af}{{}{{b{AKb}}}}{{{b{c}}}{{b{AKb}}}A@f}````````````````````````````````````````````````````````````````````{{}Hd}000````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{HdOn}000{{HdHdHdHd}F`}{{{b{dAMl}}{b{dAMl}}{b{dAMl}}{b{dAMl}}}On}````````````````````````{HdAMn}{{HdHd}AMn}{Hd{{Bb{HdHd}}}}```````````````````{HdHj}{{fHdHd{b{dHd}}}f}{{fHjHj{b{dHj}}}f}10{{HdHd}Hd}{{HjHj}Hj}10{{HdHdHd}Hd}{{HjHdHd}Hj}{HdHd}{HjHj}{{F`F`}f}{{FfFf}f}10101032323232323232323232{F`F`}{FfFf}9{{HjHd}Hj}{GnHd}76{fHd}{HdGn}9{Hdf}9{fOn}000{{GnGn}Gn}{{HdHd}Hd}{{HjHj}Hj}{{ff}f}32103210{GnGn}{HdHd}{HjHj}{ff}7654{{GnGnf}f}{{HdHdf}f}{{HjHjf}f}{{fff}f}{{GnGn}f}{{HdHd}f}{{HjHj}f};210;:987:9876543210;210;>=<;>=<;:98798{AN`AN`}000{ANbANb}{{AN`AN`}AN`}000{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}333320333333320320333{ANhANf}{ANjANf}{{AN`AN`}Hd}6653{{AN`AN`AN`}AN`}{{ANdANdANd}ANd}{{ANfANfANf}ANf}{AMlANf}0{ANlANd}{ANnAN`}00{{{b{ANl}}}ANd}{{{b{AMl}}}ANf}{{{b{Dn}}}ANd}{{{b{Dh}}}ANf}44{fAN`}{GnAN`}67686{AN`AN`}08{ANdANl}{ANdANb}{ANdANf}{ANdAN`}{AO`ANb}{ANbAO`}{ANbANd}{ANbANf}{ANbAN`}{AMlANf}{ANfAMl}{ANfANd}{ANfANb}{ANfAN`}{ANnAN`}{AN`ANd}{AN`ANb}{AN`ANf}{AN`ANn}{ANdANd}{ANfANf}{{AN`AN`}AN`}{{AN`AN`}Gn}{{AN`AN`}f}0{{AN`AN`}Hd}2110{{ANdANd}ANd}{{ANdANd}f}{{ANbANb}Gn}{{ANfANf}ANf}{{ANfANf}f}87868685766576657665878686857665766576657665766576657665{{ANbANb}ANb}{AN`AN`}0{ANbANb}{ANnAN`}0?{AN`ANb}{AN`ANn}20{ANnANd}{AN`AO`}{AN`ANf}333{AN`ANd}2{AN`AMl}777776743130777{{ANfANf}AOb}{AObANf}{ANbANf}10{ANfAOd}0{AOdANf}{ANdANn}{ANdAN`}10{ANdAO`}{ANdAMl}{ANbAN`}{AO`AN`}0100{AO`ANd}{ANnANf}{ANfAN`}{AMlAN`}10{AMlANd}{ANfANn}{ANdDn}{AN`ANn}00000{ANbANj}{AN`F`}{ANfDh}{ANdANn}{ANdAN`}10>==>==:9:9555555{AO`ANf}{ANfAO`}{{AN`AN`}AN`}{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}0{{ANfAObAOb}ANf}{{AN`AN`AN`}AN`}0000000000000000000;;{AN`Ff}<{ANdANl}{ANfAMl}{AN`ANn}12000{{ANbANbANb}ANb}8{{ANdANdAN`}ANd}{{ANfANfAN`}ANf}{ANdANd}{ANfANf}4{{ANdANdANd}ANd}5{{ANfANfANf}ANf}160160160>160160{ANdf}{ANbGn}{ANff}6{ANbANb}6706{{AN`AN`}AN`}0000{{ANdANd}ANd}{{ANfANf}ANf}222102{{F`AN`}AN`}{{FfANn}AN`}{{DnANn}ANd}{{DhAN`}ANf}{{fAN`AN`}On}{{fANnAN`}On}{{fANnANd}On}{{fAN`ANf}On}{{F`AN`}ANn}{{FfAN`}AN`}{{DnAN`}ANd}{{DhAN`}AMl}{{fAN`ANn}On}8{{fAN`ANd}On}{{fAN`AMl}On}{{AN`Ej}AN`}{{AN`F`}AN`}{{AN`Ff}AN`}{{AN`Fl}AN`}{{ANdANl}ANd}{{ANfAMl}ANf}{{AN`ANn}AN`}12000{AN`AN`}{F`AN`}{FfAN`}{DnANd}{ANjANb}{DhANf}5{{DhDh}ANf}{{DnDn}ANd}{{ANnANn}AN`}{EjAN`}87{FlAN`}765:::{{AN`AN`AN`}AN`}000{{AN`AN`}AN`}0{{AN`AN`GnAN`}AN`}{{AN`AN`fAN`}AN`}0{{AN`AN`HdAN`}AN`}{{ANdAN`fANd}ANd}{{ANfAN`fANf}ANf}{{ANbANbANbf}ANb}0{{ANdANdANdf}ANd}{{ANbANbANbGn}ANb}{{ANfANfANff}ANf}210210210210210{{AN`GnAN`}AN`}{{AN`fAN`}AN`}0{{AN`HdAN`}AN`}{{AN`GnAN`AN`}AN`}{{AN`fAN`AN`}AN`}0{{AN`HdAN`AN`}AN`}{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}53534434420442053{{HdAN`AN`}Hd}{{GnAN`AN`}AN`}{{fAN`AN`}AN`}0{{HdAN`AN`}AN`}{{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}{{ANffAMl}ANf}0{{ANdfANl}ANd}{{AN`fANn}AN`}00{{AN`HdANn}AN`}1123{{AN`GnANn}AN`}{{GnAN`AN`}Gn}{{fAN`AN`}f}0=100={{fANdANd}f}{{GnANbANb}Gn}{{fANfANf}f}433{{HdAN`AN`}Hd}54405440544054405440544054405440544054405440{{ANbfANbANb}ANb}{{AN`GnAN`}AN`}{{AN`fAN`}AN`}0{{AN`HdAN`}AN`}{{ANdfANd}ANd}{{ANffANf}ANf}{{fGnAN`}On}{{ffAN`}On}0{{fHdAN`}On}{{ffANd}On}{{ffANf}On}88{{ANbfANb}ANb}{{ANnfANf}ANn}{{AN`fANn}AN`}0{{ANnGnAN`}ANn}{{ANbGnAN`}ANb}{{FlGnAN`}On}{{ANnfAN`}ANn}40{{ANdfANn}ANd}{{AO`fAN`}AO`}{{ANffAN`}ANf}{{FlfAN`}On}0444{{ANdfAN`}ANd}3{{AMlfAN`}AMl}222{{AN`GnANn}AN`};;;;9;652510;;{{AObGnANfANf}AOb}{{AOdfANf}AOd}{{ANffAOd}ANf}{{ANnfANd}ANn}{{AN`fANd}AN`}10{{AO`fANd}AO`}{{AMlfANd}AMl}{{AN`GnANb}AN`}{{AN`fAO`}AN`}0100{{ANdfAO`}ANd}{{ANffANn}ANf}{{AN`fANf}AN`}{{AN`fAMl}AN`}10{{ANnfANf}ANn}{{ANnGnAN`}ANn}{{FlGnAN`}On}{{ANnfAN`}ANn}0{{FlfAN`}On}0111000>=>=:99:996565321100111000{{ANffAO`}ANf}{{AO`fANf}AO`}{{AN`GnAN`AN`}AN`}{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}{{ANffAObAOb}ANf}{{AN`fAN`AN`}AN`}000{{AN`GnAN`}AN`}{{AN`fAN`}AN`}0{{AN`HdAN`}AN`}{{ANdfANd}ANd}{{ANffANf}ANf}{{AN`GnEj}AN`}{{AN`fF`}AN`}{{AN`fFf}AN`}{{AN`HdFl}AN`}{{ANdfDn}ANd}{{ANffDh}ANf}{{AMlfANf}AMl}{{ANlfANd}ANl}{{ANnfAN`}ANn}0{{ANbfANbANb}ANb}0{{ANdfANdAN`}ANd}{{ANffANfAN`}ANf}2{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}2102102105210210{{fANd}f}{{GnANb}Gn}{{fANf}f}{{ANdfANd}ANd}{{ANbGnANb}ANb}{{ANffANf}ANf}210{{AN`HdAN`AN`}AN`}00{{AN`F`AN`AN`}AN`}{{AN`FfANnAN`}AN`}{{ANdDnANnANd}ANd}{{ANfDhAN`ANf}ANf}{{ffAN`AN`}On}{{ffANnAN`}On}{{ffANnANd}On}{{ffAN`ANf}On}{{ANnF`AN`ANn}ANn}{{AN`FfAN`AN`}AN`}{{ANdDnAN`ANd}ANd}{{AMlDhAN`AMl}AMl}{{ffAN`ANn}On}8{{ffAN`ANd}On}{{ffAN`AMl}On}{{ANffANfAMl}ANf}{{ANdfANdANl}ANd}{{AN`fAN`ANn}AN`}0{{AN`fF`}AN`}{{AN`fFf}AN`}{{ANdfDn}ANd}{{ANffDh}ANf}{{AN`GnEj}AN`}43{{AN`HdFl}AN`}32{{AN`fAN`}AN`}0{{AN`fAN`AN`}AN`}00{{AN`GnAN`AN`}AN`}011{{AN`HdAN`AN`}AN`}1220{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}45534553210{{AN`GnAN`}AN`}77{{AN`HdAN`}AN`}{{ANdfANd}ANd}{{ANffANf}ANf}10099{{ANbfANbANb}ANb}7659999::8::75898921{{ANdfANdAN`}ANd}{{ANffANfAN`}ANf};<<:{{ANdfAN`ANd}ANd}{{ANffAN`ANf}ANf}?6=>><108??7;965{{ANbGnANb}ANb}{{GnAN`}Ej}{{HdAN`}Fl}1010{{GnAN`}Gn}{{HdAN`}f}32103232;4:{{AN`fAN`}AN`}0{{AN`fAN`AN`}AN`}01100=6<=<6{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}{{AN`GnEj}AN`}{{AN`fF`}AN`}{{AN`fFf}AN`}{{AN`HdFl}AN`}{{AN`GnAN`AN`}AN`}880880880889{{AN`HdAN`AN`}AN`}689986{{AN`GnAN`}AN`}0{{AN`GnAN`ANn}AN`}{{AN`fAN`ANn}AN`}02==4<<{{ANdfANd}ANd}{{ANbGnANb}ANb}{{ANffANf}ANf}4335{{AN`fAN`}AN`}08{{AN`fAN`AN`}AN`}0655711900{{F`fAN`}On}{{FffAN`}On}{{DnfANd}On}{{DhfANf}On}{{EjGnAN`}On}43{{FlHdAN`}On}32?66>{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}{{AN`GnAN`AN`}AN`}{{AN`HdAN`AN`}AN`}10;;{{GnAN`AN`}Gn}{{fAN`AN`}f}0{{HdAN`AN`}Hd}21104>>3754>>375>>75{{F`AN`}AN`}{{FfAN`}AN`}{{DnAN`}ANd}{{DhAN`}ANf}{{F`AN`AN`}On}{{FfAN`AN`}On}{{DnAN`ANd}On}{{DhAN`ANf}On}{{GnAN`}AN`}{{fAN`}AN`}0{{HdAN`}AN`}{{GnAN`AN`}AN`}{{fAN`AN`}AN`}0{{HdAN`AN`}AN`}{{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}53534434420442053{{fAMl}ANf}0{{fANl}ANd}{{fANn}AN`}00{{HdANn}AN`}1123{{GnANn}AN`}{{fANbANb}ANb}>==<{{fANd}ANd}{{fANf}ANf}??{{fANb}ANb}{{fANf}ANn}77{{GnAN`}ANn}{{GnAN`}ANb}{{fAN`}ANn}:0{{fANn}ANd}{{fAN`}AO`}{{fAN`}ANf}333{{fAN`}ANd}2{{fAN`}AMl}=????6?43130=??{{GnANfANf}AOb}{{fANf}AOd}{{fAOd}ANf}{{fANd}ANn}{{fANd}AN`}10{{fANd}AO`}{{fANd}AMl}{{GnANb}AN`}{{fAO`}AN`}0100{{fAO`}ANd}{{fANn}ANf}{{fANf}AN`}{{fAMl}AN`}10{{fANf}ANn}{{GnAN`}ANn}{{fAN`}ANn}0000<;<;8778774343100000{{fAO`}ANf}{{fANf}AO`}{{GnAN`AN`}AN`}{{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}{{fANfAObAOb}ANf}{{fAN`AN`AN`}AN`}000{{GnAN`}AN`}{{fAN`}AN`}0{{HdAN`}AN`}{{fANd}ANd}{{fANf}ANf}{{GnEj}AN`}{{fF`}AN`}{{fFf}AN`}{{HdFl}AN`}{{fDn}ANd}{{fDh}ANf}{{fANf}AMl}{{fANd}ANl}{{fAN`}ANn}0{{fANbANbANb}ANb}{{fANbANb}ANb}{{fANdANdAN`}ANd}{{fANfANfAN`}ANf}3{{fANdANdANd}ANd}{{GnANbANbANb}ANb}{{fANfANfANf}ANf}2102102105210210{{fANd}ANd}{{GnANb}ANb}{{fANf}ANf}210{{HdAN`AN`}AN`}00{{fANfAMl}ANf}{{fANdANl}ANd}{{fAN`ANn}AN`}0{{fF`}AN`}{{fFf}AN`}{{fDn}ANd}{{fDh}ANf}{{GnEj}AN`}43{{HdFl}AN`}32{{fAN`}AN`}0{{fAN`AN`AN`}AN`}0{{fAN`AN`}AN`}{{GnAN`AN`}AN`}011=011={{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}344{{HdAN`AN`}AN`}4550321{{GnAN`}AN`}88{{HdAN`}AN`}{{fANd}ANd}{{fANf}ANf}10099{{fANbANb}ANb}8769999::5::86595921{{fANdAN`}ANd}{{fANfAN`}ANf}{{GnAN`AN`AN`}AN`}>>{{HdAN`AN`AN`}AN`}{{fANdAN`ANd}ANd}{{fANfAN`ANf}ANf}{{fAN`}AN`}9{{GnAN`AN`}AN`}{{fAN`AN`}AN`}0>{{fAN`ANd}ANd}{{fAN`ANf}ANf}?44>{{fANdANd}ANd}{{fANfANf}ANf}?>{{GnANb}ANb}{{fANd}ANd}1{{fANf}ANf}997799771201024{{GnANbANb}ANb}4{{GnEj}AN`}{{fF`}AN`}{{fFf}AN`}{{HdFl}AN`}=<<{{GnAN`AN`AN`}AN`}{{fAN`AN`AN`}AN`}0?>>100{{fAN`}AN`}{{HdAN`AN`}AN`}<={{fAN`AN`}AN`}0>={{GnAN`}AN`}0{{GnAN`ANn}AN`}{{fAN`ANn}AN`}0255{{GnAN`AN`}AN`}44?{{GnANb}ANb}?3224771553224771551556{{fANdANd}ANd}?{{fANfANf}ANf}3838::3778103778107710{{AN`AN`}AN`}0000000{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}33333333210{{AN`fAN`f}AN`}{{AN`fANnf}AN`}{{ANdfANnf}ANd}{{ANffAN`f}ANf}{{ANnfAN`f}ANn}4{{ANdfAN`f}ANd}{{AMlfAN`f}AMl}{ANdANd}{ANfANf}0{AN`F`}{ANdF`}{ANfF`}{AN`Gn}{AN`f}0{AN`Hd}{GnAN`}{fAN`}0{HdAN`}{{AN`AN`}AN`}00{{ANbANb}ANb}{{ANdANd}ANd}1{{ANfANf}ANf}33333333310333331033{AN`AN`}??>4{{ANfAN`}ANf}{{ANdAN`}ANd}1{{AN`AN`AN`}AN`}000{{ANdAN`ANd}ANd}{{ANbAN`ANb}ANb}{{ANfAN`ANf}ANf}6{ANdANd};;;;{{AN`ANd}ANd}{{AN`ANb}ANb}{{AN`ANf}ANf}::::<;3{ANfANf}{ANbANb}1{AN`Ej}{AN`Fl}{ANbANj}2121{AN`Gn}{AN`f}24310243243:56{AN`AN`}0{{AN`AN`}AN`}01100<8<78<8780{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}{EjAN`}{F`AN`}{FfAN`}{FlAN`}{DnANd}{ANjANb}{DhANf}{{EjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEj}AN`}{{F`F`F`F`F`F`F`F`}AN`}{{FfFfFfFf}AN`}{{FlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFl}AN`}{{AMlAMl}ANf}{{ANlANl}ANd}{{ANnANn}AN`}{{DnDnDnDn}ANd}{{ANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANj}ANb}{{DhDhDhDhDhDhDhDh}ANf}9876543210{{}ANd}{{}ANb}{{}ANf}{{}AN`}{{AN`AN`}AN`}00{{AN`AN`AN`}AN`}00111000{AN`AN`}2{{ANfANf}ANf}{{ANdANd}ANd}440122444{{AN`ANn}AN`}003333555{ANdANd}{ANbANb}{ANfANf}3336668883336666888{{F`AN`}On}{{FfAN`}On}{{DnANd}On}{{ANjANb}On}{{DhANf}On}{{AN`AN`}On}{{DhDhANf}On}{{DnDnANd}On}{{ANnANnAN`}On}{{EjAN`}On}98{{FlAN`}On}8765{AN`AN`}976{{AN`AN`}AN`}000{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}3333{{AN`AN`AN`}AN`}0{{AN`AN`}Gn}{{AN`AN`}f}0{{AN`AN`}Hd}{{ANdANd}F`}{{ANfANf}F`}{{AN`AN`}F`}5443210210{{}ANd}{{}ANb}{{}ANf}{{}AN`}>>>>=;>>>>=;>>=;>{{}On}0{ANlANd}{AO`ANb}{AMlANf}{ANnAN`}{AOfAOf}000{AOhAOh}{AOjAOj}{AOlAOl}{{AOfAOf}AOf}000{{AOhAOh}AOh}{{AOjAOj}AOj}{{AOlAOl}AOl}21033333333333332033320333{{AOfAOf}Hj}{AMlAOl}0{ANfAOl}{ANlAOh}{ANdAOh}{ANnAOf}0{AN`AOf}1011{fAOf}{GnAOf}3573{AOfAOf}065{AOhANl}{AOhANd}{AOhAOj}{AOhAOl}{AOhAOf}{AO`AOj}{ANbAOj}{AOjAO`}{AOjANb}{AOjAOh}{AOjAOl}{AOjAOf}{AMlAOl}{ANfAOl}{AOlAMl}{AOlANf}{AOlAOh}{AOlAOj}{AOlAOf}{ANnAOf}{AN`AOf}{AOfAOh}{AOfAOj}{AOfAOl}{AOfANn}{AOfAN`}{{AOfAOf}AOf}{{AOfAOf}Hd}{{AOfAOf}Gn}{{AOfAOf}f}{{AOfAOf}Hj}3210{{AOhAOh}f}{{AOjAOj}Hd}{{AOlAOl}Gn}2106543654320654365436543654365436543206543654320654365432020202020{{AOjAOj}AOj}0{AOfAOf}0{AOjAOj}>{AOfANb}>{AOfAOh}{AOfAO`}{AOfANf}{AOfAOj}4{AOfAOl}432{AOhAN`}{AOhAOf}10{AOhAO`}{AOhANf}{AOjAOf}{ANbAOf}{AO`AOf}210{AO`AOh}{AN`AOl}{AOlAOf}{ANfAOf}10{ANfAOh}{AOlAN`}{AN`AOf}{ANnAOf}{AOfAN`}{AOfAOj}13{AOfANn}{AN`AOh}{AOfANb}{AOfAOl}{AOfAOh}4640{AOfAO`}{AOfANf}:99:97:5432210:99{{AOlAOl}AOn}{AOlAOb}{AObAOl}{AOhAN`}{AOhAOf}10{AOhAO`}{AOhANf}{AOhAOl}{AOjAOf}{ANbAOf}{AO`AOf}210{AO`AOh}{AN`AOl}{AOlAOf}{ANfAOf}10{ANfAOh}{AOlAN`}{AOlAOh}{AOhDn}{AOfAN`}0{AOfANn}010{AOjANj}{AOfF`}{AOlDh}{AOhAN`}{AOhAOf}10{AOjAOf}{ANbAOf}{AO`AOf}210?>?>4343210210?>?>998898{ANbAOl}{AOlANb}10{{AOfAOf}AOf}{{AOhAOh}AOh}{{AOjAOj}AOj}{{AOlAOl}AOl}210{{AOlAOnAOn}AOl}{{AOfAOfAOf}AOf}000{AOlAMl}{AOlANf}{AOhANl}{AOhANd}{AOfANn}{AOfAN`}10{{AOjAOjAOj}AOj}0::{{AOhAOhAOf}AOh}{{AOlAOlAOf}AOl}102{{AOhAOhAOh}AOh}3{{AOlAOlAOl}AOl}4140140140140140140140>>140140140140{AOhf}{AOjHd}{AOlGn}{AOhAOh}{AOjAOj}{AOlAOl}210210210{{AOfAOf}AOf}00{{AOff}AOf}{{AN`f}AOf}{{AN`f}AOh}{{AOff}AOl}3{{AOff}AOh}{{fAOfAOf}On}{{fAOfAOh}On}1{{fAN`AOf}On}{{fAN`AOh}On}{{fAOfAOl}On}{{AOff}AN`}:6{{AOff}ANf}{{fAOfAN`}On}76{{fAOfANf}On}{{AOlAMl}AOl}{{AOlANf}AOl}{{AOhANl}AOh}{{AOhANd}AOh}{{AOfANn}AOf}{{AOfAN`}AOf}10{F`Gn}{{GnGn}Gn}0{GnGn}01{{GnGn}F`}02{{HjHj}Hj}{{HdHd}Hd}44{F`AOf}{FfAOf}{DnAOh}{ANjAOj}{DhAOl}4{EjAOf}54{FlAOf}4326{AOfAOf}0{{AOfAOfAOf}AOf}0{{AOfAOf}AOf}0{{AOfAOfHdAOf}AOf}{{AOfAOfGnAOf}AOf}{{AOfAOffAOf}AOf}{{AOfAOfHjAOf}AOf}{{AOhAOffAOh}AOh}{{AOlAOfGnAOl}AOl}{GnF`}{{AOjAOjAOjGn}AOj}00{{AOhAOhAOhf}AOh}{{AOjAOjAOjHd}AOj}{{AOlAOlAOlGn}AOl}3210210210210210210210210210210210{{AOfHdAOf}AOf}{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}{{AOfHdAOfAOf}AOf}{{AOfGnAOfAOf}AOf}{{AOffAOfAOf}AOf}{{AOfHjAOfAOf}AOf}{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}21063635435420542063{{HjAOfAOf}Hj}{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HjAOfAOf}AOf}{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}{{AOlGnAMl}AOl}0{{AOlGnANf}AOl}{{AOhfANl}AOh}{{AOhfANd}AOh}{{AOfGnANn}AOf}0{{AOfGnAN`}AOf}{{AOffANn}AOf}{{AOffAN`}AOf}{{AOfHjANn}AOf}4268{{AOfHdANn}AOf}{{HdAOfAOf}Hd}{{GnAOfAOf}Gn}{{fAOfAOf}f}{{HjAOfAOf}Hj}3210{{fAOhAOh}f}{{HdAOjAOj}Hd}{{GnAOlAOl}Gn}2106543654320654365436543654365436543206543654320654365432020202020{{AOjGnAOjAOj}AOj}0{{AOfHdAOf}AOf}{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}{{fHdAOf}On}{{fGnAOf}On}{{ffAOf}On}{{fHjAOf}On}{{ffAOh}On}{{fGnAOl}On}:9{{AOjGnAOj}AOj}{{AOjHdAOf}AOj}{{ANbGnAOf}ANb}{{AOlGnAOf}AOl}{{AOhfAOf}AOh}{{AO`fAOf}AO`}{{ANffAOf}ANf}543210{{AN`fAOh}AN`}{{AOffAOh}AOf}10{{AO`fAOh}AO`}{{ANffAOh}ANf}{{AOfHdAOj}AOf}{{AOfGnANb}AOf}{{AOffAO`}AOf}210{{AOhfAO`}AOh}{{AOlGnAN`}AOl}{{AOfGnAOl}AOf}{{AOffANf}AOf}10{{AOhfANf}AOh}{{AN`GnAOl}AN`}{{AOfGnAN`}AOf}{{AOffANn}AOf}{{AN`HdAOf}AN`}{{AOjHdAOf}AOj}{{FlHdAOf}On}{{AN`GnAOf}AN`}{{AOffAN`}AOf}{{ANnGnAOf}ANn}{{AOhfAN`}AOh}{{ANbGnAOf}ANb}{{AOlGnAOf}AOl}{{FlGnAOf}On}0{{AOhfAOf}AOh}{{ANnfAOf}ANn}{{AN`fAOf}AN`}12{{AO`fAOf}AO`}{{ANffAOf}ANf}{{FlfAOf}On}00{{AOfHdAN`}AOf}{{AOfGnANn}AOf}{{AOffANn}AOf}{{AOfGnAN`}AOf}1{{AOjHdAOf}AOj}{{AOffAN`}AOf}?>=;;87543{{AOnHdAOlAOl}AOn}{{AObGnAOl}AOb}{{AOlGnAOb}AOl}{{AN`fAOh}AN`}{{AOffAOh}AOf}10{{AO`fAOh}AO`}{{ANffAOh}ANf}{{AOlfAOh}AOl}{{AOfHdAOj}AOf}{{AOfGnANb}AOf}{{AOffAO`}AOf}210{{AOhfAO`}AOh}{{AOlGnAN`}AOl}{{AOfGnAOl}AOf}{{AOffANf}AOf}10{{AOhfANf}AOh}{{AN`GnAOl}AN`}{{AOhfAOl}AOh}{{AN`HdAOf}AN`}{{FlHdAOf}On}{{AN`GnAOf}AN`}{{ANnGnAOf}ANn}{{FlGnAOf}On}0{{ANnfAOf}ANn}{{AN`fAOf}AN`}1{{FlfAOf}On}00{{AN`fAOh}AN`}{{AOffAOh}AOf}10{{AOfHdAOj}AOf}{{AOfGnANb}AOf}{{AOffAO`}AOf}210{{AOfGnAOl}AOf}{{AOffANf}AOf}1065654324321010>=<;::989777{{AOlGnANb}AOl}{{ANbGnAOl}ANb}10{{AOfHdAOfAOf}AOf}{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}210{{AOlGnAOnAOn}AOl}{{AOfGnAOfAOf}AOf}000{{AOfHdAOf}AOf}{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}{{AOfHdEj}AOf}{{AOfGnF`}AOf}{{AOffFf}AOf}{{AOfHjFl}AOf}{{AOhfDn}AOh}{{AOlGnDh}AOl}{{AMlfAOl}AMl}{{ANffAOl}ANf}{{ANlfAOh}ANl}{{ANdfAOh}ANd}{{ANnfAOf}ANn}{{AN`fAOf}AN`}10{{AOjGnAOjAOj}AOj}000{{AOhfAOhAOf}AOh}{{AOlGnAOlAOf}AOl}102{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}521021021021021021021055210210210210{{fAOh}f}{{HdAOj}Hd}{{GnAOl}Gn}{{AOhfAOh}AOh}{{AOjHdAOj}AOj}{{AOlGnAOl}AOl}210210210{{AOfHjAOfAOf}AOf}00{{AOfGnAOff}AOf}{{AOffAN`f}AOf}{{AOhfAN`f}AOh}{{AOlGnAOff}AOl}{{AOffAOff}AOf}{{AOhfAOff}AOh}{{ffAOfAOf}On}{{ffAOfAOh}On}{{fGnAOfAOf}On}{{ffAN`AOf}On}{{ffAN`AOh}On}{{fGnAOfAOl}On}{{AN`fAOff}AN`}87{{ANffAOff}ANf}{{ffAOfAN`}On}87{{ffAOfANf}On}{{AOlGnAOlAMl}AOl}{{AOlGnAOlANf}AOl}{{AOhfAOhANl}AOh}{{AOhfAOhANd}AOh}{{AOfGnAOfANn}AOf}{{AOfGnAOfAN`}AOf}{{AOffAOfANn}AOf}{{AOffAOfAN`}AOf}{{AOfGnF`}AOf}{{AOffFf}AOf}{{AOhfDn}AOh}{{AOlGnDh}AOl}{{AOfHdEj}AOf}43{{AOfHjFl}AOf}32{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOffAOfAOf}AOf}0{{AOfGnAOfAOf}AOf}{{AOfHdAOfAOf}AOf}012{{AOfHjAOfAOf}AOf}1230{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}21045634563210210{{AOfHdAOf}AOf}98{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}100::{{AOjGnAOjAOj}AOj}76507659999:;;8:;75898921:{{AOhfAOhAOf}AOh}{{AOlGnAOlAOf}AOl};<=:{{AOhfAOfAOh}AOh}{{AOlGnAOfAOl}AOl}{{AOffAOf}AOf}7>?{{AOffAOfAOf}AOf}>32:{{AOfGnAOf}AOf}2:><><98{{AOjHdAOj}AOj}{{GnAOf}F`}{{fAOf}Ff}{{fAOh}Dn}{{GnAOl}Dh}3232{{GnAOf}Hd}{{fAOf}Hj}32541032543254{{AOhfAOh}AOh}7{{AOlGnAOl}AOl}1809;{{AOfGnAOfAOf}AOf};:<0;291291219{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}210{{AOfHdEj}AOf}{{AOfGnF`}AOf}{{AOffFf}AOf}{{AOfHjFl}AOf}{{AOfHdAOfAOf}AOf}8{{AOffAOfAOf}AOf}190190190{{AOfGnAOf}AOf}{{AOfHjAOfAOf}AOf}8:;2:8{{AOfHdAOf}AOf}0{{AOfHdAOfANn}AOf}{{AOfGnAOfANn}AOf}{{AOffAOfANn}AOf}35{{AOffAOf}AOf}8{{AOfGnAOfAOf}AOf}8{{AOhfAOh}AOh}{{AOjHdAOj}AOj}{{AOlGnAOl}AOl}2107658:4<3;7658:4<3;{{F`GnAOf}On}{{FffAOf}On}{{DnfAOh}On}{{DhGnAOl}On}{{EjHdAOf}On}43{{FlHjAOf}On}32{{AOfHdAOfAOf}AOf}:{{AOffAOfAOf}AOf}{{AOfHjAOfAOf}AOf}{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}2105353?4{{HdAOfAOf}Hd}{{GnAOfAOf}Gn}{{fAOfAOf}f}{{HjAOfAOf}Hj}32109{{AOfGnAOfAOf}AOf}9875:098750975{{HdAOf}AOf}{{GnAOf}AOf}{{fAOf}AOf}{{HjAOf}AOf}{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HjAOfAOf}AOf}{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}21063635435420542063{{GnAMl}AOl}0{{GnANf}AOl}{{fANl}AOh}{{fANd}AOh}{{GnANn}AOf}0{{GnAN`}AOf}{{fANn}AOf}{{fAN`}AOf}{{HjANn}AOf}4268{{HdANn}AOf}{{GnAOjAOj}AOj}0{{HdAOf}AOf}{{GnAOf}AOf}{{fAOf}AOf}{{HjAOf}AOf}{{fAOh}AOh}{{GnAOl}AOl}43{{GnAOj}AOj}{{HdAOf}AOj}{{GnAOf}ANb}{{GnAOf}AOl}{{fAOf}AOh}{{fAOf}AO`}{{fAOf}ANf}543210{{fAOh}AN`}{{fAOh}AOf}10{{fAOh}AO`}{{fAOh}ANf}{{HdAOj}AOf}{{GnANb}AOf}{{fAO`}AOf}210{{fAO`}AOh}{{GnAN`}AOl}{{GnAOl}AOf}{{fANf}AOf}10{{fANf}AOh}{{GnAOl}AN`}{{GnAN`}AOf}{{fANn}AOf}{{HdAOf}AN`}{{HdAOf}AOj}{{GnAOf}AN`}{{fAN`}AOf}{{GnAOf}ANn}{{fAN`}AOh}{{GnAOf}ANb}{{GnAOf}AOl}{{fAOf}ANn}{{fAOf}AN`}1{{fAOf}AOh}{{fAOf}AO`}{{fAOf}ANf}{{HdAN`}AOf}{{GnANn}AOf}?{{GnAN`}AOf}{{fANn}AOf}?=;:9654320{{HdAOlAOl}AOn}{{GnAOl}AOb}{{GnAOb}AOl}{{fAOh}AN`}{{fAOh}AOf}10{{fAOh}AO`}{{fAOh}ANf}{{HdAOj}AOf}{{GnANb}AOf}{{fAO`}AOf}210{{fAO`}AOh}{{GnAN`}AOl}{{GnAOl}AOf}{{fANf}AOf}10{{fANf}AOh}{{GnAOl}AN`}{{HdAOf}AN`}{{GnAOf}AN`}{{GnAOf}ANn}{{fAOf}ANn}{{fAOf}AN`}1{{fAOh}AN`}{{fAOh}AOf}10?>=?>=:9:91010?>=?>=:9:9654323{{GnANb}AOl}{{GnAOl}ANb}10{{HdAOfAOf}AOf}{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}210{{GnAOlAOnAOn}AOl}{{GnAOfAOfAOf}AOf}000{{HdAOf}AOf}{{GnAOf}AOf}{{fAOf}AOf}{{HjAOf}AOf}{{fAOh}AOh}{{GnAOl}AOl}{{HdEj}AOf}{{GnF`}AOf}{{fFf}AOf}{{HjFl}AOf}{{fDn}AOh}{{GnDh}AOl}{{fAOl}AMl}{{fAOl}ANf}{{fAOh}ANl}{{fAOh}ANd}{{fAOf}ANn}{{fAOf}AN`}10{{GnAOjAOjAOj}AOj}0{{GnAOjAOj}AOj}0{{fAOhAOhAOf}AOh}{{GnAOlAOlAOf}AOl}103{{fAOhAOhAOh}AOh}{{HdAOjAOjAOj}AOj}{{GnAOlAOlAOl}AOl}621021021021021021021055210210210210{{fAOh}AOh}{{HdAOj}AOj}{{GnAOl}AOl}210210210{{HjAOfAOf}AOf}00{{GnAOlAMl}AOl}{{GnAOlANf}AOl}{{fAOhANl}AOh}{{fAOhANd}AOh}{{GnAOfANn}AOf}{{GnAOfAN`}AOf}{{fAOfANn}AOf}{{fAOfAN`}AOf}{{GnF`}AOf}{{fFf}AOf}{{fDn}AOh}{{GnDh}AOl}{{HdEj}AOf}43{{HjFl}AOf}32{{GnAOf}AOf}{{fAOf}AOf}{{fAOfAOfAOf}AOf}0{{GnAOfAOf}AOf}{{HdAOfAOf}AOf}01{{fAOfAOf}AOf}{{HjAOfAOf}AOf}2310{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}21056435643210210{{HdAOf}AOf}:9{{HjAOf}AOf}{{fAOh}AOh}{{GnAOl}AOl}10088{{GnAOjAOj}AOj}7650765::::;98;9758:8:21{{fAOhAOf}AOh}{{GnAOlAOf}AOl}{{HdAOfAOfAOf}AOf}{{GnAOfAOfAOf}AOf}{{fAOfAOfAOf}AOf}{{HjAOfAOfAOf}AOf}{{fAOhAOfAOh}AOh}{{GnAOlAOfAOl}AOl}{{fAOf}AOf};{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HjAOfAOf}AOf}{{fAOfAOh}AOh}{{GnAOfAOl}AOl}{{HdAOf}AOf}{{GnAOf}AOf}8{{HjAOf}AOf}{{fAOhAOh}AOh}{{GnAOlAOl}AOl}10{{fAOh}AOh}{{GnAOl}AOl}{{HdAOj}AOj}2012016><;6><;2012012104{{HdAOjAOj}AOj}4504{{HdEj}AOf}{{GnF`}AOf}{{fFf}AOf}{{HjFl}AOf}{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HdAOfAOfAOf}AOf}{{GnAOfAOfAOf}AOf}{{fAOfAOfAOf}AOf}543210{{GnAOf}AOf}{{HjAOfAOf}AOf}{{GnAOlAOl}AOl}{{fAOhAOh}AOh}8701{{HdAOf}AOf}0{{HdAOfANn}AOf}{{GnAOfANn}AOf}{{fAOfANn}AOf}37{{fAOf}AOf}>=<{{fAOh}AOh}{{HdAOj}AOj}{{GnAOl}AOl}2106547;3{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}987:>6210210=;{{HdAOjAOj}AOj}=<0=3>3>{{GnAOfAOfAOf}AOf}{{fAOfAOfAOf}AOf}543{{HjAOfAOf}AOf}?{{GnAOlAOl}AOl}7651{{fAOhAOh}AOh}17601{{AOfAOf}AOf}0000000{{AOhAOh}AOh}{{AOjAOj}AOj}{{AOlAOl}AOl}21033333333210210{AOhAOh}{AOlAOl}0{AOfHd}{AOfGn}{AOff}{AOfHj}{HdAOf}{GnAOf}{fAOf}{HjAOf}==;<;:;<;:==========<:=====98={{AOhAOf}AOh}{{AOlAOf}AOl}{{AOfAOfAOf}AOf}000{{AOhAOfAOh}AOh}{{AOjAOfAOj}AOj}{{AOlAOfAOl}AOl}{AOfAOf}{AOhAOh}{{AOfAOf}AOf}000{{AOfAOh}AOh}{{AOfAOj}AOj}{{AOfAOl}AOl}5555{{AOhAOh}AOh}{{AOlAOl}AOl}106{AOlAOl}{AOjAOj}{AOfF`}{AOfFf}{AOhDn}{AOjANj}{AOlDh}4343{AOfHd}{AOfHj}43265104326543265?78?78{AOfAOf}0??00??{AOhAOh}9:09:0:9{{AOfAOf}AOf}={{AOjAOj}AOj}=>0={EjAOf}{F`AOf}{FfAOf}{FlAOf}{DnAOh}{ANjAOj}{DhAOl}{{F`F`F`F`}AOf}{{FfFfFfFf}AOf}{{DnDnDnDn}AOh}{{DhDhDhDh}AOl}{{EjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEj}AOf}{{F`F`F`F`F`F`F`F`F`F`F`F`F`F`F`F`}AOf}{{FfFfFfFfFfFfFfFf}AOf}{{FlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFl}AOf}{{DnDnDnDnDnDnDnDn}AOh}{{ANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANj}AOj}{{DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh}AOl}:98754210{{}AOl}{{}AOf}{{}AOh}{{}AOj}32{{AOfAOf}AOf}00{{AOfAOfAOf}AOf}00111000{AOfAOf}2{{AOlAOl}AOl}{{AOhAOh}AOh}440122{{AOfANn}AOf}00333555{AOhAOh}{AOjAOj}{AOlAOl}210333666888333666888{{F`AOf}On}{{FfAOf}On}{{DnAOh}On}{{ANjAOj}On}{{DhAOl}On}4{{EjAOf}On}54{{FlAOf}On}4326=426????;{{AOjAOj}AOj}=<0={{AOfAOf}AOf}000{{AOfAOfAOf}AOf}0{{AOfAOf}Hd}{{AOfAOf}Gn}{{AOfAOf}f}{{AOfAOf}Hj}3210{{}AOl}{{}AOf}{{}AOh}{{}AOj}39999{{AOhAOh}AOh}{{AOlAOl}AOl};;;;10;;10;{ANlAOh}{ANdAOh}{AO`AOj}{ANbAOj}{AMlAOl}{ANfAOl}{ANnAOf}{AN`AOf}{ANnANn}000{AO`AO`}{{ANnANn}ANn}000{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}21021033332033335533320320333{ANhAMl}{ANjAMl}{{ANnANn}Gn}6653{{ANnANnANn}ANn}{{ANlANlANl}ANl}{{AMlAMlAMl}AMl};{{{b{Dh}}}AMl}<<{fANn}{GnANn}>{ANlANl}{ANnAN`}{AMlAMl}{ANnANn}00{ANlAO`}{ANlAMl}{ANlANn}{AO`ANl}{AO`AMl}{AO`ANn}{AMlANl}{AMlAO`}{AMlANn}{ANnANl}{ANnAO`}{ANnAMl}?={{ANlANl}ANl}{{AMlAMl}AMl}{fOn}{{ANnANn}ANn}{{ANnANn}f}00{{ANnANn}Gn}11105{{ANlANl}f}{{AO`AO`}f}6{{AMlAMl}f}210821705454545344438787{{ANnF`ANnF`}F`}00{{ANnF`ANnF`}ANn}11166656665:9:9767676756665:9:9{{ANnANn}F`}00800077767776;:;:87877867776;:;:77767776;:;:;:;:;:;:;:;:;:;:;:;:;:;:{{AO`AO`}AO`}00{{ANlANl}F`}{{AO`AO`}F`}{{AMlAMl}F`}1210210210210210210{ANnANn}0{AO`AO`}{{HdGn}Hd}{{HdHd}Hd}{{HjHj}Hj}{{Hdf}Hd}{{AO`F`}AO`}{{AMlF`}AMl}{{ANlFf}ANl}{{AO`Ff}AO`}{{AMlFf}AMl}{ANlF`}{ANlFf}{{AO`ANl}AO`}21{{AMlANl}AMl}{ANlHd}{ANlHj}{AO`F`}{AO`Ff}{{ANlAO`}ANl}{{AMlAO`}AMl}{AO`Hd}{AO`Hj}?><{AMlF`}{AMlFf}{{ANlAMl}ANl}{{AO`AMl}AO`}32{AMlHd}{AMlHj}{{AO`Hd}AO`}{{AMlHd}AMl}{{ANlHj}ANl}{{AO`Hj}AO`}{{AMlHj}AMl}{{AMlF`}AMl};{ANnANn}00{ANnAO`}111{ANnANl}1{ANnAMl}333120333332312120333{{ANlF`}ANl}{{AO`F`}AO`}6{{ANlFf}ANl}{{AO`Ff}AO`}{{AMlFf}AMl}{{AMlAMl}AOd}{AOdAMl}{AO`AMl}10{AMlAOd}0{DhANh}3{ANlANn}000{ANlAO`}{ANlAMl}{AO`ANn}00000{AO`ANl}?{AMlANn}000{AMlANl}1{ANhDh}{ANlDn}{ANlF`}{ANlFf}{{AO`ANl}AO`}211{{AMlANl}AMl}{ANlHd}{ANlHj}{ANnANn}00000{AO`ANj}{AO`F`}{AO`Ff}{{ANlAO`}ANl}{{AMlAO`}AMl}{AO`Hd}{AO`Hj}{ANnEj}{ANnF`}{ANnFf}0{EjANn}{{ANlF`}ANl}{F`ANn}{{AMlF`}AMl}{{ANlFf}ANl}{FfANn}{{AMlFf}AMl}21{AMlDh}{AMlF`}{AMlFf}{{ANlAMl}ANl}{{AO`AMl}AO`}32{AMlHd}{AMlHj}{ANlF`}{ANlFf}10{ANlHd}{ANlHj}{AO`F`}{AO`Ff}{AO`Hd}{AO`Hj}=<=<98={ANlANn}000{AO`ANn}00000{AMlANn}000:9:99876543{AMlF`}{AMlFf}10>={{ANlHd}ANl}{{AO`Hd}AO`}{{AMlHd}AMl}{{ANlHj}ANl}{{AO`Hj}AO`}{{AMlHj}AMl}{ANnANn}00000{AO`AMl}{AMlAO`}{{ANnANn}ANn}{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}21021020{{AMlAOdAOd}AMl}{{ANnANnANn}ANn}0000000000000000000{ANnF`}0{ANnFf}1{AMlF`}8;{{AO`AO`AO`}AO`}00777{{ANlANlANn}ANl}{{AMlAMlANn}AMl}1010{ANlANl}{AMlAMl}<:4{{ANlANlANl}ANl}5{{AMlAMlAMl}AMl}61606160160160160160160===160160160160160160{ANlf}{AO`f}{AMlf}210{{}Hd}7{AO`AO`}7{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}210;3:210210{{ANnANn}ANn}000031000310{{F`ANn}ANn}{{FfANn}ANn}{{DnANn}ANl}{{DhANn}AMl}{{fANnANn}On}0{{fANnANl}On}{{fANnAMl}On}65432210{{ANnF`}ANn}0{{ANnFf}ANn}1:99{ANnANn}{{}On}{DnANl}{DhAMl}{F`ANn}{FfANn}33{ANjAO`}3340634{{ANlDn}ANl}7054{EjANn}43{FlANn}7369{fANn}00::{{ANnANnANn}ANn}000{{ANnANn}ANn}0{{ANnANnfANn}ANn}00{{ANnANnGnANn}ANn}{{ANlANnfANl}ANl}{{AMlANnfAMl}AMl}{{AO`AO`AO`f}AO`}000{{ANlANlANlf}ANl}1{{AMlAMlAMlf}AMl}21202120120120120120120120120120120120120{{ANnfANn}ANn}00{{ANnGnANn}ANn}{{ANnfANnANn}ANn}00{{ANnGnANnANn}ANn}{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}21021043434434420442043{{GnANnANn}Gn}{{fANnANn}ANn}00{{GnANnANn}ANn}{{fANlANl}ANl}{{fAO`AO`}AO`}{{fAMlAMl}AMl}<;<<{{AMlfAMl}AMl}={{fANnANn}f}0070007{{fANlANl}f}{{fAO`AO`}f}{{fAMlAMl}f}210210333:333:333:333:333:333:333:333:333:333:333:333:<<<{{ANnfANn}ANn}00{{ANnGnANn}ANn}{{ANlfANl}ANl}7{{ffANn}On}00{{fGnANn}On}{{ffANl}On}{{ffAMl}On}66{{AO`fAO`}AO`}{{ANnfAMl}ANn}{{AO`fAO`ANl}AO`}{{AMlfAMlANl}AMl}{{ANlfANlAO`}ANl}{{AMlfAMlAO`}AMl}{{ANlfANlAMl}ANl}{{AO`fAO`AMl}AO`}>>>{{AO`fANn}AO`}{{FlfANn}On}{{ANnfANn}ANn}00{{ANlfANn}ANl}3{{AMlfANn}AMl}33222140333222224214140222{{AOdfAMlAMl}AOd}{{AOdfAMl}AOd}{{AMlfAOd}AMl}{{ANnfANl}ANn}000{{AO`fANl}AO`}{{AMlfANl}AMl}{{ANnfAO`}ANn}00000{{ANlfAO`}ANl}8{{ANnfAMl}ANn}0000{{AO`fAO`ANl}AO`}{{AMlfAMlANl}AMl}=>==>>===>>>{{ANlfANlAO`}ANl}{{AMlfAMlAO`}AMl}{{ANlfANlAMl}ANl}{{AO`fAO`AMl}AO`};;;;8888886666{{ANnfANn}ANn}{{FlfANn}On}1100111000{{AMlfAO`}AMl}{{AO`fAMl}AO`}{{ANnfANnANn}ANn}{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}210210{{AMlfAOdAOd}AMl}4444888{{ANnGnANn}ANn}{{ANlfANl}ANl}{{AMlfAMl}AMl}{{ANnfEj}ANn}{{ANnfF`}ANn}{{ANnfFf}ANn}{{ANnGnFl}ANn}{{ANlfDn}ANl}{{AMlfDh}AMl};;;;;;{{ANlfANlANn}ANl}{{AMlfAMlANn}AMl}1010=>=<=>=<=>=<>=<>=<>=<>=<>=<===>=<>=<>=<>=<>=<>=<{{fANl}f}{{fAO`}f}{{fAMl}f}210<{{AO`fAO`}AO`}<{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}210{{ANlfANl}ANl}4{{AMlfAMl}AMl}432432{{ANnGnANnANn}ANn}00{{ANnF`ANnANn}ANn}{{ANnFfANnANn}ANn}{{ANlDnANnANl}ANl}{{AMlDhANnAMl}AMl}{{ffANnANn}On}0{{ffANnANl}On}{{ffANnAMl}On}65432210{{ANnfF`}ANn}{{ANnfFf}ANn}{{ANlfDn}ANl}{{AMlfDh}AMl}1{{AO`fANj}AO`}1{{ANnfEj}ANn}54{{ANnGnFl}ANn}43{{ANnfANn}ANn}0{{ANnfANnANn}ANn}000000{{ANnGnANnANn}ANn}1110{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}21021044434443210210210555{{ANnGnANn}ANn}{{ANlfANl}ANl}{{AMlfAMl}AMl}5431007745434543454377777767753676710{{ANlfANlANn}ANl}{{AMlfAMlANn}AMl}9998{{ANlfANnANl}ANl}{{AMlfANnAMl}AMl};:<<<69797975497{{AO`fAO`}AO`}9{{fANn}Ej}{{GnANn}Fl}1010{{fANn}Gn}{{GnANn}f}32103232:49>=<>=<{{ANnfANn}ANn}0{{ANnfANnANn}ANn}01100<6;{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}210?>2091210210210{{ANnfEj}ANn}{{ANnfF`}ANn}{{ANnfFf}ANn}{{ANnGnFl}ANn}7777777777778{{ANnGnANnANn}ANn}7599888999888{{ANlfANl}ANl}?{{AMlfAMl}AMl}987987:::;;;::::::;;;:::{{F`fANn}On}{{FffANn}On}{{DnfANl}On}{{DhfAMl}On}1{{ANjfAO`}On}1{{EjfANn}On}54{{FlGnANn}On}43{{ANnfANnANn}ANn}00:{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}2102103=3=33{{fANnANn}f}00{{GnANnANn}Gn}1110555?42555?425542{{F`ANn}ANn}{{FfANn}ANn}{{DnANn}ANl}{{DhANn}AMl}{{ANnANnFl}On}{{F`ANnANn}On}{{FfANnANn}On}{{DnANnANl}On}{{DhANnAMl}On}{{fANn}ANn}00{{GnANn}ANn}{{fANnANn}ANn}00{{GnANnANn}ANn}{{fANlANl}ANl}{{fAO`AO`}AO`}{{fAMlAMl}AMl}210210434344344204420436566{{fAMl}AMl}72227776{{fANl}ANl}188{{fAO`}AO`}{{fAMl}ANn}{{fAO`ANl}AO`}{{fAMlANl}AMl}{{fANlAO`}ANl}{{fAMlAO`}AMl}{{fANlAMl}ANl}{{fAO`AMl}AO`}{{fANn}ANn}00{{fANn}AO`}111{{fANn}ANl}1{{fANn}AMl}333120333332312120333{{fAMlAMl}AOd}{{fAMl}AOd}{{fAOd}AMl}{{fANl}ANn}000{{fANl}AO`}{{fANl}AMl}{{fAO`}ANn}00000{{fAO`}ANl}8{{fAMl}ANn}0000{{fAO`ANl}AO`}{{fAMlANl}AMl}>>>>>>{{fANlAO`}ANl}{{fAMlAO`}AMl}{{fANlAMl}ANl}{{fAO`AMl}AO`};;;;8888886666{{fANn}ANn}00000{{fAO`}AMl}{{fAMl}AO`}{{fANnANn}ANn}{{fANlANl}ANl}{{fAO`AO`}AO`}{{fAMlAMl}AMl}210210{{fAMlAOdAOd}AMl}{{fANnANnANn}ANn}000888{{GnANn}ANn}{{fANl}ANl}{{fAMl}AMl}{{fEj}ANn}{{fF`}ANn}{{fFf}ANn}{{GnFl}ANn}{{fDn}ANl}{{fDh}AMl}{{fAO`AO`AO`}AO`}00==={{fANlANlANn}ANl}{{fAMlAMlANn}AMl}10102{{fANlANlANl}ANl}3{{fAMlAMlAMl}AMl}41404140140140140140140{{fAO`AO`}AO`}00251251251251251251={{fAO`}AO`}={{fANlANl}ANl}2{{fAMlAMl}AMl}130{{fANl}ANl}3{{fAMl}AMl}352352{{GnANnANn}ANn}00{{fF`}ANn}{{fFf}ANn}?>?{{fANj}AO`}?{{fEj}ANn}32{{GnFl}ANn}{{fDn}ANl}{{fDh}AMl}{{fANn}ANn}0{{fANnANnANn}ANn}0{{fANnANn}ANn}0000:000:>{{fAO`AO`}AO`}>?0>?0>111;111;?0>?0>?0>333{{GnANn}ANn}>={{fANlANl}ANl}2{{fAMlAMl}AMl}{{fANl}ANl}{{fAMl}AMl}066535253525352666666{{GnANnANn}ANn}7743070721{{fANlANn}ANl}{{fAMlANn}AMl}:::{{GnANnANnANn}ANn}{{fANlANnANl}ANl}{{fAMlANnAMl}AMl}<5>>>:9898987698{{fAO`}AO`}<807:<9:<9??==??==807:<9:<987:90<:<9:<9:<9{{fEj}ANn}{{fF`}ANn}{{fFf}ANn}{{GnFl}ANn}{{fANnANn}ANn}00{{fANnANnANn}ANn}00111000{{fANn}ANn}={{fANlANl}ANl}{{fAMlAMl}AMl}22444222444{{fANl}ANl}:{{fAMl}AMl}3{{fAO`AO`}AO`}3403777555777777555777777{{GnANnANn}ANn}5145145148080778880548880548854{{ANnANn}ANn}0000000{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}210210{{}On}44444444321321321{ANnANn}{{ANnfANnf}ANn}0{{ANlfANnf}ANl}{{AMlfANnf}AMl}22103765{ANlANl}{AMlAMl}707{ANnF`}{ANlF`}{AMlF`}{ANnf}00{ANnGn}{fANn}00{GnANn}{{ANnANn}ANn}00{{AO`AO`}AO`}{{ANlANl}ANl}1{{AMlAMl}AMl}212021203333333331033333{{}On}=<{{ANlANn}ANl}{{AMlANn}AMl}{{ANnANnANn}ANn}000{{ANlANnANl}ANl}{{AO`ANnAO`}AO`}{{AMlANnAMl}AMl}::{{ANnAO`}AO`}{ANnANn}000{FlOn};:;:{ANlANl}{AMlAMl}=<{AO`AO`}1?1{ANnEj}{ANnFl}{AO`ANj}2121{ANnGn}{ANnf}24310243243756{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}210<<{{ANnANn}ANn}0==00;:31;9:321321;:319:2:0321321321{EjANn}{F`ANn}{FfANn}{FlANn}{DnANl}{ANjAO`}{DhAMl}{{EjEjEjEjEjEjEjEj}ANn}{{F`F`F`F`}ANn}{{FfFf}ANn}{{FlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFl}ANn}{{DnDn}ANl}7{{ANjANjANjANjANjANjANjANj}AO`}{{DhDhDhDh}AMl}7987{HdOn}764321{{}ANl}{{}AO`}{{}AMl}{{}ANn}{{}On}{{ANnANn}ANn}00000{{ANnANnANn}ANn}111000111000{ANnANn}2{{ANlANl}ANl}{{AMlAMl}AMl}224444442222444{ANlANl}{AO`AO`}{AMlAMl}4{{AO`AO`}AO`}45018886668888886666888{{DnANl}On}{{DhAMl}On}{{F`ANn}On}{{FfANn}On}33{{ANjAO`}On}3340{{ANnANn}On}450554{{EjANn}On}43{{FlANn}On}7362{{fANn}On}00?8783{{F`F`}On}{{FfFf}On}9{{ANnANn}ANn}000{{ANlANl}ANl}={{AMlAMl}AMl}1>01>02222{{ANnANnANn}ANn}0{ANnF`}{{ANnANn}F`}{{ANnANn}f}00{{ANnANn}Gn}2{{ANlANl}F`}{{AMlAMl}F`}43332104104{HdF`}{HjFf}3{{AO`AO`}F`}3403403403403403{{}ANl}{{}AO`}{{}AMl}{{}ANn}{{ANnANn}ANn}000{{ANlANl}ANl}{{AMlAMl}AMl}22221022102{{HdHd{b{dHd}}}Hd}{{HjHj{b{dHj}}}Hj}{{HdHd}Hd}{{HjHj}Hj}10{F`F`}{FfF`}{{{b{dGn}}}F`}{{{b{dHd}}}F`}{{{b{dHj}}}F`}210{{}Hj}{{GnGn}On}{{HdHd}On}{{HjHj}On}{{ff}On}{{fHdHd{b{dHd}}}f}{{fHjHj{b{dHj}}}f}{HdHd}{HjHj}{{}On}0000000{fOn}{{fAl}On}21002{GnGn}545435{{}Hd}4{HdHj}{{fHj}On}00000000000{{HdHj}On}{{}f}`{{GhGhGhB@`B@`}Gh}``````{e{{Db{c}}}{}{{A@j{Al}{{A@h{c}}}}}}{{{b{dc}}}{{b{d{Db{c}}}}}{}}{{{b{c}}}{{b{{Db{c}}}}}{}}{c{{Db{c}}}AAn}{e{}AHd{{A@j{Al}{{A@h{c}}}}}}``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{fB@b}````````{cB@dAAj}{{{B@h{}{{A@b{c}}{B@f{e}}}}}e{}{{B@j{}{{A@b{c}}}}}}{{{AFj{{b{d{B@j{}{{A@b{c}}}}}}}}{b{dAFl}}}{{AFn{{Bf{c}}}}}{}}{{{b{{B@j{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}``{{{b{ABd}}}{{b{c}}}A@f}{{{b{dAIj}}}{{b{dc}}}A@f}```````````````````````{cB@l{{AAj{}{{A@b{Gn}}}}}}{{HdHd}{{Bf{AK`}}}}{Hd{{Bf{AK`}}}}{HdAK`}```{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{B@n}}}On}`````````````{{AAlAAlAAl}AAl}{{{b{AAl}}{b{AAl}}}ABh}{{{b{ACf}}{b{c}}}AjA@f}{{{b{ADj}}{b{c}}}AjA@f}000{{cc}cAAl}{{AAlAAl}AAl}{{cce}c{}{{AAf{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{ccg}c{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}3210{{cc}{{Db{c}}}AAl}{{cce}{{Db{c}}}{}{{AAf{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{ccg}{{Db{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}8{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}``````````{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}{cADf{}}{cc{}}{AEbc{}}{c{{n{{AHh{}{{AHf{e}}}}e}}}{}{}}{{{AHj{}{{AHf{c}}}}}{{n{ec}}}{}{}}``{{}AFf}```{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{BA`}}}{{Bf{{b{BA`}}}}}}{{{b{BAb}}}BAb}{{b{b{dc}}}On{}}{bOn}{{{b{BA`}}}{{b{AKb}}}}{{{b{BAb}}{b{dAb}}}{{n{OnADb}}}}<{{}c{}}0{{{b{dBAb}}}Bf}{{{b{BA`}}{b{dBAd}}}On}{{{b{c}}}{{Bf{{b{e}}}}}{BA`A@f}A@f}{{{b{c}}}{{Bf{e}}}{BA`A@f}{}}{{{b{BAb}}}{{Bb{Al{Bf{Al}}}}}};{bc{}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{bAf}````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{BAf}}}BAf}{{b{b{dc}}}On{}}{bOn}{BAfAl}{{{b{BAf}}{b{dAb}}}{{n{OnADb}}}}{cc{}}{{}c{}}0{{{b{dBAf}}}{{Bf{f}}}}{{{b{BAf}}}{{Bb{Al{Bf{Al}}}}}}>=<;`````````````````````````````{{{b{AD`}}{b{dAb}}}{{n{OnADb}}}}{{{b{ADd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AIl}}{b{dAb}}}{{n{OnADb}}}}{{{b{AIn}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJ`}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJb}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJf}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJh}}{b{dAb}}}{{n{OnADb}}}}{c{{AJl{c}}}{{AAb{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{dAJn}}AJj}{{n{OnADb}}}}{{{b{dAJn}}AK`}{{n{OnADb}}}}1{{{b{dAJn}}{b{AKb}}}{{n{OnADb}}}}```````````{c{{BAh{c}}}{}}{{{AFj{{b{d{BAl{}{{BAj{c}}}}}}}}}c{{AEh{}{{A@h{On}}}}}}{{}{{BAn{c}}}A@f}{{{AEf{}{{A@h{c}}{AEd{e}}}}}e{}{{AEh{}{{A@h{c}}}}}}`{{}{{BB`{c}}}{}}{{{AFj{{b{d{AEh{}{{A@h{c}}}}}}}}{b{dAFl}}}{{AFn{c}}}{}}{e{{BBb{e}}}{}{{A@j{{b{dAFl}}}{{A@h{{AFn{c}}}}}}}}{c{{BBd{c}}}{}}```````{{{b{{BBh{}{{BBf{c}}}}}}}cBBj}{{{b{BBj}}}Hj}{{{b{BBl}}{b{dc}}}OnBBj}{{{b{{BBh{}{{BBf{c}}}}}}e}HjBBjBBl}{{{b{{h{BBl}}}}{b{dc}}}OnBBj}{{{b{dBBj}}{b{{h{f}}}}}On}{{{b{dBBj}}Ed}On}{{{b{dBBj}}Ej}On}{{{b{dBBj}}F`}On}{{{b{dBBj}}Ff}On}{{{b{dBBj}}Fl}On}{{{b{dBBj}}Gb}On}{{{b{dBBj}}Al}On}{{{b{dBBj}}{b{AKb}}}On}{{{b{dBBj}}Gh}On}{{{b{dBBj}}Gn}On}{{{b{dBBj}}Hd}On}{{{b{dBBj}}Hj}On}{{{b{dBBj}}f}On}6{AjOn}{cc{}}0{{}On}{{}AIh}````````````0{{cc}{{Bb{cAj}}}BBn}{{ce}g{}{}{{BCb{c}{{BC`{e}}}}}}{Gb}4446{ccBBn}00003333333333333333333333333333335555{{}cBBn}000111111111111111111116666{cOnBBn}0002222222222222222222222222222222872{{}{{b{BCd}}}}{{{BCf{f}{{A@h{On}}}}f{BCf{ff}{{A@h{On}}}}}F`}{BChBCh}{ANjANj}{DhDh}{DnDn}{{ffAl}F`}{{AlAl}f}{{fAlAl}On}{{cgi}eAAd{}{{AAf{c}{{A@h{e}}}}}{{AAf{c}{{A@h{e}}}}}}{AlOn}0{{BChBCh}BCh}{{ANjANj}ANj}{{DhDh}Dh}{{DnDn}Dn}<;:9{cHdBBn}0000{{{b{c}}}{}{}}{{}On}{{cc}cBBn}{BChBCh}{ANjANj}{DhDh}{DnDn}321032104444{ceBBnBBn}4321{{BChBChBCh}BCh}{{ANjANjANj}ANj}{{DhDhDh}Dh}{{DnDnDn}Dn}99{cOnA@f}::::{cAjBBn}{AjAj};:98;:98;:98{{BChBCh}BCh}{{ANjANj}ANj}{{DhDh}Dh}{{DnDn}Dn}{{}Al}04321`{{cc}{{Bb{cAj}}}BBn}{BChBCh}{ANjANj}{DhDh}{DnDn}{{}Aj}{cOn{}}{{ce}c{}{}}<;:9{{BChF`}BCh}{{ANjF`}ANj}{{DhF`}Dh}{{DnF`}Dn}<{F`On}000{{}f}{Al}{{}c{}}{{}Gb}{{}Al}{{{b{c}}{b{c}}}Aj{}}3{BChBCh}{ANjANj}{DhDh}{DnDn}{{cHd}cBBn}043214321{cc{}}{{cc}cBBn}0{{Ajcc}c{}}`7654997654{{cc}{{Bb{cAj}}}BBn}{{cc}ABhBBn}{ce{}{}}0:987{{}Gh}{{}{{b{AKb}}}}{{}On}{{}Aj}{{}c{}}{cOn{}}::::{{ce}cBBnBBn}0;{AjAj}{{}AIh}{{}Al}{AlOn}06{{fAl}On}6{OnAl}0{{cc}cBBn}0028`{AjOn}`{{OnBCjBCl}On}{ce{}{}}0{c{{Bb{cAj}}}{}}`{cc{}}={c{}{}}{{cBCjBCl}On{}}{{OnHd}c{}}{BCnBCn}`{cAl{}}5`{{ce}c{}{}}{{}}{cOn{}}{{}BCn}{BCnBCj}`{{cHd}On{}}{c{{b{c}}}{}};4443`{BCnBCl}{{}BCl}{{}On}{BD`BCl}`25``{{cc}c{}}0;{ce{}{}}0{cc{}}01100002{{cc}e{}{}}2{{cHd}e{}{}}22222222{{ccc}c{}}5533{{ceg}c{}{}{}}33{{cHde}c{}{}}44{{ceg}g{}{}{}}{{ceg}On{}{}{}}9679{{ce}e{}{}}9{cAj{}}:0::1:::;9;;2{{cee}e{}{}}0<<{{cce}g{}{}{}}=;<=``````````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{BDbAl}BDb}{{BDbAl}{{Bf{BDb}}}}1{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{ce}AAhAAj{{AAj{}{{A@b{}}}}}}{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}{{BDd{c}}}{}}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}{{BDbAl}BDb}{{BDbAl}{{Bf{BDb}}}}1{c{{BDf{c}}}{{BDj{}{{BDh{On}}}}BDl}}{e{{BDn{e}}}{}{{A@j{}{{A@h{{Bf{c}}}}}}}}{eABj{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}0{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}:{{{b{AEl}}}Al};{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}4{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}610{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}{c{{BE`{c}}}{}}{e{{BEb{e}}}{}{{AAf{}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{eAG`{}{{A@d{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{c{{BEd{c}}}AAn}{{cAl}{{BEf{c}}}AAn}{e{{BEh{e}}}{}{{A@j{}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}9{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}{{{b{BDb}}{b{BDb}}}{{Bf{Al}}}}{{{Bf{c}}e}{{BEj{ce}}}{}{{A@j{{b{c}}}{{A@h{{Bf{c}}}}}}}}{eAGl{}{{A@d{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{ce}AHlAAjAAj}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}``````````````````````{BElOn}`````{{}Al}{{{b{c}}}AlA@f}1`{{{b{c}}}cBBn}{{{b{c}}}{{BEn{c}}}{}}{cOn{}}0{cOnA@f}`54{{}Aj}`{{{b{dc}}c}c{}}`767{{{b{dc}}{b{dc}}}On{}}{{{b{dc}}}cAFf}{ce{}{}}{cBF`A@f}{{{b{c}}}e{}{}}{{}c{}}`=0````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{BFb{}{{A@h{c}}}}e}c{}{}}{{{b{dBFd}}c}On{}}{{{b{BFf}}c}eAAd{}}{{{b{d{BFj{}{{BFh{c}}}}}}g}c{{AEh{}{{A@h{e}}}}}{}AAd}{{{BFn{}{{BFl{c}}{A@h{e}}}}g}c{{AEh{}{{A@h{e}}}}}{}AAd}{{{BG`{}{{A@h{c}}}}e}c{}{}}{{{b{dBGb}}c}On{}}{{{BGd{}{{A@h{c}}}}e}c{}{}}{{{b{dBGf}}c}On{}}{{{BGh{}{{A@h{c}}}}e}c{}{}}{{{b{dBGj}}c}On{}}{{{AHd{}{{A@h{c}}{BGl{e}}}}}{{BGn{ec}}}{}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}{{{b{AKn}}{b{c}}}Aj{}{{ADj{c}}A@f}}{{{b{{BHb{}{{BH`{c}}}}}}}{{b{c}}}A@f}{{{b{dBHd}}}{{b{dc}}}{}}{{{BHf{}{{A@h{c}}}}e}c{}{}}{{{b{dBHh}}c}On{}}{{{b{dACb}}}On}```{{{b{AKn}}}{{BHj{{b{c}}}}}A@f}{c{{AHd{}{{A@h{c}}{BGl{e}}}}}{}{}}{cBHl{}}{{{b{{BHn{}{{A@h{c}}}}}}e}{{b{c}}}A@fA@f}{{{b{dBI`}}c}{{b{de}}}A@f{}}{{{BIb{}{{A@h{c}}}}e}c{}{}}{{{b{dBId}}c}On{}}{{{BIf{}{{A@h{c}}}}}c{}}{{{BIh{}{{A@h{c}}}}}c{}}{{{BIj{}{{A@h{c}}}}e}c{}{}}{{{b{dBIl}}c}On{}}{{{AFj{{b{d{BDj{}{{BIn{c}}{BDh{e}}}}}}}}g}{{BJ`{ce}}}{}{}{}}{{{BJb{}{{A@h{c}}}}e}c{}{}}{{{b{dBJd}}c}On{}}{{{BJf{}{{A@h{c}}}}e}c{}{}}{{{b{dBJh}}c}On{}}``?{{{BJj{}{{A@h{c}}}}e}c{}{}}{{{b{dBJl}}c}On{}}````````````{{{b{BJn}}}{{Bf{{b{AKb}}}}}}{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{{b{BK`}}}Aj}{{{b{BJn}}{b{dAb}}}{{n{OnADb}}}}0{{{b{BK`}}{b{dAb}}}{{n{OnADb}}}}0{cc{}}0{{}c{}}0{{{b{BK`}}}{{Bf{{b{BCd}}}}}}{{{b{BK`}}}BJn}{{{b{BK`}}}{{b{AMj}}}}{bA`}0{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{bAf}0{AJjAIh}{{{b{AKb}}}AIh}`{{{b{c}}}AIhADd}{{}AIh}32{{AJjAj}AIh}332111111111111111111```````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}?`0?```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}};{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{AEl}}}Al}``=1{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}6{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2810`{{{b{ACf}}{b{c}}}AjA@f}8{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}```{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}```````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}?`0?```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}};{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{AEl}}}Al}``=1{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}6{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2810`{{{b{ACf}}{b{c}}}AjA@f}8{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}```{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{eABj{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}`10```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}<;{{{b{AEl}}}Al}``=<{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}5{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2710`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}```{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{{AHh{}{{AHf{e}}}}e}}}{}{}}{{{AHj{}{{AHf{c}}}}}{{n{ec}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}`````````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{eABj{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}`10```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AEf{}{{A@h{c}}{AEd{e}}}}}e{}{{AEh{}{{A@h{c}}}}}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}=<{{{b{AEl}}}Al}``>={{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}5{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2710`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{AFj{{b{d{AEh{}{{A@h{c}}}}}}}}{b{dAFl}}}{{AFn{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}```{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{{AHh{}{{AHf{e}}}}e}}}{}{}}{{{AHj{}{{AHf{c}}}}}{{n{ec}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}```````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}?`0?```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}};{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{AEl}}}Al}``=1{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}6{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2810`{{{b{ACf}}{b{c}}}AjA@f}8{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}```{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}``````````````````````{{}Aj}``{AlOn}0{{}}0{{}On}3{{ce}AjBElBEl}{{{b{dc}}}{}A@f}33{{{b{c}}}{}A@f}{{{b{dc}}}OnBBj}555{{}c{}}00{cc{}}{Alh}079{Al}000{cOn{}}{{fAl}On}11````````````````{{{b{d{BKb{c}}}}Al}{{n{On{A@`{Al}}}}}BDb}{{{b{d{BKd{c}}}}Al}{{n{On{A@`{Al}}}}}BDb}10{{BDbAl}BDb}{{BDbAl}{{Bf{BDb}}}}1{b{{b{c}}}{}}00000{{{b{d}}}{{b{dc}}}{}}00000{{{b{{BKb{c}}}}}{{BKb{c}}}AAn}{{{b{{BKd{c}}}}}{{BKd{c}}}AAn}{{{b{{BKf{c}}}}}{{BKf{c}}}AAn}{{{b{{BKh{c}}}}}{{BKh{c}}}AAn}{{{b{{BKj{c}}}}}{{BKj{c}}}AAn}{{{b{{BKl{c}}}}}{{BKl{c}}}AAn}{{b{b{dc}}}On{}}00000{bOn}00000{{{b{AKn}}{b{c}}}Aj{}{{ADj{c}}A@f}}{{{b{{BKh{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{b{{BKj{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{b{{BKl{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{BKb{c}}}AlBDb}{{{BKd{c}}}AlBDb}{{}{{BKh{c}}}AFf}````{{{b{AKn}}}{{BHj{{b{c}}}}}A@f}{{{b{{BKh{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKh{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKj{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKj{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKl{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKl{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKh{c}}}}{b{{BKh{c}}}}}AjACf}{{{b{{BKj{c}}}}{b{{BKj{c}}}}}AjACf}{{{b{{BKl{c}}}}{b{{BKl{c}}}}}AjACf}{{{b{{BKb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BKd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BKf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BKh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BKj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BKl{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{BDbAl}BDb}{{BDbAl}{{Bf{BDb}}}}1{cc{}}000{{{AKf{c}}}{{BKh{c}}}{}}1{{{BKn{c}}}{{BKj{c}}}{}}2{{{BL`{c}}}{{BKl{c}}}{}}{{{BKh{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{BKh{Al}}{b{AKb}}}{{Bf{b}}}}{{{BKj{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{BKj{Al}}{b{AKb}}}{{Bf{b}}}}{{{BKl{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{BKl{Al}}{b{AKb}}}{{Bf{b}}}}{{{BKh{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{BKh{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{BKj{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{BKj{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{BKl{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{BKl{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{BKh{Al}}AKb}}{{{BKh{Al}}h}h}{{{BKj{Al}}h}h}{{{BKj{Al}}AKb}}{{{BKl{Al}}h}h}{{{BKl{Al}}AKb}}543201{{{b{{BKh{c}}}}{b{de}}}OnBBlBBj}{{{b{{BKj{c}}}}{b{de}}}OnBBlBBj}{{{b{{BKl{c}}}}{b{de}}}OnBBlBBj}{{{BKh{Al}}{b{AKb}}}b}{{{BKh{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{BKj{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{BKj{Al}}{b{AKb}}}b}{{{BKl{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{BKl{Al}}{b{AKb}}}b}{{{BKh{Al}}{b{dAKb}}}{{b{d}}}}{{{BKh{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{BKj{Al}}{b{dAKb}}}{{b{d}}}}{{{BKj{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{BKl{Al}}{b{dAKb}}}{{b{d}}}}{{{BKl{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{}c{}}00000000{{{BKh{c}}}{}BDb}{{{BKj{c}}}{}BDb}{{{BKl{c}}}{}BDb}{{{b{{BKh{c}}}}}AjADj}{{{b{{BKj{c}}}}}AjADj}{{{BKb{c}}}AjBDb}{{{BKd{c}}}AjBDb}{{{b{{BKh{c}}}}}{{BKb{c}}}BDb}{{{b{{BKj{c}}}}}{{BKd{c}}}BDb}{{{b{{BKl{c}}}}}{{BKf{c}}}BDb}{{{BKb{c}}}{{Bf{c}}}BDb}{{{BKd{c}}}{{Bf{c}}}BDb}`{{{BKb{c}}}{{Bf{c}}}{AAlBDb}}{{{BKd{c}}}{{Bf{c}}}{AAlBDb}}10{{{b{d{BKb{c}}}}}{{Bf{c}}}BDb}{{{b{d{BKd{c}}}}}{{Bf{c}}}BDb}{{{b{d{BKf{c}}}}}{{Bf{c}}}BDb}21{{{b{d{BKb{c}}}}Al}{{Bf{c}}}BDb}{{{b{d{BKd{c}}}}Al}{{Bf{c}}}BDb}{{{b{d{BKf{c}}}}Al}{{Bf{c}}}BDb}21{{{BKb{c}}}{{BKh{c}}}{}}{{{BKd{c}}}{{Bf{{BKj{c}}}}}BDb}{{{BKf{c}}}{{BKl{c}}}{}}{{{b{{BKb{c}}}}}{{Bb{Al{Bf{Al}}}}}BDb}{{{b{{BKd{c}}}}}{{Bb{Al{Bf{Al}}}}}BDb}{{{b{{BKf{c}}}}}{{Bb{Al{Bf{Al}}}}}BDb}```{{{b{AKn}}}{{BHj{{b{c}}}}}A@f}{{{b{{BKh{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKh{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKj{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKj{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKl{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKl{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{BDb}}{b{BDb}}}{{Bf{Al}}}}{bc{}}00000{c{{n{e}}}{}{}}00000{{}{{n{c}}}{}}00000{bAf}00000`````````````````````````{{{BLb{c}}{BLb{c}}}{{BLb{c}}}BLd}{{{BLf{c}}{BLf{c}}}{{BLf{c}}}BLh}``````````````{c{{BLl{}{{BLj{c}}}}}{BBnBDlBLnBM`{AA`{{h{f}}}}{A@n{{h{f}}}}{BMd{}{{BMb{f}}}}}}00``````````````````````````````````````````````````````````````````````````{{{BLb{c}}}{{BLb{c}}}BLd}{{{BLf{c}}}{{BLf{c}}}BLh}{{{BLl{}{{BLj{c}}}}}c{BBnBDlBLnBM`{AA`{{h{f}}}}{A@n{{h{f}}}}{BMd{}{{BMb{f}}}}}}00```````````````````````````````````````{{BMfBMfBMf}BMf}{{{BMj{}{{BMh{c}}}}{BMj{}{{BMh{c}}}}}c{}}{{BMlBMl}c{}}000{{BMfBMf}BMf}02`````````````{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}i{}{}{}{}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}i{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}e{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{c{{BNb{}{{BMh{e}}{BMb{g}}{BMn{c}}{BN`{i}}}}}{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}c{}{}{}{}}00{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}c{}{}{}{}}10111{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}g{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}10:{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}e{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}c{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}e{}{}{}{}}210212102102121<3<{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}>10?>{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}};;?6{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}g{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}i{}{}{}{}}1:9:99```````````````````````````````1{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}c{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}c{}{}{}{}{}}3{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}i{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}e{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}i{}{}{}{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}i{}{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}87``````````````{c{{BNb{}{{BMh{e}}{BMb{g}}{BMn{c}}{BN`{i}}}}}{}{}{}{}}````````````````````````````{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}c{}{}{}{}}00{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}c{}{}{}{}}1{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}k{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}k{}{}{}{}{}}2333```````{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}g{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}10```````````````````````````````````{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}e{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}c{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}e{}{}{}{}}210212102102121{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}50{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}21062{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{BMfBMfBMf}BMf}{{{BMj{}{{BMh{c}}}}{BMj{}{{BMh{c}}}}}c{}}{{BMlBMl}c{}}000{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{BMfBMf}BMf}103`8={{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}g{}{}{}{}}={{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}i{}{}{}{}}>{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}g{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}10```````````````````````````````````{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}c}{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}c}{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}{c{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{c{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}324{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}e}{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}e}{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}54````````````{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}c{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}c{}{}{}{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}i{}{}{}{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}i{}{}{}{}{}}54{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}k{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}k{}{}{}{}{}}=<;:=<98=<````````````````````````````````{{{b{{BOd{}{{A@b{c}}}}}}}{{b{{h{c}}}}}{}}{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{BOf}}{b{dAb}}}{{n{OnADb}}}}0{cc{}}{{{b{dc}}}{{b{d{h{c}}}}}{}}{AKf{{b{d{h{c}}}}}{}}{AKf{{b{{h{c}}}}}{}}{Al{{b{{h{c}}}}}{}}{Al{{b{d{h{c}}}}}{}}{{{b{c}}}{{b{{h{c}}}}}{}}{{{AKh{}{{A@h{c}}}}{b{e}}}{{Bf{{b{c}}}}}A@fA@f}{{{AKh{}{{A@h{c}}}}{b{de}}}{{Bf{{b{dc}}}}}A@fA@f}{{{AKh{}{{A@h{c}}}}}cA@f}0{{{AKh{}{{A@h{c}}}}{b{e}}}{{b{c}}}A@fA@f}{{{AKh{}{{A@h{c}}}}{b{de}}}{{b{dc}}}A@fA@f}{{}c{}}`{{c{AKl{Al}}}{{AKf{Al}}}{{AKn{Al}}}}{bA`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{{c{AKl{Al}}}{{Bf{{AKf{Al}}}}}{{AKn{Al}}}}{bAf}{{f{b{{h{f}}}}}{{Bf{Al}}}}0````````````````````````````{{fAl}{{b{AKb}}}}{{fAl}{{b{dAKb}}}}{{{b{AKb}}}{{n{{ALd{}{{ALb{c}}}}c}}}{}}{{{b{{h{f}}}}}{{n{{b{AKb}}ALf}}}}{{{b{d{h{f}}}}}{{n{{b{dAKb}}ALf}}}}{{{b{{h{f}}}}}{{b{AKb}}}}{{{b{d{h{f}}}}}{{b{dAKb}}}}{{{b{dc}}}{{Bf{Hd}}}{{A@d{}{{A@b{{b{f}}}}}}}}`{fAl}```````````````{{{b{ALh}}}{{b{AKb}}}}{{{ALl{}{{ALj{c}}}}{b{AKb}}}cALh}{{{ALl{}{{ALj{c}}}}{b{AKb}}}AjALh}00{{{b{dALh}}}ALn}{{{b{dAM`}}}ALn}{{{b{dALh}}}{{Bf{{Bb{AlAl}}}}}}{{{b{dAM`}}}{{Bf{{Bb{AlAl}}}}}}10{{{ALl{}{{ALj{c}}}}{b{AKb}}}{{Bf{{b{AKb}}}}}ALh}0```````````````````````{B@`On}0{{}On}```````````````````````{{}Aj}{AK`Aj}0``{AK`{{Db{AK`}}}}0`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{b{AHn}}}Al}{{{b{AHn}}Al}{{n{AHnBOh}}}}{AHnf}{{{b{AI`}}AHn}f}{{{b{BOj}}AHn}f}201{{{b{AIb}}AHn}{{n{{AId{{h{f}}}}AIf}}}}{{{b{BOl}}AHn}{{n{{AId{{h{f}}}}AIf}}}}{{{b{BOj}}AHn}{{n{{AId{{h{f}}}}AIf}}}}102{Al{{n{AHnBOh}}}}{b{{b{c}}}{}}0000{{{b{d}}}{{b{dc}}}{}}0000{{{b{AIb}}}{{b{AIb}}}}{{{b{BOl}}}BOl}{{{b{BOj}}}BOj}{{{b{AHn}}}AHn}{{{b{BOh}}}BOh}{{{b{AIf}}}AIf}{{b{b{dc}}}On{}}0000{bOn}0000{{{b{AHn}}}{{AId{f}}}}{{fAHn}On}{{{b{AI`}}fAHn}On}{{{b{BOj}}fAHn}On}{{{b{AIb}}{AId{f}}AHn}On}{{{b{BOl}}{AId{f}}AHn}On}{{{b{BOj}}{AId{f}}AHn}On}{{}BOl}{{}BOj}{{{b{AHn}}{b{AHn}}}Aj}{{{b{BOh}}{b{BOh}}}Aj}{{{b{AIf}}{b{AIf}}}Aj}{{{b{AHn}}AHn}{{n{{Bb{AHnAl}}BOh}}}}{{{b{AHn}}AHn}{{n{AHnBOh}}}}{{{b{BOl}}{b{dAb}}}{{n{OnADb}}}}{{{b{BOj}}{b{dAb}}}{{n{OnADb}}}}{{{b{AHn}}{b{dAb}}}{{n{OnADb}}}}{{{b{BOh}}{b{dAb}}}{{n{OnADb}}}}0{{{b{AIf}}{b{dAb}}}{{n{OnADb}}}}0{{{b{c}}}AHnA@f}{{}AHn}{cc{}}0000{{AlAl}{{n{AHnBOh}}}}{{AlAl}AHn}{{{b{BOl}}{AId{f}}AHnAHn}{{n{{AId{{h{f}}}}AIf}}}}{{{b{BOj}}{AId{f}}AHnAHn}{{n{{AId{{h{f}}}}AIf}}}}{{{b{AIb}}{AId{f}}AHnAHn}{{n{{AId{{h{f}}}}AIf}}}}210{AHnAIh}{{{b{AHn}}{b{dc}}}OnBBj}{{}c{}}00009{{{b{AHn}}}AHn}{{{b{AHn}}Al}Al}{{fAHnAl}f}{{{b{BOj}}fAHnAl}f}{{{b{AI`}}fAHnAl}f}{{{b{AHn}}Al}{{n{{Bb{AHnAl}}BOh}}}}{{{b{AHn}}Al}{{n{AHnBOh}}}}{{{BCf{AHn}{{A@h{On}}}}}On}=<;{{{b{AHn}}}Al}{{}{{BCf{AHn}{{A@h{On}}}}}}{bc{}}0000{bA`}0{c{{n{e}}}{}{}}0000{{}{{n{c}}}{}}0000{bAf}0000``{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{Af}}}Af}{{b{b{dc}}}On{}}{bOn}{{{b{Af}}{b{Af}}}ABh}{{{b{dAMj}}}{{Bf{{b{dc}}}}}AMj}00{{{b{dAMj}}}{{b{dc}}}AMj}00{{{b{AMj}}}{{Bf{{b{c}}}}}AMj}00{{{b{AMj}}}{{b{c}}}AMj}00{{{b{Af}}{b{Af}}}Aj}{{{b{AMj}}{b{dAb}}}{{n{OnADb}}}}00{{{b{Af}}{b{dAb}}}{{n{OnADb}}}}{cc{}}{{{b{Af}}{b{dc}}}OnBBj}{{}c{}}{{{b{AMj}}}Aj}00{{}Af}{{{b{Af}}{b{Af}}}{{Bf{ABh}}}}{bc{}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{{{b{AMj}}}Af}{bAf}{{}{{b{AKb}}}}{{{b{c}}}{{b{AKb}}}A@f}````````````````````````````````````````````````````````````````````````````{{}Hd}000````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{HdOn}000{{HdHdHdHd}F`}{{{b{dAMl}}{b{dAMl}}{b{dAMl}}{b{dAMl}}}On}````````````````````````{HdAMn}{{HdHd}AMn}{Hd{{Bb{HdHd}}}}```````````````````{HdHj}{{fHdHd{b{dHd}}}f}{{fHjHj{b{dHj}}}f}10{{HdHd}Hd}{{HjHj}Hj}10{{HdHdHd}Hd}{{HjHdHd}Hj}{HdHd}{HjHj}{{F`F`}f}{{FfFf}f}10101032323232323232323232{F`F`}{FfFf}9{{HjHd}Hj}{GnHd}76{fHd}{HdGn}9{Hdf}9{fOn}000{{GnGn}Gn}{{HdHd}Hd}{{HjHj}Hj}{{ff}f}32103210{GnGn}{HdHd}{HjHj}{ff}7654{{GnGnf}f}{{HdHdf}f}{{HjHjf}f}{{fff}f}{{GnGn}f}{{HdHd}f}{{HjHj}f};210;:987:9876543210;210;>=<;>=<;:98798{AN`AN`}000{ANbANb}{{AN`AN`}AN`}000{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}333320333333320320333{ANhANf}{ANjANf}{{AN`AN`}Hd}6653{{AN`AN`AN`}AN`}{{ANdANdANd}ANd}{{ANfANfANf}ANf}{AMlANf}0{ANlANd}{ANnAN`}00{{{b{ANl}}}ANd}{{{b{AMl}}}ANf}{{{b{Dn}}}ANd}{{{b{Dh}}}ANf}44{fAN`}{GnAN`}67686{AN`AN`}08{ANdANl}{ANdANb}{ANdANf}{ANdAN`}{AO`ANb}{ANbAO`}{ANbANd}{ANbANf}{ANbAN`}{AMlANf}{ANfAMl}{ANfANd}{ANfANb}{ANfAN`}{ANnAN`}{AN`ANd}{AN`ANb}{AN`ANf}{AN`ANn}{ANdANd}{ANfANf}{{AN`AN`}AN`}{{AN`AN`}Gn}{{AN`AN`}f}0{{AN`AN`}Hd}2110{{ANdANd}ANd}{{ANdANd}f}{{ANbANb}Gn}{{ANfANf}ANf}{{ANfANf}f}87868685766576657665878686857665766576657665766576657665{{ANbANb}ANb}{AN`AN`}0{ANbANb}{ANnAN`}0?{AN`ANb}{AN`ANn}20{ANnANd}{AN`AO`}{AN`ANf}333{AN`ANd}2{AN`AMl}777776743130777{{ANfANf}AOb}{AObANf}{ANbANf}10{ANfAOd}0{AOdANf}{ANdANn}{ANdAN`}10{ANdAO`}{ANdAMl}{ANbAN`}{AO`AN`}0100{AO`ANd}{ANnANf}{ANfAN`}{AMlAN`}10{AMlANd}{ANfANn}{ANdDn}{AN`ANn}00000{ANbANj}{AN`F`}{ANfDh}{ANdANn}{ANdAN`}10>==>==:9:9555555{AO`ANf}{ANfAO`}{{AN`AN`}AN`}{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}0{{ANfAObAOb}ANf}{{AN`AN`AN`}AN`}0000000000000000000;;{AN`Ff}<{ANdANl}{ANfAMl}{AN`ANn}12000{{ANbANbANb}ANb}8{{ANdANdAN`}ANd}{{ANfANfAN`}ANf}{ANdANd}{ANfANf}4{{ANdANdANd}ANd}5{{ANfANfANf}ANf}160160160>160160{ANdf}{ANbGn}{ANff}6{ANbANb}6706{{AN`AN`}AN`}0000{{ANdANd}ANd}{{ANfANf}ANf}222102{{F`AN`}AN`}{{FfANn}AN`}{{DnANn}ANd}{{DhAN`}ANf}{{fAN`AN`}On}{{fANnAN`}On}{{fANnANd}On}{{fAN`ANf}On}{{F`AN`}ANn}{{FfAN`}AN`}{{DnAN`}ANd}{{DhAN`}AMl}{{fAN`ANn}On}8{{fAN`ANd}On}{{fAN`AMl}On}{{AN`Ej}AN`}{{AN`F`}AN`}{{AN`Ff}AN`}{{AN`Fl}AN`}{{ANdANl}ANd}{{ANfAMl}ANf}{{AN`ANn}AN`}12000{AN`AN`}{F`AN`}{FfAN`}{DnANd}{ANjANb}{DhANf}5{{DhDh}ANf}{{DnDn}ANd}{{ANnANn}AN`}{EjAN`}87{FlAN`}765:::{{AN`AN`AN`}AN`}000{{AN`AN`}AN`}0{{AN`AN`GnAN`}AN`}{{AN`AN`fAN`}AN`}0{{AN`AN`HdAN`}AN`}{{ANdAN`fANd}ANd}{{ANfAN`fANf}ANf}{{ANbANbANbf}ANb}0{{ANdANdANdf}ANd}{{ANbANbANbGn}ANb}{{ANfANfANff}ANf}210210210210210{{AN`GnAN`}AN`}{{AN`fAN`}AN`}0{{AN`HdAN`}AN`}{{AN`GnAN`AN`}AN`}{{AN`fAN`AN`}AN`}0{{AN`HdAN`AN`}AN`}{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}53534434420442053{{HdAN`AN`}Hd}{{GnAN`AN`}AN`}{{fAN`AN`}AN`}0{{HdAN`AN`}AN`}{{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}{{ANffAMl}ANf}0{{ANdfANl}ANd}{{AN`fANn}AN`}00{{AN`HdANn}AN`}1123{{AN`GnANn}AN`}{{GnAN`AN`}Gn}{{fAN`AN`}f}0=100={{fANdANd}f}{{GnANbANb}Gn}{{fANfANf}f}433{{HdAN`AN`}Hd}54405440544054405440544054405440544054405440{{ANbfANbANb}ANb}{{AN`GnAN`}AN`}{{AN`fAN`}AN`}0{{AN`HdAN`}AN`}{{ANdfANd}ANd}{{ANffANf}ANf}{{fGnAN`}On}{{ffAN`}On}0{{fHdAN`}On}{{ffANd}On}{{ffANf}On}88{{ANbfANb}ANb}{{ANnfANf}ANn}{{AN`fANn}AN`}0{{ANnGnAN`}ANn}{{ANbGnAN`}ANb}{{FlGnAN`}On}{{ANnfAN`}ANn}40{{ANdfANn}ANd}{{AO`fAN`}AO`}{{ANffAN`}ANf}{{FlfAN`}On}0444{{ANdfAN`}ANd}3{{AMlfAN`}AMl}222{{AN`GnANn}AN`};;;;9;652510;;{{AObGnANfANf}AOb}{{AOdfANf}AOd}{{ANffAOd}ANf}{{ANnfANd}ANn}{{AN`fANd}AN`}10{{AO`fANd}AO`}{{AMlfANd}AMl}{{AN`GnANb}AN`}{{AN`fAO`}AN`}0100{{ANdfAO`}ANd}{{ANffANn}ANf}{{AN`fANf}AN`}{{AN`fAMl}AN`}10{{ANnfANf}ANn}{{ANnGnAN`}ANn}{{FlGnAN`}On}{{ANnfAN`}ANn}0{{FlfAN`}On}0111000>=>=:99:996565321100111000{{ANffAO`}ANf}{{AO`fANf}AO`}{{AN`GnAN`AN`}AN`}{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}{{ANffAObAOb}ANf}{{AN`fAN`AN`}AN`}000{{AN`GnAN`}AN`}{{AN`fAN`}AN`}0{{AN`HdAN`}AN`}{{ANdfANd}ANd}{{ANffANf}ANf}{{AN`GnEj}AN`}{{AN`fF`}AN`}{{AN`fFf}AN`}{{AN`HdFl}AN`}{{ANdfDn}ANd}{{ANffDh}ANf}{{AMlfANf}AMl}{{ANlfANd}ANl}{{ANnfAN`}ANn}0{{ANbfANbANb}ANb}0{{ANdfANdAN`}ANd}{{ANffANfAN`}ANf}2{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}2102102105210210{{fANd}f}{{GnANb}Gn}{{fANf}f}{{ANdfANd}ANd}{{ANbGnANb}ANb}{{ANffANf}ANf}210{{AN`HdAN`AN`}AN`}00{{AN`F`AN`AN`}AN`}{{AN`FfANnAN`}AN`}{{ANdDnANnANd}ANd}{{ANfDhAN`ANf}ANf}{{ffAN`AN`}On}{{ffANnAN`}On}{{ffANnANd}On}{{ffAN`ANf}On}{{ANnF`AN`ANn}ANn}{{AN`FfAN`AN`}AN`}{{ANdDnAN`ANd}ANd}{{AMlDhAN`AMl}AMl}{{ffAN`ANn}On}8{{ffAN`ANd}On}{{ffAN`AMl}On}{{ANffANfAMl}ANf}{{ANdfANdANl}ANd}{{AN`fAN`ANn}AN`}0{{AN`fF`}AN`}{{AN`fFf}AN`}{{ANdfDn}ANd}{{ANffDh}ANf}{{AN`GnEj}AN`}43{{AN`HdFl}AN`}32{{AN`fAN`}AN`}0{{AN`fAN`AN`}AN`}00{{AN`GnAN`AN`}AN`}011{{AN`HdAN`AN`}AN`}1220{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}45534553210{{AN`GnAN`}AN`}77{{AN`HdAN`}AN`}{{ANdfANd}ANd}{{ANffANf}ANf}10099{{ANbfANbANb}ANb}7659999::8::75898921{{ANdfANdAN`}ANd}{{ANffANfAN`}ANf};<<:{{ANdfAN`ANd}ANd}{{ANffAN`ANf}ANf}?6=>><108??7;965{{ANbGnANb}ANb}{{GnAN`}Ej}{{HdAN`}Fl}1010{{GnAN`}Gn}{{HdAN`}f}32103232;4:{{AN`fAN`}AN`}0{{AN`fAN`AN`}AN`}01100=6<=<6{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}{{AN`GnEj}AN`}{{AN`fF`}AN`}{{AN`fFf}AN`}{{AN`HdFl}AN`}{{AN`GnAN`AN`}AN`}880880880889{{AN`HdAN`AN`}AN`}689986{{AN`GnAN`}AN`}0{{AN`GnAN`ANn}AN`}{{AN`fAN`ANn}AN`}02==4<<{{ANdfANd}ANd}{{ANbGnANb}ANb}{{ANffANf}ANf}4335{{AN`fAN`}AN`}08{{AN`fAN`AN`}AN`}0655711900{{F`fAN`}On}{{FffAN`}On}{{DnfANd}On}{{DhfANf}On}{{EjGnAN`}On}43{{FlHdAN`}On}32?66>{{ANdfANdANd}ANd}{{ANbGnANbANb}ANb}{{ANffANfANf}ANf}{{AN`GnAN`AN`}AN`}{{AN`HdAN`AN`}AN`}10;;{{GnAN`AN`}Gn}{{fAN`AN`}f}0{{HdAN`AN`}Hd}21104>>3754>>375>>75{{F`AN`}AN`}{{FfAN`}AN`}{{DnAN`}ANd}{{DhAN`}ANf}{{F`AN`AN`}On}{{FfAN`AN`}On}{{DnAN`ANd}On}{{DhAN`ANf}On}{{GnAN`}AN`}{{fAN`}AN`}0{{HdAN`}AN`}{{GnAN`AN`}AN`}{{fAN`AN`}AN`}0{{HdAN`AN`}AN`}{{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}53534434420442053{{fAMl}ANf}0{{fANl}ANd}{{fANn}AN`}00{{HdANn}AN`}1123{{GnANn}AN`}{{fANbANb}ANb}>==<{{fANd}ANd}{{fANf}ANf}??{{fANb}ANb}{{fANf}ANn}77{{GnAN`}ANn}{{GnAN`}ANb}{{fAN`}ANn}:0{{fANn}ANd}{{fAN`}AO`}{{fAN`}ANf}333{{fAN`}ANd}2{{fAN`}AMl}=????6?43130=??{{GnANfANf}AOb}{{fANf}AOd}{{fAOd}ANf}{{fANd}ANn}{{fANd}AN`}10{{fANd}AO`}{{fANd}AMl}{{GnANb}AN`}{{fAO`}AN`}0100{{fAO`}ANd}{{fANn}ANf}{{fANf}AN`}{{fAMl}AN`}10{{fANf}ANn}{{GnAN`}ANn}{{fAN`}ANn}0000<;<;8778774343100000{{fAO`}ANf}{{fANf}AO`}{{GnAN`AN`}AN`}{{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}{{fANfAObAOb}ANf}{{fAN`AN`AN`}AN`}000{{GnAN`}AN`}{{fAN`}AN`}0{{HdAN`}AN`}{{fANd}ANd}{{fANf}ANf}{{GnEj}AN`}{{fF`}AN`}{{fFf}AN`}{{HdFl}AN`}{{fDn}ANd}{{fDh}ANf}{{fANf}AMl}{{fANd}ANl}{{fAN`}ANn}0{{fANbANbANb}ANb}{{fANbANb}ANb}{{fANdANdAN`}ANd}{{fANfANfAN`}ANf}3{{fANdANdANd}ANd}{{GnANbANbANb}ANb}{{fANfANfANf}ANf}2102102105210210{{fANd}ANd}{{GnANb}ANb}{{fANf}ANf}210{{HdAN`AN`}AN`}00{{fANfAMl}ANf}{{fANdANl}ANd}{{fAN`ANn}AN`}0{{fF`}AN`}{{fFf}AN`}{{fDn}ANd}{{fDh}ANf}{{GnEj}AN`}43{{HdFl}AN`}32{{fAN`}AN`}0{{fAN`AN`AN`}AN`}0{{fAN`AN`}AN`}{{GnAN`AN`}AN`}011=011={{fANdANd}ANd}{{GnANbANb}ANb}{{fANfANf}ANf}344{{HdAN`AN`}AN`}4550321{{GnAN`}AN`}88{{HdAN`}AN`}{{fANd}ANd}{{fANf}ANf}10099{{fANbANb}ANb}8769999::5::86595921{{fANdAN`}ANd}{{fANfAN`}ANf}{{GnAN`AN`AN`}AN`}>>{{HdAN`AN`AN`}AN`}{{fANdAN`ANd}ANd}{{fANfAN`ANf}ANf}{{fAN`}AN`}9{{GnAN`AN`}AN`}{{fAN`AN`}AN`}0>{{fAN`ANd}ANd}{{fAN`ANf}ANf}?44>{{fANdANd}ANd}{{fANfANf}ANf}?>{{GnANb}ANb}{{fANd}ANd}1{{fANf}ANf}997799771201024{{GnANbANb}ANb}4{{GnEj}AN`}{{fF`}AN`}{{fFf}AN`}{{HdFl}AN`}=<<{{GnAN`AN`AN`}AN`}{{fAN`AN`AN`}AN`}0?>>100{{fAN`}AN`}{{HdAN`AN`}AN`}<={{fAN`AN`}AN`}0>={{GnAN`}AN`}0{{GnAN`ANn}AN`}{{fAN`ANn}AN`}0255{{GnAN`AN`}AN`}44?{{GnANb}ANb}?3224771553224771551556{{fANdANd}ANd}?{{fANfANf}ANf}3838::3778103778107710{{AN`AN`}AN`}0000000{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}33333333210{{AN`fAN`f}AN`}{{AN`fANnf}AN`}{{ANdfANnf}ANd}{{ANffAN`f}ANf}{{ANnfAN`f}ANn}4{{ANdfAN`f}ANd}{{AMlfAN`f}AMl}{ANdANd}{ANfANf}0{AN`F`}{ANdF`}{ANfF`}{AN`Gn}{AN`f}0{AN`Hd}{GnAN`}{fAN`}0{HdAN`}{{AN`AN`}AN`}00{{ANbANb}ANb}{{ANdANd}ANd}1{{ANfANf}ANf}33333333310333331033{AN`AN`}??>4{{ANfAN`}ANf}{{ANdAN`}ANd}1{{AN`AN`AN`}AN`}000{{ANdAN`ANd}ANd}{{ANbAN`ANb}ANb}{{ANfAN`ANf}ANf}6{ANdANd};;;;{{AN`ANd}ANd}{{AN`ANb}ANb}{{AN`ANf}ANf}::::<;3{ANfANf}{ANbANb}1{AN`Ej}{AN`Fl}{ANbANj}2121{AN`Gn}{AN`f}24310243243:56{AN`AN`}0{{AN`AN`}AN`}01100<8<78<8780{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}{EjAN`}{F`AN`}{FfAN`}{FlAN`}{DnANd}{ANjANb}{DhANf}{{EjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEj}AN`}{{F`F`F`F`F`F`F`F`}AN`}{{FfFfFfFf}AN`}{{FlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFl}AN`}{{AMlAMl}ANf}{{ANlANl}ANd}{{ANnANn}AN`}{{DnDnDnDn}ANd}{{ANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANj}ANb}{{DhDhDhDhDhDhDhDh}ANf}9876543210{{}ANd}{{}ANb}{{}ANf}{{}AN`}{{AN`AN`}AN`}00{{AN`AN`AN`}AN`}00111000{AN`AN`}2{{ANfANf}ANf}{{ANdANd}ANd}440122444{{AN`ANn}AN`}003333555{ANdANd}{ANbANb}{ANfANf}3336668883336666888{{F`AN`}On}{{FfAN`}On}{{DnANd}On}{{ANjANb}On}{{DhANf}On}{{AN`AN`}On}{{DhDhANf}On}{{DnDnANd}On}{{ANnANnAN`}On}{{EjAN`}On}98{{FlAN`}On}8765{AN`AN`}976{{AN`AN`}AN`}000{{ANdANd}ANd}{{ANbANb}ANb}{{ANfANf}ANf}3333{{AN`AN`AN`}AN`}0{{AN`AN`}Gn}{{AN`AN`}f}0{{AN`AN`}Hd}{{ANdANd}F`}{{ANfANf}F`}{{AN`AN`}F`}5443210210{{}ANd}{{}ANb}{{}ANf}{{}AN`}>>>>=;>>>>=;>>=;>{{}On}0{ANlANd}{AO`ANb}{AMlANf}{ANnAN`}{AOfAOf}000{AOhAOh}{AOjAOj}{AOlAOl}{{AOfAOf}AOf}000{{AOhAOh}AOh}{{AOjAOj}AOj}{{AOlAOl}AOl}21033333333333332033320333{{AOfAOf}Hj}{AMlAOl}0{ANfAOl}{ANlAOh}{ANdAOh}{ANnAOf}0{AN`AOf}1011{fAOf}{GnAOf}3573{AOfAOf}065{AOhANl}{AOhANd}{AOhAOj}{AOhAOl}{AOhAOf}{AO`AOj}{ANbAOj}{AOjAO`}{AOjANb}{AOjAOh}{AOjAOl}{AOjAOf}{AMlAOl}{ANfAOl}{AOlAMl}{AOlANf}{AOlAOh}{AOlAOj}{AOlAOf}{ANnAOf}{AN`AOf}{AOfAOh}{AOfAOj}{AOfAOl}{AOfANn}{AOfAN`}{{AOfAOf}AOf}{{AOfAOf}Hd}{{AOfAOf}Gn}{{AOfAOf}f}{{AOfAOf}Hj}3210{{AOhAOh}f}{{AOjAOj}Hd}{{AOlAOl}Gn}2106543654320654365436543654365436543206543654320654365432020202020{{AOjAOj}AOj}0{AOfAOf}0{AOjAOj}>{AOfANb}>{AOfAOh}{AOfAO`}{AOfANf}{AOfAOj}4{AOfAOl}432{AOhAN`}{AOhAOf}10{AOhAO`}{AOhANf}{AOjAOf}{ANbAOf}{AO`AOf}210{AO`AOh}{AN`AOl}{AOlAOf}{ANfAOf}10{ANfAOh}{AOlAN`}{AN`AOf}{ANnAOf}{AOfAN`}{AOfAOj}13{AOfANn}{AN`AOh}{AOfANb}{AOfAOl}{AOfAOh}4640{AOfAO`}{AOfANf}:99:97:5432210:99{{AOlAOl}AOn}{AOlAOb}{AObAOl}{AOhAN`}{AOhAOf}10{AOhAO`}{AOhANf}{AOhAOl}{AOjAOf}{ANbAOf}{AO`AOf}210{AO`AOh}{AN`AOl}{AOlAOf}{ANfAOf}10{ANfAOh}{AOlAN`}{AOlAOh}{AOhDn}{AOfAN`}0{AOfANn}010{AOjANj}{AOfF`}{AOlDh}{AOhAN`}{AOhAOf}10{AOjAOf}{ANbAOf}{AO`AOf}210?>?>4343210210?>?>998898{ANbAOl}{AOlANb}10{{AOfAOf}AOf}{{AOhAOh}AOh}{{AOjAOj}AOj}{{AOlAOl}AOl}210{{AOlAOnAOn}AOl}{{AOfAOfAOf}AOf}000{AOlAMl}{AOlANf}{AOhANl}{AOhANd}{AOfANn}{AOfAN`}10{{AOjAOjAOj}AOj}0::{{AOhAOhAOf}AOh}{{AOlAOlAOf}AOl}102{{AOhAOhAOh}AOh}3{{AOlAOlAOl}AOl}4140140140140140140140>>140140140140{AOhf}{AOjHd}{AOlGn}{AOhAOh}{AOjAOj}{AOlAOl}210210210{{AOfAOf}AOf}00{{AOff}AOf}{{AN`f}AOf}{{AN`f}AOh}{{AOff}AOl}3{{AOff}AOh}{{fAOfAOf}On}{{fAOfAOh}On}1{{fAN`AOf}On}{{fAN`AOh}On}{{fAOfAOl}On}{{AOff}AN`}:6{{AOff}ANf}{{fAOfAN`}On}76{{fAOfANf}On}{{AOlAMl}AOl}{{AOlANf}AOl}{{AOhANl}AOh}{{AOhANd}AOh}{{AOfANn}AOf}{{AOfAN`}AOf}10{F`Gn}{{GnGn}Gn}0{GnGn}01{{GnGn}F`}02{{HjHj}Hj}{{HdHd}Hd}44{F`AOf}{FfAOf}{DnAOh}{ANjAOj}{DhAOl}4{EjAOf}54{FlAOf}4326{AOfAOf}0{{AOfAOfAOf}AOf}0{{AOfAOf}AOf}0{{AOfAOfHdAOf}AOf}{{AOfAOfGnAOf}AOf}{{AOfAOffAOf}AOf}{{AOfAOfHjAOf}AOf}{{AOhAOffAOh}AOh}{{AOlAOfGnAOl}AOl}{GnF`}{{AOjAOjAOjGn}AOj}00{{AOhAOhAOhf}AOh}{{AOjAOjAOjHd}AOj}{{AOlAOlAOlGn}AOl}3210210210210210210210210210210210{{AOfHdAOf}AOf}{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}{{AOfHdAOfAOf}AOf}{{AOfGnAOfAOf}AOf}{{AOffAOfAOf}AOf}{{AOfHjAOfAOf}AOf}{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}21063635435420542063{{HjAOfAOf}Hj}{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HjAOfAOf}AOf}{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}{{AOlGnAMl}AOl}0{{AOlGnANf}AOl}{{AOhfANl}AOh}{{AOhfANd}AOh}{{AOfGnANn}AOf}0{{AOfGnAN`}AOf}{{AOffANn}AOf}{{AOffAN`}AOf}{{AOfHjANn}AOf}4268{{AOfHdANn}AOf}{{HdAOfAOf}Hd}{{GnAOfAOf}Gn}{{fAOfAOf}f}{{HjAOfAOf}Hj}3210{{fAOhAOh}f}{{HdAOjAOj}Hd}{{GnAOlAOl}Gn}2106543654320654365436543654365436543206543654320654365432020202020{{AOjGnAOjAOj}AOj}0{{AOfHdAOf}AOf}{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}{{fHdAOf}On}{{fGnAOf}On}{{ffAOf}On}{{fHjAOf}On}{{ffAOh}On}{{fGnAOl}On}:9{{AOjGnAOj}AOj}{{AOjHdAOf}AOj}{{ANbGnAOf}ANb}{{AOlGnAOf}AOl}{{AOhfAOf}AOh}{{AO`fAOf}AO`}{{ANffAOf}ANf}543210{{AN`fAOh}AN`}{{AOffAOh}AOf}10{{AO`fAOh}AO`}{{ANffAOh}ANf}{{AOfHdAOj}AOf}{{AOfGnANb}AOf}{{AOffAO`}AOf}210{{AOhfAO`}AOh}{{AOlGnAN`}AOl}{{AOfGnAOl}AOf}{{AOffANf}AOf}10{{AOhfANf}AOh}{{AN`GnAOl}AN`}{{AOfGnAN`}AOf}{{AOffANn}AOf}{{AN`HdAOf}AN`}{{AOjHdAOf}AOj}{{FlHdAOf}On}{{AN`GnAOf}AN`}{{AOffAN`}AOf}{{ANnGnAOf}ANn}{{AOhfAN`}AOh}{{ANbGnAOf}ANb}{{AOlGnAOf}AOl}{{FlGnAOf}On}0{{AOhfAOf}AOh}{{ANnfAOf}ANn}{{AN`fAOf}AN`}12{{AO`fAOf}AO`}{{ANffAOf}ANf}{{FlfAOf}On}00{{AOfHdAN`}AOf}{{AOfGnANn}AOf}{{AOffANn}AOf}{{AOfGnAN`}AOf}1{{AOjHdAOf}AOj}{{AOffAN`}AOf}?>=;;87543{{AOnHdAOlAOl}AOn}{{AObGnAOl}AOb}{{AOlGnAOb}AOl}{{AN`fAOh}AN`}{{AOffAOh}AOf}10{{AO`fAOh}AO`}{{ANffAOh}ANf}{{AOlfAOh}AOl}{{AOfHdAOj}AOf}{{AOfGnANb}AOf}{{AOffAO`}AOf}210{{AOhfAO`}AOh}{{AOlGnAN`}AOl}{{AOfGnAOl}AOf}{{AOffANf}AOf}10{{AOhfANf}AOh}{{AN`GnAOl}AN`}{{AOhfAOl}AOh}{{AN`HdAOf}AN`}{{FlHdAOf}On}{{AN`GnAOf}AN`}{{ANnGnAOf}ANn}{{FlGnAOf}On}0{{ANnfAOf}ANn}{{AN`fAOf}AN`}1{{FlfAOf}On}00{{AN`fAOh}AN`}{{AOffAOh}AOf}10{{AOfHdAOj}AOf}{{AOfGnANb}AOf}{{AOffAO`}AOf}210{{AOfGnAOl}AOf}{{AOffANf}AOf}1065654324321010>=<;::989777{{AOlGnANb}AOl}{{ANbGnAOl}ANb}10{{AOfHdAOfAOf}AOf}{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}210{{AOlGnAOnAOn}AOl}{{AOfGnAOfAOf}AOf}000{{AOfHdAOf}AOf}{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}{{AOfHdEj}AOf}{{AOfGnF`}AOf}{{AOffFf}AOf}{{AOfHjFl}AOf}{{AOhfDn}AOh}{{AOlGnDh}AOl}{{AMlfAOl}AMl}{{ANffAOl}ANf}{{ANlfAOh}ANl}{{ANdfAOh}ANd}{{ANnfAOf}ANn}{{AN`fAOf}AN`}10{{AOjGnAOjAOj}AOj}000{{AOhfAOhAOf}AOh}{{AOlGnAOlAOf}AOl}102{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}521021021021021021021055210210210210{{fAOh}f}{{HdAOj}Hd}{{GnAOl}Gn}{{AOhfAOh}AOh}{{AOjHdAOj}AOj}{{AOlGnAOl}AOl}210210210{{AOfHjAOfAOf}AOf}00{{AOfGnAOff}AOf}{{AOffAN`f}AOf}{{AOhfAN`f}AOh}{{AOlGnAOff}AOl}{{AOffAOff}AOf}{{AOhfAOff}AOh}{{ffAOfAOf}On}{{ffAOfAOh}On}{{fGnAOfAOf}On}{{ffAN`AOf}On}{{ffAN`AOh}On}{{fGnAOfAOl}On}{{AN`fAOff}AN`}87{{ANffAOff}ANf}{{ffAOfAN`}On}87{{ffAOfANf}On}{{AOlGnAOlAMl}AOl}{{AOlGnAOlANf}AOl}{{AOhfAOhANl}AOh}{{AOhfAOhANd}AOh}{{AOfGnAOfANn}AOf}{{AOfGnAOfAN`}AOf}{{AOffAOfANn}AOf}{{AOffAOfAN`}AOf}{{AOfGnF`}AOf}{{AOffFf}AOf}{{AOhfDn}AOh}{{AOlGnDh}AOl}{{AOfHdEj}AOf}43{{AOfHjFl}AOf}32{{AOfGnAOf}AOf}{{AOffAOf}AOf}{{AOffAOfAOf}AOf}0{{AOfGnAOfAOf}AOf}{{AOfHdAOfAOf}AOf}012{{AOfHjAOfAOf}AOf}1230{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}21045634563210210{{AOfHdAOf}AOf}98{{AOfHjAOf}AOf}{{AOhfAOh}AOh}{{AOlGnAOl}AOl}100::{{AOjGnAOjAOj}AOj}76507659999:;;8:;75898921:{{AOhfAOhAOf}AOh}{{AOlGnAOlAOf}AOl};<=:{{AOhfAOfAOh}AOh}{{AOlGnAOfAOl}AOl}{{AOffAOf}AOf}7>?{{AOffAOfAOf}AOf}>32:{{AOfGnAOf}AOf}2:><><98{{AOjHdAOj}AOj}{{GnAOf}F`}{{fAOf}Ff}{{fAOh}Dn}{{GnAOl}Dh}3232{{GnAOf}Hd}{{fAOf}Hj}32541032543254{{AOhfAOh}AOh}7{{AOlGnAOl}AOl}1809;{{AOfGnAOfAOf}AOf};:<0;291291219{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}210{{AOfHdEj}AOf}{{AOfGnF`}AOf}{{AOffFf}AOf}{{AOfHjFl}AOf}{{AOfHdAOfAOf}AOf}8{{AOffAOfAOf}AOf}190190190{{AOfGnAOf}AOf}{{AOfHjAOfAOf}AOf}8:;2:8{{AOfHdAOf}AOf}0{{AOfHdAOfANn}AOf}{{AOfGnAOfANn}AOf}{{AOffAOfANn}AOf}35{{AOffAOf}AOf}8{{AOfGnAOfAOf}AOf}8{{AOhfAOh}AOh}{{AOjHdAOj}AOj}{{AOlGnAOl}AOl}2107658:4<3;7658:4<3;{{F`GnAOf}On}{{FffAOf}On}{{DnfAOh}On}{{DhGnAOl}On}{{EjHdAOf}On}43{{FlHjAOf}On}32{{AOfHdAOfAOf}AOf}:{{AOffAOfAOf}AOf}{{AOfHjAOfAOf}AOf}{{AOhfAOhAOh}AOh}{{AOjHdAOjAOj}AOj}{{AOlGnAOlAOl}AOl}2105353?4{{HdAOfAOf}Hd}{{GnAOfAOf}Gn}{{fAOfAOf}f}{{HjAOfAOf}Hj}32109{{AOfGnAOfAOf}AOf}9875:098750975{{HdAOf}AOf}{{GnAOf}AOf}{{fAOf}AOf}{{HjAOf}AOf}{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HjAOfAOf}AOf}{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}21063635435420542063{{GnAMl}AOl}0{{GnANf}AOl}{{fANl}AOh}{{fANd}AOh}{{GnANn}AOf}0{{GnAN`}AOf}{{fANn}AOf}{{fAN`}AOf}{{HjANn}AOf}4268{{HdANn}AOf}{{GnAOjAOj}AOj}0{{HdAOf}AOf}{{GnAOf}AOf}{{fAOf}AOf}{{HjAOf}AOf}{{fAOh}AOh}{{GnAOl}AOl}43{{GnAOj}AOj}{{HdAOf}AOj}{{GnAOf}ANb}{{GnAOf}AOl}{{fAOf}AOh}{{fAOf}AO`}{{fAOf}ANf}543210{{fAOh}AN`}{{fAOh}AOf}10{{fAOh}AO`}{{fAOh}ANf}{{HdAOj}AOf}{{GnANb}AOf}{{fAO`}AOf}210{{fAO`}AOh}{{GnAN`}AOl}{{GnAOl}AOf}{{fANf}AOf}10{{fANf}AOh}{{GnAOl}AN`}{{GnAN`}AOf}{{fANn}AOf}{{HdAOf}AN`}{{HdAOf}AOj}{{GnAOf}AN`}{{fAN`}AOf}{{GnAOf}ANn}{{fAN`}AOh}{{GnAOf}ANb}{{GnAOf}AOl}{{fAOf}ANn}{{fAOf}AN`}1{{fAOf}AOh}{{fAOf}AO`}{{fAOf}ANf}{{HdAN`}AOf}{{GnANn}AOf}?{{GnAN`}AOf}{{fANn}AOf}?=;:9654320{{HdAOlAOl}AOn}{{GnAOl}AOb}{{GnAOb}AOl}{{fAOh}AN`}{{fAOh}AOf}10{{fAOh}AO`}{{fAOh}ANf}{{HdAOj}AOf}{{GnANb}AOf}{{fAO`}AOf}210{{fAO`}AOh}{{GnAN`}AOl}{{GnAOl}AOf}{{fANf}AOf}10{{fANf}AOh}{{GnAOl}AN`}{{HdAOf}AN`}{{GnAOf}AN`}{{GnAOf}ANn}{{fAOf}ANn}{{fAOf}AN`}1{{fAOh}AN`}{{fAOh}AOf}10?>=?>=:9:91010?>=?>=:9:9654323{{GnANb}AOl}{{GnAOl}ANb}10{{HdAOfAOf}AOf}{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}210{{GnAOlAOnAOn}AOl}{{GnAOfAOfAOf}AOf}000{{HdAOf}AOf}{{GnAOf}AOf}{{fAOf}AOf}{{HjAOf}AOf}{{fAOh}AOh}{{GnAOl}AOl}{{HdEj}AOf}{{GnF`}AOf}{{fFf}AOf}{{HjFl}AOf}{{fDn}AOh}{{GnDh}AOl}{{fAOl}AMl}{{fAOl}ANf}{{fAOh}ANl}{{fAOh}ANd}{{fAOf}ANn}{{fAOf}AN`}10{{GnAOjAOjAOj}AOj}0{{GnAOjAOj}AOj}0{{fAOhAOhAOf}AOh}{{GnAOlAOlAOf}AOl}103{{fAOhAOhAOh}AOh}{{HdAOjAOjAOj}AOj}{{GnAOlAOlAOl}AOl}621021021021021021021055210210210210{{fAOh}AOh}{{HdAOj}AOj}{{GnAOl}AOl}210210210{{HjAOfAOf}AOf}00{{GnAOlAMl}AOl}{{GnAOlANf}AOl}{{fAOhANl}AOh}{{fAOhANd}AOh}{{GnAOfANn}AOf}{{GnAOfAN`}AOf}{{fAOfANn}AOf}{{fAOfAN`}AOf}{{GnF`}AOf}{{fFf}AOf}{{fDn}AOh}{{GnDh}AOl}{{HdEj}AOf}43{{HjFl}AOf}32{{GnAOf}AOf}{{fAOf}AOf}{{fAOfAOfAOf}AOf}0{{GnAOfAOf}AOf}{{HdAOfAOf}AOf}01{{fAOfAOf}AOf}{{HjAOfAOf}AOf}2310{{fAOhAOh}AOh}{{HdAOjAOj}AOj}{{GnAOlAOl}AOl}21056435643210210{{HdAOf}AOf}:9{{HjAOf}AOf}{{fAOh}AOh}{{GnAOl}AOl}10088{{GnAOjAOj}AOj}7650765::::;98;9758:8:21{{fAOhAOf}AOh}{{GnAOlAOf}AOl}{{HdAOfAOfAOf}AOf}{{GnAOfAOfAOf}AOf}{{fAOfAOfAOf}AOf}{{HjAOfAOfAOf}AOf}{{fAOhAOfAOh}AOh}{{GnAOlAOfAOl}AOl}{{fAOf}AOf};{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HjAOfAOf}AOf}{{fAOfAOh}AOh}{{GnAOfAOl}AOl}{{HdAOf}AOf}{{GnAOf}AOf}8{{HjAOf}AOf}{{fAOhAOh}AOh}{{GnAOlAOl}AOl}10{{fAOh}AOh}{{GnAOl}AOl}{{HdAOj}AOj}2012016><;6><;2012012104{{HdAOjAOj}AOj}4504{{HdEj}AOf}{{GnF`}AOf}{{fFf}AOf}{{HjFl}AOf}{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}{{HdAOfAOfAOf}AOf}{{GnAOfAOfAOf}AOf}{{fAOfAOfAOf}AOf}543210{{GnAOf}AOf}{{HjAOfAOf}AOf}{{GnAOlAOl}AOl}{{fAOhAOh}AOh}8701{{HdAOf}AOf}0{{HdAOfANn}AOf}{{GnAOfANn}AOf}{{fAOfANn}AOf}37{{fAOf}AOf}>=<{{fAOh}AOh}{{HdAOj}AOj}{{GnAOl}AOl}2106547;3{{HdAOfAOf}AOf}{{GnAOfAOf}AOf}{{fAOfAOf}AOf}987:>6210210=;{{HdAOjAOj}AOj}=<0=3>3>{{GnAOfAOfAOf}AOf}{{fAOfAOfAOf}AOf}543{{HjAOfAOf}AOf}?{{GnAOlAOl}AOl}7651{{fAOhAOh}AOh}17601{{AOfAOf}AOf}0000000{{AOhAOh}AOh}{{AOjAOj}AOj}{{AOlAOl}AOl}21033333333210210{AOhAOh}{AOlAOl}0{AOfHd}{AOfGn}{AOff}{AOfHj}{HdAOf}{GnAOf}{fAOf}{HjAOf}==;<;:;<;:==========<:=====98={{AOhAOf}AOh}{{AOlAOf}AOl}{{AOfAOfAOf}AOf}000{{AOhAOfAOh}AOh}{{AOjAOfAOj}AOj}{{AOlAOfAOl}AOl}{AOfAOf}{AOhAOh}{{AOfAOf}AOf}000{{AOfAOh}AOh}{{AOfAOj}AOj}{{AOfAOl}AOl}5555{{AOhAOh}AOh}{{AOlAOl}AOl}106{AOlAOl}{AOjAOj}{AOfF`}{AOfFf}{AOhDn}{AOjANj}{AOlDh}4343{AOfHd}{AOfHj}43265104326543265?78?78{AOfAOf}0??00??{AOhAOh}9:09:0:9{{AOfAOf}AOf}={{AOjAOj}AOj}=>0={EjAOf}{F`AOf}{FfAOf}{FlAOf}{DnAOh}{ANjAOj}{DhAOl}{{F`F`F`F`}AOf}{{FfFfFfFf}AOf}{{DnDnDnDn}AOh}{{DhDhDhDh}AOl}{{EjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEjEj}AOf}{{F`F`F`F`F`F`F`F`F`F`F`F`F`F`F`F`}AOf}{{FfFfFfFfFfFfFfFf}AOf}{{FlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFl}AOf}{{DnDnDnDnDnDnDnDn}AOh}{{ANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANjANj}AOj}{{DhDhDhDhDhDhDhDhDhDhDhDhDhDhDhDh}AOl}:98754210{{}AOl}{{}AOf}{{}AOh}{{}AOj}32{{AOfAOf}AOf}00{{AOfAOfAOf}AOf}00111000{AOfAOf}2{{AOlAOl}AOl}{{AOhAOh}AOh}440122{{AOfANn}AOf}00333555{AOhAOh}{AOjAOj}{AOlAOl}210333666888333666888{{F`AOf}On}{{FfAOf}On}{{DnAOh}On}{{ANjAOj}On}{{DhAOl}On}4{{EjAOf}On}54{{FlAOf}On}4326=426????;{{AOjAOj}AOj}=<0={{AOfAOf}AOf}000{{AOfAOfAOf}AOf}0{{AOfAOf}Hd}{{AOfAOf}Gn}{{AOfAOf}f}{{AOfAOf}Hj}3210{{}AOl}{{}AOf}{{}AOh}{{}AOj}39999{{AOhAOh}AOh}{{AOlAOl}AOl};;;;10;;10;{ANlAOh}{ANdAOh}{AO`AOj}{ANbAOj}{AMlAOl}{ANfAOl}{ANnAOf}{AN`AOf}{ANnANn}000{AO`AO`}{{ANnANn}ANn}000{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}21021033332033335533320320333{ANhAMl}{ANjAMl}{{ANnANn}Gn}6653{{ANnANnANn}ANn}{{ANlANlANl}ANl}{{AMlAMlAMl}AMl};{{{b{Dh}}}AMl}<<{fANn}{GnANn}>{ANlANl}{ANnAN`}{AMlAMl}{ANnANn}00{ANlAO`}{ANlAMl}{ANlANn}{AO`ANl}{AO`AMl}{AO`ANn}{AMlANl}{AMlAO`}{AMlANn}{ANnANl}{ANnAO`}{ANnAMl}?={{ANlANl}ANl}{{AMlAMl}AMl}{fOn}{{ANnANn}ANn}{{ANnANn}f}00{{ANnANn}Gn}11105{{ANlANl}f}{{AO`AO`}f}6{{AMlAMl}f}210821705454545344438787{{ANnF`ANnF`}F`}00{{ANnF`ANnF`}ANn}11166656665:9:9767676756665:9:9{{ANnANn}F`}00800077767776;:;:87877867776;:;:77767776;:;:;:;:;:;:;:;:;:;:;:;:;:;:{{AO`AO`}AO`}00{{ANlANl}F`}{{AO`AO`}F`}{{AMlAMl}F`}1210210210210210210{ANnANn}0{AO`AO`}{{HdGn}Hd}{{HdHd}Hd}{{HjHj}Hj}{{Hdf}Hd}{{AO`F`}AO`}{{AMlF`}AMl}{{ANlFf}ANl}{{AO`Ff}AO`}{{AMlFf}AMl}{ANlF`}{ANlFf}{{AO`ANl}AO`}21{{AMlANl}AMl}{ANlHd}{ANlHj}{AO`F`}{AO`Ff}{{ANlAO`}ANl}{{AMlAO`}AMl}{AO`Hd}{AO`Hj}?><{AMlF`}{AMlFf}{{ANlAMl}ANl}{{AO`AMl}AO`}32{AMlHd}{AMlHj}{{AO`Hd}AO`}{{AMlHd}AMl}{{ANlHj}ANl}{{AO`Hj}AO`}{{AMlHj}AMl}{{AMlF`}AMl};{ANnANn}00{ANnAO`}111{ANnANl}1{ANnAMl}333120333332312120333{{ANlF`}ANl}{{AO`F`}AO`}6{{ANlFf}ANl}{{AO`Ff}AO`}{{AMlFf}AMl}{{AMlAMl}AOd}{AOdAMl}{AO`AMl}10{AMlAOd}0{DhANh}3{ANlANn}000{ANlAO`}{ANlAMl}{AO`ANn}00000{AO`ANl}?{AMlANn}000{AMlANl}1{ANhDh}{ANlDn}{ANlF`}{ANlFf}{{AO`ANl}AO`}211{{AMlANl}AMl}{ANlHd}{ANlHj}{ANnANn}00000{AO`ANj}{AO`F`}{AO`Ff}{{ANlAO`}ANl}{{AMlAO`}AMl}{AO`Hd}{AO`Hj}{ANnEj}{ANnF`}{ANnFf}0{EjANn}{{ANlF`}ANl}{F`ANn}{{AMlF`}AMl}{{ANlFf}ANl}{FfANn}{{AMlFf}AMl}21{AMlDh}{AMlF`}{AMlFf}{{ANlAMl}ANl}{{AO`AMl}AO`}32{AMlHd}{AMlHj}{ANlF`}{ANlFf}10{ANlHd}{ANlHj}{AO`F`}{AO`Ff}{AO`Hd}{AO`Hj}=<=<98={ANlANn}000{AO`ANn}00000{AMlANn}000:9:99876543{AMlF`}{AMlFf}10>={{ANlHd}ANl}{{AO`Hd}AO`}{{AMlHd}AMl}{{ANlHj}ANl}{{AO`Hj}AO`}{{AMlHj}AMl}{ANnANn}00000{AO`AMl}{AMlAO`}{{ANnANn}ANn}{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}21021020{{AMlAOdAOd}AMl}{{ANnANnANn}ANn}0000000000000000000{ANnF`}0{ANnFf}1{AMlF`}8;{{AO`AO`AO`}AO`}00777{{ANlANlANn}ANl}{{AMlAMlANn}AMl}1010{ANlANl}{AMlAMl}<:4{{ANlANlANl}ANl}5{{AMlAMlAMl}AMl}61606160160160160160160===160160160160160160{ANlf}{AO`f}{AMlf}210{{}Hd}7{AO`AO`}7{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}210;3:210210{{ANnANn}ANn}000031000310{{F`ANn}ANn}{{FfANn}ANn}{{DnANn}ANl}{{DhANn}AMl}{{fANnANn}On}0{{fANnANl}On}{{fANnAMl}On}65432210{{ANnF`}ANn}0{{ANnFf}ANn}1:99{ANnANn}{{}On}{DnANl}{DhAMl}{F`ANn}{FfANn}33{ANjAO`}3340634{{ANlDn}ANl}7054{EjANn}43{FlANn}7369{fANn}00::{{ANnANnANn}ANn}000{{ANnANn}ANn}0{{ANnANnfANn}ANn}00{{ANnANnGnANn}ANn}{{ANlANnfANl}ANl}{{AMlANnfAMl}AMl}{{AO`AO`AO`f}AO`}000{{ANlANlANlf}ANl}1{{AMlAMlAMlf}AMl}21202120120120120120120120120120120120120{{ANnfANn}ANn}00{{ANnGnANn}ANn}{{ANnfANnANn}ANn}00{{ANnGnANnANn}ANn}{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}21021043434434420442043{{GnANnANn}Gn}{{fANnANn}ANn}00{{GnANnANn}ANn}{{fANlANl}ANl}{{fAO`AO`}AO`}{{fAMlAMl}AMl}<;<<{{AMlfAMl}AMl}={{fANnANn}f}0070007{{fANlANl}f}{{fAO`AO`}f}{{fAMlAMl}f}210210333:333:333:333:333:333:333:333:333:333:333:333:<<<{{ANnfANn}ANn}00{{ANnGnANn}ANn}{{ANlfANl}ANl}7{{ffANn}On}00{{fGnANn}On}{{ffANl}On}{{ffAMl}On}66{{AO`fAO`}AO`}{{ANnfAMl}ANn}{{AO`fAO`ANl}AO`}{{AMlfAMlANl}AMl}{{ANlfANlAO`}ANl}{{AMlfAMlAO`}AMl}{{ANlfANlAMl}ANl}{{AO`fAO`AMl}AO`}>>>{{AO`fANn}AO`}{{FlfANn}On}{{ANnfANn}ANn}00{{ANlfANn}ANl}3{{AMlfANn}AMl}33222140333222224214140222{{AOdfAMlAMl}AOd}{{AOdfAMl}AOd}{{AMlfAOd}AMl}{{ANnfANl}ANn}000{{AO`fANl}AO`}{{AMlfANl}AMl}{{ANnfAO`}ANn}00000{{ANlfAO`}ANl}8{{ANnfAMl}ANn}0000{{AO`fAO`ANl}AO`}{{AMlfAMlANl}AMl}=>==>>===>>>{{ANlfANlAO`}ANl}{{AMlfAMlAO`}AMl}{{ANlfANlAMl}ANl}{{AO`fAO`AMl}AO`};;;;8888886666{{ANnfANn}ANn}{{FlfANn}On}1100111000{{AMlfAO`}AMl}{{AO`fAMl}AO`}{{ANnfANnANn}ANn}{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}210210{{AMlfAOdAOd}AMl}4444888{{ANnGnANn}ANn}{{ANlfANl}ANl}{{AMlfAMl}AMl}{{ANnfEj}ANn}{{ANnfF`}ANn}{{ANnfFf}ANn}{{ANnGnFl}ANn}{{ANlfDn}ANl}{{AMlfDh}AMl};;;;;;{{ANlfANlANn}ANl}{{AMlfAMlANn}AMl}1010=>=<=>=<=>=<>=<>=<>=<>=<>=<===>=<>=<>=<>=<>=<>=<{{fANl}f}{{fAO`}f}{{fAMl}f}210<{{AO`fAO`}AO`}<{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}210{{ANlfANl}ANl}4{{AMlfAMl}AMl}432432{{ANnGnANnANn}ANn}00{{ANnF`ANnANn}ANn}{{ANnFfANnANn}ANn}{{ANlDnANnANl}ANl}{{AMlDhANnAMl}AMl}{{ffANnANn}On}0{{ffANnANl}On}{{ffANnAMl}On}65432210{{ANnfF`}ANn}{{ANnfFf}ANn}{{ANlfDn}ANl}{{AMlfDh}AMl}1{{AO`fANj}AO`}1{{ANnfEj}ANn}54{{ANnGnFl}ANn}43{{ANnfANn}ANn}0{{ANnfANnANn}ANn}000000{{ANnGnANnANn}ANn}1110{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}21021044434443210210210555{{ANnGnANn}ANn}{{ANlfANl}ANl}{{AMlfAMl}AMl}5431007745434543454377777767753676710{{ANlfANlANn}ANl}{{AMlfAMlANn}AMl}9998{{ANlfANnANl}ANl}{{AMlfANnAMl}AMl};:<<<69797975497{{AO`fAO`}AO`}9{{fANn}Ej}{{GnANn}Fl}1010{{fANn}Gn}{{GnANn}f}32103232:49>=<>=<{{ANnfANn}ANn}0{{ANnfANnANn}ANn}01100<6;{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}210?>2091210210210{{ANnfEj}ANn}{{ANnfF`}ANn}{{ANnfFf}ANn}{{ANnGnFl}ANn}7777777777778{{ANnGnANnANn}ANn}7599888999888{{ANlfANl}ANl}?{{AMlfAMl}AMl}987987:::;;;::::::;;;:::{{F`fANn}On}{{FffANn}On}{{DnfANl}On}{{DhfAMl}On}1{{ANjfAO`}On}1{{EjfANn}On}54{{FlGnANn}On}43{{ANnfANnANn}ANn}00:{{ANlfANlANl}ANl}{{AO`fAO`AO`}AO`}{{AMlfAMlAMl}AMl}2102103=3=33{{fANnANn}f}00{{GnANnANn}Gn}1110555?42555?425542{{F`ANn}ANn}{{FfANn}ANn}{{DnANn}ANl}{{DhANn}AMl}{{ANnANnFl}On}{{F`ANnANn}On}{{FfANnANn}On}{{DnANnANl}On}{{DhANnAMl}On}{{fANn}ANn}00{{GnANn}ANn}{{fANnANn}ANn}00{{GnANnANn}ANn}{{fANlANl}ANl}{{fAO`AO`}AO`}{{fAMlAMl}AMl}210210434344344204420436566{{fAMl}AMl}72227776{{fANl}ANl}188{{fAO`}AO`}{{fAMl}ANn}{{fAO`ANl}AO`}{{fAMlANl}AMl}{{fANlAO`}ANl}{{fAMlAO`}AMl}{{fANlAMl}ANl}{{fAO`AMl}AO`}{{fANn}ANn}00{{fANn}AO`}111{{fANn}ANl}1{{fANn}AMl}333120333332312120333{{fAMlAMl}AOd}{{fAMl}AOd}{{fAOd}AMl}{{fANl}ANn}000{{fANl}AO`}{{fANl}AMl}{{fAO`}ANn}00000{{fAO`}ANl}8{{fAMl}ANn}0000{{fAO`ANl}AO`}{{fAMlANl}AMl}>>>>>>{{fANlAO`}ANl}{{fAMlAO`}AMl}{{fANlAMl}ANl}{{fAO`AMl}AO`};;;;8888886666{{fANn}ANn}00000{{fAO`}AMl}{{fAMl}AO`}{{fANnANn}ANn}{{fANlANl}ANl}{{fAO`AO`}AO`}{{fAMlAMl}AMl}210210{{fAMlAOdAOd}AMl}{{fANnANnANn}ANn}000888{{GnANn}ANn}{{fANl}ANl}{{fAMl}AMl}{{fEj}ANn}{{fF`}ANn}{{fFf}ANn}{{GnFl}ANn}{{fDn}ANl}{{fDh}AMl}{{fAO`AO`AO`}AO`}00==={{fANlANlANn}ANl}{{fAMlAMlANn}AMl}10102{{fANlANlANl}ANl}3{{fAMlAMlAMl}AMl}41404140140140140140140{{fAO`AO`}AO`}00251251251251251251={{fAO`}AO`}={{fANlANl}ANl}2{{fAMlAMl}AMl}130{{fANl}ANl}3{{fAMl}AMl}352352{{GnANnANn}ANn}00{{fF`}ANn}{{fFf}ANn}?>?{{fANj}AO`}?{{fEj}ANn}32{{GnFl}ANn}{{fDn}ANl}{{fDh}AMl}{{fANn}ANn}0{{fANnANnANn}ANn}0{{fANnANn}ANn}0000:000:>{{fAO`AO`}AO`}>?0>?0>111;111;?0>?0>?0>333{{GnANn}ANn}>={{fANlANl}ANl}2{{fAMlAMl}AMl}{{fANl}ANl}{{fAMl}AMl}066535253525352666666{{GnANnANn}ANn}7743070721{{fANlANn}ANl}{{fAMlANn}AMl}:::{{GnANnANnANn}ANn}{{fANlANnANl}ANl}{{fAMlANnAMl}AMl}<5>>>:9898987698{{fAO`}AO`}<807:<9:<9??==??==807:<9:<987:90<:<9:<9:<9{{fEj}ANn}{{fF`}ANn}{{fFf}ANn}{{GnFl}ANn}{{fANnANn}ANn}00{{fANnANnANn}ANn}00111000{{fANn}ANn}={{fANlANl}ANl}{{fAMlAMl}AMl}22444222444{{fANl}ANl}:{{fAMl}AMl}3{{fAO`AO`}AO`}3403777555777777555777777{{GnANnANn}ANn}5145145148080778880548880548854{{ANnANn}ANn}0000000{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}210210{{}On}44444444321321321{ANnANn}{{ANnfANnf}ANn}0{{ANlfANnf}ANl}{{AMlfANnf}AMl}22103765{ANlANl}{AMlAMl}707{ANnF`}{ANlF`}{AMlF`}{ANnf}00{ANnGn}{fANn}00{GnANn}{{ANnANn}ANn}00{{AO`AO`}AO`}{{ANlANl}ANl}1{{AMlAMl}AMl}212021203333333331033333{{}On}=<{{ANlANn}ANl}{{AMlANn}AMl}{{ANnANnANn}ANn}000{{ANlANnANl}ANl}{{AO`ANnAO`}AO`}{{AMlANnAMl}AMl}::{{ANnAO`}AO`}{ANnANn}000{FlOn};:;:{ANlANl}{AMlAMl}=<{AO`AO`}1?1{ANnEj}{ANnFl}{AO`ANj}2121{ANnGn}{ANnf}24310243243756{{ANlANl}ANl}{{AO`AO`}AO`}{{AMlAMl}AMl}210<<{{ANnANn}ANn}0==00;:31;9:321321;:319:2:0321321321{EjANn}{F`ANn}{FfANn}{FlANn}{DnANl}{ANjAO`}{DhAMl}{{EjEjEjEjEjEjEjEj}ANn}{{F`F`F`F`}ANn}{{FfFf}ANn}{{FlFlFlFlFlFlFlFlFlFlFlFlFlFlFlFl}ANn}{{DnDn}ANl}7{{ANjANjANjANjANjANjANjANj}AO`}{{DhDhDhDh}AMl}7987{HdOn}764321{{}ANl}{{}AO`}{{}AMl}{{}ANn}{{}On}{{ANnANn}ANn}00000{{ANnANnANn}ANn}111000111000{ANnANn}2{{ANlANl}ANl}{{AMlAMl}AMl}224444442222444{ANlANl}{AO`AO`}{AMlAMl}4{{AO`AO`}AO`}45018886668888886666888{{DnANl}On}{{DhAMl}On}{{F`ANn}On}{{FfANn}On}33{{ANjAO`}On}3340{{ANnANn}On}450554{{EjANn}On}43{{FlANn}On}7362{{fANn}On}00?8783{{F`F`}On}{{FfFf}On}9{{ANnANn}ANn}000{{ANlANl}ANl}={{AMlAMl}AMl}1>01>02222{{ANnANnANn}ANn}0{ANnF`}{{ANnANn}F`}{{ANnANn}f}00{{ANnANn}Gn}2{{ANlANl}F`}{{AMlAMl}F`}43332104104{HdF`}{HjFf}3{{AO`AO`}F`}3403403403403403{{}ANl}{{}AO`}{{}AMl}{{}ANn}{{ANnANn}ANn}000{{ANlANl}ANl}{{AMlAMl}AMl}22221022102{{HdHd{b{dHd}}}Hd}{{HjHj{b{dHj}}}Hj}{{HdHd}Hd}{{HjHj}Hj}10{F`F`}{FfF`}{{{b{dGn}}}F`}{{{b{dHd}}}F`}{{{b{dHj}}}F`}210{{}Hj}{{GnGn}On}{{HdHd}On}{{HjHj}On}{{ff}On}{{fHdHd{b{dHd}}}f}{{fHjHj{b{dHj}}}f}{HdHd}{HjHj}{{}On}0000000{fOn}{{fAl}On}21002{GnGn}545435{{}Hd}4{HdHj}{{fHj}On}00000000000{{HdHj}On}{{}f}`{b{{b{c}}}{}}0000000000000000{{{b{d}}}{{b{dc}}}{}}0000000000000000{{{b{ANn}}}ANn}{{{b{AMl}}}AMl}{{{b{ANl}}}ANl}{{{b{AN`}}}AN`}{{{b{ANf}}}ANf}{{{b{ANd}}}ANd}{{{b{AOf}}}AOf}{{{b{AOl}}}AOl}{{{b{AOh}}}AOh}{{{b{AOd}}}AOd}{{{b{AOb}}}AOb}{{{b{AOn}}}AOn}{{{b{AO`}}}AO`}{{{b{ANb}}}ANb}{{{b{AOj}}}AOj}{{{b{ANh}}}ANh}{{{b{AMn}}}AMn}{{b{b{dc}}}On{}}0000000000000000{bOn}0000000000000000{{{b{AMn}}{b{AMn}}}ABh}{{GhGhGhB@`B@`}Gh}````{{{b{AMn}}{b{AMn}}}Aj}{{{b{ANn}}{b{dAb}}}{{n{OnADb}}}}{{{b{AMl}}{b{dAb}}}{{n{OnADb}}}}{{{b{ANl}}{b{dAb}}}{{n{OnADb}}}}{{{b{AN`}}{b{dAb}}}{{n{OnADb}}}}{{{b{ANf}}{b{dAb}}}{{n{OnADb}}}}{{{b{ANd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AOf}}{b{dAb}}}{{n{OnADb}}}}{{{b{AOl}}{b{dAb}}}{{n{OnADb}}}}{{{b{AOh}}{b{dAb}}}{{n{OnADb}}}}{{{b{AOd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AOb}}{b{dAb}}}{{n{OnADb}}}}{{{b{AOn}}{b{dAb}}}{{n{OnADb}}}}{{{b{AO`}}{b{dAb}}}{{n{OnADb}}}}{{{b{ANb}}{b{dAb}}}{{n{OnADb}}}}{{{b{AOj}}{b{dAb}}}{{n{OnADb}}}}{{{b{ANh}}{b{dAb}}}{{n{OnADb}}}}{{{b{AMn}}{b{dAb}}}{{n{OnADb}}}}{{{BLb{Al}}}ANn}{{{BLb{f}}}ANn}{{{BLb{Gb}}}ANn}{{{BLb{F`}}}ANn}{{{BLb{Hj}}}ANn}{{{BLb{Ff}}}ANn}{{{BLb{Hd}}}ANn}{cc{}}{{{BLb{Ej}}}ANn}{{{BLb{Gn}}}ANn}{{{BLb{Fl}}}ANn}{{{BLb{Dh}}}AMl}44{{{BLb{Dn}}}ANl}{{{BLb{Hj}}}AN`}{{{BLb{F`}}}AN`}7{{{BLb{Gb}}}AN`}{{{BLb{Hd}}}AN`}{{{BLb{Ff}}}AN`}{{{BLb{Ej}}}AN`}{{{BLb{Al}}}AN`}{{{BLb{Gn}}}AN`}{{{BLb{Fl}}}AN`}{{{BLb{f}}}AN`}{{{BLb{Dh}}}ANf}{cc{}}{{{BLb{Dn}}}ANd}1{{{BLb{f}}}AOf}{{{BLb{Al}}}AOf}{{{BLb{F`}}}AOf}{{{BLb{Hj}}}AOf}5{{{BLb{Gn}}}AOf}{{{BLb{Fl}}}AOf}{{{BLb{Ff}}}AOf}{{{BLb{Gb}}}AOf}{{{BLb{Hd}}}AOf}{{{BLb{Ej}}}AOf}{{{BLb{Dh}}}AOl}<{{{BLb{Dn}}}AOh}========={GnANh}{{}c{}}0000000000000000{{{b{AMn}}{b{AMn}}}{{Bf{ABh}}}}{ANhGn}{bc{}}0000000000000000{c{{n{e}}}{}{}}0000000000000000{{}{{n{c}}}{}}0000000000000000{bAf}0000000000000000``{{{b{d{AFd{c}}}}Al}{{n{On{A@`{Al}}}}}{}}0{{{b{d{AFd{c}}}}}{{b{d{h{c}}}}}{}}{{{b{{AFd{c}}}}}{{b{{h{c}}}}}{}}{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{{b{{AFd{c}}}}}{{AFd{c}}}AAn}{{{b{BOn}}}BOn}{{b{b{dc}}}On{}}0{bOn}0{{{AFd{c}}}Al{}}{{{b{BOn}}}{{b{AKb}}}}{{{b{d{AFd{c}}}}}On{}}{{}{{AFd{c}}}{}}{{{b{{AFd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{BOn}}{b{dAb}}}{{n{OnADb}}}}0{{{AFd{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{cc{}}0{C@`BOn}{e{{Db{c}}}{}{{A@j{Al}{{A@h{c}}}}}}{{{b{dc}}}{{b{d{Db{c}}}}}{}}{{{b{c}}}{{b{{Db{c}}}}}{}}{{}c{}}00{{{b{{AFd{c}}}}}Aj{}}{{{AFd{c}}}Bf{}}{{{b{{AFd{c}}}}}Al{}}{{{Db{c}}}{{AFd{c}}}{}}{{{Db{{C@b{c}}}}{AKf{Al}}}{{AFd{c}}}{}}{{{b{d{AFd{c}}}}}Bf{}}0{c{{Db{c}}}AAn}={{{b{{AFd{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{bc{}}0{bA`}{c{{n{e}}}{}{}}0{e{}AHd{{A@j{Al}{{A@h{c}}}}}}{{}{{n{c}}}{}}0{bAf}0````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{b{dB@b}}Al}{{n{On{A@`{Al}}}}}}0{{{b{C@d}}}{{b{AKb}}}}{{C@dAl}{{Bf{C@d}}}}{{C@dAl}C@d}{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{{b{C@d}}}C@d}{{{b{B@b}}}B@b}{{b{b{dc}}}On{}}0{bOn}0{{{b{C@d}}{b{C@d}}}ABh}{B@bAl}{{}C@d}{f{{Bf{C@d}}}}{fC@d}{{{b{C@d}}{b{C@d}}}Aj}{{{b{{C@f{}{{AB`{c}}}}}}{b{{C@f{}{{AB`{c}}}}}}}Aj{}}{fB@b}{{{b{C@d}}{b{dAb}}}{{n{OnADb}}}}0{{{b{B@b}}{b{dAb}}}{{n{OnADb}}}}0{{C@dAl}{{Bf{C@d}}}}{{C@dAl}C@d}{cc{}}098{{{b{C@d}}{b{dc}}}OnBBj}{{}c{}}00{{{b{{C@f{}{{AB`{c}}}}}}}Aj{}}{B@b{{Bf{f}}}}{{{b{B@b}}}Al}{{{b{d{C@f{}{{AB`{c}}}}}}}On{}}0{{{b{dB@b}}}{{Bf{f}}}}0{{{b{C@d}}{b{C@d}}}{{Bf{ABh}}}}{{{b{B@b}}}{{Bb{Al{Bf{Al}}}}}}{{{b{C@d}}{b{C@d}}}{{Bf{Al}}}}{{{b{{C@f{}{{AB`{c}}}}}}}c{}}0{C@dAK`}{bc{}}0{bA`}0{C@df}{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{bAf}0````````{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{{B@d{c}}}}}{{B@d{c}}}AAn}{{b{b{dc}}}On{}}{bOn}{{{b{{B@d{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{cc{}}{cB@dAAj}{{}c{}}{{{B@h{}{{A@b{c}}{B@f{e}}}}}e{}{{B@j{}{{A@b{c}}}}}}{{}}{{{AFj{{b{d{B@j{}{{A@b{c}}}}}}}}{b{dAFl}}}{{AFn{{Bf{c}}}}}{}}{{{AFj{{b{d{B@d{c}}}}}}{b{dAFl}}}{{AFn{Bf}}}A@d}{{{b{{B@j{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{B@d{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{bc{}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{bAf}``````{b{{b{c}}}{}}00{{{b{d}}}{{b{dc}}}{}}00{{}C@h}0{{{b{C@j}}{b{C@j}}}Aj}{{{b{C@h}}{b{dAb}}}{{n{OnADb}}}}0{{{b{C@l}}{b{dAb}}}{{n{OnADb}}}}{{{b{C@j}}{b{dAb}}}{{n{OnADb}}}}4{{{b{C@h}}}{{b{{h{C@l}}}}}}{cc{}}00{{}c{}}00{{{b{C@h}}}C@j}{bA`}>>>===<<<```````{{{C@n{AKb}}{C@n{AKb}}}}{{{C@n{AKb}}{b{AKb}}}}{{{b{d{C@n{AKb}}}}{b{AKb}}}On}{{{b{d{C@n{AKb}}}}{C@n{AKb}}}On}{{{b{{C@n{c}}}}}{{b{c}}}{ABbA@f}}{{{b{{C@n{CA`}}}}}{{b{CAb}}}}{{{b{ABd}}}{{b{c}}}A@f}{b{{b{c}}}{}}3{{{b{dAIj}}}{{b{dc}}}A@f}{{{b{d}}}{{b{dc}}}{}}{{{b{{C@n{c}}}}}{{C@n{c}}}{ABbA@f}}{{{b{d{C@n{c}}}}{b{{C@n{c}}}}}On{ABbA@f}}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{b{b{dc}}}On{}}{bOn}{{{b{{C@n{c}}}}{b{{C@n{c}}}}}ABh{AAlABbA@f}}{{}{{C@n{c}}}{ABbA@f}}<{{{b{{C@n{CAb}}}}{b{CAd}}}Aj}{{{b{{C@n{CA`}}}}{b{{b{CAb}}}}}Aj}{{{b{{C@n{{h{e}}}}}}{b{{j{cg}}}}}Aj{}{{ACf{c}}AAn}AIb}{{{b{{C@n{{h{e}}}}}}{b{{b{{h{c}}}}}}}Aj{}{{ACf{c}}AAn}}{{{b{{C@n{CA`}}}}{b{CAd}}}Aj}{{{b{{C@n{CA`}}}}{b{CA`}}}Aj}{{{b{{C@n{CAb}}}}{b{{b{CAb}}}}}Aj}{{{b{{C@n{CAb}}}}{b{{b{CA`}}}}}Aj}{{{b{{C@n{AKb}}}}{b{A`}}}Aj}{{{b{{C@n{CA`}}}}{b{{b{CA`}}}}}Aj}{{{b{{C@n{CAb}}}}{b{CAb}}}Aj}{{{b{{C@n{AKb}}}}{b{{b{AKb}}}}}Aj}{{{b{{C@n{AKb}}}}{b{AKb}}}Aj}{{{b{{C@n{CAb}}}}{b{CA`}}}Aj}{{{b{{C@n{CA`}}}}{b{CAb}}}Aj}{{{b{{C@n{CAb}}}}{b{CAf}}}Aj}{{{b{{C@n{CA`}}}}{b{CAf}}}Aj}{{{b{{C@n{e}}}}{b{{C@n{c}}}}}Aj{ABbA@f}{{ACf{c}}ABbA@f}}{{{b{{C@n{{h{e}}}}}}{b{{b{d{h{c}}}}}}}Aj{}{{ACf{c}}AAn}}{{{b{{C@n{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`ABbA@f}}{{{b{{C@n{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdABbA@f}}{CAh{{C@n{CAj}}}}{{{b{CAj}}}{{C@n{CAj}}}}{CAd{{C@n{CAb}}}}{{{b{CAd}}}{{C@n{CAb}}}}{{{b{{j{c}}}}}{{C@n{{h{c}}}}}AAn}{{{j{c}}}{{C@n{{h{c}}}}}AAn}{{{b{{Db{c}}}}}{{C@n{{h{c}}}}}AAn}{A`{{C@n{AKb}}}}{{{b{A`}}}{{C@n{AKb}}}}{{{b{CA`}}}{{C@n{CA`}}}}{{{b{CAf}}}{{C@n{CA`}}}}{{{b{CAb}}}{{C@n{CAb}}}}{{{b{{h{c}}}}}{{C@n{{h{c}}}}}AAn}{{{b{AKb}}}{{C@n{AKb}}}}{CAf{{C@n{CA`}}}}{{{b{CAh}}}{{C@n{CAj}}}}{cc{}}{c{{C@n{AKb}}}{{AAj{}{{A@b{{b{AKb}}}}}}}}{c{{C@n{AKb}}}{{AAj{}{{A@b{AK`}}}}}}{e{{C@n{{h{c}}}}}AAn{{AAj{}{{A@b{c}}}}}}{c{{C@n{AKb}}}{{AAj{}{{A@b{A`}}}}}}{{{b{{C@n{c}}}}{b{de}}}On{BBlABbA@f}BBj}{{}c{}}{{{C@n{c}}}{}{ABbA@f}}{{{b{{C@n{c}}}}}Aj{ABbA@f}}0{{{b{{C@n{AKb}}}}{b{A`}}}Aj}{{{b{{C@n{AKb}}}}{b{{b{AKb}}}}}Aj}{{{b{{C@n{{h{e}}}}}}{b{{b{d{h{c}}}}}}}Aj{}{{ACf{c}}AAn}}{{{b{{C@n{{h{e}}}}}}{b{{b{{h{c}}}}}}}Aj{}{{ACf{c}}AAn}}{{{b{{C@n{{h{e}}}}}}{b{{j{cg}}}}}Aj{}{{ACf{c}}AAn}AIb}{{{b{{C@n{AKb}}}}{b{AKb}}}Aj}{{{b{{C@n{CA`}}}}{b{CA`}}}{{Bf{ABh}}}}{{{b{{C@n{CA`}}}}{b{CAb}}}{{Bf{ABh}}}}{{{b{{C@n{CAb}}}}{b{{b{CAb}}}}}{{Bf{ABh}}}}{{{b{{C@n{CAb}}}}{b{CA`}}}{{Bf{ABh}}}}{{{b{{C@n{CAb}}}}{b{CAf}}}{{Bf{ABh}}}}{{{b{{C@n{CA`}}}}{b{{b{CAb}}}}}{{Bf{ABh}}}}{{{b{{C@n{CAb}}}}{b{CAb}}}{{Bf{ABh}}}}{{{b{{C@n{CA`}}}}{b{CAf}}}{{Bf{ABh}}}}{{{b{{C@n{CA`}}}}{b{{b{CA`}}}}}{{Bf{ABh}}}}{{{b{{C@n{c}}}}{b{{C@n{c}}}}}{{Bf{ABh}}}{ADjABbA@f}}{{{b{{C@n{CAb}}}}{b{CAd}}}{{Bf{ABh}}}}{{{b{{C@n{CAb}}}}{b{{b{CA`}}}}}{{Bf{ABh}}}}{{{b{{C@n{CA`}}}}{b{CAd}}}{{Bf{ABh}}}}{{{b{d{C@n{c}}}}}{{b{d}}}{ABbA@f}}{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}{bc{}}{bA`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{bAf}``{{{b{{AL`{ce}}}}}{{b{e}}}A@fAIb}{{{b{{AL`{c}}}}}CAl{CAnA@f}}{{{b{d{AL`{ce}}}}}{{b{dc}}}A@fAIb}{{{b{d{AL`{ce}}}}}{}A@fAIb}{{{b{{AL`{ce}}}}}{}A@fAIb}{{{b{{AL`{c}}}}}F`CB`}{{{b{{AL`{ce}}}}}{{b{c}}}A@fAIb}{{{AL`{{h{{C@b{c}}}}e}}}{{AL`{{h{c}}e}}}{}AIb}{{{AL`{{C@b{c}}e}}}{{AL`{ce}}}{}AIb}{{{b{{AL`{eg}}}}c}{}AAd{{BFf{c}}A@f}AIb}{{{b{d{AL`{eg}}}}c}{}AAd{{BFj{c}}A@f}AIb}{{{AL`{eg}}c}{}AAd{{BFn{c}}A@f}AIb}{b{{b{c}}}{}}60{{{b{d}}}{{b{dc}}}{}}0;{{{b{{AL`{eg}}}}c}{}AAd{{AAb{c}}A@f}AIb}{{{b{d{AL`{eg}}}}c}{}AAd{{A@j{c}}A@f}AIb}{{{AL`{eg}}c}{}AAd{{AAf{c}}A@f}AIb}{{{b{{AL`{c}}}}}{{Bf{{b{BA`}}}}}BA`}{{{b{{AL`{ce}}}}}{{AL`{ce}}}AAn{AIbAAn}}{{{b{{AL`{CAb}}}}}{{AL`{CAb}}}}{{{b{{AL`{AKb}}}}}{{AL`{AKb}}}}{{{b{{AL`{CAj}}}}}{{AL`{CAj}}}}{{{b{{AL`{CA`}}}}}{{AL`{CA`}}}}{{{b{{AL`{{h{c}}e}}}}}{{AL`{{h{c}}e}}}AAn{AIbAAn}}{{{b{d{AL`{{h{c}}e}}}}{b{{AL`{{h{c}}e}}}}}OnAAn{AIbAAn}}{{{b{d{AL`{ce}}}}{b{{AL`{ce}}}}}OnAAn{AIbAAn}}{{b{b{dc}}}On{}}{bOn}{{{b{{AL`{ce}}}}{b{{AL`{ce}}}}}ABh{AAlA@f}AIb}{{{b{d{AL`{c}}}}Al}On{CBbA@f}}{{}{{AL`{{h{c}}}}}{}}{{}{{AL`{CAj}}}}{{}{{AL`{CA`}}}}{{}{{AL`{AKb}}}}{{}{{AL`{c}}}AFf}{{{b{{CBd{c}}}}}{{b{c}}}A@f}{{{b{{AL`{ce}}}}}{{b{c}}}A@fAIb}{{{b{d{CBd{c}}}}}{{b{dc}}}A@f}{{{b{d{AL`{ce}}}}}{{b{dc}}}A@fAIb}{{{b{{AL`{c}}}}}{{b{AKb}}}BA`}{{{AL`{AMjc}}}{{n{{AL`{ec}}{AL`{AMjc}}}}}AIbAMj}00{{{AL`{AMjc}}}{{AL`{ec}}}AIbAMj}00{{{b{d{CBd{c}}}}}OnA@f}{{{b{d{AL`{ce}}}}}OnA@fAIb}{{{b{{AL`{ce}}}}{b{{AL`{ce}}}}}Aj{ACfA@f}AIb}{{{b{d{AL`{c}}}}}{{n{{b{{h{f}}}}CBf}}}{CBbA@f}}{{{b{{AL`{ce}}}}}Hj{BBjA@f}AIb}{{{b{d{AL`{c}}}}}{{n{OnCBf}}}{CBhA@f}}{{{b{{CBd{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{CBd{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{AL`{ce}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}AIb}{{{b{{AL`{ce}}}}{b{dAb}}}{{n{OnADb}}}A@fAIb}{{{b{{AL`{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}AIb}{cc{}}{{{b{AKb}}}{{AL`{BA`}}}}{CAh{{AL`{CAj}}}}{{{C@n{CA`}}}{{AL`{CA`}}}}{CAf{{AL`{CA`}}}}{{{b{CAb}}}{{AL`{CAb}}}}{c{{AL`{c}}}{}}{{{b{{h{c}}}}}{{AL`{{h{c}}}}}AAn}{AIhc{}}{{{C@n{{h{c}}}}}{{AL`{{h{c}}}}}AAn}9{{{C@n{CAb}}}{{AL`{CAb}}}}{CAd{{AL`{CAb}}}}{{{b{AKb}}}{{AL`{AKb}}}}{{{j{ce}}}{{AL`{{h{c}}e}}}{}AIb}{{{C@n{AKb}}}{{AL`{AKb}}}}{{{AL`{AKbc}}}{{AL`{{h{f}}c}}}AIb}{A`{{AL`{AKb}}}}{{{Db{c}}}{{AL`{{h{c}}}}}{}}{c{{AL`{BA`}}}BA`}{c{{AL`{BA`}}}{BA`BLnBM`}}{A`{{AL`{BA`}}}}0{{{b{AKb}}}{{AL`{BA`}}}}{{{C@n{AKb}}}{{AL`{BA`}}}}0{{{b{CAj}}}{{AL`{CAj}}}}{{{C@n{CAj}}}{{AL`{CAj}}}}{{{b{CA`}}}{{AL`{CA`}}}}{e{{AL`{{h{c}}}}}{}{{AAj{}{{A@b{c}}}}}}{c{{AL`{AKb}}}{{AAj{}{{A@b{AK`}}}}}}{c{{AL`{AKb}}}{{AAj{}{{A@b{{b{AK`}}}}}}}}{c{{AL`{AKb}}}{{AAj{}{{A@b{{b{AKb}}}}}}}}{c{{AL`{AKb}}}{{AAj{}{{A@b{A`}}}}}}{e{{AL`{AKb}}}AIb{{AAj{}{{A@b{{AL`{AKbc}}}}}}}}{c{{AL`{AKb}}}{{AAj{}{{A@b{{C@n{AKb}}}}}}}}{{}{{AL`{c}}}A@f}{c{{AL`{ec}}}AIbA@f}{{{b{{AL`{ce}}}}{b{{AL`{ce}}}}}Aj{ADjA@f}AIb}0{{{b{{AL`{ce}}}}{b{dg}}}On{BBlA@f}AIbBBj}{{}c{}}0{{}}{{{AL`{ce}}}{{AL`{{h{c}}e}}}{}AIb}1{{{AL`{ce}}}c{}AIb}{{{b{{AL`{{h{c}}e}}}}}{{CBj{c}}}{}AIb}{{{b{d{AL`{{h{c}}e}}}}}{{CBl{c}}}{}AIb}{{{AL`{{h{c}}e}}}{{CBn{ce}}}{}AIb}6{{{AL`{ce}}}{{AFj{{AL`{ce}}}}}A@fAIb}{{{AL`{ce}}}{}A@fAIb}{{{AL`{ce}}}{{Bb{e}}}A@fAIb}{{{b{AKb}}}{{CC`{c}}}{}}{{{b{AKb}}}Aj}{{{b{{AL`{ce}}}}}Aj{AElA@f}AIb}1{{{b{{AL`{c}}}}}Aj{CCbA@f}}2{{{b{{AL`{c}}}}}Aj{CBhA@f}}{{{AL`{ce}}}Bf{A@dA@f}AIb}{{{b{{AL`{ce}}}}{b{{AL`{ce}}}}}Aj{ADjA@f}AIb}{{{AL`{ce}}}{{b{dc}}}A@fAIb}{{{b{{AL`{ce}}}}}Al{AElA@f}AIb}2{{{b{{AL`{ce}}}}{b{{AL`{ce}}}}}Aj{ACfA@f}AIb}{c{{CBd{c}}}{}}{c{{AL`{c}}}{}}{{ce}{{AL`{ce}}}{}{AIbAIb}}{{}{{AL`{{C@b{c}}}}}{}}{c{{AL`{{C@b{e}}c}}}{AIbAIb}{}}{Al{{AL`{{h{{C@b{c}}}}}}}{}}{{Alc}{{AL`{{h{{C@b{e}}}}c}}}AIb{}}{e{{CBd{c}}}A@f{{CCd{c}}}}4321{{{b{d{AL`{ce}}}}}Bf{A@dA@f}AIb}{{{b{d{AL`{ce}}}}}Bf{OlA@f}AIb}{{{b{d{AL`{ce}}}}Al}Bf{A@dA@f}AIb}{{{b{d{AL`{ce}}}}Al}Bf{OlA@f}AIb}{{{b{{AL`{ce}}}}{b{{AL`{ce}}}}}{{Bf{ABh}}}{ADjA@f}AIb}{c{{AFj{{AL`{c}}}}}{}}{{ce}{{AFj{{AL`{ce}}}}}{}{AIbAIb}}{{{AFj{{b{d{AL`{ce}}}}}}{b{dAFl}}}AFn{AEhBDlA@f}AIb}{{{AFj{{b{d{AL`{c}}}}}}{b{dAFl}}}{{AFn{Bf}}}{B@jBDlA@f}}{{{b{{AL`{c}}}}{b{dBAd}}}OnBA`}{{{b{d{AL`{c}}}}{b{d{h{f}}}}}{{n{AlCBf}}}{CCbA@f}}{{{b{d{AL`{c}}}}CCf}{{n{OnCBf}}}{CCbA@f}}0{{{b{d{AL`{c}}}}{b{d{h{f}}}}}{{n{OnCBf}}}{CCbA@f}}{{{b{d{AL`{c}}}}{b{dA`}}}{{n{AlCBf}}}{CBbA@f}}{{{b{d{AL`{c}}}}{b{d{j{f}}}}}{{n{AlCBf}}}{CCbA@f}}{{{b{d{AL`{c}}}}{b{dA`}}}{{n{AlCBf}}}{CCbA@f}}{{{b{d{AL`{c}}}}f{b{d{j{f}}}}}{{n{AlCBf}}}{CBbA@f}}{{{b{d{AL`{c}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}{CCbA@f}}{{{AFj{{b{d{AL`{eg}}}}}}c}BJ`{}{{BDj{c}}BDlA@f}AIb}{{{b{d{AL`{c}}}}CCj}{{n{HjCBf}}}{CClA@f}}{{{b{{AL`{c}}}}}{{Bb{Al{Bf{Al}}}}}{B@jBDlA@f}}{{{b{{AL`{ce}}}}}{{Bb{Al{Bf{Al}}}}}{A@dA@f}AIb}{{{b{{CBd{c}}}}}{{Bf{{b{BA`}}}}}{BA`A@f}}{{{b{{AL`{c}}}}}{{Bf{{b{BA`}}}}}BA`}{{{b{d{AL`{c}}}}}{{n{HjCBf}}}{CClA@f}}{{{b{AKb}}}{{Bf{{b{AKb}}}}}}0{bc{}}{bA`}0{c{{n{e}}}{}{}}0{{{j{c}}}{{n{{AL`{{Db{c}}}}}}}{}}{{{AL`{{h{c}}}}}{{n{{AL`{{Db{c}}}}}}}{}}{{}{{n{c}}}{}}0{c{{n{{CBd{c}}AIf}}}{}}{c{{n{{AL`{c}}AIf}}}{}}{{ce}{{n{{AL`{ce}}AIf}}}{}{AIbAIb}}{{}{{n{{AL`{{C@b{c}}}}AIf}}}{}}{c{{n{{AL`{{C@b{e}}c}}AIf}}}{AIbAIb}{}}{Al{{n{{AL`{{h{{C@b{c}}}}}}AIf}}}{}}{{Alc}{{n{{AL`{{h{{C@b{e}}}}c}}AIf}}}AIb{}}3210{bAf}0{{{b{d{AL`{ce}}}}{b{{h{f}}}}}On{BBjA@f}AIb}{{{AL`{{C@b{c}}e}}c}{{AL`{ce}}}{}AIb}{{{b{d{AL`{c}}}}{b{{h{f}}}}}{{n{AlCBf}}}{CBhA@f}}{{{b{d{AL`{c}}}}{b{{h{f}}}}}{{n{OnCBf}}}{CBhA@f}}{{{b{d{AL`{c}}}}AJj}{{n{OnCBf}}}{CBhA@f}}{{{b{d{AL`{ce}}}}Ed}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Ej}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}F`}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Ff}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Fl}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Gb}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Al}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}{b{AKb}}}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Gh}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Gn}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Hd}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}Hj}On{BBjA@f}AIb}{{{b{d{AL`{ce}}}}f}On{BBjA@f}AIb}6{{{b{d{AL`{c}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}{CBhA@f}}``````````{{{b{{CD`{{Db{c}}}}}}}{{b{{Db{{CD`{c}}}}}}}{}}{{{b{{CD`{c}}}}}{}A@f}{{{b{{CDb{c}}}}}{}A@f}{{{b{{CD`{{h{c}}}}}}}{{b{{h{{CD`{c}}}}}}}{}}{b{{b{c}}}{}}000{{{b{{CDb{c}}}}}{{CDd{c}}}A@f}111111{{{b{d}}}{{b{dc}}}{}}000{{{b{{CDb{c}}}}}{{CDf{c}}}A@f}111111{{{b{{CDh{c}}}}}{{CDh{c}}}AAn}{{{b{{CD`{c}}}}}{{CD`{c}}}BBn}{{{b{{CDb{c}}}}}{{CDb{c}}}AAn}{{{b{{CDd{c}}}}}{{CDd{c}}}A@f}{{{b{d{CDb{c}}}}{b{{CDb{c}}}}}OnAAn}{{b{b{dc}}}On{}}00{bOn}00{{{b{{CD`{c}}}}{b{{CD`{c}}}}}ABh{AAlBBn}}{{{b{{CDb{c}}}}{b{{CDb{c}}}}}ABh{AAlA@f}}{{}{{CDj{c}}}AFf}{{}{{CDh{c}}}{}}{{}{{CD`{c}}}AFf}{{}{{CDb{c}}}AFf}{{}{{CDl{c}}}AFf}{{}{{CDn{c}}}AFf}{{{b{{CDj{ce}}}}}{{b{c}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{{CDd{c}}}}}{{b{c}}}A@f}{{{b{{CDf{c}}}}}{{b{c}}}A@f}{{{b{d{CDf{c}}}}}{{b{dc}}}A@f}{{{b{CE`}}}{{b{AKb}}}}{{{b{CEb}}}{{b{AKb}}}}{{{b{{CDh{c}}}}{b{{CDh{c}}}}}AjACf}{{{b{{CD`{c}}}}{b{{CD`{c}}}}}Aj{ACfBBn}}{{{b{{CDb{c}}}}{b{{CDb{c}}}}}Aj{ACfA@f}}{{{CDd{c}}g}{{n{{CDd{e}}{CDd{c}}}}}A@fA@f{{AAf{{b{c}}}{{A@h{{Bf{{b{e}}}}}}}}}}{{{CDf{c}}g}{{n{{CDf{e}}{CDf{c}}}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{Bf{{b{de}}}}}}}}}}{{{b{{CDj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{CDh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CD`{c}}}}{b{dAb}}}{{n{OnADb}}}{BBnAD`}}{{{b{{CDb{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{CE`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CEb}}{b{dAb}}}{{n{OnADb}}}}0{{{b{{CDd{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{CDd{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{CDf{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{CDf{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{CDl{c}}}}{b{dAb}}}{{n{OnADb}}}A@f}{{{b{{CDn{c}}}}{b{dAb}}}{{n{OnADb}}}A@f}{{{b{{CDj{ce}}}}}{{b{c}}}{}{{AAf{}{{A@h{c}}}}}}{cc{}}{AIhc{}}{c{{CDh{c}}}{}}2{c{{CD`{c}}}{}}32{c{{CDb{c}}}{}}3444444{c{{CDl{c}}}{}}454{c{{CDn{c}}}{}}{{{b{dc}}}{{b{{CD`{c}}}}}A@f}{{{b{dc}}}{{b{d{CDl{c}}}}}A@f}{{{b{{CD`{c}}}}{b{{CD`{c}}}}}Aj{ADjBBn}}{{{b{{CDb{c}}}}{b{{CDb{c}}}}}Aj{ADjA@f}}{{{b{{CDh{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{{CD`{c}}}}}cBBn}{{{b{{CDl{c}}}}}{}A@f}{{{b{{CDn{c}}}}}{}A@f}{{{b{d{CDh{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{CD`{c}}}}}{{b{dc}}}A@f}{{{b{d{CDb{c}}}}}{{b{dc}}}A@f}{{{b{d{CDl{c}}}}}{{b{dc}}}A@f}{{{b{d{CDn{c}}}}}{{b{dc}}}A@f}{{{b{d{CDh{c}}}}e}{{b{dc}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{d{CDh{c}}}}g}{{n{{b{dc}}e}}}{}{}{{AAf{}{{A@h{{n{ce}}}}}}}}{{{b{{CDh{c}}}}e}{{b{c}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{{CDh{c}}}}g}{{n{{b{c}}e}}}{}{}{{AAf{}{{A@h{{n{ce}}}}}}}}>={{}c{}}000000000{{{CDj{ce}}}{{n{ce}}}{}{{AAf{}{{A@h{c}}}}}}{{{CDh{c}}}{{Bf{c}}}{}}{{{CD`{c}}}c{}}{{{CDb{c}}}c{}}{{{CDl{c}}}c{}}{{{CDn{c}}}c{}}{{{b{{CD`{c}}}}{b{{CD`{c}}}}}Aj{ADjBBn}}{{{b{{CDb{c}}}}{b{{CDb{c}}}}}Aj{ADjA@f}}{{{CDd{c}}}{{b{c}}}A@f}{{{CDf{c}}}{{b{dc}}}A@f}32{{{CDd{c}}g}{{CDd{e}}}A@fA@f{{AAf{{b{c}}}{{A@h{{b{e}}}}}}}}{{{CDf{c}}g}{{CDf{e}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{b{de}}}}}}}}{{{CDd{c}}i}{{Bb{{CDd{e}}{CDd{g}}}}}A@fA@fA@f{{AAf{{b{c}}}{{A@h{{Bb{{b{e}}{b{g}}}}}}}}}}{{{CDf{c}}i}{{Bb{{CDf{e}}{CDf{g}}}}}A@fA@fA@f{{AAf{{b{dc}}}{{A@h{{Bb{{b{de}}{b{dg}}}}}}}}}}{e{{CDj{ce}}}{}{{AAf{}{{A@h{c}}}}}}{{}{{CDh{c}}}{}}{c{{CD`{c}}}{}}{c{{CDb{c}}}{}}{c{{CDl{c}}}{}}{c{{CDn{c}}}{}}{{{b{{CD`{c}}}}{b{{CD`{c}}}}}{{Bf{ABh}}}{ADjBBn}}{{{b{{CDb{c}}}}{b{{CDb{c}}}}}{{Bf{ABh}}}{ADjA@f}}{CDl}{CDn}{{{b{{CD`{c}}}}c}c{}}{{{b{{CDb{c}}}}c}c{}}{{{b{{CDb{c}}}}e}c{}{{AAf{{b{dc}}}{{A@h{c}}}}}}{{{b{{CDh{c}}}}c}{{n{Onc}}}{}}{{{b{{CD`{c}}}}c}On{}}{{{b{{CD`{c}}}}{b{{CD`{c}}}}}On{}}{{{b{{CDb{c}}}}{b{{CDb{c}}}}}On{}}{{{b{d{CDh{c}}}}}{{Bf{c}}}{}}{{{b{{CD`{c}}}}}cAFf}{{{b{{CDb{c}}}}}cAFf}{bc{}}00{bA`}000{{{b{{CDb{c}}}}}{{n{{CDd{c}}CE`}}}A@f}{{{b{{CDb{c}}}}}{{n{{CDf{c}}CEb}}}A@f}{{{b{{CDb{c}}}}}{{n{{b{c}}CE`}}}A@f}{c{{n{e}}}{}{}}000000000{{{b{{CDh{c}}}}c}{{n{{b{c}}{Bb{{b{c}}c}}}}}{}}{{}{{n{c}}}{}}000000000{bAf}000000000{{{b{d{CDb{c}}}}}{{b{dc}}}A@f}{{{b{{CD`{c}}}}e}cBBn{{AAf{c}{{A@h{c}}}}}}`````````````{{{b{dCEd}}Al}{{n{On{A@`{Al}}}}}}{{{b{dCEf}}Al}{{n{On{A@`{Al}}}}}}{{{b{dCEh}}Al}{{n{On{A@`{Al}}}}}}{{{b{dCEj}}Al}{{n{On{A@`{Al}}}}}}32{b{{b{c}}}{}}000000000{{{b{d}}}{{b{dc}}}{}}000000000{{{b{CEl}}}CEl}{{{b{CEn}}}CEn}{{{b{{B@l{c}}}}}{{B@l{c}}}{AAn{A@d{}{{A@b{Gn}}}}}}{{{b{CF`}}}CF`}{{{b{CEh}}}CEh}{{{b{CEj}}}CEj}{{{b{CFb}}}CFb}{{{b{CEd}}}CEd}{{{b{CEf}}}CEf}{{{b{CFd}}}CFd}{{b{b{dc}}}On{}}000000000{bOn}000000000{CEhAl}{CEjAl}{CFbAl}{CEdAl}{CEfAl}{cB@l{{AAj{}{{A@b{Gn}}}}}}{{{b{CEl}}}{{b{AKb}}}}{{{b{CEn}}}{{b{AKb}}}}{{{b{CF`}}}{{b{AKb}}}}{{{b{CEl}}{b{CEl}}}Aj}{{{b{CEn}}{b{CEn}}}Aj}{{{b{CF`}}{b{CF`}}}Aj}{{{b{CFd}}{b{CFd}}}Aj}{{{b{CEl}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CEn}}{b{dAb}}}{{n{OnADb}}}}0{{{b{{B@l{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`{A@d{}{{A@b{Gn}}}}}}{{{b{CF`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CEh}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CEj}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CFb}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CEd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CEf}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CFd}}{b{dAb}}}{{n{OnADb}}}}0{{CEdce}c{}{{A@j{c}{{A@h{c}}}}}}{{CEfce}c{}{{A@j{c}{{A@h{c}}}}}}{cc{}}000000000{{HdHd}{{Bf{AK`}}}}{Hd{{Bf{AK`}}}}{HdAK`}{{}c{}}000000000000000{{{b{CEd}}}Aj}{{{b{CEf}}}Aj}{CEh{{Bf{AK`}}}}{CEj{{Bf{AK`}}}}{CEdBf}{CEfBf}{{{b{CEh}}}Al}{{{b{CEj}}}Al}{{{b{CFb}}}Al}{{{b{CEd}}}Al}{{{b{CEf}}}Al}{{{b{d{B@l{c}}}}}{{Bf{{n{AK`CF`}}}}}{{A@d{}{{A@b{Gn}}}}}}{{{b{dCEh}}}{{Bf{AK`}}}}{{{b{dCEj}}}{{Bf{AK`}}}}{{{b{dCFb}}}{{Bf{AK`}}}}{{{b{dCEd}}}{{Bf{AK`}}}}{{{b{dCEf}}}{{Bf{AK`}}}}10{{CEdce}c{}{{A@j{c}{{A@h{c}}}}}}{{CEfce}c{}{{A@j{c}{{A@h{c}}}}}}{{{b{{B@l{c}}}}}{{Bb{Al{Bf{Al}}}}}{{A@d{}{{A@b{Gn}}}}}}{{{b{CEh}}}{{Bb{Al{Bf{Al}}}}}}{{{b{CEj}}}{{Bb{Al{Bf{Al}}}}}}{{{b{CFb}}}{{Bb{Al{Bf{Al}}}}}}{{{b{CEd}}}{{Bb{Al{Bf{Al}}}}}}{{{b{CEf}}}{{Bb{Al{Bf{Al}}}}}}{bc{}}000000000{bA`}00000000{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}000000000{bAf}000000000{{{b{CF`}}}Gn}```{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{B@n}}}On}`````````````{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{AAlAAlAAl}AAl}{{{b{ABh}}}ABh}{{{b{{CFf{c}}}}}{{CFf{c}}}AAn}{{{b{d{CFf{c}}}}{b{{CFf{c}}}}}OnAAn}{{b{b{dc}}}On{}}0{bOn}0{{{b{AAl}}{b{AAl}}}ABh}{{{b{ABh}}{b{ABh}}}ABh}{{{b{{CFf{c}}}}{b{{CFf{c}}}}}ABhAAl}{{}{{CFf{c}}}AFf}{{{b{ACf}}{b{c}}}AjA@f}{{{b{ABh}}{b{ABh}}}Aj}{{{b{{CFf{c}}}}{b{{CFf{c}}}}}AjACf}{{{b{ABh}}{b{dAb}}}{{n{OnADb}}}}{{{b{{CFf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{cc{}}0{{{b{ADj}}{b{c}}}AjA@f}{{{b{{CFf{c}}}}{b{{CFf{c}}}}}AjADj}10{{{b{ABh}}{b{dc}}}OnBBj}{{{b{{CFf{c}}}}{b{de}}}OnBBlBBj}{{}c{}}0{ABhAj}000005454{{cc}cAAl}{{AAlAAl}AAl}{{cce}c{}{{AAf{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{ccg}c{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}3210{{cc}{{Db{c}}}AAl}{{cce}{{Db{c}}}{}{{AAf{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{ccg}{{Db{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{ACf}}{b{c}}}AjA@f}{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{b{ABh}}{b{ABh}}}{{Bf{ABh}}}}{{{b{{CFf{c}}}}{b{{CFf{c}}}}}{{Bf{ABh}}}ADj}{ABhABh}{{ABhABh}ABh}{{ABhc}ABh{{AAf{}{{A@h{ABh}}}}}}{bc{}}0{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{bAf}0```````````````{{{b{{CFh{ce}}}}}{{b{e}}}{}AIb}{{{b{{CFj{ce}}}}}{{b{e}}}{}AIb}{{{b{d{CFh{ce}}}}{b{d{CFh{ce}}}}}OnAAlAIb}{{{b{d{CFl{ceg}}}}{b{d{CFl{ceg}}}}}OnAAl{}{AAnAIbAAn}}{{{b{d{CFn{ce}}}}{b{d{CFn{ce}}}}}OnAAl{AAnAIbAAn}}{{{b{d{CG`{c}}}}{b{d{CG`{c}}}}}On{}}{{{b{d{CFj{ce}}}}{b{d{CFj{ce}}}}}On{}AIb}{{{b{d{CFj{ce}}}}}{{Bb{{b{d{h{c}}}}{b{d{h{c}}}}}}}{}AIb}{{{b{{CFh{ce}}}}}{{b{{h{c}}}}}{}AIb}{{{b{{CFj{ce}}}}}{{Bb{{b{{h{c}}}}{b{{h{c}}}}}}}{}AIb}{{{b{{CG`{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{{CFj{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{d{CG`{ce}}}}}{{Bf{{b{dc}}}}}{}AIb}{{{b{d{CFj{ce}}}}}{{Bf{{b{dc}}}}}{}AIb}`{{{b{{CFj{ce}}}}{b{c}}}{{n{AlAl}}}AAlAIb}{{{b{{CFj{ce}}}}g}{{n{AlAl}}}{}AIb{{A@j{{b{c}}}{{A@h{ABh}}}}}}{{{b{{CFj{ce}}}}{b{g}}i}{{n{AlAl}}}{}AIbAAl{{A@j{{b{c}}}{{A@h{g}}}}}}{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}{{CGb{ce}}}{CGdBBlAAn}{BBhAFf}}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}{{CFn{ce}}}{AAlAAn}{AIbAAn}}1010{b{{b{c}}}{}}00000000{{{b{d}}}{{b{dc}}}{}}00000000``{{{b{{CGf{ceg}}}}}Al{}{}{}}{{{b{{CFh{ce}}}}}Al{}AIb}{{{b{{CGb{ce}}}}}Al{}{}}{{{b{{CFj{ce}}}}}Al{}AIb}{{{b{d{CGf{ceg}}}}}On{}{}{}}{{{b{d{CFh{ce}}}}}On{}AIb}{{{b{d{CFl{ceg}}}}}On{}{}{AIbAAn}}{{{b{d{CGb{ce}}}}}On{}{}}{{{b{d{CFn{ce}}}}}On{}{AAnAIbAAn}}{{{b{d{CG`{ce}}}}}On{}AIb}{{{b{d{CFj{ce}}}}}On{}AIb}{{{b{{CGf{ceg}}}}}{{CGf{ceg}}}AAnAAnAAn}{{{b{{CFh{ce}}}}}{{CFh{ce}}}AAn{AIbAAn}}{{{b{{CFl{ceg}}}}}{{CFl{ceg}}}AAnAAn{AIbAAn}}{{{b{{CGb{ce}}}}}{{CGb{ce}}}AAnAAn}{{{b{{CFn{ce}}}}}{{CFn{ce}}}AAn{AIbAAn}}{{{b{{CG`{ce}}}}}{{CG`{ce}}}AAn{AIbAAn}}{{{b{{CFj{ce}}}}}{{CFj{ce}}}AAn{AIbAAn}}{{{b{CGh}}}CGh}{{{b{CGj}}}CGj}{{{b{d{CGf{ceg}}}}{b{{CGf{ceg}}}}}OnAAnAAnAAn}{{{b{d{CFh{ce}}}}{b{{CFh{ce}}}}}OnAAn{AIbAAn}}{{{b{d{CGb{ce}}}}{b{{CGb{ce}}}}}OnAAnAAn}{{{b{d{CFn{ce}}}}{b{{CFn{ce}}}}}OnAAn{AIbAAn}}{{{b{d{CG`{ce}}}}{b{{CG`{ce}}}}}OnAAn{AIbAAn}}{{{b{d{CFj{ce}}}}{b{{CFj{ce}}}}}OnAAn{AIbAAn}}{{b{b{dc}}}On{}}00000000{bOn}00000000{{{b{{CFl{ceg}}}}{b{{CFl{ceg}}}}}ABhAAlAAl{AIbAAn}}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}ABhAAl{AIbAAn}}{{{b{{CG`{ce}}}}{b{{CG`{ce}}}}}ABhAAlAIb}{{{b{{CFj{ce}}}}{b{{CFj{ce}}}}}ABhAAlAIb}{{{b{d{CFj{fc}}}}Al}OnAIb}{{{b{{CGb{eg}}}}{b{c}}}Aj{BBlCGdA@f}{{ABd{c}}CGdBBl}BBh}{{{b{{CFn{eg}}}}{b{c}}}Aj{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{{{b{{CG`{ce}}}}{b{c}}}AjACfAIb}{{{b{{CFj{ce}}}}{b{c}}}AjACfAIb}{{{b{{CGf{egi}}}}{b{c}}}Aj{BBlCGdA@f}{{ABd{c}}CGdBBl}{}BBh}{{{b{{CFl{egi}}}}{b{c}}}Aj{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{{CG`{ce}}}}}{{CGl{ce}}}{}AIb}{{{b{d{CG`{ce}}}}}{{CGn{ce}}}{}AIb}10{{}{{CGf{ceg}}}{}{}AFf}{{}{{CFh{c}}}AAl}{{}{{CFl{ce}}}{}{}}{{}{{CGb{ce}}}{}AFf}{{}{{CFn{c}}}{}}{{}{{CG`{c}}}{}}{{}{{CFj{c}}}{}}{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}{{CH`{ce}}}{CGdBBl}BBh}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}{{CHb{ce}}}AAl{AIbAAn}}{{{b{d{CGf{ceg}}}}}{{CHd{ce}}}{}{}{}}{{{b{d{CFh{ce}}}}}{{CHf{ce}}}{}AIb}{{{b{d{CGb{ce}}}}}{{CHh{c}}}{}{}}{{{b{d{CFj{ce}}}}g}{{CHj{ce}}}{}AIb{{AKn{Al}}}}{{{b{d{CFh{ce}}}}}{{CHl{ce}}}AAlAIb}{{{b{d{CFl{ceg}}}}}On{}{}{AIbAAn}}{{{b{d{CG`{ce}}}}}On{}AIb}{{{b{d{CFj{ce}}}}}On{}AIb}{{{b{d{CGf{ceg}}}}c}{{CHn{ce}}}{CGdBBl}{}BBh}{{{b{d{CFl{ceg}}}}c}{{CI`{ceg}}}AAl{}{AIbAAn}}{{{b{{CGf{ceg}}}}{b{{CGf{ceg}}}}}Aj{CGdBBl}ACfBBh}{{{b{{CFl{ceg}}}}{b{{CFl{ceg}}}}}AjACfACf{AIbAAn}}{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}Aj{CGdBBl}BBh}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}AjACf{AIbAAn}}{{{b{{CG`{ce}}}}{b{{CG`{ce}}}}}AjACfAIb}{{{b{{CFj{eg}}}}{b{{b{d{h{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{CFj{eg}}}}{b{{b{{h{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{CFj{eg}}}}{b{{b{d{Db{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{CFj{eg}}}}{b{{b{{Db{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{CFj{eg}}}}{b{{Db{c}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{CFj{ce}}}}{b{{CFj{ce}}}}}AjACfAIb}{{{b{{CFj{eg}}}}{b{{j{cg}}}}}Aj{}{{ACf{c}}}AIb}{{{b{CGh}}{b{CGh}}}Aj}{{{b{CGj}}{b{CGj}}}Aj}{{{b{d{CGf{ceg}}}}i}On{CGdBBl}{}BBh{{AAj{}{{A@b{{Bb{ce}}}}}}}}{{{b{d{CGf{ceg}}}}i}On{CGdBBlBBn}BBnBBh{{AAj{}{{A@b{{Bb{{b{c}}{b{e}}}}}}}}}}{{{b{d{CFh{ce}}}}g}On{AAlBBn}AIb{{AAj{}{{A@b{{b{c}}}}}}}}{{{b{d{CFh{ce}}}}g}OnAAlAIb{{AAj{}{{A@b{c}}}}}}{{{b{d{CFl{ceg}}}}i}OnAAl{}{AIbAAn}{{AAj{}{{A@b{{Bb{ce}}}}}}}}{{{b{d{CFl{ceg}}}}i}On{AAlBBn}BBn{AIbAAn}{{AAj{}{{A@b{{Bb{{b{c}}{b{e}}}}}}}}}}{{{b{d{CGb{ce}}}}g}On{CGdBBlBBn}BBh{{AAj{}{{A@b{{b{c}}}}}}}}{{{b{d{CGb{ce}}}}g}On{CGdBBl}BBh{{AAj{}{{A@b{c}}}}}}{{{b{d{CFn{ce}}}}g}On{AAlBBn}{AIbAAn}{{AAj{}{{A@b{{b{c}}}}}}}}{{{b{d{CFn{ce}}}}g}OnAAl{AIbAAn}{{AAj{}{{A@b{c}}}}}}{{{b{d{CG`{ce}}}}g}On{}AIb{{AAj{}{{A@b{c}}}}}}{{{b{d{CG`{ce}}}}g}OnBBnAIb{{AAj{}{{A@b{{b{c}}}}}}}}{{{b{d{CFj{ce}}}}g}On{}AIb{{AAj{}{{A@b{c}}}}}}{{{b{d{CFj{ce}}}}g}OnBBnAIb{{AAj{}{{A@b{{b{c}}}}}}}}{{{b{d{CGf{ceg}}}}{Bb{{b{c}}{b{e}}}}}On{CGdBBlBBn}BBnBBh}{{{b{d{CGf{ceg}}}}{Bb{ce}}}On{CGdBBl}{}BBh}{{{b{d{CFh{ce}}}}{b{c}}}On{AAlBBn}AIb}{{{b{d{CFh{ce}}}}c}OnAAlAIb}{{{b{d{CFl{ceg}}}}{Bb{{b{c}}{b{e}}}}}On{AAlBBn}BBn{AIbAAn}}{{{b{d{CFl{ceg}}}}{Bb{ce}}}OnAAl{}{AIbAAn}}{{{b{d{CGb{ce}}}}c}On{CGdBBl}BBh}{{{b{d{CGb{ce}}}}{b{c}}}On{CGdBBlBBn}BBh}{{{b{d{CFn{ce}}}}{b{c}}}On{AAlBBn}{AIbAAn}}{{{b{d{CFn{ce}}}}c}OnAAl{AIbAAn}}{{{b{d{CG`{ce}}}}{b{c}}}OnBBnAIb}{{{b{d{CG`{ce}}}}c}On{}AIb}{{{b{d{CFj{ce}}}}{b{c}}}OnBBnAIb}{{{b{d{CFj{ce}}}}c}On{}AIb}{{{b{d{CGf{ceg}}}}Al}On{CGdBBl}{}BBh}{{{b{d{CGf{ceg}}}}Al}On{CGdBBlBBn}BBnBBh}{{{b{d{CFh{ce}}}}Al}On{AAlBBn}AIb}{{{b{d{CFh{ce}}}}Al}OnAAlAIb}{{{b{d{CGb{ce}}}}Al}On{CGdBBlBBn}BBh}{{{b{d{CGb{ce}}}}Al}On{CGdBBl}BBh}{{{b{d{CFj{ce}}}}Al}On{}AIb}{{{b{d{CFj{ce}}}}Al}OnBBnAIb}{{{b{d{CGf{ceg}}}}i}{{CIb{cei}}}{}{}{}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{d{CFl{ceg}}}}i}{{CId{ceig}}}AAl{}{AIbAAn}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{d{CGb{ce}}}}g}{{CIf{cg}}}{}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CFn{ce}}}}g}{{CIh{cge}}}AAl{AIbAAn}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CG`{ce}}}}g}{{CIj{cge}}}{}AIb{{A@j{{b{dc}}}{{A@h{Aj}}}}}}{{{b{d{CFj{fc}}}}}{{n{{b{{h{f}}}}CBf}}}AIb}{{{b{{CFn{ce}}}}}{{Bf{{b{c}}}}}AAl{AIbAAn}}{{{b{d{CFl{ceg}}}}}{{Bf{{CIl{ceg}}}}}AAl{}{AIbAAn}}{{{b{{CFl{ceg}}}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}AAl{}{AIbAAn}}{{{b{d{CFj{fc}}}}}{{n{OnCBf}}}AIb}{{{b{{CGf{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{}}{{{b{{CFh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{CFl{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{AIbAAn}}{{{b{{CGb{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{CFn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{AIbAAn}}{{{b{{CG`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{CFj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{CGh}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CGj}}{b{dAb}}}{{n{OnADb}}}}{{{Db{{Bb{ce}}}}}{{CGf{ce}}}{CGdBBl}{}}{cc{}}{{{j{ce}}}{{CFh{ce}}}AAlAIb}{{{Db{c}}}{{CFh{c}}}AAl}2{{{Db{{Bb{ce}}}}}{{CFl{ce}}}AAl{}}3{{{Db{c}}}{{CGb{c}}}{CGdBBl}}44{{{Db{c}}}{{CFn{c}}}AAl}{{{Db{c}}}{{CG`{c}}}{}}6{{{Db{c}}}{{CFj{c}}}{}}{{{j{ce}}}{{CFj{ce}}}{}AIb}8{CGjCGh}9{BOhCGj}:{g{{CGf{cei}}}{CGdBBl}{}{{AAj{}{{A@b{{Bb{ce}}}}}}}{BBhAFf}}{e{{CFh{c}}}AAl{{AAj{}{{A@b{c}}}}}}{g{{CFl{ce}}}AAl{}{{AAj{}{{A@b{{Bb{ce}}}}}}}}{e{{CGb{cg}}}{CGdBBl}{{AAj{}{{A@b{c}}}}}{BBhAFf}}{e{{CFn{c}}}AAl{{AAj{}{{A@b{c}}}}}}{e{{CG`{c}}}{}{{AAj{}{{A@b{c}}}}}}{e{{CFj{c}}}{}{{AAj{}{{A@b{c}}}}}}{{{b{{CG`{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{{CFj{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{d{CG`{ce}}}}}{{Bf{{b{dc}}}}}{}AIb}{{{b{d{CFj{ce}}}}}{{Bf{{b{dc}}}}}{}AIb}{{{b{{CGf{egi}}}}{b{c}}}{{Bf{{b{g}}}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}{}BBh}{{{b{{CFl{egi}}}}{b{c}}}{{Bf{{b{g}}}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{{CGb{eg}}}}{b{c}}}{{Bf{{b{e}}}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}BBh}{{{b{{CFn{eg}}}}{b{c}}}{{Bf{{b{e}}}}}{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{{{b{{CFj{ce}}}}Al}{{Bf{{b{c}}}}}{}AIb}{{{b{{CGf{egi}}}}{b{c}}}{{Bf{{Bb{{b{e}}{b{g}}}}}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}{}BBh}{{{b{{CFl{egi}}}}{b{c}}}{{Bf{{Bb{{b{e}}{b{g}}}}}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{d{CGf{egi}}}}{Db{{b{c}}}}}{{Bf{{Db{{b{dg}}}}}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}{}BBh}0{{{b{d{CGf{egi}}}}{b{c}}}{{Bf{{b{dg}}}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}{}BBh}{{{b{d{CFl{egi}}}}{b{c}}}{{Bf{{b{dg}}}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{d{CFj{ce}}}}Al}{{Bf{{b{dc}}}}}{}AIb}{{{b{d{CGb{ce}}}}c}{{b{c}}}{CGdBBl}BBh}{{{b{d{CGb{eg}}}}{b{c}}}{{b{e}}}{}{{ABd{c}}CGdBBl}BBh}{{{b{d{CGb{eg}}}}{b{c}}i}{{b{e}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}BBh{{AAf{{b{c}}}{{A@h{e}}}}}}{{{b{{CFl{ceg}}}}{b{di}}}OnBBlBBl{AIbAAn}BBj}{{{b{{CFn{ce}}}}{b{dg}}}OnBBl{AIbAAn}BBj}{{{b{{CG`{ce}}}}{b{dg}}}OnBBlAIbBBj}{{{b{{CFj{ce}}}}{b{dg}}}OnBBlAIbBBj}``{{{b{{CGf{ceg}}}}}{{b{g}}}{}{}{}}{{{b{{CGb{ce}}}}}{{b{e}}}{}{}}{{{b{{CGf{egi}}}}{b{c}}}{{b{g}}}{CGdBBlA@f}{CGdBBl{ABd{c}}}{}BBh}{{{b{{CFl{egi}}}}{b{c}}}{{b{g}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{{CFj{ce}}}}Al}{{b{c}}}{}AIb}{{{b{d{CFj{ce}}}}Al}{{b{dc}}}{}AIb}{{{b{d{CGf{ceg}}}}ce}{{Bf{e}}}{CGdBBl}{}BBh}{{{b{d{CFl{ceg}}}}ce}{{Bf{e}}}AAl{}{AIbAAn}}{{{b{d{CGb{ce}}}}c}Aj{CGdBBl}BBh}{{{b{d{CFn{ce}}}}c}AjAAl{AIbAAn}}{{{b{d{CFj{ce}}}}Alc}On{}AIb}{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}{{CIn{ce}}}{CGdBBl}BBh}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}{{CJ`{ce}}}AAl{AIbAAn}}{{}c{}}00000000{{{b{d{CGf{ceg}}}}}{{CJb{ce}}}{}{}{}}{{{b{{CGf{ceg}}}}}{{CJd{ce}}}{}{}{}}{{{CGf{ceg}}}{{CJf{ce}}}{}{}{}}{{{b{{CFh{ce}}}}}{{CJh{c}}}{}AIb}{{{CFh{ce}}}{{CJj{ce}}}{}AIb}{{{b{{CFl{ceg}}}}}{{CJl{ce}}}{}{}{AIbAAn}}{{{CFl{ceg}}}{{CJn{ceg}}}{}{}{AIbAAn}}{{{b{d{CFl{ceg}}}}}{{CK`{ce}}}{}{}{AIbAAn}}{{{b{{CGb{ce}}}}}{{CKb{c}}}{}{}}{{{CGb{ce}}}{{CKd{c}}}{}{}}{{{b{{CFn{ce}}}}}{{CKf{c}}}{}{AIbAAn}}{{{CFn{ce}}}{{CKh{ce}}}{}{AIbAAn}}{{{b{d{CG`{ce}}}}}{{CKj{c}}}{}AIb}{{{b{{CG`{ce}}}}}{{CKl{c}}}{}AIb}{{{CG`{ce}}}{{CKn{ce}}}{}AIb}{{{b{d{CFj{ce}}}}}{{CL`{c}}}{}AIb}{{{b{{CFj{ce}}}}}{{CLb{c}}}{}AIb}{{{CFj{ce}}}{{CLd{ce}}}{}AIb}{{{CFh{ce}}}{{CLf{ce}}}{}AIb}{{{CGf{ceg}}}{{CLh{ce}}}{}{}{}}{{{CFl{ceg}}}{{CLj{ceg}}}{}{}{AIbAAn}}{{{CFh{ce}}}{{j{ce}}}AAlAIb}{{{CGf{ceg}}}{{CLl{ce}}}{}{}{}}{{{CFl{ceg}}}{{CLn{ceg}}}{}{}{AIbAAn}}{{{CFh{ce}}}{{j{ce}}}{}AIb}{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}Aj{CGdBBl}BBh}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}AjAAl{AIbAAn}}{{{b{{CGf{ceg}}}}}Aj{}{}{}}{{{b{{CFh{ce}}}}}Aj{}AIb}{{{b{{CFl{ceg}}}}}Aj{}{}{AIbAAn}}{{{b{{CGb{ce}}}}}Aj{}{}}{{{b{{CFn{ce}}}}}Aj{}{AIbAAn}}{{{b{{CG`{ce}}}}}Aj{}AIb}{{{b{{CFj{ce}}}}}Aj{}AIb}8787{{{b{{CFj{fc}}}}}AjAIb}{{{b{{CGf{ceg}}}}}{{CJd{ce}}}{}{}{}}{{{b{{CFh{ce}}}}}{{CJh{c}}}{}AIb}{{{b{{CFl{ceg}}}}}{{CJl{ce}}}{}{}{AIbAAn}}{{{b{{CGb{ce}}}}}{{CKb{c}}}{}{}}{{{b{{CFn{ce}}}}}{{CKf{c}}}{}{AIbAAn}}{{{b{{CG`{ce}}}}}{{CKl{c}}}{}AIb}{{{b{{CFj{ce}}}}}{{CLb{c}}}{}AIb}{{{b{d{CGf{ceg}}}}}{{CJb{ce}}}{}{}{}}{{{b{d{CFl{ceg}}}}}{{CK`{ce}}}{}{}{AIbAAn}}{{{b{d{CG`{ce}}}}}{{CKj{c}}}{}AIb}{{{b{d{CFj{ce}}}}}{{CL`{c}}}{}AIb}{{{b{{CGf{ceg}}}}}{{CM`{ce}}}{}{}{}}{{{b{{CFl{ceg}}}}}{{CMb{ce}}}{}{}{AIbAAn}}{{{b{CGh}}}CGj}{{{b{{CFn{ce}}}}}{{Bf{{b{c}}}}}AAl{AIbAAn}}{{{b{d{CFl{ceg}}}}}{{Bf{{CIl{ceg}}}}}AAl{}{AIbAAn}}{{{b{{CFl{ceg}}}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}AAl{}{AIbAAn}}{{{b{{CGf{ceg}}}}}Al{}{}{}}{{{b{{CFh{ce}}}}}Al{}AIb}{{{b{{CFl{ceg}}}}}Al{}{}{AIbAAn}}{{{b{{CGb{ce}}}}}Al{}{}}{{{b{{CFn{ce}}}}}Al{}{AIbAAn}}{{{b{{CG`{ce}}}}}Al{}AIb}{{{b{{CFj{ce}}}}}Al{}AIb}`{{{b{{CFl{egi}}}}{BHj{{b{c}}}}}{{CMd{eg}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{{CFn{eg}}}}{BHj{{b{c}}}}}{{CMf{e}}}{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{{{b{d{CFl{egi}}}}{BHj{{b{c}}}}}{{CMh{egi}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{d{CFn{eg}}}}{BHj{{b{c}}}}}{{CMj{eg}}}{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{{{b{d{CFj{ce}}}}}{{b{d{h{c}}}}}{}AIb}{{{b{{CG`{ce}}}}{b{{CG`{ce}}}}}AjACfAIb}{{}{{CGf{ce}}}{}{}}{{}{{CFh{c}}}AAl}{{}{{CFl{ce}}}{}{}}{{}{{CGb{c}}}{}}{{}{{CFn{c}}}{}}{{}{{CG`{c}}}{}}{{}{{CFj{c}}}{}}{c{{CFh{ec}}}AIbAAl}{c{{CFl{egc}}}{AIbAAn}{}{}}{c{{CFn{ec}}}{AIbAAn}{}}{c{{CG`{ec}}}AIb{}}{c{{CFj{ec}}}AIb{}}{{{b{{CFl{ceg}}}}{b{{CFl{ceg}}}}}{{Bf{ABh}}}ADjADj{AIbAAn}}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}{{Bf{ABh}}}ADj{AIbAAn}}{{{b{{CG`{ce}}}}{b{{CG`{ce}}}}}{{Bf{ABh}}}ADjAIb}{{{b{{CFj{ce}}}}{b{{CFj{ce}}}}}{{Bf{ABh}}}ADjAIb}{{{b{{CFj{ce}}}}g}Al{}AIb{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{CFh{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{d{CFh{ce}}}}}{{Bf{{CMl{ce}}}}}AAlAIb}{{{b{d{CFh{ce}}}}}{{Bf{c}}}AAlAIb}{{{b{d{CG`{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{CFj{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{CFl{ceg}}}}}{{Bf{{Bb{ce}}}}}AAl{}{AIbAAn}}{{{b{d{CFn{ce}}}}}{{Bf{c}}}AAl{AIbAAn}}3210{{{b{d{CFh{ce}}}}c}OnAAlAIb}{{{b{d{CG`{ce}}}}c}On{}AIb}{{{b{d{CFj{ce}}}}c}On{}AIb}10{{{b{{CFl{egi}}}}k}{{CMn{eg}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}{{AKn{c}}}}{{{b{{CFn{eg}}}}i}{{CN`{e}}}{AAlA@f}{{ABd{c}}AAl}{AIbAAn}{{AKn{c}}}}{{{b{{CFj{ce}}}}g}{{CLb{c}}}{}AIb{{AKn{Al}}}}{{{b{d{CFl{egi}}}}k}{{CNb{eg}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}{{AKn{c}}}}{{{b{d{CFj{ce}}}}g}{{CL`{c}}}{}AIb{{AKn{Al}}}}{{{b{{CGf{ceg}}}}}{{CNd{ceg}}}{}{}BBh}{{{b{d{CGf{ceg}}}}}{{CNf{ceg}}}{}{}BBh}{{{b{d{CFj{fc}}}}{b{d{h{f}}}}}{{n{AlCBf}}}AIb}{{{b{d{CFj{fc}}}}CCf}{{n{OnCBf}}}AIb}{{{b{d{CFj{fc}}}}{b{d{j{f}}}}}{{n{AlCBf}}}AIb}{{{b{d{CFj{fc}}}}{b{dA`}}}{{n{AlCBf}}}AIb}{{{b{d{CGf{egi}}}}{b{c}}}{{Bf{g}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}{}BBh}{{{b{d{CFl{egi}}}}{b{c}}}{{Bf{g}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{d{CGb{eg}}}}{b{c}}}Aj{BBlCGdA@f}{{ABd{c}}CGdBBl}BBh}{{{b{d{CFn{eg}}}}{b{c}}}Aj{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{{{b{d{CG`{ce}}}}Al}c{}AIb}{{{b{d{CFj{ce}}}}Al}{{Bf{c}}}{}AIb}{{{b{d{CGf{egi}}}}{b{c}}}{{Bf{{Bb{eg}}}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}{}BBh}{{{b{d{CFl{egi}}}}{b{c}}}{{Bf{{Bb{eg}}}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{d{CGb{ce}}}}c}{{Bf{c}}}{CGdBBl}BBh}{{{b{d{CFn{ce}}}}c}{{Bf{c}}}AAl{AIbAAn}}{{{b{d{CGf{ceg}}}}Al}On{CGdBBl}{}BBh}{{{b{d{CFh{ce}}}}Al}On{}AIb}{{{b{d{CGb{ce}}}}Al}On{CGdBBl}BBh}{{{b{d{CFj{ce}}}}Al}On{}AIb}20{{{b{d{CFj{ce}}}}Alc}OnAAnAIb}{{{b{d{CFj{ce}}}}Alg}On{}AIb{{A@j{}{{A@h{c}}}}}}{{{b{d{CGf{ceg}}}}i}On{}{}{}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{d{CFh{ce}}}}g}OnAAlAIb{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CFl{ceg}}}}i}OnAAl{}{AIbAAn}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{d{CGb{ce}}}}g}On{}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CFn{ce}}}}g}OnAAl{AIbAAn}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CG`{ce}}}}g}On{}AIb{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CFj{ce}}}}g}On{}AIb{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CG`{ce}}}}g}On{}AIb{{A@j{{b{dc}}}{{A@h{Aj}}}}}}{{{b{d{CFj{ce}}}}g}On{}AIb{{A@j{{b{dc}}}{{A@h{Aj}}}}}};;>=<;{{{b{d{CGf{ceg}}}}}On{CGdBBl}{}BBh}{{{b{d{CFh{ce}}}}}On{}AIb}{{{b{d{CGb{ce}}}}}On{CGdBBl}BBh}{{{b{d{CFj{ce}}}}}On{}AIb}{{{b{d{CFl{egi}}}}{b{c}}}{{CFl{egi}}}{AAlA@f}{{ABd{c}}AAl}{}{AAnAIbAAn}}{{{b{d{CFn{eg}}}}{b{c}}}{{CFn{eg}}}{AAlA@f}{{ABd{c}}AAl}{AAnAIbAAn}}{{{b{d{CG`{ce}}}}Al}{{CG`{ce}}}{}{AAnAIb}}{{{b{d{CFj{ce}}}}Al}{{CFj{ce}}}{}{AAnAIb}}{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}{{CGb{ce}}}{CGdBBlAAn}{BBhAFf}}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}{{CFn{ce}}}{AAlAAn}{AIbAAn}}{{{b{d{CFj{ce}}}}AlAl}On{}AIb}{{{b{d{CFj{ce}}}}Al}{{Bf{c}}}{}AIb}0{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}{{CNh{ce}}}{CGdBBl}BBh}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}{{CNj{c}}}AAl{AIbAAn}}{{{b{d{CGb{eg}}}}{b{c}}}{{Bf{e}}}{BBlCGdA@f}{{ABd{c}}CGdBBl}BBh}{{{b{d{CFn{eg}}}}{b{c}}}{{Bf{e}}}{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{bc{}}00000000{bA`}{{{b{d{CFj{ce}}}}Al}On{}AIb}{c{{n{e}}}{}{}}00000000{{{b{d{CGf{ceg}}}}ce}{{n{{b{de}}{CNl{ce}}}}}{CGdBBl}{}BBh}{{{b{d{CFl{ceg}}}}ce}{{n{{b{de}}{CNn{ceg}}}}}AAl{}{AIbAAn}}{{}{{n{c}}}{}}00000000{{{b{d{CGf{ceg}}}}Al}{{n{OnCGh}}}{CGdBBl}{}BBh}{{{b{d{CFh{ce}}}}Al}{{n{OnCGh}}}{}AIb}{{{b{d{CGb{ce}}}}Al}{{n{OnCGh}}}{CGdBBl}BBh}{{{b{d{CFj{ce}}}}Al}{{n{OnCGh}}}{}AIb}20{Al{{n{{CFj{c}}CGh}}}{}}{bAf}00000000{{{b{{CGb{ce}}}}{b{{CGb{ce}}}}}{{CO`{ce}}}{CGdBBl}BBh}{{{b{{CFn{ce}}}}{b{{CFn{ce}}}}}{{COb{c}}}AAl{AIbAAn}}{{{b{{CFl{egi}}}}{BHj{{b{c}}}}}{{CMd{eg}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{{CFn{eg}}}}{BHj{{b{c}}}}}{{CMf{e}}}{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{{{b{d{CFl{egi}}}}{BHj{{b{c}}}}}{{CMh{egi}}}{AAlA@f}{{ABd{c}}AAl}{}{AIbAAn}}{{{b{d{CFn{eg}}}}{BHj{{b{c}}}}}{{CMj{eg}}}{AAlA@f}{{ABd{c}}AAl}{AIbAAn}}{{{b{{CGf{ceg}}}}}{{COd{ce}}}{}{}{}}{{{b{{CFl{ceg}}}}}{{COf{ce}}}{}{}{AIbAAn}}{{{b{d{CGf{ceg}}}}}{{COh{ce}}}{}{}{}}{{{b{d{CFl{ceg}}}}}{{COj{ce}}}{}{}{AIbAAn}}`{Al{{CGf{ce}}}{}{}}{Al{{CFh{c}}}AAl}{Al{{CGb{c}}}{}}{Al{{CFj{c}}}{}}{{Alc}{{CGf{egc}}}{}{}{}}{{Alc}{{CGb{ec}}}{}{}}{{Alc}{{CFh{ec}}}AIbAAl}{{Alc}{{CFj{ec}}}AIb{}}{c{{CGf{egc}}}{}{}{}}{c{{CGb{ec}}}{}{}}{{{b{d{CFj{fc}}}}{b{{h{f}}}}}{{n{AlCBf}}}AIb}{{{b{d{CFj{fc}}}}{b{{h{f}}}}}{{n{OnCBf}}}AIb}{{{b{d{CFj{fc}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}AIb}````````{{{b{{CJj{ce}}}}}{{b{e}}}{}AIb}{{{b{{CLf{ce}}}}}{{b{e}}}{}AIb}{{{b{{CHf{ce}}}}}{{b{e}}}{}AIb}{{{b{{CHl{ce}}}}}{{b{e}}}AAlAIb}{b{{b{c}}}{}}00000{{{b{d}}}{{b{dc}}}{}}00000{{{b{{CJh{c}}}}}{{CJh{c}}}{}}{{{b{{CJj{ce}}}}}{{CJj{ce}}}AAn{AAnAIb}}{{{b{{CLf{ce}}}}}{{CLf{ce}}}AAn{AAnAIb}}{{b{b{dc}}}On{}}00{bOn}00{{}{{CJh{c}}}{}}{{}{{CJj{c}}}{}}{{{b{{CMl{ce}}}}}{{b{c}}}AAlAIb}{{{b{d{CMl{ce}}}}}{{b{dc}}}AAlAIb}{{{b{d{CMl{ce}}}}}OnAAlAIb}{{{b{d{CHl{ce}}}}}OnAAlAIb}{{{b{{CMl{ce}}}}{b{dAb}}}{{n{OnADb}}}{AAlAD`}AIb}{{{b{{CJh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CJj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{CLf{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{AD`AIb}}{{{b{{CHf{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{AD`AIb}}{{{b{{CHl{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`AAl}{AD`AIb}}{cc{}}00000{{}c{}}0000000000{{{b{{CJh{c}}}}}Aj{}}{{{b{{CJj{ce}}}}}Aj{}AIb}{{{b{{CHf{ce}}}}}Aj{}AIb}{{{CJh{c}}}{{Bf{{b{c}}}}}{}}{{{b{d{CJh{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CJj{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{CLf{ce}}}}}{{Bf{c}}}AAlAIb}{{{b{d{CHf{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{CHl{ce}}}}}{{Bf{c}}}AAlAIb}431{{{CMl{ce}}}cAAlAIb}{{{b{{CJh{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CJj{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}AIb}{{{b{{CLf{ce}}}}}{{Bb{Al{Bf{Al}}}}}AAlAIb}{{{b{{CHf{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}AIb}{{{b{{CHl{ce}}}}}{{Bb{Al{Bf{Al}}}}}AAlAIb}{bc{}}00{c{{n{e}}}{}{}}00000{{}{{n{c}}}{}}00000{bAf}00000``````````````````````{{{CI`{ceg}}i}{{CI`{ceg}}}AAl{}{AIbAAn}{{AAf{{b{de}}}}}}{{{b{{CMh{ceg}}}}}{{CMd{ce}}}{}{}{}}{{{b{{COl{ceg}}}}}{{CMd{ce}}}{}{}{}}{b{{b{c}}}{}}00000000000000000{{{b{d}}}{{b{dc}}}{}}00000000000000000{{{b{{CJl{ce}}}}}{{CJl{ce}}}{}{}}{{{b{{CMb{ce}}}}}{{CMb{ce}}}{}{}}{{{b{{COf{ce}}}}}{{COf{ce}}}{}{}}{{{b{{CMn{ce}}}}}{{CMn{ce}}}{}{}}{{{b{{CMd{ce}}}}}{{CMd{ce}}}{}{}}{{b{b{dc}}}On{}}0000{bOn}0000{{}{{CJl{ce}}}{}{}}{{}{{CK`{ce}}}{}{}}{{}{{CJn{ceg}}}{}{}{AIbAFfAAn}}{{}{{CMb{ce}}}{}{}}{{}{{COf{ce}}}{}{}}{{}{{COj{ce}}}{}{}}{{}{{CLj{ceg}}}{}{}{AIbAFfAAn}}{{}{{CLn{ceg}}}{}{}{AIbAFfAAn}}{{}{{CMn{ce}}}{}{}}{{}{{CNb{ce}}}{}{}}{{{b{{CNn{ce}}}}}{{b{AKb}}}{AD`AAl}AD`}{{{b{d{CJn{ceg}}}}}On{}{}{AIbAAn}}`{{{b{{CI`{ceg}}}}{b{dAb}}}{{n{OnADb}}}{AD`AAl}AD`{AIbAAn}}{{{b{{COn{ceg}}}}{b{dAb}}}{{n{OnADb}}}{AD`AAl}{}{AIbAAn}}{{{b{{CIl{ceg}}}}{b{dAb}}}{{n{OnADb}}}{AD`AAl}AD`{AIbAAn}}{{{b{{CNn{ceg}}}}{b{dAb}}}{{n{OnADb}}}{AD`AAl}AD`{AIbAAn}}0{{{b{{CJl{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CK`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CJn{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{AIbAAn}}{{{b{{CMb{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{COf{ce}}}}{b{dAb}}}{{n{OnADb}}}{}AD`}{{{b{{COj{ce}}}}{b{dAb}}}{{n{OnADb}}}{}AD`}{{{b{{CLj{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`{}{AIbAAn}}{{{b{{CLn{ceg}}}}{b{dAb}}}{{n{OnADb}}}{}AD`{AIbAAn}}{{{b{{CMn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CNb{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CId{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{{CMd{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CMh{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{}}{{{b{{COl{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{}}{cc{}}00000000000000000{{{b{{CIl{ceg}}}}}{{b{e}}}AAl{}{AIbAAn}}{{{b{d{CIl{ceg}}}}}{{b{de}}}AAl{}{AIbAAn}}{{{COn{ceg}}e}{{b{de}}}AAl{}{AIbAAn}}{{{b{d{CIl{ceg}}}}e}eAAl{}{AIbAAn}}{{{b{d{CMh{ceg}}}}ce}{{n{OnD@`}}}AAl{}{AIbAAn}}{{{b{d{COl{ceg}}}}ce}{{n{OnD@`}}}AAl{}{AIbAAn}}{{{b{d{CMh{ceg}}}}ce}OnAAl{}{AIbAAn}}{{{b{d{COl{ceg}}}}ce}OnAAl{}{AIbAAn}}3210{{}c{}}0000000000000000000000000000{{{COn{ceg}}}cAAl{}{AIbAAn}}{{{CIl{ceg}}}{{b{de}}}AAl{}{AIbAAn}}{{{b{{CI`{ceg}}}}}{{b{c}}}AAl{}{AIbAAn}}{{{b{{COn{ceg}}}}}{{b{c}}}AAl{}{AIbAAn}}{{{b{{CIl{ceg}}}}}{{b{c}}}AAl{}{AIbAAn}}{{{CJl{ce}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}{{{CK`{ce}}}{{Bf{{Bb{{b{c}}{b{de}}}}}}}{}{}}{{{CMb{ce}}}{{Bf{{b{c}}}}}{}{}}{{{COf{ce}}}{{Bf{{b{e}}}}}{}{}}{{{COj{ce}}}{{Bf{{b{de}}}}}{}{}}{{{CLj{ceg}}}{{Bf{c}}}{}{}{AIbAAn}}{{{CLn{ceg}}}{{Bf{e}}}{}{}{AIbAAn}}{{{CMn{ce}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}{{{CNb{ce}}}{{Bf{{Bb{{b{c}}{b{de}}}}}}}{}{}}{{{b{{CJl{ce}}}}}Al{}{}}{{{b{{CK`{ce}}}}}Al{}{}}{{{b{{CJn{ceg}}}}}Al{}{}{AIbAAn}}{{{b{{CMb{ce}}}}}Al{}{}}{{{b{{COf{ce}}}}}Al{}{}}{{{b{{COj{ce}}}}}Al{}{}}{{{b{{CLj{ceg}}}}}Al{}{}{AIbAAn}}{{{b{{CLn{ceg}}}}}Al{}{}{AIbAAn}}{{{CJl{ce}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}{{{CK`{ce}}}{{Bf{{Bb{{b{c}}{b{de}}}}}}}{}{}}{{{CMb{ce}}}{{Bf{{b{c}}}}}{}{}}{{{CLj{ceg}}}{{Bf{c}}}AAl{}{AIbAAn}}=<3210=<{{{b{d{CJl{ce}}}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}{{{b{d{CK`{ce}}}}}{{Bf{{Bb{{b{c}}{b{de}}}}}}}{}{}}{{{b{d{CJn{ceg}}}}}{{Bf{{Bb{ce}}}}}{}{}{AIbAAn}}{{{b{d{CMb{ce}}}}}{{Bf{{b{c}}}}}{}{}}{{{b{d{COf{ce}}}}}{{Bf{{b{e}}}}}{}{}}{{{b{d{COj{ce}}}}}{{Bf{{b{de}}}}}{}{}}{{{b{d{CLj{ceg}}}}}{{Bf{c}}}{}{}{AIbAAn}}{{{b{d{CLn{ceg}}}}}{{Bf{e}}}{}{}{AIbAAn}}{{{b{d{CMn{ce}}}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}{{{b{d{CNb{ce}}}}}{{Bf{{Bb{{b{c}}{b{de}}}}}}}{}{}}{{{b{d{CId{cegi}}}}}{{Bf{{Bb{ce}}}}}{}{}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}{AIbAAn}}{{{b{d{CMd{ce}}}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}{{{b{d{CMh{ceg}}}}}{{Bf{{Bb{{b{c}}{b{de}}}}}}}{}{}{}}{{{b{d{COl{ceg}}}}}{{Bf{{Bb{{b{dc}}{b{de}}}}}}}{}{}{}}=<;:987654{{{CI`{ceg}}}{{b{de}}}AAlAFf{AIbAAn}}{{{CI`{ceg}}e}{{b{de}}}AAl{}{AIbAAn}}{{{CI`{ceg}}i}{{b{de}}}AAl{}{AIbAAn}{{AAf{}{{A@h{e}}}}}}{{{CI`{ceg}}i}{{b{de}}}AAl{}{AIbAAn}{{AAf{{b{c}}}{{A@h{e}}}}}}{{{b{{CMd{ce}}}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}65065765{{{CIl{ceg}}}eAAl{}{AIbAAn}}{{{CIl{ceg}}}{{Bb{ce}}}AAl{}{AIbAAn}}{{{b{d{CMh{ceg}}}}}{{Bf{{Bb{ce}}}}}AAl{}{AIbAAn}}{{{b{d{COl{ceg}}}}}{{Bf{{Bb{ce}}}}}AAl{}{AIbAAn}}10{{{b{{CJl{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CK`{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CJn{ceg}}}}}{{Bb{Al{Bf{Al}}}}}{}{}{AIbAAn}}{{{b{{CMb{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{COf{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{COj{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CLj{ceg}}}}}{{Bb{Al{Bf{Al}}}}}{}{}{AIbAAn}}{{{b{{CLn{ceg}}}}}{{Bb{Al{Bf{Al}}}}}{}{}{AIbAAn}}{{{b{{CId{cegi}}}}}{{Bb{Al{Bf{Al}}}}}{}{}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}{AIbAAn}}{bc{}}0000{bA`}{c{{n{e}}}{}{}}00000000000000000{{}{{n{c}}}{}}00000000000000000{bAf}00000000000000000`{{{CMh{ceg}}}{{COl{ceg}}}{}{}{}}`````````````{{{b{{CMj{ce}}}}}{{CMf{c}}}{}{}}{{{b{{D@b{ce}}}}}{{CMf{c}}}{}{}}{b{{b{c}}}{}}00000000000{{{b{d}}}{{b{dc}}}{}}00000000000{{{b{{CKf{c}}}}}{{CKf{c}}}{}}{{{b{{CHb{ce}}}}}{{CHb{ce}}}{}{AIbAAn}}{{{b{{CNj{c}}}}}{{CNj{c}}}{}}{{{b{{CJ`{ce}}}}}{{CJ`{ce}}}{}{AIbAAn}}{{{b{{COb{c}}}}}{{COb{c}}}{}}{{{b{D@`}}}D@`}{{{b{{CN`{c}}}}}{{CN`{c}}}{}}{{{b{{CMf{c}}}}}{{CMf{c}}}AAn}{{b{b{dc}}}On{}}0000000{bOn}0000000{{}{{CKf{c}}}{}}{{}{{CKh{ce}}}{}{AIbAFfAAn}}{{}{{CN`{c}}}{}}{{{b{D@`}}{b{D@`}}}Aj}{{{b{{CKf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CHb{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{AIbAAn}}{{{b{{CNj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CJ`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{AIbAAn}}{{{b{{COb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CIh{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}{AIbAAn}}{{{b{{CMj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{D@b{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{D@`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{{CKh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{AD`AIbAAn}}{{{b{{CN`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CMf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{cc{}}00000000000{{{b{d{CMj{ce}}}}c}{{n{OnD@`}}}AAl{AIbAAn}}{{{b{d{D@b{ce}}}}c}{{n{OnD@`}}}AAl{AIbAAn}}{{{b{d{CMj{ce}}}}c}OnAAl{AIbAAn}}{{{b{d{D@b{ce}}}}c}OnAAl{AIbAAn}}3210{{}c{}}0000000000000000000{{{CKf{c}}}{{Bf{{b{c}}}}}{}}{{{CN`{c}}}{{Bf{{b{c}}}}}{}}{{{b{{CKf{c}}}}}Al{}}{{{b{{CKh{ce}}}}}Al{}{AIbAAn}}323{{{CHb{ce}}}{{Bf{{b{c}}}}}AAl{AIbAAn}}{{{CNj{c}}}{{Bf{{b{c}}}}}AAl}{{{CJ`{ce}}}{{Bf{{b{c}}}}}AAl{AIbAAn}}{{{COb{c}}}{{Bf{{b{c}}}}}AAl}6{{{b{d{CKf{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CHb{ce}}}}}{{Bf{{b{c}}}}}AAl{AIbAAn}}{{{b{d{CNj{c}}}}}{{Bf{{b{c}}}}}AAl}{{{b{d{CJ`{ce}}}}}{{Bf{{b{c}}}}}AAl{AIbAAn}}{{{b{d{COb{c}}}}}{{Bf{{b{c}}}}}AAl}{{{b{d{CIh{ceg}}}}}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AIbAAn}}{{{b{d{CMj{ce}}}}}{{Bf{{b{c}}}}}{}{}}{{{b{d{D@b{ce}}}}}{{Bf{{b{dc}}}}}{}{}}{{{b{d{CKh{ce}}}}}{{Bf{c}}}{}{AIbAAn}}{{{b{d{CN`{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CMf{c}}}}}{{Bf{{b{c}}}}}{}}:2143{{{b{{CMf{c}}}}}{{Bf{{b{c}}}}}{}}540541{{{b{d{CMj{ce}}}}}{{Bf{c}}}AAl{AIbAAn}}{{{b{d{D@b{ce}}}}}{{Bf{c}}}AAl{AIbAAn}}10{{{b{{CKf{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CHb{ce}}}}}{{Bb{Al{Bf{Al}}}}}AAl{AIbAAn}}{{{b{{CNj{c}}}}}{{Bb{Al{Bf{Al}}}}}AAl}{{{b{{CJ`{ce}}}}}{{Bb{Al{Bf{Al}}}}}AAl{AIbAAn}}{{{b{{COb{c}}}}}{{Bb{Al{Bf{Al}}}}}AAl}{{{b{{CIh{ceg}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AIbAAn}}{{{b{{CKh{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{AIbAAn}}{bc{}}0000000{bA`}{c{{n{e}}}{}{}}00000000000{{}{{n{c}}}{}}00000000000{bAf}00000000000{{{CMj{ce}}}{{D@b{ce}}}{}{}}``````````````````````````{{{D@d{ceg}}i}{{D@d{ceg}}}{}{}{}{{AAf{{b{dc}}{b{de}}}}}}{{{CHn{ce}}g}{{CHn{ce}}}{}{}{{AAf{{b{de}}}}}}{b{{b{c}}}{}}000000000000000000{{{b{d}}}{{b{dc}}}{}}000000000000000000{{{b{{CJd{ce}}}}}{{CJd{ce}}}{}{}}{{{b{{CM`{ce}}}}}{{CM`{ce}}}{}{}}{{{b{{COd{ce}}}}}{{COd{ce}}}{}{}}{{b{b{dc}}}On{}}00{bOn}00{{{CJd{ce}}}Al{}{}}{{{CJb{ce}}}Al{}{}}{{{CJf{ce}}}Al{}{}}{{{CM`{ce}}}Al{}{}}{{{COd{ce}}}Al{}{}}{{{COh{ce}}}Al{}{}}{{{CLh{ce}}}Al{}{}}{{{CLl{ce}}}Al{}{}}{{{b{{CNl{ce}}}}}{{b{AKb}}}AD`AD`}`{{{b{{CJd{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CJb{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CJf{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CM`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{COd{ce}}}}{b{dAb}}}{{n{OnADb}}}{}AD`}{{{b{{CHd{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{CIb{ceg}}}}{b{dAb}}}{{n{OnADb}}}{}{}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{{COh{ce}}}}{b{dAb}}}{{n{OnADb}}}{}AD`}{{{b{{CLh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{CLl{ce}}}}{b{dAb}}}{{n{OnADb}}}{}AD`}{{{b{{CNf{ceg}}}}{b{dAb}}}{{n{OnADb}}}{}{}{}}{{{b{{D@d{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{}}{{{b{{D@f{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{}}{{{b{{D@h{ceg}}}}{b{dAb}}}{{n{OnADb}}}{}{}{}}{{{b{{CNd{ceg}}}}{b{dAb}}}{{n{OnADb}}}{}{}{}}{{{b{{CHn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{D@j{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{D@l{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{CNl{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}0{{{CJd{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{CJb{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{CJf{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{CM`{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{COd{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{CHd{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{COh{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{CLh{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{{{CLl{ce}}gi}g{}{}{}{{A@j{g}{{A@h{g}}}}}}{cc{}}000000000000000000{{{CNf{ceg}}Hji}{{D@d{ceg}}}{}{}BBh{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{CNd{ceg}}Hji}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}BBh{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{CNf{egi}}{b{c}}}{{D@d{egi}}}{BBlCGdA@f}{{ABd{c}}}{}BBh}{{{CNd{egi}}{b{c}}}{{Bf{{Bb{{b{e}}{b{g}}}}}}}{BBlCGdA@f}{{ABd{c}}}{}BBh}{{{CNf{egi}}Hj{b{c}}}{{D@d{egi}}}{CGdA@f}{{ABd{c}}}{}BBh}{{{CNd{egi}}Hj{b{c}}}{{Bf{{Bb{{b{e}}{b{g}}}}}}}{BBlCGdA@f}{{ABd{c}}}{}BBh}{{{b{{D@f{ceg}}}}}{{b{e}}}{}{}{}}{{{b{{D@j{ce}}}}}{{b{e}}}{}{}}{{{b{d{D@f{ceg}}}}}{{Bb{{b{c}}{b{e}}}}}{}{}{}}{{{b{d{D@f{ceg}}}}}{{Bb{{b{dc}}{b{de}}}}}{}{}{}}{{{b{d{D@f{ceg}}}}}{{b{de}}}{}{}{}}{{{b{d{D@j{ce}}}}}{{b{de}}}{}{}}{{{b{d{D@f{ceg}}}}e}e{}{}{}}{{{D@h{ceg}}ce}{{Bb{{b{dc}}{b{de}}}}}BBl{}BBh}{{{b{d{D@j{ce}}}}e}e{}{}}{{{D@l{ce}}e}{{b{de}}}{}{}}{{{CHn{ce}}e}{{D@j{ce}}}{}{}}{{{D@l{ce}}e}{{D@j{ce}}}{}{}}{{{D@h{ceg}}Hjce}{{Bb{{b{dc}}{b{de}}}}}BBl{}BBh}{{{b{d{D@f{ceg}}}}c}c{}{}{}}{{}c{}}0000000000000000000000000000{{{D@f{ceg}}}{{b{dc}}}{}{}{}}{{{D@l{ce}}}c{}{}}{{{D@f{ceg}}}{{Bb{{b{dc}}{b{de}}}}}{}{}{}}{{{D@f{ceg}}}{{b{de}}}{}{}{}}{{{D@j{ce}}}{{b{de}}}{}{}}{{{b{{D@f{ceg}}}}}{{b{c}}}{}{}{}}{{{b{{CHn{ce}}}}}{{b{c}}}{}{}}{{{b{{D@j{ce}}}}}{{b{c}}}{}{}}{{{b{{D@l{ce}}}}}{{b{c}}}{}{}}{{{b{d{D@f{ceg}}}}}{{b{dc}}}{}{}{}}{{{b{{CJd{ce}}}}}Al{}{}}{{{b{{CJb{ce}}}}}Al{}{}}{{{b{{CJf{ce}}}}}Al{}{}}{{{b{{CM`{ce}}}}}Al{}{}}{{{b{{COd{ce}}}}}Al{}{}}{{{b{{CHd{ce}}}}}Al{}{}}{{{b{{COh{ce}}}}}Al{}{}}{{{b{{CLh{ce}}}}}Al{}{}}{{{b{{CLl{ce}}}}}Al{}{}}{{{b{d{CJd{ce}}}}}{{Bf{{Bb{{b{c}}{b{e}}}}}}}{}{}}{{{b{d{CJb{ce}}}}}{{Bf{{Bb{{b{c}}{b{de}}}}}}}{}{}}{{{b{d{CJf{ce}}}}}{{Bf{{Bb{ce}}}}}{}{}}{{{b{d{CM`{ce}}}}}{{Bf{{b{c}}}}}{}{}}{{{b{d{COd{ce}}}}}{{Bf{{b{e}}}}}{}{}}{{{b{d{CHd{ce}}}}}{{Bf{{Bb{ce}}}}}{}{}}{{{b{d{CIb{ceg}}}}}{{Bf{{Bb{ce}}}}}{}{}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{d{COh{ce}}}}}{{Bf{{b{de}}}}}{}{}}{{{b{d{CLh{ce}}}}}{{Bf{c}}}{}{}}{{{b{d{CLl{ce}}}}}{{Bf{e}}}{}{}}{{{CHn{ce}}}{{b{de}}}{}AFf}{{{D@d{ceg}}ce}{{Bb{{b{dc}}{b{de}}}}}BBl{}BBh}{{{CHn{ce}}e}{{b{de}}}{}{}}{{{D@d{ceg}}i}{{Bb{{b{dc}}{b{de}}}}}BBl{}BBh{{AAf{}{{A@h{{Bb{ce}}}}}}}}{{{CHn{ce}}g}{{b{de}}}{}{}{{AAf{}{{A@h{e}}}}}}{{{CHn{ce}}g}{{b{de}}}{}{}{{AAf{{b{c}}}{{A@h{e}}}}}}{{{D@f{ceg}}}e{}{}{}}{{{D@j{ce}}}e{}{}}{{{D@f{ceg}}}{{Bb{ce}}}{}{}{}}{{{D@j{ce}}}{{Bb{ce}}}{}{}}{{{D@j{ce}}e}{{Bb{ce}}}{}{}}{{{D@j{ce}}}c{}{}}{{{b{{CJd{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CJb{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CJf{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CM`{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{COd{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CHd{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CIb{ceg}}}}}{{Bb{Al{Bf{Al}}}}}{}{}{{A@j{{b{c}}{b{de}}}{{A@h{Aj}}}}}}{{{b{{COh{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CLh{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{{{b{{CLl{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{}}{bc{}}00{bA`}{c{{n{e}}}{}{}}000000000000000000{{}{{n{c}}}{}}000000000000000000{bAf}000000000000000000``````````{b{{b{c}}}{}}0000000{{{b{d}}}{{b{dc}}}{}}0000000{{{b{{CKb{c}}}}}{{CKb{c}}}{}}{{{b{{CIn{ce}}}}}{{CIn{ce}}}{}{}}{{{b{{CH`{ce}}}}}{{CH`{ce}}}{}{}}{{{b{{CNh{ce}}}}}{{CNh{ce}}}{}{}}{{{b{{CO`{ce}}}}}{{CO`{ce}}}{}{}}{{b{b{dc}}}On{}}0000{bOn}0000{{{CKb{c}}}Al{}}{{{CKd{c}}}Al{}}{{{CO`{ce}}}Al{CGdBBl}BBh}{{{b{{CKb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CKd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CHh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CIf{ce}}}}{b{dAb}}}{{n{OnADb}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{CIn{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`CGdBBl}BBh}{{{b{{CH`{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`CGdBBl}BBh}{{{b{{CNh{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`CGdBBl}BBh}{{{b{{CO`{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`CGdBBl}BBh}{{{CKb{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CKd{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CHh{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CIn{ce}}gi}g{CGdBBl}BBh{}{{A@j{g}{{A@h{g}}}}}}{{{CH`{ce}}gi}g{CGdBBl}BBh{}{{A@j{g}{{A@h{g}}}}}}{{{CNh{ce}}gi}g{CGdBBl}BBh{}{{A@j{g}{{A@h{g}}}}}}{{{CO`{ce}}gi}g{CGdBBl}BBh{}{{A@j{g}{{A@h{g}}}}}}{cc{}}0000000{{}c{}}000000000000000{{{b{{CKb{c}}}}}Al{}}{{{b{{CKd{c}}}}}Al{}}{{{b{{CHh{c}}}}}Al{}}{{{b{d{CKb{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CKd{c}}}}}{{Bf{c}}}{}}{{{b{d{CHh{c}}}}}{{Bf{c}}}{}}{{{b{d{CIf{ce}}}}}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{CIn{ce}}}}}{{Bf{{b{c}}}}}{CGdBBl}BBh}{{{b{d{CH`{ce}}}}}{{Bf{{b{c}}}}}{CGdBBl}BBh}{{{b{d{CNh{ce}}}}}{{Bf{{b{c}}}}}{CGdBBl}BBh}{{{b{d{CO`{ce}}}}}{{Bf{{b{c}}}}}{CGdBBl}BBh}{{{b{{CKb{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CKd{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CHh{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CIf{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{CIn{ce}}}}}{{Bb{Al{Bf{Al}}}}}{CGdBBl}BBh}{{{b{{CH`{ce}}}}}{{Bb{Al{Bf{Al}}}}}{CGdBBl}BBh}{{{b{{CNh{ce}}}}}{{Bb{Al{Bf{Al}}}}}{CGdBBl}BBh}{{{b{{CO`{ce}}}}}{{Bb{Al{Bf{Al}}}}}{CGdBBl}BBh}{bc{}}0000{c{{n{e}}}{}{}}0000000{{}{{n{c}}}{}}0000000{bAf}0000000```````{{{b{{CGn{ce}}}}}{{CGl{ce}}}{}AIb}{{{b{{CGl{ce}}}}}{{b{{CG`{ce}}}}}{}AIb}{{{b{{CGn{ce}}}}}{{b{{CG`{ce}}}}}{}AIb}{{{b{{CGl{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{{CGn{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{d{CGn{ce}}}}}{{Bf{{b{dc}}}}}{}AIb}{b{{b{c}}}{}}00000{{{b{d}}}{{b{dc}}}{}}00000{{{b{{CKl{c}}}}}{{CKl{c}}}{}}{{{b{{CGl{ce}}}}}{{CGl{ce}}}{}AIb}{{{b{{CKn{ce}}}}}{{CKn{ce}}}AAn{AAnAIb}}{{b{b{dc}}}On{}}00{bOn}0097{{}{{CKl{c}}}{}}{{}{{CKj{c}}}{}}{{}{{CKn{c}}}{}}{{{b{{CKl{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CKj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CGl{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{CGn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{CIj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{dc}}}{{A@h{Aj}}}}}}{{{b{{CKn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{cc{}}00000{{{b{{CGl{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{{CGn{ce}}}}}{{Bf{{b{c}}}}}{}AIb}{{{b{d{CGn{ce}}}}}{{Bf{{b{dc}}}}}{}AIb}{{{b{{CGl{ce}}}}}{{Bf{Al}}}{}AIb}{{{b{{CGn{ce}}}}}{{Bf{Al}}}{}AIb}{{{b{d{CGn{ce}}}}c}On{}AIb}0{{}c{}}000000000{{{CKl{c}}}{{Bf{{b{c}}}}}{}}{{{CKj{c}}}{{Bf{{b{dc}}}}}{}}{{{b{d{CGl{ce}}}}}On{}AIb}{{{b{d{CGn{ce}}}}}On{}AIb}10{{{b{d{CKl{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CKj{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{CIj{ceg}}}}}{{Bf{c}}}{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}AIb}{{{b{d{CKn{ce}}}}}{{Bf{c}}}{}AIb}320><><{{{b{d{CGn{ce}}}}}{{Bf{c}}}{}AIb}0::0{{{b{d{CGn{ce}}}}}{{Bf{{CG`{ce}}}}}{}{AAnAIb}}{{{b{{CKl{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CKj{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CIj{ceg}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}AIb}{{{b{{CKn{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}AIb}{{{b{d{CGn{c}}}}{CG`{c}}}On{}}0{{{b{d{CGn{ce}}}}}{{CG`{ce}}}{}{AAnAIb}}0{bc{}}00{c{{n{e}}}{}{}}00000{{}{{n{c}}}{}}00000{bAf}00000`````{{{b{d{CL`{c}}}}Al}{{n{On{A@`{Al}}}}}{}}{{{b{d{CLb{c}}}}Al}{{n{On{A@`{Al}}}}}{}}{{{b{d{CLd{ce}}}}Al}{{n{On{A@`{Al}}}}}{}AIb}210{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000{{{b{{CLb{c}}}}}{{CLb{c}}}{}}{{{b{{CLd{ce}}}}}{{CLd{ce}}}AAn{AAnAIb}}{{b{b{dc}}}On{}}0{bOn}0{{{CLd{ce}}}Al{}AIb}{{}{{CL`{c}}}{}}{{}{{CLb{c}}}{}}{{{b{d{CHj{ce}}}}}On{}AIb}{{{b{{CHj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{CL`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CLb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CLd{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{CL`{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CLb{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CLd{ce}}gi}g{}AIb{}{{A@j{g}{{A@h{g}}}}}}{cc{}}000{{}c{}}0000000{{{b{{CL`{c}}}}}Aj{}}{{{b{{CLb{c}}}}}Aj{}}{{{b{{CLd{ce}}}}}Aj{}AIb}{{{CL`{c}}}{{Bf{{b{dc}}}}}{}}{{{CLb{c}}}{{Bf{{b{c}}}}}{}}{{{CLd{ce}}}Bf{}AIb}{{{b{{CL`{c}}}}}Al{}}{{{b{{CLb{c}}}}}Al{}}{{{b{d{CHj{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{CL`{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{CLb{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CLd{ce}}}}}{{Bf{c}}}{}AIb}3210{{{b{d{CLd{ce}}}}}{{n{DbAFd}}}{}AIb}{{{CL`{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CLb{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CLd{ce}}gi}g{}AIb{}{{A@j{g}{{A@h{g}}}}}}{{{b{{CHj{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}AIb}{{{b{{CL`{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CLb{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CLd{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}AIb}{bc{}}0{{{b{d{CL`{c}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{CLb{c}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{CLd{ce}}}}gk}i{}AIb{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000432{bAf}000``````````{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{C@`}}}C@`}{{b{b{dc}}}On{}}{bOn}{{{b{C@`}}{b{C@`}}}ABh}{{{b{C@`}}}{{b{AKb}}}}{{{b{C@`}}{b{C@`}}}Aj}{{{b{C@`}}{b{dAb}}}{{n{OnADb}}}}0{cADf{}}{AIhc{}}{AIhC@`}{cc{}}{{{b{C@`}}{b{dc}}}OnBBj}1{AEbc{}}{{}c{}}{{{b{C@`}}{b{C@`}}}{{Bf{ABh}}}}{C@`D@n}{bc{}}{bA`}{c{{n{{AHh{}{{AHf{e}}}}e}}}{}{}}{c{{n{e}}}{}{}}{{{AHj{}{{AHf{c}}}}}{{n{ec}}}{}{}}{{}{{n{c}}}{}}{bAf}``{{}AFf}`````````{{}DA`}{{}DAb}{b{{b{c}}}{}}000000{{{b{d}}}{{b{dc}}}{}}000000{{{b{DAd}}}DAd}{{b{b{dc}}}On{}}{bOn}`{{}{{n{CAdCBf}}}}0{{{b{DAd}}}{{b{AKb}}}}{{{b{DAf}}}{{b{AKb}}}}{{{b{DAd}}{b{DAd}}}Aj}{{{b{DAh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DAj}}{b{dAb}}}{{n{OnADb}}}}{{{b{DAl}}{b{dAb}}}{{n{OnADb}}}}{{{b{DA`}}{b{dAb}}}{{n{OnADb}}}}{{{b{DAb}}{b{dAb}}}{{n{OnADb}}}}{{{b{DAd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DAf}}{b{dAb}}}{{n{OnADb}}}}0{cc{}}000000{{}{{Bf{CAd}}}}{{}c{}}00000000000{{{b{DA`}}}Aj}{{{b{DAb}}}Aj}{e{{n{CAfDAf}}}{{AA`{CA`}}}{{AAj{}{{A@b{c}}}}}}{{{b{DA`}}}Al}{{{b{DAb}}}Al}{{{b{dDAh}}}{{Bf{{Bb{A`A`}}}}}}{{{b{dDAj}}}{{Bf{{Bb{CAfCAf}}}}}}{{{b{dDAl}}}{{Bf{CAd}}}}{{{b{dDA`}}}{{Bf{A`}}}}{{{b{dDAb}}}{{Bf{CAf}}}}10{cOn{{AA`{CA`}}}}{c{{n{OnCBf}}}{{AA`{CAb}}}}{{ce}On{{AA`{CA`}}}{{AA`{CA`}}}}{{{b{DAh}}}{{Bb{Al{Bf{Al}}}}}}{{{b{DAj}}}{{Bb{Al{Bf{Al}}}}}}{{{b{DAl}}}{{Bb{Al{Bf{Al}}}}}}{{{b{DA`}}}{{Bb{Al{Bf{Al}}}}}}{{{b{DAb}}}{{Bb{Al{Bf{Al}}}}}}{{{b{c}}}DAl{{AA`{CA`}}A@f}}{{}CAd}{bc{}}{bA`}0{c{{n{e}}}{}{}}000000{{}{{n{c}}}{}}000000{bAf}000000{c{{n{A`DAd}}}{{AA`{CA`}}}}{c{{Bf{CAf}}}{{AA`{CA`}}}}{{}DAh}{{}DAj}```````````{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{{b{BA`}}}{{Bf{{b{BA`}}}}}}{{{b{BA`}}}{{b{AKb}}}}{{{AL`{BA`}}}{{n{{AL`{c}}{AL`{BA`}}}}}BA`}00{{{b{dBA`}}}{{Bf{{b{dc}}}}}BA`}00{{{b{BA`}}}{{Bf{{b{c}}}}}BA`}00{{{b{{DAn{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{DAn{c}}}}{b{dAb}}}{{n{OnADb}}}BA`}{{{b{BAd}}{b{dAb}}}{{n{OnADb}}}}{AIhc{}}{cc{}}{c{{DAn{c}}}BA`}{{}c{}}{{{b{BA`}}}Aj}00{c{{DAn{c}}}{}}{{{DAn{c}}Aj}{{DAn{c}}}{}}{{{b{BA`}}{b{dBAd}}}On}{{{b{dBAd}}{b{c}}}{{b{dBAd}}}A@f}{{{b{dBAd}}e}{{b{dBAd}}}A@f{{AAf{}{{A@h{{b{c}}}}}}}}{{{b{dBAd}}c}{{b{dBAd}}}{}}{{{b{dBAd}}e}{{b{dBAd}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{c}}}{{Bf{{b{e}}}}}{BA`A@f}A@f}{{{b{c}}}{{Bf{e}}}{BA`A@f}{}}7{{{b{BA`}}}{{Bf{{b{BA`}}}}}}{{{b{BA`}}}BAb}{bA`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{bAf}0{{{b{BAd}}}Aj}0```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{b{dDB`}}}cDBb}{{{b{CA`}}}{{b{{h{f}}}}}}{{{b{CAh}}}{{b{{h{f}}}}}}{{{b{DBd}}}{{b{{h{f}}}}}}1{{{b{CAh}}}{{b{CAj}}}}3{{{b{CAf}}}{{b{CA`}}}}{{{b{CAj}}}Fl}1{{{b{CAf}}}{{b{CAb}}}}{{{b{CA`}}}{{b{CA`}}}}{{{b{CA`}}}{{b{CAb}}}}5{{{b{CAj}}}{{b{CAj}}}}{{{b{dDB`}}}DBf}{b{{b{c}}}{}}7000800000000{{{b{d}}}{{b{dc}}}{}}00000000000{{{b{CAj}}}BAf}```````````````{{{b{CAf}}}Al}{{{b{dCAf}}}On}{{{b{CAf}}}CAf}{{{b{CAh}}}CAh}{{{b{DBh}}}DBh}{{{b{DBd}}}DBd}{{{b{DBj}}}DBj}{{{b{DBl}}}DBl}{{{b{DBn}}}DBn}{{{b{DB`}}}DB`}{{{b{dCAf}}{b{CAf}}}On}{{b{b{dc}}}On{}}{{{b{CA`}}{b{dCAf}}}On}1111{{{b{CAj}}{b{dCAh}}}On}222{bOn}{{{b{CA`}}CA`}On}1111{{{b{CAj}}CAj}On}222{{{b{CAf}}{b{CAf}}}ABh}{{{b{CA`}}{b{CA`}}}ABh}{{{b{CAh}}{b{CAh}}}ABh}{{{b{CAj}}{b{CAj}}}ABh}{{{b{CAj}}}Al}{{}CAf}{{}{{b{CA`}}}}{{}CAh}{{}{{b{CAj}}}}{{{b{CAf}}}{{b{CA`}}}}{{{b{CAh}}}{{b{CAj}}}}{{{b{DBf}}}{{b{DB`}}}}{{{b{dCAf}}}{{b{dCA`}}}}{{{b{dDBf}}}{{b{dDB`}}}}{{{b{DBh}}}{{b{AKb}}}}{{{b{DBj}}}{{b{AKb}}}}{{{b{DBl}}}{{b{AKb}}}}{{{b{CA`}}}DC`}{{{b{dCAh}}}On}{{{b{dDB`}}}On}{{{b{CAf}}{b{{C@n{CA`}}}}}Aj}{{{b{CAf}}{b{CA`}}}Aj}{{{b{CAf}}{b{CAf}}}Aj}{{{b{CAf}}{b{{b{CA`}}}}}Aj}{{{b{CAf}}{b{AKb}}}Aj}{{{b{CAf}}{b{{b{AKb}}}}}Aj}{{{b{CAf}}{b{{C@n{CAb}}}}}Aj}{{{b{CAf}}{b{{b{CAb}}}}}Aj}{{{b{CAf}}{b{CAb}}}Aj}{{{b{CAf}}{b{CAd}}}Aj}{{{b{CA`}}{b{{C@n{CA`}}}}}Aj}{{{b{{b{CA`}}}}{b{{C@n{CAb}}}}}Aj}{{{b{{b{CA`}}}}{b{CAf}}}Aj}{{{b{CA`}}{b{AKb}}}Aj}{{{b{{b{CA`}}}}{b{{C@n{CA`}}}}}Aj}{{{b{CA`}}{b{CAf}}}Aj}{{{b{CA`}}{b{CAb}}}Aj}{{{b{{b{CA`}}}}{b{CAb}}}Aj}{{{b{{b{CA`}}}}{b{CAd}}}Aj}{{{b{CA`}}{b{{b{CAb}}}}}Aj}{{{b{CA`}}{b{CA`}}}Aj}{{{b{CA`}}{b{{C@n{CAb}}}}}Aj}{{{b{CA`}}{b{CAd}}}Aj}{{{b{CAh}}{b{CAh}}}Aj}{{{b{DBh}}{b{DBh}}}Aj}{{{b{DBd}}{b{DBd}}}Aj}{{{b{DBj}}{b{DBj}}}Aj}{{{b{CAj}}{b{CAj}}}Aj}{{{b{DBl}}{b{DBl}}}Aj}{{{b{DBn}}{b{DBn}}}Aj}{{{b{CA`}}c}Aj{{AA`{CA`}}}}{{{b{dCAf}}c}On{{AAj{}{{A@b{{C@n{CA`}}}}}}}}{{{b{dCAf}}c}On{{AAj{}{{A@b{{b{CA`}}}}}}}}{{{b{dCAf}}c}On{{AAj{}{{A@b{CAf}}}}}}{{{b{CAf}}{b{dAb}}}{{n{OnADb}}}}{{{b{CA`}}{b{dAb}}}{{n{OnADb}}}}{{{b{DCb}}{b{dAb}}}{{n{OnADb}}}}{{{b{CAh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DBh}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DBd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DBj}}{b{dAb}}}{{n{OnADb}}}}0{{{b{CAj}}{b{dAb}}}{{n{OnADb}}}}{{{b{DBl}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DBn}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DB`}}{b{dAb}}}{{n{OnADb}}}}{{{b{DBf}}{b{dAb}}}{{n{OnADb}}}}{cc{}}{{{C@n{CA`}}}CAf}{{{AL`{CA`}}}CAf}{{{b{c}}}CAf{{AA`{CA`}}A@f}}{A`CAf}{CAdCAf}5{{{b{CAj}}}CAh}{{{AL`{CAj}}}CAh}7{{{j{{A@`{f}}}}}CAh}{{{C@n{CAj}}}CAh}9999999{{{b{{h{f}}}}}{{b{CA`}}}}{{{b{{h{f}}}}}{{n{{b{CAj}}DBn}}}}{{{b{{h{f}}}}}{{n{{b{CAj}}DBl}}}}{{{b{{h{f}}}}}{{b{CAj}}}}{{{j{f}}}CAf}4{cCAf{{AAj{}{{A@b{{b{CA`}}}}}}}}{cCAf{{AAj{}{{A@b{CAf}}}}}}{cCAf{{AAj{}{{A@b{{C@n{CA`}}}}}}}}{Fl{{b{CAj}}}}{FlCAh}{{{b{AKb}}}{{n{CAf}}}}6{{{j{f}}}CAh}{{{j{f}}}{{n{CAhDBd}}}}1{{{b{CAf}}{b{CAf}}}Aj}{{{b{CA`}}{b{CA`}}}Aj}10{{{b{CAf}}{b{dc}}}OnBBj}{{{b{CA`}}{b{dc}}}OnBBj}{{{b{CAh}}{b{dc}}}OnBBj}{{{b{CAj}}{b{dc}}}OnBBj}{{{b{CAf}}DCd}{{b{CA`}}}}{{{b{CAh}}DCd}{{b{CAj}}}}{{{b{CAj}}{BL`{Al}}}{{b{CAj}}}}{{{b{dCAf}}DCd}{{b{dCA`}}}}{{}c{}}000000000{CAh{{AL`{CAj}}}}{CAf{{AL`{CA`}}}}{CAh{{j{f}}}}{DBd{{j{f}}}}1{{{AL`{CAj}}}CAh}{DBjCAh}{CAf{{j{f}}}}{{{AL`{CA`}}}CAf}{CAhFl}{CAf{{n{A`CAf}}}}{CAh{{n{A`DBj}}}}4{DBh{{j{f}}}}{{{b{CA`}}}Aj}0{{{b{CAj}}}Aj}{{{b{CAf}}{b{CAf}}}Aj}{{{b{CA`}}{b{CA`}}}Aj}{CAf{{b{dCA`}}}}{{{b{CA`}}}Al}32{{{b{dCA`}}}On}0{{}CAf}{{{b{c}}}{{b{CA`}}}{{AA`{CA`}}A@f}}{c{{n{CAhDBh}}}{{AEb{{j{f}}}}}}{{{b{DBh}}}Al}`{{{b{CAf}}{b{CAf}}}{{Bf{ABh}}}}{{{b{CAf}}{b{{b{CA`}}}}}{{Bf{ABh}}}}{{{b{CAf}}{b{{C@n{CA`}}}}}{{Bf{ABh}}}}{{{b{CAf}}{b{CAd}}}{{Bf{ABh}}}}{{{b{CAf}}{b{AKb}}}{{Bf{ABh}}}}{{{b{CAf}}{b{CAb}}}{{Bf{ABh}}}}{{{b{CAf}}{b{{b{CAb}}}}}{{Bf{ABh}}}}{{{b{CAf}}{b{{C@n{CAb}}}}}{{Bf{ABh}}}}{{{b{CAf}}{b{CA`}}}{{Bf{ABh}}}}{{{b{CA`}}{b{{C@n{CAb}}}}}{{Bf{ABh}}}}{{{b{CA`}}{b{CAd}}}{{Bf{ABh}}}}{{{b{CA`}}{b{AKb}}}{{Bf{ABh}}}}{{{b{CA`}}{b{CA`}}}{{Bf{ABh}}}}{{{b{CA`}}{b{CAb}}}{{Bf{ABh}}}}{{{b{CA`}}{b{{b{CAb}}}}}{{Bf{ABh}}}}{{{b{{b{CA`}}}}{b{CAf}}}{{Bf{ABh}}}}{{{b{{b{CA`}}}}{b{CAd}}}{{Bf{ABh}}}}{{{b{CA`}}{b{CAf}}}{{Bf{ABh}}}}{{{b{{b{CA`}}}}{b{{C@n{CAb}}}}}{{Bf{ABh}}}}{{{b{CA`}}{b{{C@n{CA`}}}}}{{Bf{ABh}}}}{{{b{{b{CA`}}}}{b{{C@n{CA`}}}}}{{Bf{ABh}}}}{{{b{{b{CA`}}}}{b{CAb}}}{{Bf{ABh}}}}{{{b{CAh}}{b{CAh}}}{{Bf{ABh}}}}{{{b{CAj}}{b{CAj}}}{{Bf{ABh}}}}{{{b{dCAf}}c}On{{AA`{CA`}}}}{{{b{dCAf}}Al}On}00{{{b{dCAf}}}On}{{{b{CA`}}c}{{b{CA`}}}{{AKn{Al}}}}{{{b{DBj}}}{{Bf{{b{BA`}}}}}}{{{b{CA`}}}CAf}0{{{b{CAj}}}{{b{{h{f}}}}}}01{bc{}}20000{{{b{CAj}}}CAh}111{{{b{CA`}}}{{Bf{{b{AKb}}}}}}{{{b{CAj}}}{{n{{b{AKb}}ALf}}}}{bA`}0000{{{b{CA`}}}{{C@n{AKb}}}}{{{b{CAj}}}{{C@n{AKb}}}}{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}000000000{{{b{dCAf}}Al}{{n{OnCGh}}}}0{bAf}00000000000{{{b{DBj}}}ALf}{AlCAf}{{{b{DB`}}e}c{}{{AAf{DBf}{{A@h{c}}}}}}{{{b{dCAf}}{b{AKb}}}{{n{OnADb}}}}``````````{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{DC`}}{b{dAb}}}{{n{OnADb}}}}0{cc{}}{{}c{}}?<;9```````````````````````````{{{b{Ab}}}{{Bf{DCf}}}}{{{b{Ab}}}Aj}{{{b{AJj}}}{{Bf{{b{AKb}}}}}}77777777776666666666{{{b{DCf}}}DCf}{{{b{ADb}}}ADb}{{{b{AJj}}}AJj}{{b{b{dc}}}On{}}00{bOn}00{{{b{ADb}}{b{ADb}}}ABh}{{{b{dAb}}}DCh}{{{b{dAb}}}DCj}{{{b{dAb}}}DCl}{{{b{dAb}}{b{AKb}}}DCn}{{{b{dAb}}{b{AKb}}}DD`}{{}ADb}{{{b{ADb}}}{{b{AKb}}}}{{{b{dDCl}}e}{{b{dDCl}}}AD`{{AAj{}{{A@b{c}}}}}}{{{b{dDCh}}e}{{b{dDCh}}}AD`{{AAj{}{{A@b{c}}}}}}{{{b{dDCj}}g}{{b{dDCj}}}AD`AD`{{AAj{}{{A@b{{Bb{ce}}}}}}}}{{{b{dDCl}}{b{AD`}}}{{b{dDCl}}}}{{{b{dDCh}}{b{AD`}}}{{b{dDCh}}}}{{{b{dDCj}}{b{AD`}}{b{AD`}}}{{b{dDCj}}}}{{{b{dDCl}}c}{{b{dDCl}}}{{AAf{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{dDCh}}c}{{b{dDCh}}}{{AAf{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{DCf}}{b{DCf}}}Aj}{{{b{ADb}}{b{ADb}}}Aj}{{{b{dDCn}}{b{AKb}}{b{AD`}}}{{b{dDCn}}}}{{{b{dDD`}}{b{AD`}}}{{b{dDD`}}}}{{{b{dDCn}}{b{AKb}}c}{{b{dDCn}}}{{AAf{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{dDD`}}c}{{b{dDD`}}}{{AAf{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{Ab}}}AK`}{{{b{dDCn}}}{{n{OnADb}}}}{{{b{dDD`}}}{{n{OnADb}}}}{{{b{dDCl}}}{{n{OnADb}}}}{{{b{dDCh}}}{{n{OnADb}}}}{{{b{dDCj}}}{{n{OnADb}}}}43210{{{b{Ab}}}Hd}{{{b{AD`}}{b{dAb}}}{{n{OnADb}}}}{{{b{ADd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AIl}}{b{dAb}}}{{n{OnADb}}}}{{{b{AIn}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJ`}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJb}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJd}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJf}}{b{dAb}}}{{n{OnADb}}}}{{{b{AJh}}{b{dAb}}}{{n{OnADb}}}}{{{b{{AJl{c}}}}{b{dAb}}}{{n{OnADb}}}{{AAb{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}0{{{b{DCf}}{b{dAb}}}{{n{OnADb}}}}{{{b{ADb}}{b{dAb}}}{{n{OnADb}}}}0{{{b{AJj}}{b{dAb}}}{{n{OnADb}}}}0{AJjA`}{cc{}}000000000{c{{AJl{c}}}{{AAb{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{ADb}}{b{dc}}}OnBBj}{{}c{}}000000000{{{b{dDCj}}{b{AD`}}}{{b{dDCj}}}}{{{b{dDCj}}c}{{b{dDCj}}}{{AAf{{b{dAb}}}{{A@h{{n{OnADb}}}}}}}}{{{b{dAb}}{b{AKb}}}{{n{OnADb}}}}{{{b{dAb}}Aj{b{AKb}}{b{AKb}}}{{n{OnADb}}}}{{{b{ADb}}{b{ADb}}}{{Bf{ABh}}}}{{{b{Ab}}}{{Bf{Al}}}}{{{b{Ab}}}Aj}00{bc{}}00{bA`}00{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}000000000{bAf}000000000;:6{{{b{dAJn}}AJj}{{n{OnADb}}}}{{{b{dAJn}}AK`}{{n{OnADb}}}}{{{b{dAb}}AK`}{{n{OnADb}}}}2{{{b{dAb}}AJj}{{n{OnADb}}}}0{{{b{dAJn}}{b{AKb}}}{{n{OnADb}}}}>>`````````{{{b{DDb}}}{{n{DDdCBf}}}}{{{b{dDDf}}Aj}{{b{dDDf}}}}{{{b{DDh}}}CAl}{{{b{DDh}}}F`}{{{b{DDb}}}{{b{DDj}}}}{{{b{DDb}}}Ff}0{{{b{DDb}}}Hj}0{b{{b{c}}}{}}00000000{{{b{d}}}{{b{dc}}}{}}00000000{c{{n{CAdCBf}}}{{AA`{CAb}}}}{{{b{DDb}}}DDb}{{{b{DDf}}}DDf}{{{b{DDl}}}DDl}{{{b{DDn}}}DDn}{{{b{DE`}}}DE`}{{b{b{dc}}}On{}}0000{bOn}0000{{ce}{{n{HjCBf}}}{{AA`{CAb}}}{{AA`{CAb}}}}{c{{n{DDhCBf}}}{{AA`{CAb}}}}{{{b{dDDf}}Aj}{{b{dDDf}}}}{{{b{DEb}}c}{{n{OnCBf}}}{{AA`{CAb}}}}{c{{n{OnCBf}}}{{AA`{CAb}}}}032{{{b{DDb}}}{{n{DDdCBf}}}}{{{b{DDb}}}Ff}0{{{b{dDDf}}F`}{{b{dDDf}}}}{{}DDl}{{{b{DDb}}}Hj}{{{b{DDn}}{b{DDn}}}Aj}{{{b{DE`}}{b{DE`}}}Aj}{c{{n{AjCBf}}}{{AA`{CAb}}}}{{{b{DEd}}}CAf}{{{b{DEd}}}{{b{CA`}}}}{{{b{DEd}}}{{n{DE`CBf}}}}{{{b{DDb}}}DE`}{{{b{dDDh}}}{{n{OnCBf}}}}{{{b{d{b{DDh}}}}}{{n{OnCBf}}}}{{{b{DDh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DEd}}{b{dAb}}}{{n{OnADb}}}}{{{b{DDb}}{b{dAb}}}{{n{OnADb}}}}{{{b{DEf}}{b{dAb}}}{{n{OnADb}}}}{{{b{DDf}}{b{dAb}}}{{n{OnADb}}}}{{{b{DDl}}{b{dAb}}}{{n{OnADb}}}}{{{b{DDn}}{b{dAb}}}{{n{OnADb}}}}{{{b{DE`}}{b{dAb}}}{{n{OnADb}}}}{{{b{DEb}}{b{dAb}}}{{n{OnADb}}}}{cc{}}{DEhDDh}11111111{HdDDn}{F`DDh}{{{b{DDb}}}Hd}{{ce}{{n{OnCBf}}}{{AA`{CAb}}}{{AA`{CAb}}}}{{{b{DE`}}{b{dc}}}OnBBj}{{{b{DEd}}}Hj}{{{b{DDb}}}Hj}{{}c{}}000000000{DDhF`}{{{b{DE`}}}Aj}0{{{b{DDb}}}Aj}1101{{{b{DDh}}}Aj}{{{b{{b{DDh}}}}}Aj}3231016{c{{n{DDbCBf}}}{{AA`{CAb}}}}{{{b{DDh}}}{{n{DDbCBf}}}}{{{b{DEd}}}{{n{DDbCBf}}}}={{{b{dDDf}}Hd}{{b{dDDf}}}}{{{b{DDn}}}Hd}{{{b{dDEb}}Hd}{{b{dDEb}}}}{{{b{DDb}}}{{n{DDdCBf}}}}{{{b{DDb}}}Ff}0{{}DDf}{{}DDl}{{}DEb}{{{b{dDEf}}}{{Bf{{n{DEdCBf}}}}}}{{{b{DDb}}}Hj}{c{{n{DDhCBf}}}{{AA`{CAb}}}}{{{b{DDf}}c}{{n{DDhCBf}}}{{AA`{CAb}}}}6{{{b{DEd}}}CAd}{{{b{DDb}}}DDn}4{c{{n{{j{f}}CBf}}}{{AA`{CAb}}}}{{{b{dDDh}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DDh}}}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDDf}}Aj}{{b{dDDf}}}}{{{b{DDh}}{b{d{h{f}}}}Hj}{{n{AlCBf}}}}{{{b{d{b{DDh}}}}CCf}{{n{OnCBf}}}}{{{b{dDDh}}CCf}{{n{OnCBf}}}}{c{{n{DEfCBf}}}{{AA`{CAb}}}}{c{{n{CAdCBf}}}{{AA`{CAb}}}}{{{b{d{b{DDh}}}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dDDh}}{b{d{j{f}}}}}{{n{AlCBf}}}}{c{{n{A`CBf}}}{{AA`{CAb}}}}{{{b{d{b{DDh}}}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dDDh}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dDDh}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{d{b{DDh}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{DDh}}{b{d{h{CCh}}}}Hj}{{n{AlCBf}}}}{{{b{DDn}}}Aj}{{{b{dDEb}}Aj}{{b{dDEb}}}}{c{{n{OnCBf}}}{{AA`{CAb}}}}00{{ce}{{n{OnCBf}}}{{AA`{CAb}}}{{AA`{CAb}}}}{{{b{dDDh}}CCj}{{n{HjCBf}}}}{{{b{d{b{DDh}}}}CCj}{{n{HjCBf}}}}{{DDlDDd}DDl}{{{b{DDh}}Hj}{{n{OnCBf}}}}{{{b{dDDn}}Hd}On}{{{b{DDh}}DDd}{{n{OnCBf}}}}3{{cDDn}{{n{OnCBf}}}{{AA`{CAb}}}}{{{b{DDh}}DDn}{{n{OnCBf}}}}{{{b{dDDn}}Aj}On}{{{b{DDh}}DDl}{{n{OnCBf}}}}{{{b{DDb}}}Hj};{{{b{DDb}}}Ff}011001{{{b{DDb}}}Hd}20112220{c{{n{DDbCBf}}}{{AA`{CAb}}}}{{{b{DDh}}}{{n{OnCBf}}}}0{bc{}}0000{{{b{dDDf}}Aj}{{b{dDDf}}}}{{{b{DDh}}}{{n{DDhCBf}}}}{c{{n{e}}}{}{}}00000000{{}{{n{c}}}{}}00000000{bAf}000000008{{ce}{{n{OnCBf}}}{{AA`{CAb}}}{{AA`{{h{f}}}}}}{{{b{d{b{DDh}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDDh}}{b{{h{f}}}}}{{n{AlCBf}}}}7{{{b{DDh}}{b{{h{f}}}}Hj}{{n{AlCBf}}}}{{{b{d{b{DDh}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dDDh}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{DDh}}{b{{h{CCn}}}}Hj}{{n{AlCBf}}}}```````````{c{{BAh{c}}}{}}{{{AFj{{b{d{BAl{}{{BAj{c}}}}}}}}}c{{AEh{}{{A@h{On}}}}}}{{}{{BAn{c}}}A@f}{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000{{{b{{BB`{c}}}}}{{BB`{c}}}{}}{{{b{{BBd{c}}}}}{{BBd{c}}}AAn}{{b{b{dc}}}On{}}0{bOn}0{{{b{{BAn{c}}}}{b{dAb}}}{{n{OnADb}}}A@f}{{{b{{BB`{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{BBb{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{BBd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{cc{}}000{{}c{}}000{{{AEf{}{{A@h{c}}{AEd{e}}}}}e{}{{AEh{}{{A@h{c}}}}}}{{}}000{{{BBd{c}}}c{}}`{{}{{BB`{c}}}{}}{{{AFj{{b{d{AEh{}{{A@h{c}}}}}}}}{b{dAFl}}}{{AFn{c}}}{}}{{{AFj{{b{d{BAn{c}}}}}}{b{dAFl}}}AFnA@f}{{{AFj{{b{d{BB`{c}}}}}}{b{dAFl}}}{{AFn{c}}}{}}{{{AFj{{b{d{BBb{e}}}}}}{b{dAFl}}}{{AFn{c}}}{}{{A@j{{b{dAFl}}}{{A@h{{AFn{c}}}}}}}}{{{AFj{{b{d{BBd{c}}}}}}{b{dAFl}}}{{AFn{c}}}{}}{e{{BBb{e}}}{}{{A@j{{b{dAFl}}}{{A@h{{AFn{c}}}}}}}}{c{{BBd{c}}}{}}{bc{}}0{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{bAf}000`````````{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000{{{b{{BBh{}{{BBf{c}}}}}}}cBBj}{{{b{DEj}}}DEl}{{{b{{DEn{c}}}}}c{AFfBBj}}{{{b{DEj}}}DEj}{{{b{DEl}}}DEl}{{{b{{DEn{c}}}}}{{DEn{c}}}{}}{{{b{DF`}}}DF`}{{b{b{dc}}}On{}}000{bOn}000{{}DEj}{{}DEl}{{}{{DEn{c}}}{}}{{}DF`}{{{b{{DEn{c}}}}{b{{DEn{c}}}}}Aj{}}{{{b{BBj}}}Hj}{{{b{DEl}}}Hj}{{{b{DF`}}}Hj}{{{b{DEj}}{b{dAb}}}{{n{OnADb}}}}{{{b{DEl}}{b{dAb}}}{{n{OnADb}}}}{{{b{{DEn{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{DF`}}{b{dAb}}}{{n{OnADb}}}}{cc{}}000{{{b{BBl}}{b{dc}}}OnBBj}{{{b{{BBh{}{{BBf{c}}}}}}e}HjBBjBBl}{{{b{{h{BBl}}}}{b{dc}}}OnBBj}{{}c{}}000{{}DEj}{{}DEl}{{}{{DEn{c}}}{}}{{}DF`}{{HjHj}DF`}{bc{}}000{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{bAf}000{{{b{dBBj}}{b{{h{f}}}}}On}{{{b{dDEl}}{b{{h{f}}}}}On}{{{b{dDF`}}{b{{h{f}}}}}On}{{{b{dBBj}}Ed}On}{{{b{dBBj}}Ej}On}{{{b{dBBj}}F`}On}{{{b{dBBj}}Ff}On}{{{b{dBBj}}Fl}On}{{{b{dBBj}}Gb}On}{{{b{dBBj}}Al}On}{{{b{dDEl}}{b{AKb}}}On}{{{b{dBBj}}{b{AKb}}}On}{{{b{dDF`}}{b{AKb}}}On}{{{b{dBBj}}Gh}On}{{{b{dBBj}}Gn}On}{{{b{dBBj}}Hd}On}{{{b{dBBj}}Hj}On}{{{b{dBBj}}f}On}8{AjOn}{cc{}}0{{}On}{{}AIh}````````````0{{cc}{{Bb{cAj}}}BBn}{{ce}g{}{}{{BCb{c}{{BC`{e}}}}}}{Gb}4446{ccBBn}00003333333333333333333333333333335555{{}cBBn}000111111111111111111116666{cOnBBn}0002222222222222222222222222222222872{{}{{b{BCd}}}}{{{BCf{f}{{A@h{On}}}}f{BCf{ff}{{A@h{On}}}}}F`}{BChBCh}{ANjANj}{DhDh}{DnDn}{{ffAl}F`}{{AlAl}f}{{fAlAl}On}{{cgi}eAAd{}{{AAf{c}{{A@h{e}}}}}{{AAf{c}{{A@h{e}}}}}}{AlOn}0{{BChBCh}BCh}{{ANjANj}ANj}{{DhDh}Dh}{{DnDn}Dn}<;:9{cHdBBn}0000{{{b{c}}}{}{}}{{}On}{{cc}cBBn}{BChBCh}{ANjANj}{DhDh}{DnDn}321032104444{ceBBnBBn}4321{{BChBChBCh}BCh}{{ANjANjANj}ANj}{{DhDhDh}Dh}{{DnDnDn}Dn}99{cOnA@f}::::{cAjBBn}{AjAj};:98;:98;:98{{BChBCh}BCh}{{ANjANj}ANj}{{DhDh}Dh}{{DnDn}Dn}{{}Al}04321`{{cc}{{Bb{cAj}}}BBn}{BChBCh}{ANjANj}{DhDh}{DnDn}{{}Aj}{cOn{}}{{ce}c{}{}}<;:9{{BChF`}BCh}{{ANjF`}ANj}{{DhF`}Dh}{{DnF`}Dn}<{F`On}000{{}f}{Al}{{}c{}}{{}Gb}{{}Al}{{{b{c}}{b{c}}}Aj{}}3{BChBCh}{ANjANj}{DhDh}{DnDn}{{cHd}cBBn}043214321{cc{}}{{cc}cBBn}0{{Ajcc}c{}}`7654997654{{cc}{{Bb{cAj}}}BBn}{{cc}ABhBBn}{ce{}{}}0:987{{}Gh}{{}{{b{AKb}}}}{{}On}{{}Aj}{{}c{}}{cOn{}}::::{{ce}cBBnBBn}0;{AjAj}{{}AIh}{{}Al}{AlOn}06{{fAl}On}6{OnAl}0{{cc}cBBn}0028`{AjOn}`{{OnBCjBCl}On}{ce{}{}}0{c{{Bb{cAj}}}{}}`{cc{}}={c{}{}}{{cBCjBCl}On{}}{{OnHd}c{}}{BCnBCn}`{cAl{}}5`{{ce}c{}{}}{{}}{cOn{}}{{}BCn}{BCnBCj}`{{cHd}On{}}{c{{b{c}}}{}};4443`{BCnBCl}{{}BCl}{{}On}{BD`BCl}`25{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000{cc{}}000{{}c{}}000``{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{bAf}000{{cc}c{}}0{{ce}c{}{}}{ce{}{}}0770077772{{cc}e{}{}}1{{cHd}e{}{}}99999999{{ccc}c{}}55::{{ceg}c{}{}{}}33{{cHde}c{}{}}44{{ceg}g{}{}{}}{{ceg}On{}{}{}}96>9{{ce}e{}{}}8{cAj{}}90991999;{cc{}}<<3{{cee}e{}{}}0=={{cce}g{}{}{}}>2<>```````````````````````````````````````````````````````````````````````````````{{{b{dCCh}}Al}On}{{{b{dCCn}}Al}On}{{{b{dCCf}}Al}{{b{dCCf}}}}{{{b{d{b{d{h{CCh}}}}}}Al}On}{{{b{d{b{d{h{CCn}}}}}}Al}On}2{{{b{dCCf}}{b{{h{f}}}}}On}{{{b{DFb}}}CAl}{{{b{DFd}}}CAl}{{{b{DFf}}}CAl}{{{b{DFh}}}CAl}{{{b{DFj}}}CAl}{{{b{DFl}}}CAl}{{{b{dCCf}}}{{b{d{h{{C@b{f}}}}}}}}{{{b{DFb}}}F`}{{{b{DFd}}}F`}{{{b{DFf}}}F`}{{{b{DFh}}}F`}{{{b{DFj}}}F`}{{{b{DFl}}}F`}{b{{b{c}}}{}}00000000000000000000000000{{{b{d}}}{{b{dc}}}{}}00000000000000000000000000{{{b{{DFn{c}}}}}{{b{{h{f}}}}}A@f}{{{b{{DG`{c}}}}}{{b{{h{f}}}}}{CBhA@f}}{{{b{dCCb}}}{{b{dCCb}}}}{{{b{dCBh}}}{{b{dCBh}}}}{CCb{{DGb{CCb}}}}{{{b{{DFn{c}}}}}AlA@f}{{{b{{DG`{c}}}}}Al{CBhA@f}}{{{b{DGd}}}Al}{{{b{CCf}}}Al}{{{b{CBf}}}{{Bf{{b{BA`}}}}}}{{CCbc}{{DGf{CCbc}}}CCb}{{{b{dDGd}}}{{b{dDGd}}}}{{{b{{DGh{c}}}}}{{DGh{c}}}AAn}{{{b{DGj}}}DGj}{{{b{DGl}}}DGl}{{{b{DGn}}}DGn}{{{b{CCn}}}CCn}{{{b{CCj}}}CCj}{{{b{d{DGh{c}}}}{b{{DGh{c}}}}}OnAAn}{{b{b{dc}}}On{}}00000{bOn}00000{{{b{DGj}}{b{DGj}}}ABh}{{{b{dCBb}}Al}On}{{{b{d{DFn{c}}}}Al}On{CCbA@f}}{{{b{dDFd}}Al}On}{{{b{d{DGh{c}}}}Al}On{{AA`{{h{f}}}}}}{{{b{dDGl}}Al}On}{{{b{d{DGf{ce}}}}Al}OnCBbCBb}{{{b{d{DH`{c}}}}Al}OnCBb}{{{b{dc}}{b{de}}}{{n{HjCBf}}}{CCbA@f}{CBhA@f}}{{}{{DGh{c}}}AFf}{{}DGl}{{}DGn}{{{b{CCh}}}{{b{{h{f}}}}}}{{{b{CCn}}}{{b{{h{f}}}}}}{{{b{dCCh}}}{{b{d{h{f}}}}}}{{{b{DHb}}}{{b{AKb}}}}{{{b{CBf}}}{{b{AKb}}}}{{{b{{DHd{c}}}}}{{b{AKb}}}{BLnAD`}}{CBf{{n{cCBf}}}{BA`BLnBM`}}{{{b{d{DG`{c}}}}}On{CBhA@f}}9{{{b{dCCf}}}{{b{dCCf}}}}{{{b{{DGh{c}}}}{b{{DGh{c}}}}}AjACf}{{{b{DGj}}{b{DGj}}}Aj}{{{b{CCj}}{b{CCj}}}Aj}{{{b{{DHd{c}}}}}{{b{CBf}}}{}}{{{b{dCBb}}}{{n{{b{{h{f}}}}CBf}}}}{{{b{d{DFn{c}}}}}{{n{{b{{h{f}}}}CBf}}}{CCbA@f}}{{{b{dDFd}}}{{n{{b{{h{f}}}}CBf}}}}{{{b{d{DGh{c}}}}}{{n{{b{{h{f}}}}CBf}}}{{AA`{{h{f}}}}}}{{{b{dDGl}}}{{n{{b{{h{f}}}}CBf}}}}{{{b{d{DGf{ce}}}}}{{n{{b{{h{f}}}}CBf}}}CBbCBb}{{{b{d{DH`{c}}}}}{{n{{b{{h{f}}}}CBf}}}CBb}{{{b{DGd}}}{{b{{h{f}}}}}}{{{b{dDGd}}}{{b{d{h{f}}}}}}{{{b{dCBh}}}{{n{OnCBf}}}}{{{b{d{DG`{c}}}}}{{n{OnCBf}}}{CBhA@f}}{{{b{d{DHf{c}}}}}{{n{OnCBf}}}{CBhA@f}}{{{b{dDFf}}}{{n{OnCBf}}}}{{{b{d{b{DFf}}}}}{{n{OnCBf}}}}{{{b{dDFh}}}{{n{OnCBf}}}}{{{b{dDFj}}}{{n{OnCBf}}}}{{{b{d{b{DFj}}}}}{{n{OnCBf}}}}{{{b{dDFl}}}{{n{OnCBf}}}}{{{b{d{DGh{{j{fc}}}}}}}{{n{OnCBf}}}AIb}{{{b{d{DGh{{b{d{j{fc}}}}}}}}}{{n{OnCBf}}}AIb}{{{b{d{DGh{{Db{f}}}}}}}{{n{OnCBf}}}}{{{b{d{DGh{{b{d{h{f}}}}}}}}}{{n{OnCBf}}}}{{{b{d{DGh{{AL`{{h{f}}c}}}}}}}{{n{OnCBf}}}AIb}{{{b{dDGl}}}{{n{OnCBf}}}}{{{b{d{b{DGl}}}}}{{n{OnCBf}}}}{{{b{dDGn}}}{{n{OnCBf}}}}{{{b{d{b{DGn}}}}}{{n{OnCBf}}}}{{{b{dCCf}}}{{n{OnCBf}}}}{{{b{{DFn{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{DG`{c}}}}{b{dAb}}}{{n{OnADb}}}{CBhAD`A@f}}{{{b{DHb}}{b{dAb}}}{{n{OnADb}}}}0{{{b{{DHf{c}}}}{b{dAb}}}{{n{OnADb}}}{CBhAD`A@f}}{{{b{CBf}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DFb}}{b{dAb}}}{{n{OnADb}}}}{{{b{DFd}}{b{dAb}}}{{n{OnADb}}}}{{{b{DFf}}{b{dAb}}}{{n{OnADb}}}}{{{b{DFh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DFj}}{b{dAb}}}{{n{OnADb}}}}{{{b{DFl}}{b{dAb}}}{{n{OnADb}}}}{{{b{DHh}}{b{dAb}}}{{n{OnADb}}}}{{{b{CCh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DGd}}{b{dAb}}}{{n{OnADb}}}}{{{b{{DHd{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{DHd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DGh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{DGj}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DGl}}{b{dAb}}}{{n{OnADb}}}}{{{b{DGn}}{b{dAb}}}{{n{OnADb}}}}{{{b{CCn}}{b{dAb}}}{{n{OnADb}}}}{{{b{CCj}}{b{dAb}}}{{n{OnADb}}}}{{{b{{DGf{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{DH`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DGb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DHj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DHl{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{CCf}}{b{dAb}}}{{n{OnADb}}}}{cc{}}000{{{DHd{c}}}CBf{}}{DBhCBf}2{CGhCBf}{DGjCBf}44444444{{{b{d{h{{C@b{f}}}}}}}DGd}5{{{b{d{h{f}}}}}DGd}6666666666666{F`CBf}{{{b{d{DFn{c}}}}}{{b{dc}}}A@f}{{{b{d{DG`{c}}}}}{{b{dc}}}{CBhA@f}}{{{b{d{DHf{c}}}}}{{b{dc}}}CBh}{{{b{dCBf}}}{{Bf{{b{dBA`}}}}}}{{{b{d{DGh{c}}}}}{{b{dc}}}{}}{{{b{d{DGf{ce}}}}}{{Bb{{b{dc}}{b{de}}}}}{}{}}{{{b{d{DH`{c}}}}}{{b{dc}}}{}}{{{b{{DFn{c}}}}}{{b{c}}}A@f}{{{b{{DG`{c}}}}}{{b{c}}}{CBhA@f}}{{{b{{DHf{c}}}}}{{b{c}}}{CBhA@f}}{{{b{CBf}}}{{Bf{{b{BA`}}}}}}{{{b{{DGh{c}}}}}{{b{c}}}{}}{{{b{{DGf{ce}}}}}{{Bb{{b{c}}{b{e}}}}}{}{}}{{{b{{DH`{c}}}}}{{b{c}}}{}}{{{b{dCBb}}}{{n{AjCBf}}}}{{{b{DGj}}{b{dc}}}OnBBj}{{{b{DGd}}}Al}{{{b{dCCf}}}{{b{d{h{f}}}}}}{{{b{CCf}}}{{b{{h{f}}}}}}{{}c{}}00000000000000000000000000{{{DHd{c}}}CBf{}}{{{DFn{c}}}cA@f}{{{DG`{c}}}{{n{c{DHd{{DG`{c}}}}}}}CBh}{DHb{{j{f}}}}{{{DHf{c}}}{{n{c{DHd{{DHf{c}}}}}}}CBh}{CBf{{Bf{{AL`{BA`}}}}}}{{{DHd{c}}}c{}}{{{DGh{c}}}c{}}{{{DGf{ce}}}{{Bb{ce}}}{}{}}{{{DH`{c}}}c{}}:::{{{DG`{c}}}{{Bb{c{n{{j{f}}DHb}}}}}CBh}{{{DHd{c}}}{{Bb{CBfc}}}{}}{{{b{{DFn{c}}}}}Aj{CCbA@f}}{{{b{DFb}}}Aj}{{{b{{b{DFb}}}}}Aj}{{{b{DFd}}}Aj}{{{b{DHh}}}Aj}{{{b{CCb}}}Aj}{{{b{{DGh{c}}}}}Aj{{AA`{{h{f}}}}}}{{{b{{DGf{ce}}}}}AjCCbCCb}{{{b{DHn}}}Aj}75{{{b{DFf}}}Aj}{{{b{DFh}}}Aj}{{{b{DFj}}}Aj}{{{b{DFl}}}Aj}{{{b{{DG`{c}}}}}Aj{CBhA@f}}{{{b{{DHf{c}}}}}Aj{CBhA@f}}5{{{b{{b{DFf}}}}}Aj}5{{{b{{b{DFj}}}}}Aj}54{{{b{CBh}}}Aj}{{{b{{DGh{{b{d{j{fc}}}}}}}}}AjAIb}{{{b{{DGh{{Db{f}}}}}}}Aj}{{{b{{DGh{{AL`{{h{f}}c}}}}}}}AjAIb}{{{b{{DGh{{j{fc}}}}}}}AjAIb}{{{b{{DGh{{b{d{h{f}}}}}}}}}Aj}{{{b{DGl}}}Aj}{{{b{{b{DGl}}}}}Aj}{{{b{DGn}}}Aj}{{{b{{b{DGn}}}}}Aj}{{{b{CBf}}}DGj}{{}CBf}{{{b{DGd}}}Al}{{{b{{DH`{c}}}}}Hj{}}{DFb{{DHl{DFd}}}}{CBb{{DHl{CBb}}}}{{{b{DFb}}}DFd}{{{b{DFf}}}DFh}{{{b{DFj}}}DFl}{c{{DFn{c}}}CCb}{c{{DG`{c}}}CBh}{c{{DHf{c}}}CBh}{{DGjc}CBf{{AEb{{AL`{BA`}}}}}}{{{b{d{h{f}}}}}CCh}{c{{DGh{c}}}{}}{{{b{{h{f}}}}}CCn}{{{b{d{DGb{c}}}}}{{Bf{{n{fCBf}}}}}CCb}{{{b{d{DHj{c}}}}}{{Bf{{n{{j{f}}CBf}}}}}CBb}{{{b{d{DHl{c}}}}}{{Bf{{n{A`CBf}}}}}CBb}{cCBf{{AEb{{AL`{BA`}}}}}}{{{b{DGj}}{b{DGj}}}{{Bf{ABh}}}}{{{b{d{DFn{c}}}}Al}{{n{{b{{h{f}}}}CBf}}}{CCbA@f}}{{{b{{DGh{c}}}}}Hj{}}`{{{b{CBf}}}{{Bf{F`}}}}{{{b{dCCb}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DFn{c}}}}{b{d{h{f}}}}}{{n{AlCBf}}}{CCbA@f}}{{{b{d{b{DFb}}}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDFb}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDFd}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDHh}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DGh{c}}}}{b{d{h{f}}}}}{{n{AlCBf}}}{{AA`{{h{f}}}}}}{{{b{dDGl}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DGf{ce}}}}{b{d{h{f}}}}}{{n{AlCBf}}}CCbCCb}{{{b{d{DH`{c}}}}{b{d{h{f}}}}}{{n{AlCBf}}}CCb}{{{b{d{DFn{c}}}}CCf}{{n{OnCBf}}}{CCbA@f}}{{{b{d{b{DFb}}}}CCf}{{n{OnCBf}}}}{{{b{dDFb}}CCf}{{n{OnCBf}}}}{{{b{dDFd}}CCf}{{n{OnCBf}}}}{{{b{dDHh}}CCf}{{n{OnCBf}}}}{{{b{dCCb}}CCf}{{n{OnCBf}}}}{{{b{d{DGh{c}}}}CCf}{{n{OnCBf}}}{{AA`{{h{f}}}}}}{{{b{dDGl}}CCf}{{n{OnCBf}}}}{{{b{d{DGf{ce}}}}CCf}{{n{OnCBf}}}CCbCCb}{{{b{d{DH`{c}}}}CCf}{{n{OnCBf}}}CCb}987643{{{b{d{DFn{c}}}}{b{d{h{f}}}}}{{n{OnCBf}}}{CCbA@f}}{{{b{d{b{DFb}}}}{b{d{h{f}}}}}{{n{OnCBf}}}}{{{b{dDFb}}{b{d{h{f}}}}}{{n{OnCBf}}}}{{{b{dDFd}}{b{d{h{f}}}}}{{n{OnCBf}}}}{{{b{dCCb}}{b{d{h{f}}}}}{{n{OnCBf}}}}{{{b{d{DGh{c}}}}{b{d{h{f}}}}}{{n{OnCBf}}}{{AA`{{h{f}}}}}}{{{b{DFb}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dDFd}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dCBb}}{b{dA`}}}{{n{AlCBf}}}}{{{b{d{DFn{c}}}}{b{d{j{f}}}}}{{n{AlCBf}}}{CCbA@f}}{{{b{d{b{DFb}}}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dDFb}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dDFd}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dDHh}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dCCb}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{d{DGh{c}}}}{b{d{j{f}}}}}{{n{AlCBf}}}{{AA`{{h{f}}}}}}{{{b{d{DGf{ce}}}}{b{d{j{f}}}}}{{n{AlCBf}}}CCbCCb}{c{{n{A`CBf}}}CCb}{{{b{d{DFn{c}}}}{b{dA`}}}{{n{AlCBf}}}{CCbA@f}}{{{b{d{b{DFb}}}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dDFb}}{b{dA`}}}{{n{AlCBf}}}}={{{b{dDHh}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dCCb}}{b{dA`}}}{{n{AlCBf}}}}{{{b{d{DGh{c}}}}{b{dA`}}}{{n{AlCBf}}}{{AA`{{h{f}}}}}}{{{b{dDFd}}f{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dCBb}}f{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{d{DGf{ce}}}}f{b{d{j{f}}}}}{{n{AlCBf}}}CBbCBb}{{{b{d{DFn{c}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}{CCbA@f}}{{{b{d{b{DFb}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{dDFb}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{dDFd}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{dDHh}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{dCCb}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{d{DGh{c}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}{{AA`{{h{f}}}}}}{{{b{d{DGf{ce}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}CCbCCb}{{{b{dCCf}}}CCf}{fDHh}{{{b{dCCl}}}{{n{OnCBf}}}}{{{b{dCCl}}CCj}{{n{HjCBf}}}}{{{b{d{DFn{c}}}}CCj}{{n{HjCBf}}}{CClA@f}}{{{b{d{DG`{c}}}}CCj}{{n{HjCBf}}}{CBhCClA@f}}{{{b{d{DGh{c}}}}CCj}{{n{HjCBf}}}{{AA`{{h{f}}}}}}{{{b{dDGl}}CCj}{{n{HjCBf}}}}{{{b{d{DFn{c}}}}Ff}{{n{OnCBf}}}{CClA@f}}0{{{b{dCCl}}Ff}{{n{OnCBf}}}}{{{b{dDGd}}Al}{{b{dDGd}}}}{{{b{dCCf}}Al}{{b{dCCf}}}}{{{b{d{DH`{c}}}}Hj}On{}}{{{b{d{DGh{c}}}}Hj}On{}}{{}DGn}{{{b{{DGb{c}}}}}{{Bb{Al{Bf{Al}}}}}CCb}{{{b{dCBb}}f}{{n{AlCBf}}}}{{{b{CBf}}}{{Bf{{b{BA`}}}}}}{{CBbf}{{DHj{CBb}}}}{{{b{{DGh{c}}}}}{{Bb{{b{{h{f}}}}{b{{h{f}}}}}}}{{AA`{{h{f}}}}}}{{{b{d{DGh{c}}}}}{{Bb{{b{d{h{f}}}}{b{d{h{f}}}}}}}{{A@n{{h{f}}}}}}{{}DFj}{{}DFb}{{}DFf}{{{b{dCCl}}}{{n{HjCBf}}}}{{{b{d{DGh{c}}}}}{{n{HjCBf}}}{{AA`{{h{f}}}}}}{{{b{dDGl}}}{{n{HjCBf}}}}{{{b{d{DFn{c}}}}}{{n{HjCBf}}}{CClA@f}}321{{CCbHj}{{DH`{CCb}}}}{bc{}}00000{bA`}000{c{{n{e}}}{}{}}00000000000000000000000000{{}{{n{c}}}{}}00000000000000000000000000{bAf}00000000000000000000000000{{{b{dDGd}}}CCf}{{{b{dCCf}}}{{b{d{h{{C@b{f}}}}}}}}{{Alc}{{DFn{c}}}CCb}{{Alc}{{DG`{c}}}CBh}{{Alc}{{DHf{c}}}CBh}{{{b{dCBh}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DG`{c}}}}{b{{h{f}}}}}{{n{AlCBf}}}{CBhA@f}}{{{b{d{DHf{c}}}}{b{{h{f}}}}}{{n{AlCBf}}}{CBhA@f}}{{{b{d{b{DFf}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDFf}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDFh}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DFj}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDFj}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDFl}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DGh{{b{d{j{fc}}}}}}}}{b{{h{f}}}}}{{n{AlCBf}}}AIb}{{{b{d{DGh{{b{d{h{f}}}}}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DGh{{j{fc}}}}}}{b{{h{f}}}}}{{n{AlCBf}}}AIb}{{{b{d{DGh{{Db{f}}}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DGh{{AL`{{h{f}}c}}}}}}{b{{h{f}}}}}{{n{AlCBf}}}AIb}{{{b{d{b{DGl}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDGl}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DGn}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDGn}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dCCf}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{DG`{c}}}}{b{{h{f}}}}}{{n{OnCBf}}}{CBhA@f}}{{{b{d{DHf{c}}}}{b{{h{f}}}}}{{n{OnCBf}}}{CBhA@f}}{{{b{d{b{DFf}}}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{dDFf}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{dDFh}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{d{b{DFj}}}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{dDFj}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{dDFl}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{dCBh}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{d{DHf{c}}}}{b{d{h{CCn}}}}}{{n{OnCBf}}}{CBhA@f}}{{{b{dDFf}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{d{b{DFf}}}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{dDFh}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{dDFj}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{d{b{DFj}}}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{dDFl}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{dCBh}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{d{DHf{c}}}}AJj}{{n{OnCBf}}}{CBhA@f}}{{{b{d{b{DFf}}}}AJj}{{n{OnCBf}}}}{{{b{dDFf}}AJj}{{n{OnCBf}}}}{{{b{d{b{DFj}}}}AJj}{{n{OnCBf}}}}{{{b{dDFj}}AJj}{{n{OnCBf}}}}{{{b{dCBh}}AJj}{{n{OnCBf}}}}{{{b{d{DG`{c}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}{CBhA@f}}{{{b{d{DHf{c}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}{CBhA@f}}{{{b{dDFf}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{b{DFf}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dDFh}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dDFj}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{b{DFj}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dDFl}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dCBh}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{DGh{{b{d{j{fc}}}}}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}AIb}{{{b{d{DGh{{AL`{{h{f}}c}}}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}AIb}{{{b{d{DGh{{b{d{h{f}}}}}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{DGh{{Db{f}}}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{DGh{{j{fc}}}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}AIb}{{{b{dDGl}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{b{DGl}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{b{DGn}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dDGn}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{CCf}}}Al}````{{{b{dCCb}}}{{b{dCCb}}}}{{{b{dCBh}}}{{b{dCBh}}}}{CCb{{DGb{CCb}}}}{{CCbc}{{DGf{CCbc}}}CCb}{{{b{dCBb}}Al}On}{{{b{dCBb}}}{{n{{b{{h{f}}}}CBf}}}}{{{b{dCBh}}}{{n{OnCBf}}}}{{{b{dCBb}}}{{n{AjCBf}}}}{{{b{CCb}}}Aj}{{{b{CBh}}}Aj}{CBb{{DHl{CBb}}}}{{{b{dCCb}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dCCb}}CCf}{{n{OnCBf}}}}0{{{b{dCCb}}{b{d{h{f}}}}}{{n{OnCBf}}}}{{{b{dCBb}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dCCb}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dCCb}}{b{dA`}}}{{n{AlCBf}}}}{{{b{dCBb}}f{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dCCb}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{dCCl}}}{{n{OnCBf}}}}{{{b{dCCl}}CCj}{{n{HjCBf}}}}{{{b{dCCl}}Ff}{{n{OnCBf}}}}{{{b{dCBb}}f}{{n{AlCBf}}}}{{CBbf}{{DHj{CBb}}}}{{{b{dCCl}}}{{n{HjCBf}}}}0{{CCbHj}{{DH`{CCb}}}}{{{b{dCBh}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dCBh}}{b{{h{f}}}}}{{n{OnCBf}}}}{{{b{dCBh}}{b{d{h{CCn}}}}}{{n{OnCBf}}}}{{{b{dCBh}}AJj}{{n{OnCBf}}}}{{{b{dCBh}}{b{{h{CCn}}}}}{{n{AlCBf}}}}````````````````````````````````````````````````````{{{b{d{ACl{ceg}}}}Al}{{n{On{A@`{Al}}}}}OlAAj{{A@j{}{{A@h{e}}}}}}{{{b{d{ACn{c}}}}Al}{{n{On{A@`{Al}}}}}Ol}{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{DI`{c}}}}Al}{{n{On{A@`{Al}}}}}Ol}{{{b{d{AAh{ce}}}}Al}{{n{On{A@`{Al}}}}}Ol{{Ol{}{{A@b{}}}}}}{{{b{d{ABn{e}}}}Al}{{n{On{A@`{Al}}}}}BBn{{Ol{}{{A@b{{b{c}}}}}}}}{{{b{d{ACd{c}}}}Al}{{n{On{A@`{Al}}}}}{AElOl}}{{{b{d{AGb{c}}}}Al}{{n{On{A@`{Al}}}}}Ol}{{{b{d{AGf{c}}}}Al}{{n{On{A@`{Al}}}}}{OlAEl}}{{{b{d{AGn{{BEd{c}}}}}}Al}{{n{On{A@`{Al}}}}}AAn}{{{b{d{AGn{c}}}}Al}{{n{On{A@`{Al}}}}}{OlAEl}}{{{b{d{BEd{c}}}}Al}{{n{On{A@`{Al}}}}}AAn}{{{b{d{BEf{c}}}}Al}{{n{On{A@`{Al}}}}}AAn}{{{b{d{ACl{ceg}}}}Al}{{n{On{A@`{Al}}}}}A@dAAj{{A@j{}{{A@h{e}}}}}}{{{b{d{ACn{c}}}}Al}{{n{On{A@`{Al}}}}}A@d}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{{b{d{DI`{c}}}}Al}{{n{On{A@`{Al}}}}}A@d}{{{b{d{AAh{ce}}}}Al}{{n{On{A@`{Al}}}}}A@d{{A@d{}{{A@b{}}}}}}{{{b{d{ABn{e}}}}Al}{{n{On{A@`{Al}}}}}BBn{{A@d{}{{A@b{{b{c}}}}}}}}{{{b{d{AC`{c}}}}Al}{{n{On{A@`{Al}}}}}{AAnA@d}}{{{b{d{ACd{c}}}}Al}{{n{On{A@`{Al}}}}}A@d}={{{b{d{AGf{c}}}}Al}{{n{On{A@`{Al}}}}}A@d}{{{b{d{AGn{c}}}}Al}{{n{On{A@`{Al}}}}}A@d};:{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{BDbAl}BDb}{{BDbAl}{{Bf{BDb}}}}1{b{{b{c}}}{}}0000000000000000000000000000000000{{{b{d}}}{{b{dc}}}{}}0000000000000000000000000000000000{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{ce}AAhAAj{{AAj{}{{A@b{}}}}}}{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{{b{{ACl{ceg}}}}}{{ACl{ceg}}}AAn{AAnAAj}AAn}{{{b{{ACn{c}}}}}{{ACn{c}}}{AAnA@d}}{{{b{{AE`{ce}}}}}{{AE`{ce}}}{A@dAAn}AAn}{{{b{{AFb{ce}}}}}{{AFb{ce}}}{A@dAAn}AAn}{{{b{{BDd{c}}}}}{{BDd{c}}}{}}{{{b{{A@l{c}}}}}{{A@l{c}}}{AAnA@d}}{{{b{{AAh{ce}}}}}{{AAh{ce}}}AAnAAn}{{{b{{ABf{c}}}}}{{ABf{c}}}AAn}{{{b{{ABn{c}}}}}{{ABn{c}}}AAn}{{{b{{AC`{c}}}}}{{AC`{c}}}AAn}{{{b{{ACd{c}}}}}{{ACd{c}}}AAn}{{{b{{ACh{ce}}}}}{{ACh{ce}}}AAnAAn}{{{b{{ACj{ce}}}}}{{ACj{ce}}}AAnAAn}{{{b{{ADh{c}}}}}{{ADh{c}}}AAn}{{{b{{ADl{ce}}}}}{{ADl{ce}}}AAnAAn}{{{b{{ADn{c}}}}}{{ADn{c}}}{AAnA@d}}{{{b{{AEn{ce}}}}}{{AEn{ce}}}AAnAAn}{{{b{{AF`{ce}}}}}{{AF`{ce}}}AAnAAn}{{{b{{AFh{c}}}}}{{AFh{c}}}{AAnA@d}}{{{b{{AGb{c}}}}}{{AGb{c}}}AAn}{{{b{{AGd{ceg}}}}}{{AGd{ceg}}}AAnAAnAAn}{{{b{{AGf{c}}}}}{{AGf{c}}}AAn}{{{b{{AGh{ce}}}}}{{AGh{ce}}}AAnAAn}{{{b{{AGj{c}}}}}{{AGj{c}}}AAn}{{{b{{AGn{c}}}}}{{AGn{c}}}AAn}{{{b{{AH`{ce}}}}}{{AH`{ce}}}AAnAAn}{{{b{{AHl{ce}}}}}{{AHl{ce}}}AAnAAn}{{{b{{BDn{c}}}}}{{BDn{c}}}AAn}{{{b{{BE`{c}}}}}{{BE`{c}}}AAn}{{{b{{BEb{c}}}}}{{BEb{c}}}AAn}{{{b{{BEd{c}}}}}{{BEd{c}}}AAn}{{{b{{BEf{c}}}}}{{BEf{c}}}AAn}{{{b{{BEh{c}}}}}{{BEh{c}}}AAn}{{{b{{BEj{ce}}}}}{{BEj{ce}}}AAnAAn}{{b{b{dc}}}On{}}000000000000000000000000000000000{bOn}000000000000000000000000000000000{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{ACl{ceg}}}AlA@dAAj{{A@j{}{{A@h{e}}}}}}{{{ACn{c}}}AlA@d}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@l{c}}}AlA@d}{{{AAh{ce}}}AlA@d{{A@d{}{{A@b{}}}}}}{{{ABn{e}}}AlBBn{{A@d{}{{A@b{{b{c}}}}}}}}{{{ACd{c}}}AlA@d}{{{ACh{ce}}}AlA@d{{A@j{b}{{A@h{Aj}}}}}}{{{ADh{c}}}AlA@d}{{{AFh{c}}}AlA@d}{{{AGf{c}}}AlA@d}{{{BEd{c}}}AlAAn}{{{BEf{c}}}AlAAn}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}{{ACn{c}}}{AFfA@d}}{{}{{BDd{c}}}{}}{{}{{AAh{ce}}}AFfAFf}{{}{{ABf{c}}}AFf}{{}{{ABn{c}}}AFf}{{}{{ACd{c}}}AFf}{{}{{ADh{c}}}AFf}{{}{{AGb{c}}}AFf}{{{b{d{BEf{c}}}}}On{}}7{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{AAh{ce}}}}g}BfA@d{{A@d{}{{A@b{}}}}}{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{ADh{c}}}}e}BfA@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{AGb{c}}}}e}BfOl{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{b{{ACl{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AAj{}}{{{b{{ACn{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@d}}{{{b{{AE`{ce}}}}{b{dAb}}}{{n{OnADb}}}{A@dAD`}AD`}{{{b{{AFb{ce}}}}{b{dAb}}}{{n{OnADb}}}{A@dAD`}{}}{{{b{{BDd{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{A@l{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@d}}{{{b{{DI`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{AAh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{ABf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{ABn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{AC`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{ACd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{ACh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{ACj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{ADh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{ADl{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{ADn{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@d}}{{{b{{AEn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{AF`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{AFh{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@d}}{{{b{{AGb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{AGd{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`{}}{{{b{{AGf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{AGh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{AGj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{AGn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{AH`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{AHl{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{BDn{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{BE`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BEb{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{BEd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BEf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BEh{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{BEj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{ACl{ceg}}ik}iA@dAAj{{A@j{}{{A@h{e}}}}}{}{{A@j{i}{{A@h{i}}}}}}{{{ACn{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{AE`{ce}}gi}gA@d{{A@j{}{{A@h{}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@l{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{DI`{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{AAh{ce}}gi}gA@d{{A@d{}{{A@b{}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ABf{e}}gi}gAAn{{A@d{}{{A@b{{b{c}}}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ABn{e}}gi}gBBn{{A@d{}{{A@b{{b{c}}}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ACd{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{ACh{ce}}gi}gA@d{{A@j{b}{{A@h{Aj}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ACj{cg}}ik}iA@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}{}{{A@j{i}{{A@h{i}}}}}}{{{ADh{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{ADl{ce}}gi}gA@d{{A@j{b}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ADn{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{AEn{cg}}ik}iA@d{}{{A@j{}{{A@h{e}}}}}{}{{A@j{i}{{A@h{i}}}}}}{{{AF`{cg}}ik}iA@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}{}{{A@j{i}{{A@h{i}}}}}}{{{AFh{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{AGb{c}}eg}eOl{}{{A@j{e}{{A@h{e}}}}}}{{{AGd{cei}}km}kA@d{}{}{{A@j{{b{de}}}{{A@h{{Bf{g}}}}}}}{}{{A@j{k}{{A@h{k}}}}}}{{{AGf{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{AGh{ce}}gi}gA@d{{A@j{b}{{A@h{Aj}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{AGj{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{AGn{c}}eg}eA@d{}{{A@j{e}{{A@h{e}}}}}}{{{AH`{ce}}gi}gA@d{{A@j{b}{{A@h{Aj}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{AHl{ce}}gi}gA@dA@d{}{{A@j{g}{{A@h{g}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}{{{AGn{c}}e}OnA@dA@j}{{BDbAl}BDb}{{BDbAl}{{Bf{BDb}}}}1{cc{}}0000000000000000000000000000000000{c{{BDf{c}}}{{BDj{}{{BDh{On}}}}BDl}}{e{{BDn{e}}}{}{{A@j{}{{A@h{{Bf{c}}}}}}}}{eABj{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}0{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{{}c{}}0000000000000000000000000000000000{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}11111111111111111111111111111111111{{{A@l{c}}}{{Bf{AFd}}}A@d}{{{b{AEl}}}Aj}{{{b{{A@l{c}}}}}AjAEl}{{{b{{ABf{e}}}}}AjAAn{{AEl{}{{A@b{{b{c}}}}}}}}{{{b{{ABn{e}}}}}AjBBn{{AEl{}{{A@b{{b{c}}}}}}}}{{{b{{ACd{c}}}}}AjAEl}{{{b{{ADh{c}}}}}AjAEl}{{{b{{ADl{ce}}}}}AjAEl{{A@j{b}}}}{{{b{{AEn{cg}}}}}AjAEl{}{{A@j{}{{A@h{e}}}}}}{{{b{{AGb{c}}}}}Aj{AElOl}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{ACl{ceg}}}BfA@dAAj{{A@j{}{{A@h{e}}}}}}{{{ACn{c}}}BfA@d}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}{{{AAh{ce}}}BfA@d{{A@d{}{{A@b{}}}}}}{{{ABn{e}}}{{Bf{c}}}BBn{{A@d{}{{A@b{{b{c}}}}}}}}{{{ADh{c}}}BfA@d}{{{AFh{c}}}BfA@d}{{{AGf{c}}}BfA@d}{{{BEd{c}}}{{Bf{c}}}AAn}{{{BEf{c}}}{{Bf{c}}}AAn}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{{BDd{c}}}}}Al{}}{{{b{AEl}}}Al}{{{b{{A@l{c}}}}}AlAEl}{{{b{{ABf{e}}}}}AlAAn{{AEl{}{{A@b{{b{c}}}}}}}}{{{b{{ABn{e}}}}}AlBBn{{AEl{}{{A@b{{b{c}}}}}}}}{{{b{{ACd{c}}}}}AlAEl}{{{b{{ADh{c}}}}}AlAEl}{{{b{{ADl{ce}}}}}AlAEl{{A@j{b}}}}{{{b{{AEn{cg}}}}}AlAEl{}{{A@j{}{{A@h{e}}}}}}{{{b{{AGb{c}}}}}Al{AElOl}}{{{b{{AGn{{BEh{e}}}}}}}Al{}{{A@j{}{{A@h{c}}}}}}{{{b{{AGn{{BEd{c}}}}}}}AlAAn}{{{b{{BE`{c}}}}}Al{}}{{{b{{BEb{e}}}}}Al{}{{AAf{}{{A@h{c}}}}}}{{{b{{BEf{c}}}}}AlAAn}?{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}210{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{d{ACl{ceg}}}}}BfA@dAAj{{A@j{}{{A@h{e}}}}}}{{{b{d{ACn{c}}}}}BfA@d}{{{b{d{AE`{ce}}}}}BfA@d{{A@j{}{{A@h{}}}}}}{{{b{d{AFb{cg}}}}}BfA@d{}{{A@j{{b{Db}}}{{A@h{e}}}}}}{{{b{d{BDd{c}}}}}{{Bf{c}}}{}}{{{b{d{A@l{c}}}}}BfA@d}{{{b{d{DI`{c}}}}}BfA@d}{{{b{d{AAh{ce}}}}}BfA@d{{A@d{}{{A@b{}}}}}}{{{b{d{ABf{e}}}}}{{Bf{c}}}AAn{{A@d{}{{A@b{{b{c}}}}}}}}{{{b{d{ABn{e}}}}}{{Bf{c}}}BBn{{A@d{}{{A@b{{b{c}}}}}}}}{{{b{d{AC`{c}}}}}Bf{AAnA@d}}{{{b{d{ACd{c}}}}}{{Bf{{Bb{Al}}}}}A@d}{{{b{d{ACh{ce}}}}}BfA@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{ACj{cg}}}}}{{Bf{e}}}A@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{d{ADh{c}}}}}BfA@d}{{{b{d{ADl{ce}}}}}BfA@d{{A@j{b}}}}{{{b{d{ADn{c}}}}}BfA@d}{{{b{d{AEn{cg}}}}}{{Bf{e}}}A@d{}{{A@j{}{{A@h{e}}}}}}{{{b{d{AF`{cg}}}}}{{Bf{e}}}A@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{d{AFh{c}}}}}BfA@d}{{{b{d{AGb{c}}}}}BfOl}{{{b{d{AGd{cei}}}}}{{Bf{g}}}A@d{}{}{{A@j{{b{de}}}{{A@h{{Bf{g}}}}}}}}{{{b{d{AGf{c}}}}}BfA@d}{{{b{d{AGh{ce}}}}}BfA@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{AGj{c}}}}}BfA@d}{{{b{d{AGn{c}}}}}BfA@d}{{{b{d{AH`{ce}}}}}BfA@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{AHl{ce}}}}}BfA@dA@d}{{{b{d{BDn{e}}}}}Bf{}{{A@j{}{{A@h{{Bf{c}}}}}}}}{{{b{d{BE`{c}}}}}{{Bf{c}}}{}}{{{b{d{BEb{e}}}}}{{Bf{c}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{d{BEd{c}}}}}{{Bf{c}}}AAn}{{{b{d{BEf{c}}}}}{{Bf{c}}}AAn}{{{b{d{BEh{e}}}}}{{Bf{c}}}{}{{A@j{}{{A@h{c}}}}}}{{{b{d{BEj{ce}}}}}Bf{}{{A@j{{b{c}}}{{A@h{{Bf{c}}}}}}}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{ACl{ceg}}}}}BfOlAAj{{A@j{}{{A@h{e}}}}}}{{{b{d{ACn{c}}}}}BfOl}{{{b{d{BDd{c}}}}}{{Bf{c}}}{}}{{{b{d{A@l{c}}}}}Bf{OlAEl}}{{{b{d{DI`{c}}}}}BfOl}{{{b{d{AAh{ce}}}}}BfOl{{Ol{}{{A@b{}}}}}}{{{b{d{ABf{e}}}}}{{Bf{c}}}AAn{{Ol{}{{A@b{{b{c}}}}}}}}{{{b{d{ABn{e}}}}}{{Bf{c}}}BBn{{Ol{}{{A@b{{b{c}}}}}}}}{{{b{d{ACd{c}}}}}{{Bf{{Bb{Al}}}}}{AElOl}}{{{b{d{ACh{ce}}}}}BfOl{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{ACj{cg}}}}}{{Bf{e}}}Ol{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{d{ADh{c}}}}}BfOl}{{{b{d{ADl{ce}}}}}BfOl{{A@j{b}}}}{{{b{d{AEn{cg}}}}}{{Bf{e}}}Ol{}{{A@j{}{{A@h{e}}}}}}{{{b{d{AFh{c}}}}}BfOl}{{{b{d{AGb{c}}}}}BfOl}{{{b{d{AGf{c}}}}}Bf{OlAEl}}{{{b{d{AGj{c}}}}}Bf{OlAEl}}{{{b{d{AGn{{BEd{c}}}}}}}BfAAn}{{{b{d{AGn{c}}}}}Bf{OlAEl}}{{{b{d{AHl{ce}}}}}{{Bf{Bb}}}{OlAEl}{OlAEl}}{{{b{d{BE`{c}}}}}{{Bf{c}}}{}}{{{b{d{BEb{e}}}}}{{Bf{c}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{d{BEd{c}}}}}{{Bf{c}}}AAn}{{{b{d{BEf{c}}}}}{{Bf{c}}}AAn}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{ABn{e}}}}}{{n{DbAFd}}}BBn{{A@d{}{{A@b{{b{c}}}}}}}}{{{b{d{ACh{ce}}}}}{{n{DbAFd}}}A@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{ACj{cg}}}}}{{n{DbAFd}}}A@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{d{AFh{c}}}}e}BfA@d{{AAf{b}{{A@h{Aj}}}}}}{{{b{d{AFh{c}}}}{b{e}}}BfA@dA@f}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{d{DI`{c}}}}Al}BfA@d}{{{b{d{AAh{ce}}}}Al}BfA@d{{A@d{}{{A@b{}}}}}}{{{b{d{ABn{e}}}}Al}{{Bf{c}}}BBn{{A@d{}{{A@b{{b{c}}}}}}}}{{{b{d{ACd{c}}}}Al}{{Bf{{Bb{Al}}}}}A@d}{{{b{d{ADh{c}}}}Al}BfA@d}{{{b{d{AFh{c}}}}Al}BfA@d}{{{b{d{AGb{c}}}}Al}BfOl}{{{b{d{AGf{c}}}}Al}BfA@d}{{{b{d{AGj{c}}}}Al}BfA@d}{{{b{d{AGn{c}}}}Al}BfA@d}{{{b{d{AHl{ce}}}}Al}BfA@dA@d}{{{b{d{BEd{c}}}}Al}{{Bf{c}}}AAn}{{{b{dOl}}Al}{{Bf{c}}}{}}{{{b{d{DI`{c}}}}Al}BfOl}{{{b{d{AAh{ce}}}}Al}BfOl{{Ol{}{{A@b{}}}}}}{{{b{d{ACd{c}}}}Al}{{Bf{{Bb{Al}}}}}{AElOl}}{{{b{d{ADh{c}}}}Al}BfOl}:{{{b{d{AGf{c}}}}Al}Bf{OlAEl}}{{{b{d{AGj{c}}}}Al}Bf{OlAEl}}{{{b{d{AGn{{BEd{c}}}}}}Al}BfAAn}{{{b{d{AGn{c}}}}Al}Bf{OlAEl}}9{{{b{d{BEf{c}}}}Al}{{Bf{c}}}AAn}{c{{BE`{c}}}{}}{e{{BEb{e}}}{}{{AAf{}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{b{d{AFh{c}}}}}{{Bf{b}}}A@d}{{{b{d{AFh{c}}}}}{{Bf{{b{d}}}}}A@d}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{eAG`{}{{A@d{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{c{{BEd{c}}}AAn}{{cAl}{{BEf{c}}}AAn}{e{{BEh{e}}}{}{{A@j{}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{AAh{ce}}}}g}BfOl{{Ol{}{{A@b{}}}}}{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{ADh{c}}}}e}BfOl{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{AGb{c}}}}e}BfOl{{A@j{b}{{A@h{Aj}}}}}}{{{ACl{ceg}}ik}iOlAAj{{A@j{}{{A@h{e}}}}}{}{{A@j{i}{{A@h{i}}}}}}{{{ACn{c}}eg}eOl{}{{A@j{e}{{A@h{e}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}{{{A@l{c}}eg}e{OlAEl}{}{{A@j{e}{{A@h{e}}}}}}{{{DI`{c}}eg}eOl{}{{A@j{e}{{A@h{e}}}}}}{{{AAh{ce}}gi}gOl{{Ol{}{{A@b{}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ABf{e}}gi}gAAn{{Ol{}{{A@b{{b{c}}}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ABn{e}}gi}gBBn{{Ol{}{{A@b{{b{c}}}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ACd{c}}eg}e{AElOl}{}{{A@j{e}{{A@h{e}}}}}}{{{ACh{ce}}gi}gOl{{A@j{b}{{A@h{Aj}}}}}{}{{A@j{g}{{A@h{g}}}}}}{{{ACj{cg}}ik}iOl{}{{A@j{}{{A@h{{Bf{e}}}}}}}{}{{A@j{i}{{A@h{i}}}}}}{{{ADh{c}}eg}eOl{}{{A@j{e}{{A@h{e}}}}}}{{{ADl{ce}}gi}gOl{{A@j{b}}}{}{{A@j{g}{{A@h{g}}}}}}{{{AEn{cg}}ik}iOl{}{{A@j{}{{A@h{e}}}}}{}{{A@j{i}{{A@h{i}}}}}}{{{AFh{c}}eg}eOl{}{{A@j{e}{{A@h{e}}}}}}{{{AGb{c}}eg}eOl{}{{A@j{e}{{A@h{e}}}}}}{{{AGf{c}}eg}e{OlAEl}{}{{A@j{e}{{A@h{e}}}}}}{{{AGj{c}}eg}e{OlAEl}{}{{A@j{e}{{A@h{e}}}}}}{{{AGn{c}}eg}e{OlAEl}{}{{A@j{e}{{A@h{e}}}}}}{{{AGn{{BEd{c}}}}eg}eAAn{}{{A@j{e}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{ACl{ceg}}}}}{{Bb{Al{Bf{Al}}}}}A@dAAj{{A@j{}{{A@h{e}}}}}}{{{b{{ACn{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{AE`{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@d{{A@j{}{{A@h{}}}}}}{{{b{{AFb{cg}}}}}{{Bb{Al{Bf{Al}}}}}A@d{}{{A@j{{b{Db}}}{{A@h{e}}}}}}{{{b{{BDd{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{A@l{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{DI`{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{AAh{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@d{{A@d{}{{A@b{}}}}}}{{{b{{ABf{e}}}}}{{Bb{Al{Bf{Al}}}}}AAn{{A@d{}{{A@b{{b{c}}}}}}}}{{{b{{ABn{e}}}}}{{Bb{Al{Bf{Al}}}}}BBn{{A@d{}{{A@b{{b{c}}}}}}}}{{{b{{AC`{c}}}}}{{Bb{Al{Bf{Al}}}}}{AAnA@d}}{{{b{{ACd{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{ACh{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{{ACj{cg}}}}}{{Bb{Al{Bf{Al}}}}}A@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{{ADh{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{ADl{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@d{{A@j{b}}}}{{{b{{ADn{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{AEn{cg}}}}}{{Bb{Al{Bf{Al}}}}}A@d{}{{A@j{}{{A@h{e}}}}}}{{{b{{AF`{cg}}}}}{{Bb{Al{Bf{Al}}}}}A@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{{AFh{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{AGb{c}}}}}{{Bb{Al{Bf{Al}}}}}Ol}{{{b{{AGd{cei}}}}}{{Bb{Al{Bf{Al}}}}}A@d{}{}{{A@j{{b{de}}}{{A@h{{Bf{g}}}}}}}}{{{b{{AGf{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{AGh{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{{AGj{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{AGn{c}}}}}{{Bb{Al{Bf{Al}}}}}A@d}{{{b{{AH`{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@d{{A@j{b}{{A@h{Aj}}}}}}{{{b{{AHl{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@dA@d}{{{b{{BE`{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{BEb{e}}}}}{{Bb{Al{Bf{Al}}}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{{BEd{c}}}}}{{Bb{Al{Bf{Al}}}}}AAn}{{{b{{BEf{c}}}}}{{Bb{Al{Bf{Al}}}}}AAn}{{{b{{BEh{e}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{}{{A@h{c}}}}}}{{{b{{BEj{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{{Bf{c}}}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}{{{b{BDb}}{b{BDb}}}{{Bf{Al}}}}{{{Bf{c}}e}{{BEj{ce}}}{}{{A@j{{b{c}}}{{A@h{{Bf{c}}}}}}}}{eAGl{}{{A@d{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{bc{}}000000000000000000000000000000000{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{ACl{ceg}}}}im}kA@dAAj{{A@j{}{{A@h{e}}}}}{}{{AHd{}{{A@h{i}}}}}{{A@j{i}{{A@h{k}}}}}}{{{b{d{ACn{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@l{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{DI`{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AAh{ce}}}}gk}iA@d{{A@d{}{{A@b{}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{ABf{e}}}}gk}iAAn{{A@d{}{{A@b{{b{c}}}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{ABn{e}}}}gk}iBBn{{A@d{}{{A@b{{b{c}}}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{AC`{c}}}}ei}g{AAnA@d}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{ACd{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{ACh{ce}}}}gk}iA@d{{A@j{b}{{A@h{Aj}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{ACj{cg}}}}im}kA@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}{}{{AHd{}{{A@h{i}}}}}{{A@j{i}{{A@h{k}}}}}}{{{b{d{ADh{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{ADl{ce}}}}gk}iA@d{{A@j{b}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{AEn{cg}}}}im}kA@d{}{{A@j{}{{A@h{e}}}}}{}{{AHd{}{{A@h{i}}}}}{{A@j{i}{{A@h{k}}}}}}{{{b{d{AF`{cg}}}}im}kA@d{}{{A@j{}{{A@h{{Bf{e}}}}}}}{}{{AHd{}{{A@h{i}}}}}{{A@j{i}{{A@h{k}}}}}}{{{b{d{AFh{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGb{c}}}}ei}gOl{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGd{cei}}}}ko}mA@d{}{}{{A@j{{b{de}}}{{A@h{{Bf{g}}}}}}}{}{{AHd{}{{A@h{k}}}}}{{A@j{k}{{A@h{m}}}}}}{{{b{d{AGf{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGh{ce}}}}gk}iA@d{{A@j{b}{{A@h{Aj}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{AGj{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGn{c}}}}ei}gA@d{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AH`{ce}}}}gk}iA@d{{A@j{b}{{A@h{Aj}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{BEh{e}}}}gk}i{}{{A@j{}{{A@h{c}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{e}}}{}{}}0000000000000000000000000000000000{{}{{n{c}}}{}}0000000000000000000000000000000000{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{d{ACl{ceg}}}}im}kOlAAj{{A@j{}{{A@h{e}}}}}{}{{AHd{}{{A@h{i}}}}}{{A@j{i}{{A@h{k}}}}}}{{{b{d{ACn{c}}}}ei}gOl{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}{{{b{d{A@l{c}}}}ei}g{OlAEl}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{DI`{c}}}}ei}gOl{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AAh{ce}}}}gk}iOl{{Ol{}{{A@b{}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{ABf{e}}}}gk}iAAn{{Ol{}{{A@b{{b{c}}}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{ABn{e}}}}gk}iBBn{{Ol{}{{A@b{{b{c}}}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{ACd{c}}}}ei}g{AElOl}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{ACh{ce}}}}gk}iOl{{A@j{b}{{A@h{Aj}}}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{ACj{cg}}}}im}kOl{}{{A@j{}{{A@h{{Bf{e}}}}}}}{}{{AHd{}{{A@h{i}}}}}{{A@j{i}{{A@h{k}}}}}}{{{b{d{ADh{c}}}}ei}gOl{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{ADl{ce}}}}gk}iOl{{A@j{b}}}{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{{{b{d{AEn{cg}}}}im}kOl{}{{A@j{}{{A@h{e}}}}}{}{{AHd{}{{A@h{i}}}}}{{A@j{i}{{A@h{k}}}}}}{{{b{d{AFh{c}}}}ei}gOl{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGb{c}}}}ei}gOl{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGf{c}}}}ei}g{OlAEl}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGj{c}}}}ei}g{OlAEl}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGn{{BEd{c}}}}}}ei}gAAn{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{{{b{d{AGn{c}}}}ei}g{OlAEl}{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{bAf}0000000000000000000000000000000000{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{ce}AHlAAjAAj}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}``````````````````````{BElOn}{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{{b{{DIb{c}}}}}{{DIb{c}}}A@f}{{{b{DId}}}DId}{{b{b{dc}}}On{}}0{bOn}0{{{b{{DIb{c}}}}{b{{DIb{c}}}}}ABhA@f}{{{b{DId}}{b{DId}}}ABh}{{}{{DIb{c}}}A@f}{{}DId}{{{b{{DIb{c}}}}{b{{DIb{c}}}}}AjA@f}{{{b{DId}}{b{DId}}}Aj}{{{b{{DIb{c}}}}{b{dAb}}}{{n{OnADb}}}A@f}{{{b{DId}}{b{dAb}}}{{n{OnADb}}}}{cc{}}0{{{b{{DIb{c}}}}{b{de}}}OnA@fBBj}{{{b{DId}}{b{dc}}}OnBBj}{{}c{}}0{{{b{{DIb{c}}}}{b{{DIb{c}}}}}{{Bf{ABh}}}A@f}{{{b{DId}}{b{DId}}}{{Bf{ABh}}}}{bc{}}0{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{bAf}0``````````{{DIfDIf}DIf}{{}Al}{{{b{c}}}AlA@f}1`2{{{Db{{C@b{c}}}}}{{Db{c}}}{}}{{{b{{C@b{c}}}}}{{b{{h{{C@b{f}}}}}}}{}}{{{b{d{C@b{c}}}}}{{b{d{h{{C@b{f}}}}}}}{}}{{{b{d{C@b{c}}}}}{}{}}{{{b{{C@b{c}}}}}{}{}}{{{C@b{c}}}c{}}{{{b{d{C@b{c}}}}}On{}}{{{b{d{C@b{c}}}}}{{b{dc}}}{}}{{{b{{C@b{c}}}}}c{}}{{{b{{C@b{c}}}}}{{b{c}}}{}}{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000>{{{b{{BEn{c}}}}}{{BEn{c}}}{}}{{{b{{DIh{c}}}}}{{DIh{c}}}{AAnA@f}}{{{b{{C@b{c}}}}}{{C@b{c}}}BBn}{{{b{DIf}}}DIf}{{{b{d{h{{C@b{c}}}}}}{b{{h{c}}}}}{{b{d{h{c}}}}}AAn}{{b{b{dc}}}On{}}000{bOn}000{{{b{{DIh{c}}}}{b{{DIh{c}}}}}ABh{AAlA@f}}{{{b{c}}}cBBn}{{{b{d{h{{C@b{c}}}}}}{b{{h{c}}}}}{{b{d{h{c}}}}}BBn}{{}{{DIh{c}}}{AFfA@f}}{{{b{{DIh{c}}}}}{{b{c}}}A@f}{{{b{d{DIh{c}}}}}{{b{dc}}}A@f}{{{b{c}}}{{BEn{c}}}{}}{cOn{}}{{{b{d{DIh{c}}}}}OnA@f}{{{b{{BEn{c}}}}{b{{BEn{c}}}}}Aj{}}{{{b{{DIh{c}}}}{b{{DIh{c}}}}}Aj{ACfA@f}}{{{b{DIf}}{b{DIf}}}Aj}{{{b{d{h{{C@b{c}}}}}}c}{{b{d{h{c}}}}}AAn}{{{b{d{h{{C@b{c}}}}}}e}{{Bb{{b{d{h{c}}}}{b{d{h{{C@b{c}}}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{{b{d{h{{C@b{c}}}}}}e}{{b{d{h{c}}}}}{}{{A@j{}{{A@h{c}}}}}}{{{b{{BEn{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{DIh{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{C@b{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{DIf}}{b{dAb}}}{{n{OnADb}}}};{cOnA@f}{cc{}}000{{{b{{BEn{c}}}}{b{de}}}On{}BBj}{{{b{{DIh{c}}}}{b{de}}}On{BBlA@f}BBj}{{}c{}}000{{{DIh{c}}}c{}}`{{}Al}{{{b{c}}}AlA@f}{{}Aj}{c{{DIh{c}}}{}}{c{{C@b{c}}}{}}`{{{b{{DIh{c}}}}{b{{DIh{c}}}}}{{Bf{ABh}}}{ADjA@f}}{{{b{dc}}c}c{}}`656{{{b{{h{{C@b{c}}}}}}}{{b{{h{{C@b{f}}}}}}}{}}{{{b{d{h{{C@b{c}}}}}}}{{b{d{h{{C@b{f}}}}}}}{}}{{{b{d{h{{C@b{c}}}}}}}{}{}}{{{b{{h{{C@b{c}}}}}}}{}{}}{{{b{d{h{{C@b{c}}}}}}}{{b{d{h{c}}}}}{}}{{{b{{h{{C@b{c}}}}}}}{{b{{h{c}}}}}{}}{{DIfDIf}DIf}{{{b{dc}}{b{dc}}}On{}}{{{b{dc}}}cAFf}{{{b{d{DIh{c}}}}}c{}}{bc{}}000{ce{}{}}{cBF`A@f}{{{b{c}}}e{}{}}{{{C@b{{Db{c}}}}}{{Db{{C@b{c}}}}}{}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{bAf}000{{}{{C@b{c}}}{}}{{}{{Db{{C@b{c}}}}}{}}{{}c{}}`{{}Al}{{{b{d{C@b{c}}}}c}{{b{dc}}}{}}24`````````````````````````````````````{{{b{DIj}}}{{n{{Bb{DIlDIn}}CBf}}}}{{{b{DIl}}}CAl}{{{b{DIj}}}CAl}{{{b{DJ`}}}CAl}{{{b{DIl}}}F`}{{{b{DIj}}}F`}{{{b{DJ`}}}F`}{{DJbAl}{{Bf{DJb}}}}{{DJdAl}{{Bf{DJd}}}}{{DJbAl}DJb}{{DJdAl}DJd}{c{{n{DIjCBf}}}DJf}{c{{n{DJ`CBf}}}DJf}{{{b{DJb}}{b{DJb}}}DJb}{{{b{DJb}}DJb}DJb}{{DJb{b{DJb}}}DJb}{{DJbDJb}DJb}{{DJdDJd}DJd}{{{b{DJd}}{b{DJd}}}DJd}{{DJd{b{DJd}}}DJd}{{{b{DJd}}DJd}DJd}{{{b{dDJb}}DJb}On}{{{b{dDJb}}{b{DJb}}}On}{{{b{dDJd}}DJd}On}{{{b{dDJd}}{b{DJd}}}On};8:954673210{b{{b{c}}}{}}0000000000000{{{b{d}}}{{b{dc}}}{}}0000000000000{{{b{DJ`}}}{{n{AjCBf}}}}{{{b{DJh}}}DJh}{{{b{DJj}}}DJj}{{{b{DJb}}}DJb}{{{b{DJd}}}DJd}{{{b{DJl}}}DJl}{{{b{DJn}}}DJn}{{{b{DIn}}}DIn}{{{b{DK`}}}DK`}{{{b{DKb}}}DKb}{{b{b{dc}}}On{}}00000000{bOn}00000000{{{b{DJj}}{b{DJj}}}ABh}{{{b{DJb}}{b{DJb}}}ABh}{{{b{DJd}}{b{DJd}}}ABh}{{{b{DIn}}{b{DIn}}}ABh}{{{b{DK`}}{b{DK`}}}ABh}{{{b{DKb}}{b{DKb}}}ABh}{c{{n{DIlCBf}}}DJf}{{{b{DJ`}}c}{{n{OnCBf}}}DJf}{{{b{DIn}}DKd}{{n{DIlCBf}}}}{{{b{DIl}}}{{n{HdCBf}}}}{{{b{DJn}}}{{b{AKb}}}}{{{b{DJh}}{b{DJh}}}Aj}{{{b{DJj}}{b{DJj}}}Aj}{{{b{DJj}}{b{DJb}}}Aj}{{{b{DJj}}{b{DJd}}}Aj}{{{b{DJb}}{b{DJj}}}Aj}{{{b{DJb}}{b{DJb}}}Aj}{{{b{DJd}}{b{DJj}}}Aj}{{{b{DJd}}{b{DJd}}}Aj}{{{b{DJl}}{b{DJl}}}Aj}{{{b{DJn}}{b{DJn}}}Aj}{{{b{DIn}}{b{DIn}}}Aj}{{{b{DK`}}{b{DK`}}}Aj}{{{b{DKb}}{b{DKb}}}Aj}{{{b{DKb}}}Hd}{{{b{d{b{DIl}}}}}{{n{OnCBf}}}}{{{b{dDIl}}}{{n{OnCBf}}}}{{{b{DIl}}{b{dAb}}}{{n{OnADb}}}}{{{b{DIj}}{b{dAb}}}{{n{OnADb}}}}{{{b{DJ`}}{b{dAb}}}{{n{OnADb}}}}{{{b{DKf}}{b{dAb}}}{{n{OnADb}}}}{{{b{DKh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DJh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DJj}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DJb}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DJd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DJl}}{b{dAb}}}{{n{OnADb}}}}{{{b{DJn}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DIn}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DK`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DKb}}{b{dAb}}}{{n{OnADb}}}}0{{DJbAl}{{Bf{DJb}}}}{{DJdAl}{{Bf{DJd}}}}{{DJbAl}DJb}{{DJdAl}DJd}{cc{}}{DEhDIl}{DEhDIj}22{DEhDJ`}333{DJbDJj}{{{Db{f}}}DJj}{DJdDJj}1{{{Db{Gn}}}DJj}7{HdDJb}{{{Db{f}}}DJb}9{{{Db{Gn}}}DJd}:{GhDJd}{{{Db{f}}}DJd}<<{{{Bb{cGn}}}DIn{{AEb{DJj}}}}{DKbDIn}{DK`DIn}???74{F`DIl}{F`DIj}{F`DJ`}{{{b{AKb}}}{{n{DJjDJn}}}}{{{b{AKb}}}{{n{DJbDJn}}}}{{{b{AKb}}}{{n{DJdDJn}}}}{{{b{AKb}}}{{n{DInDJn}}}}{{{b{AKb}}}{{n{DK`DJn}}}}{{{b{AKb}}}{{n{DKbDJn}}}}{{{b{DJj}}{b{dc}}}OnBBj}{{{b{DJb}}{b{dc}}}OnBBj}{{{b{DJd}}{b{dc}}}OnBBj}{{{b{DJl}}{b{dc}}}OnBBj}{{{b{DIn}}{b{dc}}}OnBBj}{{{b{DK`}}{b{dc}}}OnBBj}{{{b{DKb}}{b{dc}}}OnBBj}{{{b{DIj}}}DKf}{{}c{}}0000000000000{DIjDKh}11{DIlF`}{DIjF`}{DJ`F`}{{{b{DIn}}}DJj}{{{b{DK`}}}{{b{DJb}}}}{{{b{DKb}}}{{b{DJd}}}}{{{b{DJj}}}Aj}{{{b{DJb}}}Aj}{{{b{DJd}}}Aj}12102102{{{b{DIn}}}Aj}13023213212{{{b{DIl}}}Aj}{{{b{{b{DIl}}}}}Aj}44333354301{{{b{DJ`}}{b{DJb}}{b{DJb}}}{{n{OnCBf}}}}{{{b{DJ`}}{b{DJd}}Hd}{{n{OnCBf}}}}10{{{b{DIl}}}{{n{{Bf{DKd}}CBf}}}}{{{b{DIl}}}{{n{DInCBf}}}}{{{b{DIj}}}{{n{DInCBf}}}}{{{b{DJ`}}}{{n{DInCBf}}}}{{{b{DJ`}}}{{n{AjCBf}}}}0{{{b{DJd}}}{{Bf{DJl}}}}{{{b{DJ`}}}{{n{HdCBf}}}}{{ffff}DJb}{{GnGnGnGnGnGnGnGn}DJd}{{DJjGn}DIn}{{DJbGn}DK`}{{DJdGnHdHd}DKb}{{{b{dDKf}}}{{Bf{{n{DIlCBf}}}}}}{{{b{dDKh}}}{{Bf{{n{DIlCBf}}}}}}{{{b{DIl}}}{{n{AjCBf}}}}{{{b{DJb}}}DJb}{DJbDJb}{DJdDJd}{{{b{DJd}}}DJd}{{{b{DJb}}}{{Db{f}}}}{{{b{DJd}}}{{Db{f}}}}{{{b{DIj}}}{{n{AjCBf}}}}{{{b{{h{f}}}}}{{n{DJjDJn}}}}{{{b{{h{f}}}}}{{n{DJbDJn}}}}{{{b{{h{f}}}}}{{n{DJdDJn}}}}{{{b{{h{f}}}}}{{n{DInDJn}}}}{{{b{{h{f}}}}}{{n{DK`DJn}}}}{{{b{{h{f}}}}}{{n{DKbDJn}}}}{{{b{DJj}}{b{DJd}}}{{Bf{ABh}}}}{{{b{DJj}}{b{DJj}}}{{Bf{ABh}}}}{{{b{DJj}}{b{DJb}}}{{Bf{ABh}}}}{{{b{DJb}}{b{DJj}}}{{Bf{ABh}}}}{{{b{DJb}}{b{DJb}}}{{Bf{ABh}}}}{{{b{DJd}}{b{DJd}}}{{Bf{ABh}}}}{{{b{DJd}}{b{DJj}}}{{Bf{ABh}}}}{{{b{DIn}}{b{DIn}}}{{Bf{ABh}}}}{{{b{DK`}}{b{DK`}}}{{Bf{ABh}}}}{{{b{DKb}}{b{DKb}}}{{Bf{ABh}}}}{{{b{DIl}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{DJ`}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{DJ`}}{b{d{h{f}}}}}{{n{{Bb{AlDIn}}CBf}}}}{{{b{DIl}}}{{n{DInCBf}}}}{{{b{DJ`}}}{{n{DInCBf}}}}{{{b{DIn}}}Gn}{{{b{DK`}}}Gn}{{{b{DKb}}}Gn}{{{b{DIl}}}{{n{AjCBf}}}}{{{b{d{b{DIl}}}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDIl}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDIl}}CCf}{{n{OnCBf}}}}{{{b{d{b{DIl}}}}CCf}{{n{OnCBf}}}}{{{b{DIl}}}{{n{{Bf{DKd}}CBf}}}}{{{b{DJ`}}}{{n{{Bf{DKd}}CBf}}}}{{{b{dDIl}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{d{b{DIl}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}?>{{{b{DKb}}}Hd}{{{b{DJd}}}{{Db{Gn}}}}{{{b{DJ`}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{DJ`}}{b{{h{f}}}}c}{{n{AlCBf}}}DJf}{{{b{DJ`}}Aj}{{n{OnCBf}}}}{{{b{DIl}}Hd}{{n{OnCBf}}}}{{{b{dDKb}}Hd}On}{{{b{dDIn}}DJj}On}{{{b{dDK`}}DJb}On}{{{b{dDKb}}DJd}On}{{{b{DIl}}{Bf{DKd}}}{{n{OnCBf}}}}66{{{b{DJ`}}Hd}{{n{OnCBf}}}}{{{b{DIl}}Aj}{{n{OnCBf}}}}0{{{b{DIj}}Aj}{{n{OnCBf}}}}90{{{b{dDIn}}Gn}On}{{{b{dDK`}}Gn}On}{{{b{dDKb}}Gn}On}46{{{b{DJ`}}{Bf{DKd}}}{{n{OnCBf}}}};<{{{b{DIj}}Hd}{{n{OnCBf}}}}781{{{b{DIl}}DJh}{{n{OnCBf}}}}{{{b{DJb}}{b{DJb}}}{{Bf{Al}}}}{{{b{DJd}}{b{DJd}}}{{Bf{Al}}}}{{{b{DIl}}}{{n{{Bf{CBf}}CBf}}}}{{{b{DIj}}}{{n{{Bf{CBf}}CBf}}}}{{{b{DJ`}}}{{n{{Bf{CBf}}CBf}}}}{DJbHd}{DJdGh}{{{b{DJj}}}DJj}{{{b{DJd}}}DJj}{{{b{DJd}}}{{Bf{DJb}}}}0{{{b{DJb}}}DJd}0{bc{}}00000000{{{b{{DJf{}{{DKj{c}}}}}}}{{n{cCBf}}}{{A@d{}{{A@b{DIn}}}}}}{{{b{DIn}}}{{n{{DKl{DIn}}CBf}}}}{{{b{DK`}}}{{n{{DKl{DIn}}CBf}}}}{{{b{DKb}}}{{n{{DKl{DIn}}CBf}}}}{bA`}000000{{{b{DIl}}}{{n{DIlCBf}}}}{{{b{DIj}}}{{n{DIjCBf}}}}{{{b{DJ`}}}{{n{DJ`CBf}}}}{c{{n{e}}}{}{}}0000000000000{{}{{n{c}}}{}}0000000000000{{{b{DIl}}}{{n{HdCBf}}}}{{{b{DIj}}}{{n{HdCBf}}}}{{{b{DJ`}}}{{n{HdCBf}}}}{bAf}0000000000000{{{b{dDIl}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DIl}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{DIl}}}{{n{{Bf{DKd}}CBf}}}}{{{b{DJ`}}}{{n{{Bf{DKd}}CBf}}}}{{{b{d{b{DIl}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dDIl}}{b{{h{CCn}}}}}{{n{AlCBf}}}}```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{A@`{c}}c}{}{DLb{BGd{}{{A@h{}}}}}}{{{A@`{c}}{A@`{c}}}{}{DLb{BGd{}{{A@h{}}}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{b{d{A@`{c}}}}c}OnDLb}{{{b{d{A@`{c}}}}{A@`{c}}}OnDLb}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{b{{b{c}}}{}}0000000{{{b{d}}}{{b{dc}}}{}}0000000{{{A@`{Ff}}}{{Bf{{A@`{Ff}}}}}}{{{A@`{F`}}}{{Bf{{A@`{F`}}}}}}{{{A@`{Ed}}}{{Bf{{A@`{Ed}}}}}}{{{A@`{Gb}}}{{Bf{{A@`{Gb}}}}}}{{{A@`{Fl}}}{{Bf{{A@`{Fl}}}}}}{{{A@`{Ej}}}{{Bf{{A@`{Ej}}}}}}{{{A@`{Gn}}Gn}{{Bf{{A@`{Gn}}}}}}{{{A@`{Hj}}Hj}{{Bf{{A@`{Hj}}}}}}{{{A@`{Gh}}Gh}{{Bf{{A@`{Gh}}}}}}{{{A@`{Hd}}Hd}{{Bf{{A@`{Hd}}}}}}{{{A@`{Al}}Al}{{Bf{{A@`{Al}}}}}}{{{A@`{f}}f}{{Bf{{A@`{f}}}}}}{{{A@`{Ed}}{A@`{Ed}}}{{Bf{{A@`{Ed}}}}}}{{{A@`{Hd}}{A@`{Hd}}}{{Bf{{A@`{Hd}}}}}}{{{A@`{F`}}{A@`{F`}}}{{Bf{{A@`{F`}}}}}}{{{A@`{Al}}{A@`{Al}}}{{Bf{{A@`{Al}}}}}}{{{A@`{f}}{A@`{f}}}{{Bf{{A@`{f}}}}}}{{{A@`{Gh}}{A@`{Gh}}}{{Bf{{A@`{Gh}}}}}}{{{A@`{Hj}}{A@`{Hj}}}{{Bf{{A@`{Hj}}}}}}{{{A@`{Ff}}{A@`{Ff}}}{{Bf{{A@`{Ff}}}}}}{{{A@`{Ej}}{A@`{Ej}}}{{Bf{{A@`{Ej}}}}}}{{{A@`{Gn}}{A@`{Gn}}}{{Bf{{A@`{Gn}}}}}}{{{A@`{Gb}}{A@`{Gb}}}{{Bf{{A@`{Gb}}}}}}{{{A@`{Fl}}{A@`{Fl}}}{{Bf{{A@`{Fl}}}}}}{{{A@`{F`}}}{{Bf{{A@`{F`}}}}}}{{{A@`{Ej}}}{{Bf{{A@`{Ej}}}}}}{{{A@`{Ed}}}{{Bf{{A@`{Ed}}}}}}{{{A@`{Fl}}}{{Bf{{A@`{Fl}}}}}}{{{A@`{Ff}}}{{Bf{{A@`{Ff}}}}}}{{{A@`{Gb}}}{{Bf{{A@`{Gb}}}}}}{{{A@`{Al}}}{{Bf{{A@`{Al}}}}}}{{{A@`{f}}}{{Bf{{A@`{f}}}}}}{{{A@`{Gn}}}{{Bf{{A@`{Gn}}}}}}{{{A@`{Gh}}}{{Bf{{A@`{Gh}}}}}}{{{A@`{Hj}}}{{Bf{{A@`{Hj}}}}}}{{{A@`{Hd}}}{{Bf{{A@`{Hd}}}}}}{{{A@`{Ff}}Hd}{{Bf{{A@`{Ff}}}}}}{{{A@`{Ed}}Hd}{{Bf{{A@`{Ed}}}}}}{{{A@`{f}}Hd}{{Bf{{A@`{f}}}}}}{{{A@`{Gb}}Hd}{{Bf{{A@`{Gb}}}}}}{{{A@`{Hj}}Hd}{{Bf{{A@`{Hj}}}}}}{{{A@`{Al}}Hd}{{Bf{{A@`{Al}}}}}}{{{A@`{Hd}}Hd}{{Bf{{A@`{Hd}}}}}}{{{A@`{Gh}}Hd}{{Bf{{A@`{Gh}}}}}}{{{A@`{Fl}}Hd}{{Bf{{A@`{Fl}}}}}}{{{A@`{Gn}}Hd}{{Bf{{A@`{Gn}}}}}}{{{A@`{F`}}Hd}{{Bf{{A@`{F`}}}}}}{{{A@`{Ej}}Hd}{{Bf{{A@`{Ej}}}}}}{{{A@`{c}}{A@`{c}}{A@`{c}}}{{A@`{c}}}{DLbAAl}}{{{b{{A@`{c}}}}}{{A@`{c}}}DLb}{{{b{DLd}}}DLd}{{{b{DLf}}}DLf}{{{b{DLh}}}DLh}{{{b{DLj}}}DLj}{{{b{{DKn{c}}}}}{{DKn{c}}}AAn}{{{b{{DL`{c}}}}}{{DL`{c}}}AAn}{{{b{DLl}}}DLl}{{b{b{dc}}}On{}}0000000{bOn}0000000{{{b{{A@`{c}}}}{b{{A@`{c}}}}}ABh{DLbAAl}}{{{b{{DKn{c}}}}{b{{DKn{c}}}}}ABhAAl}{{{b{{DL`{c}}}}{b{{DL`{c}}}}}ABhAAl}{{{A@`{Al}}}{{A@`{Hd}}}}{{{A@`{F`}}}{{A@`{Hd}}}}{{{A@`{Gh}}}{{A@`{Hd}}}}{{{A@`{Gb}}}{{A@`{Hd}}}}{{{A@`{f}}}{{A@`{Hd}}}}{{{A@`{Hj}}}{{A@`{Hd}}}}{{{A@`{Ej}}}{{A@`{Hd}}}}{{{A@`{Gn}}}{{A@`{Hd}}}}{{{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Ed}}}{{A@`{Hd}}}}{{{A@`{Fl}}}{{A@`{Hd}}}}{{{A@`{Ff}}}{{A@`{Hd}}}}{{{DKn{Hd}}}Hd}{{{DKn{Ej}}}Hd}{{{DKn{Hj}}}Hd}{{{DKn{Ff}}}Hd}{{{DKn{Ed}}}Hd}{{{DKn{Fl}}}Hd}{{{DKn{Gh}}}Hd}{{{DKn{f}}}Hd}{{{DKn{F`}}}Hd}{{{DKn{Al}}}Hd}{{{DKn{Gn}}}Hd}{{{DKn{Gb}}}Hd}{{{DL`{Al}}}Hd}{{{DL`{F`}}}Hd}{{{DL`{Ej}}}Hd}{{{DL`{Gb}}}Hd}{{{DL`{Gn}}}Hd}{{{DL`{Ff}}}Hd}{{{DL`{f}}}Hd}{{{DL`{Hd}}}Hd}{{{DL`{Hj}}}Hd}{{{DL`{Fl}}}Hd}{{{DL`{Gh}}}Hd}{{{DL`{Ed}}}Hd}{{{DKn{Hj}}}Hd}{{{DKn{F`}}}Hd}?{{{DKn{Ed}}}Hd}{{{DKn{Hd}}}Hd}{{{DKn{Ff}}}Hd}{{{DKn{Gb}}}Hd}{{{DKn{Gh}}}Hd}{{{DKn{Al}}}Hd}{{{DKn{f}}}Hd}{{{DKn{Fl}}}Hd}{{{DKn{Ej}}}Hd}{{{DL`{Gb}}}Hd}{{{DL`{Gn}}}Hd}{{{DL`{Ff}}}Hd}{{{DL`{Al}}}Hd}{{{DL`{Hj}}}Hd}{{{DL`{Fl}}}Hd}{{{DL`{F`}}}Hd}{{{DL`{f}}}Hd}{{{DL`{Gh}}}Hd}{{{DL`{Ej}}}Hd}{{{DL`{Hd}}}Hd}{{{DL`{Ed}}}Hd}{{}{{DKn{c}}}AFf}{{}{{DL`{c}}}AFf}{{{b{DLd}}}{{b{AKb}}}}{{{b{DLf}}}{{b{AKb}}}}{{{b{DLh}}}{{b{AKb}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{{A@`{c}}}}{b{{A@`{c}}}}}Aj{DLbACf}}{{{b{DLd}}{b{DLd}}}Aj}{{{b{DLf}}{b{DLf}}}Aj}{{{b{DLh}}{b{DLh}}}Aj}{{{b{DLj}}{b{DLj}}}Aj}{{{b{{DKn{c}}}}{b{{DKn{c}}}}}AjACf}{{{b{{DL`{c}}}}{b{{DL`{c}}}}}AjACf}{{{b{DLl}}{b{DLl}}}Aj}{{{b{{A@`{c}}}}{b{dAb}}}{{n{OnADb}}}{DLbAJb}}{{{b{{A@`{c}}}}{b{dAb}}}{{n{OnADb}}}{DLbADd}}{{{b{{A@`{c}}}}{b{dAb}}}{{n{OnADb}}}{DLbAD`}}{{{b{{A@`{c}}}}{b{dAb}}}{{n{OnADb}}}{DLbAIl}}{{{b{{A@`{c}}}}{b{dAb}}}{{n{OnADb}}}{DLbAIn}}{{{b{{A@`{c}}}}{b{dAb}}}{{n{OnADb}}}{DLbAJ`}}{{{b{DLd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DLf}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DLh}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DLj}}{b{dAb}}}{{n{OnADb}}}}{{{b{{DKn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DKn{c}}}}{b{dAb}}}{{n{OnADb}}}AIn}{{{b{{DKn{c}}}}{b{dAb}}}{{n{OnADb}}}AIl}{{{b{{DKn{c}}}}{b{dAb}}}{{n{OnADb}}}AJ`}{{{b{{DKn{c}}}}{b{dAb}}}{{n{OnADb}}}AJb}{{{b{{DKn{c}}}}{b{dAb}}}{{n{OnADb}}}ADd}{{{b{{DL`{c}}}}{b{dAb}}}{{n{OnADb}}}AIl}{{{b{{DL`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DL`{c}}}}{b{dAb}}}{{n{OnADb}}}AJb}{{{b{{DL`{c}}}}{b{dAb}}}{{n{OnADb}}}ADd}{{{b{{DL`{c}}}}{b{dAb}}}{{n{OnADb}}}AIn}{{{b{{DL`{c}}}}{b{dAb}}}{{n{OnADb}}}AJ`}{{{b{DLl}}{b{dAb}}}{{n{OnADb}}}}{{{A@`{Gn}}}{{A@`{F`}}}}{{{A@`{Gn}}}{{A@`{Gh}}}}{{{A@`{Hd}}}{{A@`{Ed}}}}{{{A@`{Hd}}}{{A@`{Ff}}}}{{{A@`{Gn}}}{{A@`{Ed}}}}{DLn{{A@`{Al}}}}{{{A@`{Gn}}}{{A@`{Ff}}}}{{{A@`{f}}}{{A@`{Gn}}}}{{{A@`{f}}}{{A@`{Hd}}}}{{{A@`{f}}}{{A@`{Hj}}}}{{{A@`{f}}}{{A@`{Gh}}}}{{{A@`{f}}}{{A@`{Al}}}}{{{A@`{Hj}}}{{A@`{Ed}}}}{{{A@`{f}}}{{A@`{Gb}}}}{{{A@`{f}}}{{A@`{Ed}}}}{{{A@`{f}}}{{A@`{Ff}}}}{cc{}}{{{A@`{Gn}}}{{A@`{Hd}}}}{{{A@`{f}}}{{A@`{F`}}}}{{{A@`{f}}}{{A@`{Ej}}}}{{{A@`{Ff}}}{{A@`{Ed}}}}{{{A@`{Gn}}}{{A@`{Hj}}}}{{{A@`{F`}}}{{A@`{Ff}}}}{{{A@`{Ej}}}{{A@`{Gb}}}}{{{A@`{Ej}}}{{A@`{Ed}}}}{{{A@`{Ej}}}{{A@`{Ff}}}}{{{A@`{Ej}}}{{A@`{F`}}}}{{{A@`{Fl}}}{{A@`{Gb}}}}{{{A@`{Fl}}}{{A@`{Ed}}}}{{{A@`{Fl}}}{{A@`{Ff}}}}{{{A@`{Fl}}}{{A@`{F`}}}}{{{A@`{Fl}}}{{A@`{Ej}}}}{{{A@`{Hj}}}{{A@`{Gh}}}}{{{A@`{Hd}}}{{A@`{Gh}}}}{{{A@`{Hd}}}{{A@`{Hj}}}}{{{A@`{Gn}}}{{A@`{Al}}}}{{{A@`{F`}}}{{A@`{Ed}}}}{cc{}}{AIhc{}}1{AIhDLf}{C@`DLf}33333{{{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{f}}}{{A@`{f}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Al}}}{{A@`{Al}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{Hd}}}{{DKn{Hd}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{f}}}{{DKn{f}}}}{{{DKn{Gh}}}{{DKn{Gh}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{f}}}{{DL`{f}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Al}}}{{A@`{Al}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{f}}}{{A@`{f}}}}{{{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Hd}}}{{DKn{Hd}}}}{{{DKn{Gh}}}{{DKn{Gh}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{f}}}{{DKn{f}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{f}}}{{DL`{f}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{b{dc}}}{{Bf{{b{d{A@`{c}}}}}}}DLb}{{{b{dc}}}{{b{d{A@`{c}}}}}DLb}{{{b{AKb}}}{{n{{A@`{F`}}}}}}{{{b{AKb}}}{{n{{A@`{Hd}}}}}}{{{b{AKb}}}{{n{{A@`{Fl}}}}}}{{{b{AKb}}}{{n{{A@`{Gh}}}}}}{{{b{AKb}}}{{n{{A@`{f}}}}}}{{{b{AKb}}}{{n{{A@`{Al}}}}}}{{{b{AKb}}}{{n{{A@`{Hj}}}}}}{{{b{AKb}}}{{n{{A@`{Ej}}}}}}{{{b{AKb}}}{{n{{A@`{Gb}}}}}}{{{b{AKb}}}{{n{{A@`{Ff}}}}}}{{{b{AKb}}}{{n{{A@`{Ed}}}}}}{{{b{AKb}}}{{n{{A@`{Gn}}}}}}{{{b{{A@`{c}}}}{b{{A@`{c}}}}}Aj{DLbADj}}{{{A@`{c}}}cDLb}1{{{b{{A@`{c}}}}{b{de}}}On{DLbBBl}BBj}{{{b{{DKn{c}}}}{b{de}}}OnBBlBBj}{{{b{{DL`{c}}}}{b{de}}}OnBBlBBj}{{{A@`{Al}}}Hd}{{{A@`{Gn}}}Hd}{{{A@`{Gh}}}Hd}{{{A@`{Hj}}}Hd}{{{A@`{Hd}}}Hd}{{{A@`{f}}}Hd}342105{{}c{}}0000000{{{A@`{Gb}}}Aj}{{{A@`{Ff}}}Aj}{{{A@`{Ed}}}Aj}{{{A@`{Ej}}}Aj}{{{A@`{Fl}}}Aj}{{{A@`{F`}}}Aj}{{{DKn{Fl}}}Aj}{{{DKn{Gb}}}Aj}{{{DKn{Ej}}}Aj}{{{DKn{Ff}}}Aj}{{{DKn{Ed}}}Aj}{{{DKn{F`}}}Aj}{{{DL`{F`}}}Aj}{{{DL`{Ed}}}Aj}{{{DL`{Ff}}}Aj}{{{DL`{Gb}}}Aj}{{{DL`{Ej}}}Aj}{{{DL`{Fl}}}Aj}{{{A@`{Gb}}}Aj}>?{{{A@`{Ff}}}Aj}>{{{A@`{Ed}}}Aj}:<>=9;734586{{{A@`{f}}}Aj}{{{A@`{Hd}}}Aj}{{{A@`{Al}}}Aj}{{{A@`{Gh}}}Aj}{{{A@`{Gn}}}Aj}{{{A@`{Hj}}}Aj}{{{DKn{Gn}}}Aj}{{{DKn{f}}}Aj}{{{DKn{Hd}}}Aj}{{{DKn{Hj}}}Aj}{{{DKn{Al}}}Aj}{{{DKn{Gh}}}Aj}{{{DL`{Gn}}}Aj}{{{DL`{Gh}}}Aj}{{{DL`{f}}}Aj}{{{DL`{Al}}}Aj}{{{DL`{Hd}}}Aj}{{{DL`{Hj}}}Aj}{{{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Al}}}{{A@`{Al}}}}{{{A@`{f}}}{{A@`{f}}}}{{{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{Hd}}}{{A@`{Hd}}}}{{{b{DLh}}}{{b{DLj}}}}{{{b{{A@`{c}}}}{b{{A@`{c}}}}}Aj{DLbADj}}{{{A@`{Hd}}}Hd}{{{A@`{f}}}Hd}{{{A@`{Hj}}}Hd}{{{A@`{Gh}}}Hd}{{{A@`{Fl}}}Hd}{{{A@`{F`}}}Hd}{{{A@`{Ff}}}Hd}{{{A@`{Al}}}Hd}{{{A@`{Ed}}}Hd}{{{A@`{Gb}}}Hd}{{{A@`{Ej}}}Hd}{{{A@`{Gn}}}Hd}{{{DKn{Ed}}}Hd}{{{DKn{Ej}}}Hd}{{{DKn{Gh}}}Hd}{{{DKn{Al}}}Hd}{{{DKn{Fl}}}Hd}{{{DKn{Gn}}}Hd}{{{DKn{Gb}}}Hd}{{{DKn{f}}}Hd}{{{DKn{F`}}}Hd}{{{DKn{Hj}}}Hd}{{{DKn{Ff}}}Hd}{{{DKn{Hd}}}Hd}{{{DL`{Hd}}}Hd}{{{DL`{f}}}Hd}{{{DL`{Ff}}}Hd}{{{DL`{Gh}}}Hd}{{{DL`{Ed}}}Hd}{{{DL`{Ej}}}Hd}{{{DL`{Hj}}}Hd}{{{DL`{Gn}}}Hd}{{{DL`{Fl}}}Hd}{{{DL`{Al}}}Hd}{{{DL`{F`}}}Hd}{{{DL`{Gb}}}Hd}{{{b{{A@`{c}}}}{b{{A@`{c}}}}}Aj{DLbADj}}{{{A@`{c}}{A@`{c}}}{{A@`{c}}}{DLbAAl}}{{{A@`{Gn}}{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Al}}{A@`{Al}}}{{A@`{Al}}}}{{{A@`{Hj}}{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{f}}{A@`{f}}}{{A@`{f}}}}{{{A@`{Gh}}{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Hd}}{A@`{Hd}}}{{A@`{Hd}}}}6{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{{A@`{c}}}}{b{{A@`{c}}}}}Aj{DLbACf}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{b{{A@`{Ed}}}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{b{{A@`{Gb}}}}}}{{{b{{A@`{Ej}}}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{b{{A@`{Ff}}}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{b{{A@`{F`}}}}}}{{{b{{A@`{Fl}}}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{F`}}}}}}{{{b{{DKn{Ff}}}}}}{{{b{{DKn{Fl}}}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{Gb}}}}}}{{{b{{DKn{Ej}}}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{Ed}}}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DL`{Hj}}}}}}{{{b{{DL`{Gn}}}}}}{{{b{{DL`{Ed}}}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{Ej}}}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Fl}}}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{b{{DL`{Gb}}}}}}{{{b{{DL`{F`}}}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{f}}}}}}{{{DL`{f}}}{{DL`{f}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{Al}}}}}}{{{b{{DL`{Gh}}}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{b{{DL`{Ff}}}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Hd}}}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{c{{Bf{{A@`{c}}}}}DLb}{c{{A@`{c}}}DLb}=?9875{{{b{{DKn{Fl}}}}}}{{{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Hd}}}}}}{{{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Hj}}}}}}{{{b{{DKn{Gn}}}}}}{{{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Gb}}}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{f}}}}}}{{{b{{DKn{F`}}}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{Ff}}}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ed}}}}}}{{{b{{DKn{Al}}}}}}{{{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{b{{DKn{Gh}}}}}}{{{DKn{f}}}{{DKn{f}}}}{{{DKn{Gh}}}{{DKn{Gh}}}}{{{b{{DKn{Ej}}}}}}{{{b{{DL`{Fl}}}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Gb}}}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{Ff}}}}}}{{{b{{DL`{f}}}}}}{{{DL`{f}}}{{DL`{f}}}}{{{b{{DL`{Al}}}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Ed}}}}}}{{{b{{DL`{Hd}}}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{b{{DL`{Gh}}}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{F`}}}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{Hj}}}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{b{{DL`{Ej}}}}}}{{{b{{DL`{Gn}}}}}}{{{A@`{Ff}}}{{Bb{{A@`{Ff}}Aj}}}}{{{A@`{Ed}}}{{Bb{{A@`{Ed}}Aj}}}}{{{A@`{Ej}}}{{Bb{{A@`{Ej}}Aj}}}}{{{A@`{F`}}}{{Bb{{A@`{F`}}Aj}}}}{{{A@`{Gb}}}{{Bb{{A@`{Gb}}Aj}}}}{{{A@`{Fl}}}{{Bb{{A@`{Fl}}Aj}}}}034521{{{b{{A@`{c}}}}{b{{A@`{c}}}}}{{Bf{ABh}}}{DLbADj}}{{{b{{DKn{c}}}}{b{{DKn{c}}}}}{{Bf{ABh}}}ADj}{{{b{{DL`{c}}}}{b{{DL`{c}}}}}{{Bf{ABh}}}ADj}{{{DKn{Al}}Hd}{{DKn{Al}}}}{{{DKn{f}}Hd}{{DKn{f}}}}{{{DKn{Gn}}Hd}{{DKn{Gn}}}}{{{DKn{F`}}Hd}{{DKn{F`}}}}{{{DKn{Ej}}Hd}{{DKn{Ej}}}}{{{DKn{Fl}}Hd}{{DKn{Fl}}}}{{{DKn{Hd}}Hd}{{DKn{Hd}}}}{{{DKn{Gb}}Hd}{{DKn{Gb}}}}{{{DKn{Gh}}Hd}{{DKn{Gh}}}}{{{DKn{Ff}}Hd}{{DKn{Ff}}}}{{{DKn{Ed}}Hd}{{DKn{Ed}}}}{{{DKn{Hj}}Hd}{{DKn{Hj}}}}{{{DL`{Gb}}Hd}{{DL`{Gb}}}}{{{DL`{Gh}}Hd}{{DL`{Gh}}}}{{{DL`{Ed}}Hd}{{DL`{Ed}}}}{{{DL`{Hj}}Hd}{{DL`{Hj}}}}{{{DL`{Ff}}Hd}{{DL`{Ff}}}}{{{DL`{Al}}Hd}{{DL`{Al}}}}{{{DL`{f}}Hd}{{DL`{f}}}}{{{DL`{Hd}}Hd}{{DL`{Hd}}}}{{{DL`{Fl}}Hd}{{DL`{Fl}}}}{{{DL`{Ej}}Hd}{{DL`{Ej}}}}{{{DL`{F`}}Hd}{{DL`{F`}}}}{{{DL`{Gn}}Hd}{{DL`{Gn}}}}{c{{DL`{Gh}}}{{A@d{}{{A@b{{b{{DL`{Gh}}}}}}}}}}{c{{DL`{Fl}}}{{A@d{}{{A@b{{b{{DL`{Fl}}}}}}}}}}{c{{DL`{Ff}}}{{A@d{}{{A@b{{DL`{Ff}}}}}}}}{c{{DL`{Ff}}}{{A@d{}{{A@b{{b{{DL`{Ff}}}}}}}}}}{c{{DL`{Ed}}}{{A@d{}{{A@b{{DL`{Ed}}}}}}}}{c{{DL`{Ed}}}{{A@d{}{{A@b{{b{{DL`{Ed}}}}}}}}}}{c{{DL`{Gb}}}{{A@d{}{{A@b{{DL`{Gb}}}}}}}}{c{{DL`{Gb}}}{{A@d{}{{A@b{{b{{DL`{Gb}}}}}}}}}}{c{{DL`{f}}}{{A@d{}{{A@b{{DL`{f}}}}}}}}{c{{DL`{F`}}}{{A@d{}{{A@b{{b{{DL`{F`}}}}}}}}}}{c{{DL`{Gn}}}{{A@d{}{{A@b{{DL`{Gn}}}}}}}}{c{{DL`{Gn}}}{{A@d{}{{A@b{{b{{DL`{Gn}}}}}}}}}}{c{{DL`{Hd}}}{{A@d{}{{A@b{{DL`{Hd}}}}}}}}{c{{DL`{Hd}}}{{A@d{}{{A@b{{b{{DL`{Hd}}}}}}}}}}{c{{DL`{Hj}}}{{A@d{}{{A@b{{DL`{Hj}}}}}}}}{c{{DL`{Hj}}}{{A@d{}{{A@b{{b{{DL`{Hj}}}}}}}}}}{c{{DL`{Gh}}}{{A@d{}{{A@b{{DL`{Gh}}}}}}}}{c{{DL`{Fl}}}{{A@d{}{{A@b{{DL`{Fl}}}}}}}}{c{{DL`{Al}}}{{A@d{}{{A@b{{DL`{Al}}}}}}}}{c{{DL`{Al}}}{{A@d{}{{A@b{{b{{DL`{Al}}}}}}}}}}{c{{DL`{F`}}}{{A@d{}{{A@b{{DL`{F`}}}}}}}}{c{{DL`{Ej}}}{{A@d{}{{A@b{{b{{DL`{Ej}}}}}}}}}}{c{{DL`{Ej}}}{{A@d{}{{A@b{{DL`{Ej}}}}}}}}{c{{DL`{f}}}{{A@d{}{{A@b{{b{{DL`{f}}}}}}}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{A@`{Al}}}{{A@`{Al}}}}{{{A@`{f}}}{{A@`{f}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DKn{Hd}}}{{DKn{Hd}}}}{{{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Gh}}}{{DKn{Gh}}}}{{{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{f}}}{{DKn{f}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{f}}}{{DL`{f}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{A@`{F`}}Hd}{{A@`{F`}}}}{{{A@`{Hd}}Hd}{{A@`{Hd}}}}{{{A@`{Hj}}Hd}{{A@`{Hj}}}}{{{A@`{Fl}}Hd}{{A@`{Fl}}}}{{{A@`{Gh}}Hd}{{A@`{Gh}}}}{{{A@`{Gn}}Hd}{{A@`{Gn}}}}{{{A@`{Ej}}Hd}{{A@`{Ej}}}}{{{A@`{Ed}}Hd}{{A@`{Ed}}}}{{{A@`{Al}}Hd}{{A@`{Al}}}}{{{A@`{f}}Hd}{{A@`{f}}}}{{{A@`{Ff}}Hd}{{A@`{Ff}}}}{{{A@`{Gb}}Hd}{{A@`{Gb}}}}{{{DKn{Ej}}Hd}{{DKn{Ej}}}}{{{DKn{Gb}}Hd}{{DKn{Gb}}}}{{{DKn{Hd}}Hd}{{DKn{Hd}}}}{{{DKn{Hj}}Hd}{{DKn{Hj}}}}{{{DKn{Ed}}Hd}{{DKn{Ed}}}}{{{DKn{Ff}}Hd}{{DKn{Ff}}}}{{{DKn{f}}Hd}{{DKn{f}}}}{{{DKn{Gh}}Hd}{{DKn{Gh}}}}{{{DKn{Al}}Hd}{{DKn{Al}}}}{{{DKn{Gn}}Hd}{{DKn{Gn}}}}{{{DKn{F`}}Hd}{{DKn{F`}}}}{{{DKn{Fl}}Hd}{{DKn{Fl}}}}{{{DL`{Ej}}Hd}{{DL`{Ej}}}}{{{DL`{Fl}}Hd}{{DL`{Fl}}}}{{{DL`{Ed}}Hd}{{DL`{Ed}}}}{{{DL`{Hj}}Hd}{{DL`{Hj}}}}{{{DL`{Al}}Hd}{{DL`{Al}}}}{{{DL`{Hd}}Hd}{{DL`{Hd}}}}{{{DL`{f}}Hd}{{DL`{f}}}}{{{DL`{Gb}}Hd}{{DL`{Gb}}}}{{{DL`{Ff}}Hd}{{DL`{Ff}}}}{{{DL`{F`}}Hd}{{DL`{F`}}}}{{{DL`{Gn}}Hd}{{DL`{Gn}}}}{{{DL`{Gh}}Hd}{{DL`{Gh}}}}{{{A@`{Gn}}Hd}{{A@`{Gn}}}}{{{A@`{Ff}}Hd}{{A@`{Ff}}}}{{{A@`{f}}Hd}{{A@`{f}}}}{{{A@`{Ej}}Hd}{{A@`{Ej}}}}{{{A@`{Al}}Hd}{{A@`{Al}}}}{{{A@`{F`}}Hd}{{A@`{F`}}}}{{{A@`{Hj}}Hd}{{A@`{Hj}}}}{{{A@`{Ed}}Hd}{{A@`{Ed}}}}{{{A@`{Gb}}Hd}{{A@`{Gb}}}}{{{A@`{Gh}}Hd}{{A@`{Gh}}}}{{{A@`{Fl}}Hd}{{A@`{Fl}}}}{{{A@`{Hd}}Hd}{{A@`{Hd}}}}{{{DKn{Gh}}Hd}{{DKn{Gh}}}}{{{DKn{Hd}}Hd}{{DKn{Hd}}}}{{{DKn{f}}Hd}{{DKn{f}}}}{{{DKn{Ed}}Hd}{{DKn{Ed}}}}{{{DKn{Gn}}Hd}{{DKn{Gn}}}}{{{DKn{Gb}}Hd}{{DKn{Gb}}}}{{{DKn{Ff}}Hd}{{DKn{Ff}}}}{{{DKn{Hj}}Hd}{{DKn{Hj}}}}{{{DKn{Ej}}Hd}{{DKn{Ej}}}}{{{DKn{Al}}Hd}{{DKn{Al}}}}{{{DKn{F`}}Hd}{{DKn{F`}}}}{{{DKn{Fl}}Hd}{{DKn{Fl}}}}{{{DL`{Ej}}Hd}{{DL`{Ej}}}}{{{DL`{Fl}}Hd}{{DL`{Fl}}}}{{{DL`{Al}}Hd}{{DL`{Al}}}}{{{DL`{Hd}}Hd}{{DL`{Hd}}}}{{{DL`{Ed}}Hd}{{DL`{Ed}}}}{{{DL`{f}}Hd}{{DL`{f}}}}{{{DL`{Gn}}Hd}{{DL`{Gn}}}}{{{DL`{Gh}}Hd}{{DL`{Gh}}}}{{{DL`{Hj}}Hd}{{DL`{Hj}}}}{{{DL`{Ff}}Hd}{{DL`{Ff}}}}{{{DL`{F`}}Hd}{{DL`{F`}}}}{{{DL`{Gb}}Hd}{{DL`{Gb}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Al}}Al}{{A@`{Al}}}}{{{A@`{Gn}}Gn}{{A@`{Gn}}}}{{{A@`{Hj}}Hj}{{A@`{Hj}}}}{{{A@`{f}}f}{{A@`{f}}}}{{{A@`{Gh}}Gh}{{A@`{Gh}}}}{{{A@`{Hd}}Hd}{{A@`{Hd}}}}{{{A@`{Al}}{A@`{Al}}}{{A@`{Al}}}}{{{A@`{Hj}}{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{f}}{A@`{f}}}{{A@`{f}}}}{{{A@`{Gb}}{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Gn}}{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Hd}}{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Fl}}{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Ff}}{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Gh}}{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Ed}}{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Ej}}{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{F`}}{A@`{F`}}}{{A@`{F`}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Ed}}Hd}{{A@`{Ed}}}}{{{A@`{f}}Hd}{{A@`{f}}}}{{{A@`{Gn}}Hd}{{A@`{Gn}}}}{{{A@`{F`}}Hd}{{A@`{F`}}}}{{{A@`{Gb}}Hd}{{A@`{Gb}}}}{{{A@`{Ej}}Hd}{{A@`{Ej}}}}{{{A@`{Hj}}Hd}{{A@`{Hj}}}}{{{A@`{Hd}}Hd}{{A@`{Hd}}}}{{{A@`{Ff}}Hd}{{A@`{Ff}}}}{{{A@`{Fl}}Hd}{{A@`{Fl}}}}{{{A@`{Al}}Hd}{{A@`{Al}}}}{{{A@`{Gh}}Hd}{{A@`{Gh}}}}{{{b{{DL`{Ej}}}}Al}}{{{b{{DL`{Ff}}}}Al}}{{{DL`{Fl}}{b{Al}}}}{{{DL`{f}}Al}{{DL`{f}}}}{{{DL`{Fl}}Al}{{DL`{Fl}}}}{{{b{{DL`{Al}}}}{b{Al}}}}{{{b{{DL`{Fl}}}}{b{Al}}}}{{{DL`{Al}}{b{Al}}}}{{{b{{DL`{Al}}}}Al}}{{{DL`{Al}}Al}{{DL`{Al}}}}{{{b{{DL`{Gh}}}}{b{Al}}}}{{{DL`{Ej}}Al}{{DL`{Ej}}}}{{{DL`{Gh}}{b{Al}}}}{{{b{{DL`{f}}}}Al}}{{{DL`{f}}{b{Al}}}}{{{b{{DL`{Gh}}}}Al}}{{{DL`{Gh}}Al}{{DL`{Gh}}}}{{{b{{DL`{Hj}}}}{b{Al}}}}{{{DL`{Ej}}{b{Al}}}}{{{DL`{Hj}}{b{Al}}}}{{{b{{DL`{Ej}}}}{b{Al}}}}{{{DL`{F`}}Al}{{DL`{F`}}}}{{{b{{DL`{f}}}}{b{Al}}}}{{{b{{DL`{Hj}}}}Al}}{{{b{{DL`{F`}}}}Al}}{{{DL`{Gn}}Al}{{DL`{Gn}}}}{{{b{{DL`{Gn}}}}Al}}{{{DL`{Gn}}{b{Al}}}}{{{DL`{Hj}}Al}{{DL`{Hj}}}}{{{b{{DL`{Hd}}}}{b{Al}}}}{{{b{{DL`{Gn}}}}{b{Al}}}}{{{DL`{Hd}}Al}{{DL`{Hd}}}}{{{DL`{F`}}{b{Al}}}}{{{b{{DL`{Fl}}}}Al}}{{{DL`{Gb}}{b{Al}}}}{{{b{{DL`{Hd}}}}Al}}{{{b{{DL`{Gb}}}}Al}}{{{DL`{Gb}}Al}{{DL`{Gb}}}}{{{b{{DL`{Ed}}}}{b{Al}}}}{{{b{{DL`{F`}}}}{b{Al}}}}{{{DL`{Ff}}Al}{{DL`{Ff}}}}{{{DL`{Ed}}{b{Al}}}}{{{b{{DL`{Ed}}}}Al}}{{{DL`{Ed}}Al}{{DL`{Ed}}}}{{{b{{DL`{Ff}}}}{b{Al}}}}{{{DL`{Hd}}{b{Al}}}}{{{DL`{Ff}}{b{Al}}}}{{{b{{DL`{Gb}}}}{b{Al}}}}{{{b{d{DL`{Hj}}}}Al}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Ej}}}}Al}On}{{{b{d{DL`{Fl}}}}{b{Al}}}On}{{{b{d{DL`{F`}}}}Al}On}{{{b{d{DL`{f}}}}Al}On}{{{b{d{DL`{f}}}}{b{Al}}}On}{{{b{d{DL`{Fl}}}}Al}On}{{{b{d{DL`{Gn}}}}Al}On}{{{b{d{DL`{Ej}}}}{b{Al}}}On}{{{b{d{DL`{Hd}}}}Al}On}{{{b{d{DL`{Hd}}}}{b{Al}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{Hj}}}}{b{Al}}}On}{{{b{d{DL`{Gh}}}}Al}On}{{{b{d{DL`{F`}}}}{b{Al}}}On}{{{b{d{DL`{Ff}}}}Al}On}{{{b{d{DL`{Ff}}}}{b{Al}}}On}{{{b{d{DL`{Ed}}}}Al}On}{{{b{d{DL`{Ed}}}}{b{Al}}}On}{{{b{d{DL`{Gb}}}}Al}On}{{{b{d{DL`{Gb}}}}{b{Al}}}On}{{{b{d{DL`{Gh}}}}{b{Al}}}On}{{{b{d{DL`{Gn}}}}{b{Al}}}On}{{{DL`{f}}{b{Al}}}}{{{DL`{Gb}}{b{Al}}}}{{{DL`{Gn}}Al}{{DL`{Gn}}}}{{{b{{DL`{Gn}}}}Al}}{{{DL`{Gn}}{b{Al}}}}{{{b{{DL`{Gn}}}}{b{Al}}}}{{{DL`{Hd}}Al}{{DL`{Hd}}}}{{{b{{DL`{Hd}}}}Al}}{{{DL`{Hd}}{b{Al}}}}{{{b{{DL`{Hd}}}}{b{Al}}}}{{{DL`{Hj}}Al}{{DL`{Hj}}}}{{{b{{DL`{Hj}}}}Al}}{{{DL`{Hj}}{b{Al}}}}{{{b{{DL`{Hj}}}}{b{Al}}}}{{{DL`{Gh}}Al}{{DL`{Gh}}}}{{{b{{DL`{Gh}}}}Al}}{{{DL`{Gh}}{b{Al}}}}{{{b{{DL`{Gh}}}}{b{Al}}}}{{{DL`{Al}}Al}{{DL`{Al}}}}{{{b{{DL`{Al}}}}Al}}{{{DL`{Al}}{b{Al}}}}{{{b{{DL`{Gb}}}}{b{Al}}}}{{{DL`{Fl}}Al}{{DL`{Fl}}}}{{{b{{DL`{Fl}}}}Al}}{{{DL`{Fl}}{b{Al}}}}{{{b{{DL`{Fl}}}}{b{Al}}}}{{{DL`{Ej}}Al}{{DL`{Ej}}}}{{{b{{DL`{f}}}}{b{Al}}}}{{{b{{DL`{Ej}}}}Al}}{{{b{{DL`{f}}}}Al}}{{{DL`{Ej}}{b{Al}}}}{{{b{{DL`{Ej}}}}{b{Al}}}}{{{DL`{F`}}Al}{{DL`{F`}}}}{{{b{{DL`{F`}}}}Al}}{{{DL`{F`}}{b{Al}}}}{{{b{{DL`{F`}}}}{b{Al}}}}{{{DL`{Ff}}Al}{{DL`{Ff}}}}{{{DL`{f}}Al}{{DL`{f}}}}{{{b{{DL`{Ff}}}}Al}}{{{DL`{Ff}}{b{Al}}}}{{{b{{DL`{Ff}}}}{b{Al}}}}{{{DL`{Ed}}Al}{{DL`{Ed}}}}{{{b{{DL`{Ed}}}}Al}}{{{DL`{Ed}}{b{Al}}}}{{{b{{DL`{Ed}}}}{b{Al}}}}{{{DL`{Gb}}Al}{{DL`{Gb}}}}{{{b{{DL`{Gb}}}}Al}}{{{b{{DL`{Al}}}}{b{Al}}}}{{{b{d{DL`{F`}}}}Al}On}{{{b{d{DL`{Gn}}}}{b{Al}}}On}{{{b{d{DL`{Ej}}}}Al}On}{{{b{d{DL`{Fl}}}}{b{Al}}}On}{{{b{d{DL`{F`}}}}{b{Al}}}On}{{{b{d{DL`{f}}}}{b{Al}}}On}{{{b{d{DL`{Fl}}}}Al}On}{{{b{d{DL`{f}}}}Al}On}{{{b{d{DL`{Ej}}}}{b{Al}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{Gn}}}}Al}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Gh}}}}{b{Al}}}On}{{{b{d{DL`{Gh}}}}Al}On}{{{b{d{DL`{Ff}}}}Al}On}{{{b{d{DL`{Ed}}}}{b{Al}}}On}{{{b{d{DL`{Ff}}}}{b{Al}}}On}{{{b{d{DL`{Ed}}}}Al}On}{{{b{d{DL`{Gb}}}}{b{Al}}}On}{{{b{d{DL`{Gb}}}}Al}On}{{{b{d{DL`{Hj}}}}{b{Al}}}On}{{{b{d{DL`{Hd}}}}{b{Al}}}On}{{{b{d{DL`{Hd}}}}Al}On}{{{b{d{DL`{Hj}}}}Al}On}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{DKn{Al}}{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Gb}}{b{{DKn{Gb}}}}}}{{{DKn{Hj}}{DKn{Hj}}}{{DKn{Hj}}}}{{{b{{DKn{Hd}}}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Hj}}}}{DKn{Hj}}}}{{{DKn{Gh}}{DKn{Gh}}}{{DKn{Gh}}}}{{{DKn{Hd}}{b{{DKn{Hd}}}}}}{{{b{{DKn{Ed}}}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Hj}}}}{b{{DKn{Hj}}}}}}{{{b{{DKn{Hd}}}}{DKn{Hd}}}}{{{DKn{Ed}}{b{{DKn{Ed}}}}}}{{{b{{DKn{Ed}}}}{DKn{Ed}}}}{{{DKn{Ed}}{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{Hd}}{DKn{Hd}}}{{DKn{Hd}}}}{{{b{{DKn{Gn}}}}{b{{DKn{Gn}}}}}}{{{b{{DKn{Ff}}}}{b{{DKn{Ff}}}}}}{{{DKn{Ff}}{b{{DKn{Ff}}}}}}{{{b{{DKn{Ff}}}}{DKn{Ff}}}}{{{DKn{Gn}}{b{{DKn{Gn}}}}}}{{{DKn{Ff}}{DKn{Ff}}}{{DKn{Ff}}}}{{{b{{DKn{F`}}}}{b{{DKn{F`}}}}}}{{{b{{DKn{Gh}}}}{DKn{Gh}}}}{{{DKn{Gh}}{b{{DKn{Gh}}}}}}{{{DKn{F`}}{b{{DKn{F`}}}}}}{{{DKn{Gn}}{DKn{Gn}}}{{DKn{Gn}}}}{{{b{{DKn{F`}}}}{DKn{F`}}}}{{{b{{DKn{f}}}}{b{{DKn{f}}}}}}{{{DKn{f}}{b{{DKn{f}}}}}}{{{DKn{F`}}{DKn{F`}}}{{DKn{F`}}}}{{{b{{DKn{f}}}}{DKn{f}}}}{{{DKn{f}}{DKn{f}}}{{DKn{f}}}}{{{b{{DKn{Ej}}}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Al}}}}{b{{DKn{Al}}}}}}{{{b{{DKn{Gh}}}}{b{{DKn{Gh}}}}}}{{{DKn{Gb}}{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Al}}{b{{DKn{Al}}}}}}{{{b{{DKn{Al}}}}{DKn{Al}}}}{{{DKn{Hj}}{b{{DKn{Hj}}}}}}{{{DKn{Ej}}{b{{DKn{Ej}}}}}}{{{b{{DKn{Ej}}}}{DKn{Ej}}}}{{{DKn{Ej}}{DKn{Ej}}}{{DKn{Ej}}}}{{{b{{DKn{Fl}}}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Gb}}}}{DKn{Gb}}}}{{{DKn{Fl}}{b{{DKn{Fl}}}}}}{{{b{{DKn{Fl}}}}{DKn{Fl}}}}{{{DKn{Fl}}{DKn{Fl}}}{{DKn{Fl}}}}{{{b{{DKn{Gb}}}}{b{{DKn{Gb}}}}}}{{{b{{DKn{Gn}}}}{DKn{Gn}}}}{{{b{{DL`{Ej}}}}{b{{DL`{Ej}}}}}}{{{DL`{Ed}}{b{{DL`{Ed}}}}}}{{{DL`{Ff}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Ff}}}}{b{{DL`{Ff}}}}}}{{{b{{DL`{Al}}}}{DL`{Al}}}}{{{DL`{Al}}{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Al}}{b{{DL`{Al}}}}}}{{{DL`{Ed}}{DL`{Ed}}}{{DL`{Ed}}}}{{{b{{DL`{Al}}}}{b{{DL`{Al}}}}}}{{{DL`{f}}{DL`{f}}}{{DL`{f}}}}{{{b{{DL`{f}}}}{DL`{f}}}}{{{b{{DL`{Ff}}}}{DL`{Ff}}}}{{{DL`{Ff}}{DL`{Ff}}}{{DL`{Ff}}}}{{{b{{DL`{F`}}}}{b{{DL`{F`}}}}}}{{{DL`{F`}}{b{{DL`{F`}}}}}}{{{b{{DL`{F`}}}}{DL`{F`}}}}{{{DL`{f}}{b{{DL`{f}}}}}}{{{DL`{F`}}{DL`{F`}}}{{DL`{F`}}}}{{{b{{DL`{f}}}}{b{{DL`{f}}}}}}{{{DL`{Gn}}{DL`{Gn}}}{{DL`{Gn}}}}{{{b{{DL`{Gn}}}}{DL`{Gn}}}}{{{b{{DL`{Ed}}}}{b{{DL`{Ed}}}}}}{{{DL`{Ej}}{b{{DL`{Ej}}}}}}{{{b{{DL`{Gn}}}}{b{{DL`{Gn}}}}}}{{{b{{DL`{Ej}}}}{DL`{Ej}}}}{{{DL`{Hd}}{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Ej}}{DL`{Ej}}}{{DL`{Ej}}}}{{{b{{DL`{Fl}}}}{b{{DL`{Fl}}}}}}{{{DL`{Fl}}{b{{DL`{Fl}}}}}}{{{b{{DL`{Fl}}}}{DL`{Fl}}}}{{{DL`{Fl}}{DL`{Fl}}}{{DL`{Fl}}}}{{{b{{DL`{Hd}}}}{DL`{Hd}}}}{{{b{{DL`{Gb}}}}{b{{DL`{Gb}}}}}}{{{DL`{Gb}}{b{{DL`{Gb}}}}}}{{{b{{DL`{Gb}}}}{DL`{Gb}}}}{{{DL`{Hd}}{b{{DL`{Hd}}}}}}{{{DL`{Gb}}{DL`{Gb}}}{{DL`{Gb}}}}{{{b{{DL`{Gh}}}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Hd}}}}{b{{DL`{Hd}}}}}}{{{DL`{Hj}}{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Gh}}{b{{DL`{Gh}}}}}}{{{b{{DL`{Gh}}}}{DL`{Gh}}}}{{{DL`{Gh}}{DL`{Gh}}}{{DL`{Gh}}}}{{{b{{DL`{Hj}}}}{b{{DL`{Hj}}}}}}{{{DL`{Hj}}{b{{DL`{Hj}}}}}}{{{b{{DL`{Hj}}}}{DL`{Hj}}}}{{{b{{DL`{Ed}}}}{DL`{Ed}}}}{{{DL`{Gn}}{b{{DL`{Gn}}}}}}{{{b{d{DKn{F`}}}}F`}On}{{{b{d{DKn{Al}}}}{DKn{Al}}}On}{{{b{d{DKn{F`}}}}{b{{DKn{F`}}}}}On}{{{b{d{DKn{F`}}}}{DKn{F`}}}On}{{{b{d{DKn{Ff}}}}{b{{DKn{Ff}}}}}On}{{{b{d{DKn{Ej}}}}{b{Ej}}}On}{{{b{d{DKn{f}}}}{b{f}}}On}{{{b{d{DKn{Ej}}}}Ej}On}{{{b{d{DKn{f}}}}f}On}{{{b{d{DKn{Gn}}}}{DKn{Gn}}}On}{{{b{d{DKn{Gh}}}}{DKn{Gh}}}On}{{{b{d{DKn{Hj}}}}{b{Hj}}}On}{{{b{d{DKn{Hj}}}}Hj}On}{{{b{d{DKn{Hj}}}}{b{{DKn{Hj}}}}}On}{{{b{d{DKn{Gn}}}}{b{{DKn{Gn}}}}}On}{{{b{d{DKn{Hj}}}}{DKn{Hj}}}On}{{{b{d{DKn{Gn}}}}Gn}On}{{{b{d{DKn{Hd}}}}{b{Hd}}}On}{{{b{d{DKn{Gh}}}}Gh}On}{{{b{d{DKn{Gn}}}}{b{Gn}}}On}{{{b{d{DKn{Hd}}}}{DKn{Hd}}}On}{{{b{d{DKn{Gh}}}}{b{Gh}}}On}{{{b{d{DKn{Ej}}}}{DKn{Ej}}}On}{{{b{d{DKn{Fl}}}}{b{Fl}}}On}{{{b{d{DKn{Fl}}}}Fl}On}{{{b{d{DKn{Hd}}}}Hd}On}{{{b{d{DKn{Hd}}}}{b{{DKn{Hd}}}}}On}{{{b{d{DKn{Ed}}}}{b{Ed}}}On}{{{b{d{DKn{Ff}}}}Ff}On}{{{b{d{DKn{Fl}}}}{b{{DKn{Fl}}}}}On}{{{b{d{DKn{Ff}}}}{b{Ff}}}On}{{{b{d{DKn{Ed}}}}{DKn{Ed}}}On}{{{b{d{DKn{f}}}}{b{{DKn{f}}}}}On}{{{b{d{DKn{F`}}}}{b{F`}}}On}{{{b{d{DKn{Ff}}}}{DKn{Ff}}}On}{{{b{d{DKn{f}}}}{DKn{f}}}On}{{{b{d{DKn{Al}}}}{b{Al}}}On}{{{b{d{DKn{Fl}}}}{DKn{Fl}}}On}{{{b{d{DKn{Gb}}}}{b{Gb}}}On}{{{b{d{DKn{Gb}}}}Gb}On}{{{b{d{DKn{Gh}}}}{b{{DKn{Gh}}}}}On}{{{b{d{DKn{Al}}}}Al}On}{{{b{d{DKn{Gb}}}}{b{{DKn{Gb}}}}}On}{{{b{d{DKn{Gb}}}}{DKn{Gb}}}On}{{{b{d{DKn{Ed}}}}{b{{DKn{Ed}}}}}On}{{{b{d{DKn{Ed}}}}Ed}On}{{{b{d{DKn{Al}}}}{b{{DKn{Al}}}}}On}{{{b{d{DKn{Ej}}}}{b{{DKn{Ej}}}}}On}{{{b{d{DL`{Ej}}}}Ej}On}{{{b{d{DL`{Gb}}}}{DL`{Gb}}}On}{{{b{d{DL`{Al}}}}{DL`{Al}}}On}{{{b{d{DL`{Ej}}}}{DL`{Ej}}}On}{{{b{d{DL`{Ed}}}}{b{Ed}}}On}{{{b{d{DL`{Ed}}}}Ed}On}{{{b{d{DL`{F`}}}}{DL`{F`}}}On}{{{b{d{DL`{F`}}}}{b{{DL`{F`}}}}}On}{{{b{d{DL`{F`}}}}F`}On}{{{b{d{DL`{Ed}}}}{b{{DL`{Ed}}}}}On}{{{b{d{DL`{Ff}}}}{DL`{Ff}}}On}{{{b{d{DL`{Hd}}}}{b{Hd}}}On}{{{b{d{DL`{Hd}}}}Hd}On}{{{b{d{DL`{Ff}}}}{b{{DL`{Ff}}}}}On}{{{b{d{DL`{Ed}}}}{DL`{Ed}}}On}{{{b{d{DL`{Ff}}}}Ff}On}{{{b{d{DL`{Ff}}}}{b{Ff}}}On}{{{b{d{DL`{Ej}}}}{b{Ej}}}On}{{{b{d{DL`{Hd}}}}{b{{DL`{Hd}}}}}On}{{{b{d{DL`{Hd}}}}{DL`{Hd}}}On}{{{b{d{DL`{Ej}}}}{b{{DL`{Ej}}}}}On}{{{b{d{DL`{Al}}}}Al}On}{{{b{d{DL`{Al}}}}{b{{DL`{Al}}}}}On}{{{b{d{DL`{Fl}}}}{b{Fl}}}On}{{{b{d{DL`{Hj}}}}{DL`{Hj}}}On}{{{b{d{DL`{Hj}}}}{b{{DL`{Hj}}}}}On}{{{b{d{DL`{Fl}}}}Fl}On}{{{b{d{DL`{Gn}}}}{b{Gn}}}On}{{{b{d{DL`{Al}}}}{b{Al}}}On}{{{b{d{DL`{Hj}}}}Hj}On}{{{b{d{DL`{f}}}}{DL`{f}}}On}{{{b{d{DL`{Gn}}}}Gn}On}{{{b{d{DL`{f}}}}{b{{DL`{f}}}}}On}{{{b{d{DL`{f}}}}f}On}{{{b{d{DL`{Fl}}}}{b{{DL`{Fl}}}}}On}{{{b{d{DL`{f}}}}{b{f}}}On}{{{b{d{DL`{Fl}}}}{DL`{Fl}}}On}{{{b{d{DL`{Gb}}}}{b{Gb}}}On}{{{b{d{DL`{Gb}}}}Gb}On}{{{b{d{DL`{Gn}}}}{b{{DL`{Gn}}}}}On}{{{b{d{DL`{Gb}}}}{b{{DL`{Gb}}}}}On}{{{b{d{DL`{Gn}}}}{DL`{Gn}}}On}{{{b{d{DL`{Hj}}}}{b{Hj}}}On}{{{b{d{DL`{Gh}}}}{DL`{Gh}}}On}{{{b{d{DL`{Gh}}}}{b{{DL`{Gh}}}}}On}{{{b{d{DL`{Gh}}}}Gh}On}{{{b{d{DL`{Gh}}}}{b{Gh}}}On}{{{b{d{DL`{F`}}}}{b{F`}}}On}{c{{DL`{f}}}{{A@d{}{{A@b{{DL`{f}}}}}}}}{c{{DL`{F`}}}{{A@d{}{{A@b{{DL`{F`}}}}}}}}{c{{DL`{Al}}}{{A@d{}{{A@b{{DL`{Al}}}}}}}}{c{{DL`{Gh}}}{{A@d{}{{A@b{{b{{DL`{Gh}}}}}}}}}}{c{{DL`{Gh}}}{{A@d{}{{A@b{{DL`{Gh}}}}}}}}{c{{DL`{Hj}}}{{A@d{}{{A@b{{b{{DL`{Hj}}}}}}}}}}{c{{DL`{Hj}}}{{A@d{}{{A@b{{DL`{Hj}}}}}}}}{c{{DL`{Hd}}}{{A@d{}{{A@b{{b{{DL`{Hd}}}}}}}}}}{c{{DL`{Hd}}}{{A@d{}{{A@b{{DL`{Hd}}}}}}}}{c{{DL`{Al}}}{{A@d{}{{A@b{{b{{DL`{Al}}}}}}}}}}{c{{DL`{Gn}}}{{A@d{}{{A@b{{DL`{Gn}}}}}}}}{c{{DL`{f}}}{{A@d{}{{A@b{{b{{DL`{f}}}}}}}}}}{c{{DL`{Ej}}}{{A@d{}{{A@b{{b{{DL`{Ej}}}}}}}}}}{c{{DL`{Gb}}}{{A@d{}{{A@b{{b{{DL`{Gb}}}}}}}}}}{c{{DL`{Gb}}}{{A@d{}{{A@b{{DL`{Gb}}}}}}}}{c{{DL`{Ed}}}{{A@d{}{{A@b{{b{{DL`{Ed}}}}}}}}}}{c{{DL`{Ed}}}{{A@d{}{{A@b{{DL`{Ed}}}}}}}}{c{{DL`{Ff}}}{{A@d{}{{A@b{{b{{DL`{Ff}}}}}}}}}}{c{{DL`{Fl}}}{{A@d{}{{A@b{{b{{DL`{Fl}}}}}}}}}}{c{{DL`{Ej}}}{{A@d{}{{A@b{{DL`{Ej}}}}}}}}{c{{DL`{Ff}}}{{A@d{}{{A@b{{DL`{Ff}}}}}}}}{c{{DL`{Fl}}}{{A@d{}{{A@b{{DL`{Fl}}}}}}}}{c{{DL`{F`}}}{{A@d{}{{A@b{{b{{DL`{F`}}}}}}}}}}{c{{DL`{Gn}}}{{A@d{}{{A@b{{b{{DL`{Gn}}}}}}}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{f}}}{{A@`{f}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Al}}}{{A@`{Al}}}}{{{A@`{Gn}}}{{A@`{Gn}}}}{{{DKn{Hd}}}{{DKn{Hd}}}}{{{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{Al}}}{{DKn{Al}}}}{{{DKn{f}}}{{DKn{f}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{Gh}}}{{DKn{Gh}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{f}}}{{DL`{f}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Al}}}{{A@`{Al}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{f}}}{{A@`{f}}}}{{{A@`{Gn}}}{{A@`{Gn}}}}{{{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Gh}}}{{DKn{Gh}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{Hd}}}{{DKn{Hd}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{f}}}{{DKn{f}}}}{{{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{f}}}{{DL`{f}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{f}}}{{A@`{f}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Al}}}{{A@`{Al}}}}{{{DKn{Hj}}}{{DKn{Hj}}}}{{{DKn{Ff}}}{{DKn{Ff}}}}{{{DKn{f}}}{{DKn{f}}}}{{{DKn{Hd}}}{{DKn{Hd}}}}{{{DKn{F`}}}{{DKn{F`}}}}{{{DKn{Ed}}}{{DKn{Ed}}}}{{{DKn{Gh}}}{{DKn{Gh}}}}{{{DKn{Fl}}}{{DKn{Fl}}}}{{{DKn{Gn}}}{{DKn{Gn}}}}{{{DKn{Al}}}{{DKn{Al}}}}{{{DKn{Gb}}}{{DKn{Gb}}}}{{{DKn{Ej}}}{{DKn{Ej}}}}{{{DL`{F`}}}{{DL`{F`}}}}{{{DL`{Hj}}}{{DL`{Hj}}}}{{{DL`{Hd}}}{{DL`{Hd}}}}{{{DL`{Ej}}}{{DL`{Ej}}}}{{{DL`{Gb}}}{{DL`{Gb}}}}{{{DL`{Fl}}}{{DL`{Fl}}}}{{{DL`{Al}}}{{DL`{Al}}}}{{{DL`{Ed}}}{{DL`{Ed}}}}{{{DL`{Ff}}}{{DL`{Ff}}}}{{{DL`{Gn}}}{{DL`{Gn}}}}{{{DL`{f}}}{{DL`{f}}}}{{{DL`{Gh}}}{{DL`{Gh}}}}{bc{}}0000000{bA`}00000{{{A@`{Gh}}}Hd}{{{A@`{Gb}}}Hd}{{{A@`{Ff}}}Hd}{{{A@`{Al}}}Hd}{{{A@`{Ed}}}Hd}{{{A@`{F`}}}Hd}{{{A@`{Fl}}}Hd}{{{A@`{Ej}}}Hd}{{{A@`{Gn}}}Hd}{{{A@`{f}}}Hd}{{{A@`{Hj}}}Hd}{{{A@`{Hd}}}Hd}{{{DKn{Ff}}}Hd}{{{DKn{F`}}}Hd}{{{DKn{Gh}}}Hd}{{{DKn{Al}}}Hd}{{{DKn{Ed}}}Hd}{{{DKn{Fl}}}Hd}{{{DKn{f}}}Hd}{{{DKn{Hd}}}Hd}{{{DKn{Hj}}}Hd}{{{DKn{Gb}}}Hd}{{{DKn{Ej}}}Hd}{{{DKn{Gn}}}Hd}{{{DL`{Ff}}}Hd}{{{DL`{Hd}}}Hd}{{{DL`{Ed}}}Hd}{{{DL`{Fl}}}Hd}{{{DL`{F`}}}Hd}{{{DL`{Gn}}}Hd}{{{DL`{Hj}}}Hd}{{{DL`{Ej}}}Hd}{{{DL`{Gb}}}Hd}{{{DL`{Al}}}Hd}{{{DL`{Gh}}}Hd}{{{DL`{f}}}Hd}{{{A@`{f}}}{{n{{A@`{Fl}}}}}}{{{A@`{Gh}}}{{n{{A@`{Ej}}}}}}{F`{{n{{A@`{F`}}}}}}{{{A@`{Hj}}}{{n{{A@`{Fl}}}}}}{{{A@`{Hj}}}{{n{{A@`{Ej}}}}}}{{{A@`{Hj}}}{{n{{A@`{F`}}}}}}{{{A@`{Hj}}}{{n{{A@`{Ff}}}}}}{{{A@`{Gb}}}{{n{{A@`{Al}}}}}}{Ff{{n{{A@`{Ff}}}}}}{Ed{{n{{A@`{Ed}}}}}}{{{A@`{Gb}}}{{n{{A@`{Gh}}}}}}{{{A@`{F`}}}{{n{{A@`{Ej}}}}}}{{{A@`{F`}}}{{n{{A@`{Fl}}}}}}{Gb{{n{{A@`{Gb}}}}}}{Fl{{n{{A@`{Fl}}}}}}{{{A@`{Ej}}}{{n{{A@`{Fl}}}}}}{{{A@`{Gn}}}{{n{{A@`{f}}}}}}{{{A@`{Gb}}}{{n{{A@`{Hj}}}}}}{{{A@`{Hd}}}{{n{{A@`{f}}}}}}{{{A@`{Al}}}{{n{{A@`{Gh}}}}}}{{{A@`{Hd}}}{{n{{A@`{Gn}}}}}}{{{A@`{Gb}}}{{n{{A@`{Hd}}}}}}{{{A@`{Gb}}}{{n{{A@`{Gn}}}}}}{{{A@`{Gb}}}{{n{{A@`{f}}}}}}{{{A@`{Ed}}}{{n{{A@`{Al}}}}}}{Al{{n{{A@`{Al}}}}}}{Gh{{n{{A@`{Gh}}}}}}{{{A@`{Ed}}}{{n{{A@`{Gh}}}}}}{{{A@`{Ed}}}{{n{{A@`{Hj}}}}}}{{{A@`{Ed}}}{{n{{A@`{Hd}}}}}}{{{A@`{Ed}}}{{n{{A@`{Gn}}}}}}{{{A@`{Ed}}}{{n{{A@`{f}}}}}}{{{A@`{Ff}}}{{n{{A@`{Al}}}}}}{Hj{{n{{A@`{Hj}}}}}}{{{A@`{Al}}}{{n{{A@`{Hj}}}}}}{{{A@`{Ff}}}{{n{{A@`{Gh}}}}}}{{{A@`{Ff}}}{{n{{A@`{Hj}}}}}}{Hd{{n{{A@`{Hd}}}}}}{Gn{{n{{A@`{Gn}}}}}}{{{A@`{Ff}}}{{n{{A@`{Hd}}}}}}{{{A@`{Hd}}}{{n{{A@`{Gb}}}}}}{{{A@`{Hd}}}{{n{{A@`{F`}}}}}}{f{{n{{A@`{f}}}}}}{{{A@`{Hd}}}{{n{{A@`{Ej}}}}}}{{{A@`{Ff}}}{{n{{A@`{Gn}}}}}}{{{A@`{Ff}}}{{n{{A@`{f}}}}}}{{{A@`{Hd}}}{{n{{A@`{Fl}}}}}}{{{A@`{Gn}}}{{n{{A@`{Gb}}}}}}{{{A@`{F`}}}{{n{{A@`{Al}}}}}}{{{A@`{F`}}}{{n{{A@`{Gh}}}}}}{{{A@`{F`}}}{{n{{A@`{Hj}}}}}}{{{A@`{Gn}}}{{n{{A@`{Ej}}}}}}{{{A@`{Gn}}}{{n{{A@`{Fl}}}}}}{{{A@`{F`}}}{{n{{A@`{Hd}}}}}}{{{A@`{F`}}}{{n{{A@`{Gn}}}}}}{{{A@`{F`}}}{{n{{A@`{f}}}}}}{{{A@`{Al}}}{{n{{A@`{Hd}}}}}}{{{A@`{Gb}}}{{n{{A@`{Ed}}}}}}{{{A@`{Hd}}}{{n{{A@`{Al}}}}}}{{{A@`{Gb}}}{{n{{A@`{Ff}}}}}}{{{A@`{Hj}}}{{n{{A@`{f}}}}}}{{{A@`{Hj}}}{{n{{A@`{Gn}}}}}}{{{A@`{Gb}}}{{n{{A@`{F`}}}}}}{{{A@`{Gb}}}{{n{{A@`{Ej}}}}}}{{{A@`{Hj}}}{{n{{A@`{Hd}}}}}}{{{A@`{F`}}}{{n{{A@`{Gb}}}}}}{{{A@`{Hj}}}{{n{{A@`{Al}}}}}}{{{A@`{Ej}}}{{n{{A@`{Al}}}}}}{{{A@`{Ed}}}{{n{{A@`{Gb}}}}}}{{{A@`{Gh}}}{{n{{A@`{f}}}}}}{{{A@`{Gh}}}{{n{{A@`{Gn}}}}}}{{{A@`{Ej}}}{{n{{A@`{Gh}}}}}}{{{A@`{Gh}}}{{n{{A@`{Hd}}}}}}{{{A@`{Ed}}}{{n{{A@`{Ff}}}}}}{{{A@`{Ej}}}{{n{{A@`{Hj}}}}}}{{{A@`{Ed}}}{{n{{A@`{F`}}}}}}{{{A@`{Ej}}}{{n{{A@`{Hd}}}}}}{{{A@`{Ej}}}{{n{{A@`{Gn}}}}}}{{{A@`{Ej}}}{{n{{A@`{f}}}}}}{{{A@`{Fl}}}{{n{{A@`{Al}}}}}}{{{A@`{Ed}}}{{n{{A@`{Ej}}}}}}{{{A@`{Fl}}}{{n{{A@`{Gh}}}}}}{{{A@`{Fl}}}{{n{{A@`{Hj}}}}}}{{{A@`{Al}}}{{n{{A@`{Gn}}}}}}{{{A@`{Ed}}}{{n{{A@`{Fl}}}}}}{{{A@`{Al}}}{{n{{A@`{f}}}}}}{{{A@`{Gh}}}{{n{{A@`{Hj}}}}}}{{{A@`{Ff}}}{{n{{A@`{Gb}}}}}}{{{A@`{Gh}}}{{n{{A@`{Al}}}}}}{{{A@`{Fl}}}{{n{{A@`{Hd}}}}}}{{{A@`{Fl}}}{{n{{A@`{Gn}}}}}}{{{A@`{Fl}}}{{n{{A@`{f}}}}}}{{{A@`{Al}}}{{n{{A@`{Gb}}}}}}{{{A@`{Hj}}}{{n{{A@`{Gb}}}}}}{{{A@`{Ff}}}{{n{{A@`{F`}}}}}}{c{{n{e}}}{}{}}{{{A@`{Al}}}{{n{{A@`{Ed}}}}}}{{{A@`{Al}}}{{n{{A@`{Ff}}}}}}{{{A@`{Al}}}{{n{{A@`{F`}}}}}}{{{A@`{Al}}}{{n{{A@`{Ej}}}}}}{Ej{{n{{A@`{Ej}}}}}}{{{A@`{Ff}}}{{n{{A@`{Ej}}}}}}{{{A@`{Al}}}{{n{{A@`{Fl}}}}}}{{{A@`{Ff}}}{{n{{A@`{Fl}}}}}}{{{A@`{Gh}}}{{n{{A@`{Gb}}}}}}{{{A@`{Gh}}}{{n{{A@`{Fl}}}}}}{{{A@`{Gh}}}{{n{{A@`{Ed}}}}}}{{{A@`{Gh}}}{{n{{A@`{Ff}}}}}}{{{A@`{Gh}}}{{n{{A@`{F`}}}}}}{{{A@`{Gb}}}{{n{{A@`{Fl}}}}}}>>>>>>>{{}{{n{c}}}{}}0000000{bAf}0000000{{{A@`{Al}}Al}{{A@`{Al}}}}{{{A@`{Hj}}Hj}{{A@`{Hj}}}}{{{A@`{f}}f}{{A@`{f}}}}{{{A@`{Gh}}Gh}{{A@`{Gh}}}}{{{A@`{Hd}}Hd}{{A@`{Hd}}}}{{{A@`{Gn}}Gn}{{A@`{Gn}}}}{{{A@`{f}}{A@`{f}}}{{A@`{f}}}}{{{A@`{Fl}}{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{Gn}}{A@`{Gn}}}{{A@`{Gn}}}}{{{A@`{Gh}}{A@`{Gh}}}{{A@`{Gh}}}}{{{A@`{Gb}}{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Ed}}{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Al}}{A@`{Al}}}{{A@`{Al}}}}{{{A@`{Hd}}{A@`{Hd}}}{{A@`{Hd}}}}{{{A@`{Ej}}{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{F`}}{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Hj}}{A@`{Hj}}}{{A@`{Hj}}}}{{{A@`{Ff}}{A@`{Ff}}}{{A@`{Ff}}}}{{{A@`{Fl}}}{{A@`{f}}}}{{{A@`{F`}}}{{A@`{Hd}}}}{{{A@`{Ej}}}{{A@`{Gn}}}}{{{A@`{Ff}}}{{A@`{Hj}}}}{{{A@`{Gb}}}{{A@`{Al}}}}{{{A@`{Ed}}}{{A@`{Gh}}}}{{{A@`{Ej}}}{{A@`{Ej}}}}{{{A@`{Fl}}}{{A@`{Fl}}}}{{{A@`{F`}}}{{A@`{F`}}}}{{{A@`{Ed}}}{{A@`{Ed}}}}{{{A@`{Gb}}}{{A@`{Gb}}}}{{{A@`{Ff}}}{{A@`{Ff}}}}241350``````````````````````````````````````````````````````````````````````````````````{{{BFb{}{{A@h{c}}}}e}c{}{}}{{{b{dBFd}}c}On{}}{{{b{d{AKf{c}}}}Al}{{n{On{A@`{Al}}}}}BDb}0{{{b{d{BHj{c}}}}}{{BHj{{b{dc}}}}}{}}{{{b{{BHj{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{BFf}}c}eAAd{}}{{{b{d{BFj{}{{BFh{c}}}}}}g}c{{AEh{}{{A@h{e}}}}}{}AAd}{{{BFn{}{{BFl{c}}{A@h{e}}}}g}c{{AEh{}{{A@h{e}}}}}{}AAd}{{{BG`{}{{A@h{c}}}}e}c{}{}}{{{b{dBGb}}c}On{}}{{{BGd{}{{A@h{c}}}}e}c{}{}}{{{b{dBGf}}c}On{}}{{{BGh{}{{A@h{c}}}}e}c{}{}}{{{b{dBGj}}c}On{}}{b{{b{c}}}{}}000000000{{{b{d}}}{{b{dc}}}{}}000000000{{{AHd{}{{A@h{c}}{BGl{e}}}}}{{BGn{ec}}}{}{}}{{{BGn{ce}}}BGn{}{}}{{{BGn{ce}}}{{Bf{c}}}{}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}{{{b{{BGn{ce}}}}}{{BGn{ce}}}AAnAAn}{{{b{{BJ`{ce}}}}}{{BJ`{ce}}}AAnAAn}{{{b{DCd}}}DCd}{{{b{{AKf{c}}}}}{{AKf{c}}}AAn}{{{b{{BL`{c}}}}}{{BL`{c}}}AAn}{{{b{{AKl{c}}}}}{{AKl{c}}}AAn}{{{b{{BKn{c}}}}}{{BKn{c}}}AAn}{{{b{{DM`{c}}}}}{{DM`{c}}}AAn}{{{b{{BHj{c}}}}}{{BHj{c}}}AAn}{{b{b{dc}}}On{}}00000000{bOn}00000000{{{BHj{{b{c}}}}}{{BHj{c}}}AAn}{{{b{{BJ`{ce}}}}{b{{BJ`{ce}}}}}ABhAAlAAl}{{{b{AKn}}{b{c}}}Aj{}{{ADj{c}}A@f}}{{{b{{AKf{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{b{{BL`{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{b{{AKl{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{b{{BKn{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{b{{DM`{e}}}}{b{c}}}Aj{ADjA@f}{{ADj{c}}ADj}}{{{BGn{ce}}}{{Bf{e}}}{}{}}{{{AKf{c}}}AlBDb}{{{BKn{c}}}AlBDb}{{}DCd}{{}{{AKf{c}}}AFf}{{{b{{BHb{}{{BH`{c}}}}}}}{{b{c}}}A@f}{{{b{dBHd}}}{{b{dc}}}{}}{{{BHf{}{{A@h{c}}}}e}c{}{}}{{{b{dBHh}}c}On{}}{{{b{dACb}}}On}{{{b{{BKn{c}}}}}{{b{c}}}{}}```{{{b{AKn}}}{{BHj{{b{c}}}}}A@f}{{{b{DCd}}}{{BHj{{b{c}}}}}A@f}{{{b{{AKf{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{AKf{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BL`{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BL`{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{AKl{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{AKl{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKn{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKn{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{DM`{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{DM`{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BGn{ce}}}}{b{{BGn{ce}}}}}AjACfACf}{{{b{{BJ`{ce}}}}{b{{BJ`{ce}}}}}AjACfACf}{{{b{DCd}}{b{DCd}}}Aj}{{{b{{AKf{c}}}}{b{{AKf{c}}}}}AjACf}{{{b{{BL`{c}}}}{b{{BL`{c}}}}}AjACf}{{{b{{AKl{c}}}}{b{{AKl{c}}}}}AjACf}{{{b{{BKn{c}}}}{b{{BKn{c}}}}}AjACf}{{{b{{DM`{c}}}}{b{{DM`{c}}}}}AjACf}{{{b{{BHj{c}}}}{b{{BHj{c}}}}}AjACf}{{{b{{BGn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{BJ`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{DCd}}{b{dAb}}}{{n{OnADb}}}}{{{b{{AKf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BL`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{AKl{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BKn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DM`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{BHj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DMb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{BKn{c}}eg}eBDb{}{{A@j{e}{{A@h{e}}}}}}{cc{}}00{{{BKh{c}}}{{AKf{c}}}{}}11{{{BKl{c}}}{{BL`{c}}}{}}22{{{BKj{c}}}{{BKn{c}}}{}}333{c{{AHd{}{{A@h{c}}{BGl{e}}}}}{}{}}{{}{{BGn{ce}}}{}{}}{cBHl{}}{{{BGn{cC@`}}}{{BGn{ce}}}{}{}}{{DCd{b{AKb}}}{{Bf{b}}}}{{DCd{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{AKf{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{AKf{Al}}{b{AKb}}}{{Bf{b}}}}{{{BL`{Al}}{b{AKb}}}{{Bf{b}}}}{{{BL`{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{AKl{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{AKl{Al}}{b{AKb}}}{{Bf{b}}}}{{{BKn{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{BKn{Al}}{b{AKb}}}{{Bf{b}}}}{{{DM`{Al}}{b{AKb}}}{{Bf{b}}}}{{{DM`{Al}}{b{{h{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{DCd{b{dAKb}}}{{Bf{{b{d}}}}}}{{DCd{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{AKf{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{AKf{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{BL`{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{BL`{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{AKl{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{AKl{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{BKn{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{BKn{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{DM`{Al}}{b{dAKb}}}{{Bf{{b{d}}}}}}{{{DM`{Al}}{b{d{h{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{DCdh}h}{{DCdAKb}}{{{AKf{Al}}h}h}{{{AKf{Al}}AKb}}{{{BL`{Al}}h}h}{{{BL`{Al}}AKb}}{{{AKl{Al}}h}h}{{{AKl{Al}}AKb}}{{{BKn{Al}}AKb}}{{{BKn{Al}}h}h}{{{DM`{Al}}h}h}{{{DM`{Al}}AKb}}:;9876542301{{{b{{BGn{ce}}}}{b{dg}}}OnBBlBBlBBj}{{{b{{BJ`{ce}}}}{b{dg}}}OnBBlBBlBBj}{{{b{DCd}}{b{dc}}}OnBBj}{{{b{{AKf{c}}}}{b{de}}}OnBBlBBj}{{{b{{BL`{c}}}}{b{de}}}OnBBlBBj}{{{b{{AKl{c}}}}{b{de}}}OnBBlBBj}{{{b{{BKn{c}}}}{b{de}}}OnBBlBBj}{{{b{{DM`{c}}}}{b{de}}}OnBBlBBj}{{{b{{BHj{c}}}}{b{de}}}OnBBlBBj}{{{b{{BHn{}{{A@h{c}}}}}}e}{{b{c}}}A@fA@f}{{DCd{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{DCd{b{AKb}}}b}{{{AKf{Al}}{b{AKb}}}b}{{{AKf{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{BL`{Al}}{b{AKb}}}b}{{{BL`{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{AKl{Al}}{b{AKb}}}b}{{{AKl{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{BKn{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{BKn{Al}}{b{AKb}}}b}{{{DM`{Al}}{b{AKb}}}b}{{{DM`{Al}}{b{{h{c}}}}}{{b{{h{c}}}}}{}}{{{b{dBI`}}c}{{b{de}}}A@f{}}{{DCd{b{dAKb}}}{{b{d}}}}{{DCd{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{AKf{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{AKf{Al}}{b{dAKb}}}{{b{d}}}}{{{BL`{Al}}{b{dAKb}}}{{b{d}}}}{{{BL`{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{AKl{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{AKl{Al}}{b{dAKb}}}{{b{d}}}}{{{BKn{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{BKn{Al}}{b{dAKb}}}{{b{d}}}}{{{DM`{Al}}{b{d{h{c}}}}}{{b{d{h{c}}}}}{}}{{{DM`{Al}}{b{dAKb}}}{{b{d}}}}{{}c{}}000000000{{{BKn{c}}}{{Bb{cc}}}{}}111{{{b{{BGn{ce}}}}}Aj{}{}}0{{{b{{AKf{c}}}}}AjADj}{{{b{{BKn{c}}}}}AjADj}{{{AKf{c}}}AjBDb}{{{BKn{c}}}AjBDb}{{{AKf{c}}}{{Bf{c}}}BDb}{{{BKn{c}}}{{Bf{c}}}BDb}{{{BHj{c}}g}{{BHj{e}}}{}{}{{AAf{c}{{A@h{e}}}}}}{{{BGn{ce}}i}{{BGn{ge}}}{}{}{}{{AAf{c}{{A@h{g}}}}}}{{{BGn{ce}}i}{{BGn{cg}}}{}{}{}{{AAf{e}{{A@h{g}}}}}}{{{AKf{c}}}{{Bf{c}}}{AAlBDb}}{{{BKn{c}}}{{Bf{c}}}{AAlBDb}}10{{{BIb{}{{A@h{c}}}}e}c{}{}}{{{b{dBId}}c}On{}}{{{BIf{}{{A@h{c}}}}}c{}}{{cc}{{BKn{c}}}{}}{{{b{d{AKf{c}}}}}{{Bf{c}}}BDb}{{{b{d{BL`{c}}}}}{{Bf{c}}}BDb}{{{b{d{BKn{c}}}}}{{Bf{c}}}BDb}20{{{BIh{}{{A@h{c}}}}}c{}}{{{b{d{AKf{c}}}}Al}{{Bf{c}}}BDb}{{{b{d{BL`{c}}}}Al}{{Bf{c}}}BDb}{{{b{d{BKn{c}}}}Al}{{Bf{c}}}BDb}20{{{b{{BJ`{ce}}}}{b{{BJ`{ce}}}}}{{Bf{ABh}}}ADjADj}{{{BIj{}{{A@h{c}}}}e}c{}{}}{{{b{dBIl}}c}On{}}{{{AFj{{b{d{BDj{}{{BIn{c}}{BDh{e}}}}}}}}g}{{BJ`{ce}}}{}{}{}}{{{BKn{c}}eg}eBDb{}{{A@j{e}{{A@h{e}}}}}}{{{BJb{}{{A@h{c}}}}e}c{}{}}{{{b{dBJd}}c}On{}}{{{BJf{}{{A@h{c}}}}e}c{}{}}{{{b{dBJh}}c}On{}}{{{b{{AKf{c}}}}}{{Bb{Al{Bf{Al}}}}}BDb}{{{b{{BL`{c}}}}}{{Bb{Al{Bf{Al}}}}}BDb}{{{b{{BKn{c}}}}}{{Bb{Al{Bf{Al}}}}}BDb}{{{b{{BKn{c}}}}}{{b{c}}}{}}``{{{b{AKn}}}{{BHj{{b{c}}}}}A@f}{{{b{DCd}}}{{BHj{{b{c}}}}}A@f}{{{b{{AKf{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{AKf{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BL`{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BL`{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{AKl{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{AKl{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKn{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{BKn{c}}}}}{{BHj{{b{c}}}}}{}}{{{b{{DM`{{b{c}}}}}}}{{BHj{{b{c}}}}}{}}{{{b{{DM`{c}}}}}{{BHj{{b{c}}}}}{}}{{{BJj{}{{A@h{c}}}}e}c{}{}}{{{b{dBJl}}c}On{}}{bc{}}00000000{{{b{d{BKn{c}}}}ei}gBDb{}{{AHd{}{{A@h{e}}}}}{{A@j{e}{{A@h{g}}}}}}{c{{n{e}}}{}{}}000000000{{}{{n{c}}}{}}0000000002{bAf}000000000``````{{{Bf{c}}{Bf{e}}}{{Bf{e}}}{}{}}{{{Bf{c}}g}{{Bf{e}}}{}{}{{AAf{c}{{A@h{{Bf{e}}}}}}}}{{{b{{Bf{c}}}}}{{Bf{b}}}BHb}{{{b{d{Bf{c}}}}}{{Bf{{b{d}}}}}BHd}{{{b{d{Bf{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{Bf{c}}}}}{{b{d{h{c}}}}}{}}{{{AFj{{b{d{Bf{c}}}}}}}{{Bf{{AFj{{b{dc}}}}}}}{}}{{{AFj{{b{{Bf{c}}}}}}}{{Bf{{AFj{{b{c}}}}}}}{}}{{{b{{Bf{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{{Bf{c}}}}}{{b{{h{c}}}}}{}}{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000{{{Bf{c}}}BGn{}}{{{b{{Bf{c}}}}}{{Bf{c}}}AAn}{{{b{{DMd{c}}}}}{{DMd{c}}}{}}{{{b{{DKl{c}}}}}{{DKl{c}}}AAn}{{{b{d{Bf{c}}}}{b{{Bf{c}}}}}OnAAn}{{b{b{dc}}}On{}}00{bOn}00{{{Bf{{b{c}}}}}{{Bf{c}}}AAn}{{{Bf{{b{dc}}}}}{{Bf{c}}}AAn}{{{b{{Bf{c}}}}{b{{Bf{c}}}}}ABhAAl}{{{Bf{{b{dc}}}}}{{Bf{c}}}BBn}{{{Bf{{b{c}}}}}{{Bf{c}}}BBn}{{}{{Bf{c}}}{}}{{{b{{Bf{c}}}}{b{{Bf{c}}}}}AjACf}{{{Bf{c}}{b{AKb}}}c{}}{{{Bf{c}}e}{{Bf{c}}}{}{{AAf{{b{c}}}{{A@h{Aj}}}}}}{{{Bf{{Bf{c}}}}}{{Bf{c}}}{}}{{{b{{Bf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DMd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DMf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{DKl{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{cc{}}{c{{Bf{c}}}{}}{{{b{{Bf{c}}}}}{{Bf{{b{c}}}}}{}}{AIhc{}}{{{b{d{Bf{c}}}}}{{Bf{{b{dc}}}}}{}}444{e{{Bf{g}}}{}{{AAj{}{{A@b{{Bf{c}}}}}}}{{ABj{c}}}}>{{{DMb{On}}}{{Bf{c}}}{}}{{{Bf{C@`}}}{{Bf{c}}}{}}{{{b{d{Bf{c}}}}c}{{b{dc}}}{}}{{{b{d{Bf{c}}}}}{{b{dc}}}AFf}{{{b{d{Bf{c}}}}e}{{b{dc}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{{Bf{c}}}}{b{de}}}OnBBlBBj}3{{{Bf{c}}e}{{Bf{c}}}{}{{AAf{{b{c}}}}}}{{}c{}}000{{{b{d{Bf{c}}}}}{{DMf{c}}}{}}{{{b{{Bf{c}}}}}{{DMd{c}}}{}}{{{Bf{c}}}{{DKl{c}}}{}}333{{{b{{Bf{c}}}}}Aj{}}{{{Bf{c}}e}Aj{}{{AAf{c}{{A@h{Aj}}}}}}1034{{{Bf{c}}g}{{Bf{e}}}{}{}{{AAf{c}{{A@h{e}}}}}}{{{Bf{c}}eg}e{}{}{{AAf{c}{{A@h{e}}}}}}{{{Bf{c}}gi}e{}{}{{AAf{}{{A@h{e}}}}}{{AAf{c}{{A@h{e}}}}}}{{{b{d{DMd{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{DMf{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{DKl{c}}}}}{{Bf{c}}}{}}210{{{Bf{c}}e}{{n{ce}}}{}{}}{{{Bf{c}}g}{{n{ce}}}{}{}{{AAf{}{{A@h{e}}}}}}{{{Bf{c}}{Bf{c}}}{{Bf{c}}}{}}{{{Bf{c}}e}{{Bf{c}}}{}{{AAf{}{{A@h{{Bf{c}}}}}}}}{{{b{{Bf{c}}}}{b{{Bf{c}}}}}{{Bf{ABh}}}ADj}{e{{Bf{g}}}{}{{A@d{}{{A@b{{Bf{c}}}}}}}{{AG`{c}}}}{{{b{d{Bf{c}}}}c}{{Bf{c}}}{}}{{{b{{DMd{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{DMf{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{DKl{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{e{{Bf{g}}}{}{{A@d{}{{A@b{{Bf{c}}}}}}}{{AGl{c}}}}{{{b{d{Bf{c}}}}}{{Bf{c}}}{}}{{{b{d{Bf{c}}}}e}{{Bf{c}}}{}{{AAf{{b{dc}}}{{A@h{Aj}}}}}}{bc{}}00{{{Bf{{n{ce}}}}}{{n{{Bf{c}}e}}}{}{}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{bAf}000{{{Bf{c}}}c{}}{{{Bf{c}}c}c{}}{{{Bf{c}}}cAFf}{{{Bf{c}}e}c{}{{AAf{}{{A@h{c}}}}}}3{{{Bf{{Bb{ce}}}}}{{Bb{{Bf{c}}{Bf{e}}}}}{}{}}{{{Bf{c}}{Bf{c}}}{{Bf{c}}}{}}{{{Bf{c}}{Bf{e}}}{{Bf{{Bb{ce}}}}}{}{}}{{{Bf{c}}{Bf{e}}i}{{Bf{g}}}{}{}{}{{AAf{ce}{{A@h{g}}}}}}```````````{{{b{CAn}}}CAl}{{{b{DEh}}}CAl}{{{b{CAl}}}CAl}{{{b{CB`}}}F`}{{{b{DEh}}}F`}{{{b{CAl}}}F`}{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{F`CAl}6{{b{b{dc}}}On{}}{bOn}{{{b{dDEh}}}On}{{{b{DEh}}{b{dAb}}}{{n{OnADb}}}}{{{b{CAl}}{b{dAb}}}{{n{OnADb}}}}{DMhDEh}{DIlDEh}{DMjDEh}{DMlDEh}{cc{}}{DJ`DEh}{DMnDEh}{DDhDEh}{DN`DEh}{DNbDEh}{DNdDEh}{DNfDEh}{DNhDEh}{DIjDEh}9{F`DNj}{F`DEh}{{}c{}}0{DNlF`}{DEhF`}{{{b{DEh}}}Aj}{{{b{CAl}}}Aj}{bc{}}{{{b{DEh}}}{{n{DEhCBf}}}}{{{b{CAl}}}{{n{DEhCBf}}}}{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{bAf}0`````{{{b{DNn}}}{{b{DDj}}}}{{{b{DNn}}}Ff}0{{{b{DNn}}}Hj}0110{{{b{DNn}}}Hd}10221110```{{{b{DO`}}}{{Bf{{b{{h{f}}}}}}}}{{{b{DOb}}}{{n{HdCBf}}}}{c{{n{DOdCBf}}}{{AA`{{h{f}}}}}}{{{b{DOf}}}{{n{AjCBf}}}}{{{b{DOb}}}{{n{AjCBf}}}}{{{b{DOb}}Hd}{{n{OnCBf}}}}{{{b{DOf}}Aj}{{n{OnCBf}}}}{{{b{DOb}}Aj}{{n{OnCBf}}}}```{{{b{DMj}}}CAl}{{{b{DMj}}}F`}{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{dDOh}}Aj}{{b{dDOj}}}}{{{b{DMj}}{b{dAb}}}{{n{OnADb}}}}{DEhDMj}{cc{}}{F`DMj}{{}c{}}{DOl{{n{DMjDOl}}}}{DMjF`}{{{b{DMj}}}{{n{OnCBf}}}}{{{b{DOl}}}{{n{{b{DMj}}CBf}}}}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{{{b{DMj}}}{{n{{Bf{DOn}}CBf}}}}{bAf}{{{b{DMj}}}{{n{DOnCBf}}}}````{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{DDj}}}DDj}{{b{b{dc}}}On{}}{bOn}`{cc{}}`?``````````````````````{bc{}};:8````````````````````````{{{b{E@`}}}{{b{{h{f}}}}}}{{{b{{h{f}}}}}{{b{E@`}}}}{{{j{f}}}E@b}{E@b{{j{f}}}}````````{{{b{E@d}}}Ff}0{{{b{E@d}}}Hj}0{{c{Bf{Hd}}{Bf{Hd}}}{{n{OnCBf}}}{{AA`{CAb}}}}{c{{n{OnCBf}}}{{AA`{CAb}}}}33{{{b{dE@f}}F`}{{b{dE@f}}}}3{{c{Bf{Hd}}{Bf{Hd}}}{{n{OnCBf}}}CAn}{{{b{E@h}}}{{b{CA`}}}}{HdE@j}{{{b{E@d}}}Hd}7{{{b{E@l}}}Hj}{{{b{E@n}}}Aj}0008{{{b{E@j}}}Hd}{{{b{dE@f}}Hd}{{b{dE@f}}}}4{{{b{dEA`}}Hd}{{b{dEA`}}}}==<<{{{b{EAb}}{b{d{h{f}}}}Hj}{{n{AlCBf}}}}{{{b{EAb}}{b{d{h{f}}}}Hj}{{n{OnCBf}}}}{{{b{EAb}}{b{d{h{CCh}}}}Hj}{{n{AlCBf}}}}{{{b{dE@j}}Hd}On}{{{b{E@d}}}Hj}{{ce}{{n{OnCBf}}}{{AA`{CAb}}}{{AA`{CAb}}}};{{{b{EAb}}{b{{h{f}}}}Hj}{{n{OnCBf}}}}{{{b{EAb}}{b{{h{f}}}}Hj}{{n{AlCBf}}}}{{{b{EAb}}{b{{h{CCn}}}}Hj}{{n{AlCBf}}}}```````{{{b{CAn}}}CAl}{{{b{CB`}}}F`}{F`DNj}{DNlF`}````````````````{{{b{DNh}}}{{n{{Bb{DNfDOd}}CBf}}}}{{{b{dEAd}}{b{{h{EAf}}}}}Aj}{{{b{dEAd}}{b{{h{F`}}}}}Aj}{{{b{DOd}}}{{Bf{{b{{h{f}}}}}}}}{{{b{DNb}}}CAl}{{{b{DNh}}}CAl}{{{b{DNf}}}CAl}{{{b{DOd}}}{{Bf{{b{CAb}}}}}}{{{b{DNb}}}F`}{{{b{DNh}}}F`}{{{b{DNf}}}F`}{c{{n{DNbCBf}}}{{AA`{CAb}}}}{c{{n{DNhCBf}}}{{AA`{CAb}}}}{{{b{DOd}}}{{n{DNbCBf}}}}{{{b{DOd}}}{{n{DNhCBf}}}}{b{{b{c}}}{}}000000000000{{{b{d}}}{{b{dc}}}{}}000000000000{{{b{EAd}}}Al}{{{b{dEAd}}}On}{{{b{DOd}}}DOd}{{{b{EAf}}}EAf}{{{b{EAh}}}EAh}{{b{b{dc}}}On{}}00{bOn}00{{{b{DNb}}c}{{n{OnCBf}}}{{AA`{CAb}}}}{c{{n{DNfCBf}}}{{AA`{CAb}}}}{{{b{DNb}}{b{DOd}}}{{n{OnCBf}}}}{{{b{DOd}}}{{n{DNfCBf}}}}{{{b{EAh}}{b{EAh}}}Aj}{{{b{d{b{DNf}}}}}{{n{OnCBf}}}}{{{b{dDNf}}}{{n{OnCBf}}}}{{{b{DNb}}{b{dAb}}}{{n{OnADb}}}}{{{b{DNh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DNf}}{b{dAb}}}{{n{OnADb}}}}{{{b{DOd}}{b{dAb}}}{{n{OnADb}}}}{{{b{EAj}}{b{dAb}}}{{n{OnADb}}}}{{{b{EAd}}{b{dAb}}}{{n{OnADb}}}}{{{b{EAl}}{b{dAb}}}{{n{OnADb}}}}{{{b{EAh}}{b{dAb}}}{{n{OnADb}}}}{cc{}}0000{DEhDNb}1{DEhDNh}{DEhDNf}3333333{c{{n{DOdCBf}}}{{AA`{{h{f}}}}}}{c{{n{DOdCBf}}}{{AA`{CAb}}}}{F`DNb}{F`DNh}{F`DNf}{{{b{EAf}}}Hd}{{{b{EAf}}}F`}1`{{{b{EAh}}{b{dc}}}OnBBj}{{{b{DNh}}}EAl}{{}c{}}00000000000000010{DNbF`}{DNhF`}{DNfF`}{{{b{EAd}}}Aj}{{{b{{b{DNf}}}}}Aj}{{{b{DNf}}}Aj}{{{b{DOd}}}Aj}21{{{b{EAd}}}Al}{{{b{DNb}}}{{n{DOdCBf}}}}{{{b{DNh}}}{{n{DOdCBf}}}}{{{b{DNf}}}{{n{DOdCBf}}}}{{{b{EAd}}}EAn}{{}EAf}{{{b{d{h{f}}}}}EAd}{{{b{dEB`}}}{{Bf{F`}}}}{{{b{dEBb}}}{{Bf{EAf}}}}{{{b{dEAn}}}Bf}{{{b{dEAl}}}{{Bf{{n{DNfCBf}}}}}}{{}{{n{{Bb{DNbDNb}}CBf}}}}{{}{{n{{Bb{DNfDNf}}CBf}}}}{{{b{DNb}}}{{n{AjCBf}}}}{{{b{DNf}}}{{n{AjCBf}}}}{{{b{DNb}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{DNf}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{DNb}}{b{d{h{f}}}}}{{n{{Bb{AlDOd}}CBf}}}}{{{b{DNb}}}{{n{DOdCBf}}}}?{{{b{DNf}}}{{n{EAhCBf}}}}`{{{b{d{b{DNf}}}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDNf}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DNf}}}}CCf}{{n{OnCBf}}}}{{{b{dDNf}}CCf}{{n{OnCBf}}}}{{{b{DNb}}}{{n{{Bf{DKd}}CBf}}}}{{{b{DNf}}}{{n{{Bf{DKd}}CBf}}}}{{{b{dDNf}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{d{b{DNf}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}<:{{{b{DNb}}{b{d{h{CCh}}}}{b{dEAd}}}{{n{{Bb{AlAj}}CBf}}}}{{{b{DNf}}{b{d{h{CCh}}}}{b{dEAd}}}{{n{AlCBf}}}}{{{b{DNb}}{b{d{h{CCh}}}}{b{dEAd}}}{{n{{Bb{AlAjDOd}}CBf}}}}{{{b{DNb}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{DNb}}{b{{h{f}}}}c}{{n{AlCBf}}}{{AA`{CAb}}}}{{{b{DNb}}{b{{h{f}}}}{b{DOd}}}{{n{AlCBf}}}}{{{b{DNb}}{b{{h{CCn}}}}{b{dEAd}}}{{n{AlCBf}}}}{{{b{DNf}}{b{{h{CCn}}}}{b{dEAd}}}{{n{AlCBf}}}}{{{b{DNb}}{b{{h{CCn}}}}{b{dEAd}}c}{{n{AlCBf}}}{{AA`{CAb}}}}{{{b{dEAf}}Hd}On}{{{b{DNb}}Hd}{{n{OnCBf}}}}{{{b{DNf}}Hd}{{n{OnCBf}}}}{{{b{DNb}}Aj}{{n{OnCBf}}}}{{{b{DNh}}Aj}{{n{OnCBf}}}}{{{b{DNf}}Aj}{{n{OnCBf}}}}20{{{b{dEAf}}F`}On}{{{b{DNb}}{Bf{DKd}}}{{n{OnCBf}}}}{{{b{DNf}}{Bf{DKd}}}{{n{OnCBf}}}}810{{{b{DNb}}DJh}{{n{OnCBf}}}}{{{b{DNf}}DJh}{{n{OnCBf}}}}{{{b{EAl}}}{{Bb{Al{Bf{Al}}}}}}{{{b{DNb}}}{{n{{Bf{CBf}}CBf}}}}{{{b{DNh}}}{{n{{Bf{CBf}}CBf}}}}{{{b{DNf}}}{{n{{Bf{CBf}}CBf}}}}{bc{}}00{{{b{EAd}}}Aj}{{{b{DNb}}}{{n{DNbCBf}}}}{{{b{DNh}}}{{n{DNhCBf}}}}{{{b{DNf}}}{{n{DNfCBf}}}}{c{{n{e}}}{}{}}000000000000{{}{{n{c}}}{}}000000000000{bAf}000000000000`{{}{{n{DNbCBf}}}}{{{b{d{b{DNf}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDNf}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{DNb}}}{{n{{Bf{DKd}}CBf}}}}{{{b{DNf}}}{{n{{Bf{DKd}}CBf}}}}{{{b{d{b{DNf}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{dDNf}}{b{{h{CCn}}}}}{{n{AlCBf}}}}````````````````````{{{b{dEBd}}c}{{b{dDOj}}}{{AA`{CA`}}}}{{{b{E@`}}}{{b{{h{f}}}}}}{{{b{CAn}}}CAl}{{{b{EBf}}}Hj}{{{b{CB`}}}F`}{{{b{E@d}}}Ff}0{{{b{dEBd}}c}{{b{dDOj}}}{{A@j{}{{A@h{{n{OnCBf}}}}}}BLnBM`}}{{{b{E@d}}}Hj}0{{{b{EBh}}}Aj}033{{{b{dE@f}}F`}{{b{dE@f}}}}2{{{b{dEBd}}}CBf}{{{b{{h{f}}}}}{{b{E@`}}}}{HdE@j}{F`EBh}{F`DNj}{{{j{f}}}E@b}{{{b{E@d}}}Hd}{{{b{dEBd}}Hd}{{b{dDOj}}}}{{{b{dEBd}}{b{{h{Hd}}}}}{{b{dDOj}}}};{{{b{E@l}}}Hj}{EBfHj}{EBhF`}{DNlF`}{E@b{{j{f}}}}{{{b{E@n}}}Aj}000{{{b{E@j}}}Hd}{{{b{dE@f}}Hd}{{b{dE@f}}}}:{{{b{E@d}}}Ff}0{{{b{E@d}}}Hj}{{{b{dEBd}}c}{{b{dDOj}}}{{A@j{}{{A@h{{n{OnCBf}}}}}}BLnBM`}}{{{b{dEBd}}F`}{{b{dDOj}}}}2{{{b{EAb}}{b{d{h{f}}}}Hj}{{n{AlCBf}}}}{{{b{EAb}}{b{d{h{f}}}}Hj}{{n{OnCBf}}}}{{{b{EAb}}{b{d{h{CCh}}}}Hj}{{n{AlCBf}}}}{{{b{dE@j}}Hd}On}{{{b{EBh}}}{{Bf{F`}}}}70{{{b{E@d}}}Hd}{{{b{dEBd}}Hd}{{b{dDOj}}}}{{{b{EAb}}{b{{h{f}}}}Hj}{{n{OnCBf}}}}{{{b{EAb}}{b{{h{f}}}}Hj}{{n{AlCBf}}}}{{{b{EAb}}{b{{h{CCn}}}}Hj}{{n{AlCBf}}}}``{{{b{dEBd}}c}{{b{dDOj}}}{{AA`{CA`}}}}<{{{b{EBh}}}Aj}0{{{b{dEBd}}}CBf}{F`EBh}7{{{b{dEBd}}{b{{h{Hd}}}}}{{b{dDOj}}}}{EBhF`}{{}Hd}{{{b{dEBd}}c}{{b{dDOj}}}{{A@j{}{{A@h{{n{OnCBf}}}}}}BLnBM`}}{{{b{dEBd}}F`}{{b{dDOj}}}}>><``````````````{{{b{EBf}}}Hj}{EBfHj}``````````{{}On}{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000{{{EBj{e}}On}c{}{{AAf{}{{A@h{c}}}}}}{{}{{b{BCd}}}}{{{b{EBl}}}Aj}{e{{n{c{AL`{AMj}}}}}{}{{AAf{}{{A@h{c}}}}EBn}}{{{b{EC`}}}EC`}{{{b{BCd}}}BCd}{{b{b{dc}}}On{}}0{bOn}0{{{b{BCd}}{b{BCd}}}ABh}{{{b{BCd}}}Hd}{{}{{EBj{c}}}AFf}{{{b{{EBj{c}}}}}{{b{c}}}{}}{{{b{d{EBj{c}}}}}{{b{dc}}}{}}{{{b{EC`}}{b{EC`}}}Aj}{{{b{BCd}}{b{BCd}}}Aj}{{{b{BCd}}}{{b{AKb}}}}{{{b{EBl}}{b{dAb}}}{{n{OnADb}}}}0{{{b{EC`}}{b{dAb}}}{{n{OnADb}}}}{{{b{{EBj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{BCd}}{b{dAb}}}{{n{OnADb}}}}0{cc{}}000{{}{{Bf{EC`}}}}{{{b{BCd}}{b{dc}}}OnBBj}{{}c{}}000{{}}0?{{{b{EBl}}}{{Bf{{b{BCd}}}}}}{cAIh{AMjBLn}}{{{b{BCd}}{b{BCd}}}{{Bf{ABh}}}}{{{b{EBl}}}{{b{AMj}}}}{{{b{EBl}}}{{Bf{{b{AKb}}}}}}{{{AFj{{b{d{EBj{c}}}}}}{b{dAFl}}}AFnAEh}{{{AFj{{b{d{EBj{c}}}}}}{b{dAFl}}}{{AFn{Bf}}}B@j}{{{AL`{AMj}}}AIh}{EC`On}{{{AL`{AAb}}}On}{{{b{{EBj{c}}}}}{{Bb{Al{Bf{Al}}}}}B@j}{{}{{AL`{AAb}}}}{bc{}}0{bA`}0{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{bAf}000{cOn{{AAb{{b{AAb}}{b{EBl}}}}BM`BLn}}````````````````````````{c{{n{CAdCBf}}}{{AA`{CAb}}}}{{{b{dCAd}}c}Aj{{AA`{CA`}}}}{{{b{CAb}}}ECb}{{{b{dCAb}}}{{b{dCA`}}}}{{{b{dCAd}}}{{b{dCAf}}}}{{{b{CAb}}}{{b{CA`}}}}{{{b{ECd}}}{{b{CA`}}}}{ECf{{b{CA`}}}}{{{b{CAd}}}{{b{CAb}}}}{{{b{ECh}}}{{b{CAb}}}}{{{b{ECj}}}{{b{CAb}}}}{{{b{CAd}}}{{b{CA`}}}}36{{{b{CAb}}}{{b{CAb}}}}{{{b{ECf}}}{{b{CAb}}}}{{{b{ECf}}}{{b{CA`}}}}{{{b{ECh}}}{{b{CA`}}}}6{{{b{ECj}}}{{b{CA`}}}}68{b{{b{c}}}{}}000000000{{{b{d}}}{{b{dc}}}{}}000000000{{{b{CAb}}}{{n{CAdCBf}}}}{{{b{CAd}}}Al}{{{b{dCAd}}}On}{{{b{CAd}}}CAd}{{{b{ECl}}}ECl}{{{b{ECd}}}ECd}{{{b{ECf}}}ECf}{{{b{ECh}}}ECh}{{{b{ECj}}}ECj}{{{b{ECb}}}ECb}{{{b{ECn}}}ECn}{{{b{dCAd}}{b{CAd}}}On}{{b{b{dc}}}On{}}{{{b{CAb}}{b{dCAd}}}On}1111111{bOn}{{{b{CAb}}CAb}On}1111111{{{b{CAd}}{b{CAd}}}ABh}{{{b{CAb}}{b{CAb}}}ABh}{{{b{ECl}}{b{ECl}}}ABh}{{{b{ECd}}{b{ECd}}}ABh}{{{b{ECf}}{b{ECf}}}ABh}{{{b{ECh}}{b{ECh}}}ABh}{{{b{CAb}}}ECh}{{}CAd}{{{b{CAd}}}{{b{CAb}}}}{{{b{dCAd}}}{{b{dCAb}}}}{{{b{ECn}}}{{b{AKb}}}}{{{b{CAb}}}ED`}{{{b{CAb}}c}Aj{{AA`{CAb}}}}{{{b{CAd}}{b{CAb}}}Aj}{{{b{CAd}}{b{CA`}}}Aj}{{{b{CAd}}{b{{b{CAb}}}}}Aj}{{{b{CAd}}{b{CAf}}}Aj}{{{b{CAd}}{b{CAd}}}Aj}{{{b{CAd}}{b{{C@n{CA`}}}}}Aj}{{{b{CAd}}{b{{b{CA`}}}}}Aj}{{{b{CAd}}{b{{C@n{CAb}}}}}Aj}{{{b{{b{CAb}}}}{b{CAf}}}Aj}{{{b{CAb}}{b{CAf}}}Aj}{{{b{CAb}}{b{{b{CA`}}}}}Aj}{{{b{{b{CAb}}}}{b{{C@n{CAb}}}}}Aj}{{{b{CAb}}{b{{C@n{CAb}}}}}Aj}{{{b{CAb}}{b{CAd}}}Aj}{{{b{CAb}}{b{CA`}}}Aj}{{{b{CAb}}{b{CAb}}}Aj}{{{b{{b{CAb}}}}{b{CA`}}}Aj}{{{b{CAb}}{b{{C@n{CA`}}}}}Aj}{{{b{{b{CAb}}}}{b{CAd}}}Aj}{{{b{{b{CAb}}}}{b{{C@n{CA`}}}}}Aj}{{{b{ECl}}{b{ECl}}}Aj}{{{b{ECd}}{b{ECd}}}Aj}{{{b{ECf}}{b{ECf}}}Aj}{{{b{ECh}}{b{ECh}}}Aj}{{{b{ECn}}{b{ECn}}}Aj}{{{b{CAb}}}Aj}{{{b{dCAd}}e}On{{AA`{CAb}}}{{AAj{}{{A@b{c}}}}}}{{{b{dCAd}}c}On{{AA`{CAb}}}}{{{b{CAb}}}{{Bf{{b{CA`}}}}}}000{{{b{CAd}}{b{dAb}}}{{n{OnADb}}}}{{{b{CAb}}{b{dAb}}}{{n{OnADb}}}}{{{b{ED`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{ECl}}{b{dAb}}}{{n{OnADb}}}}{{{b{ECd}}{b{dAb}}}{{n{OnADb}}}}{{{b{ECf}}{b{dAb}}}{{n{OnADb}}}}{{{b{ECh}}{b{dAb}}}{{n{OnADb}}}}{{{b{ECj}}{b{dAb}}}{{n{OnADb}}}}{{{b{ECb}}{b{dAb}}}{{n{OnADb}}}}{{{b{ECn}}{b{dAb}}}{{n{OnADb}}}}0{A`CAd}{CAfCAd}{{{AL`{CAb}}}CAd}{{{b{c}}}CAd{{AA`{CA`}}A@f}}{cc{}}{{{C@n{CAb}}}CAd}11111111{eCAd{{AA`{CAb}}}{{AAj{}{{A@b{c}}}}}}{{{b{AKb}}}{{n{CAd}}}}{{{b{CAb}}}Aj}{{{b{CAd}}{b{dc}}}OnBBj}{{{b{CAb}}{b{dc}}}OnBBj}{{{b{ECl}}{b{dc}}}OnBBj}{{{b{ECd}}{b{dc}}}OnBBj}{{{b{ECf}}{b{dc}}}OnBBj}{{}c{}}00000000{CAd{{AL`{CAb}}}}{{{b{CAd}}}ECj}{{{b{CAb}}}ECj}333{CAdCAf}{{{AL`{CAb}}}CAd};;;;{AK`Aj}<{{{b{ECl}}}Aj}4{{{b{CAb}}c}CAd{{AA`{CAb}}}}{{{b{ECd}}}ECl}{CAd{{b{dCAb}}}}{{{b{CAb}}}{{n{DDbCBf}}}}{{}CAd}{{{b{c}}}{{b{CAb}}}{{AA`{CA`}}A@f}}{{{b{dECh}}}{{Bf{ECf}}}}{{{b{dECj}}}{{Bf{{b{CA`}}}}}}{{{b{dECb}}}Bf}21{{{b{CAb}}}{{Bf{{b{CAb}}}}}}{{{b{CAd}}{b{{C@n{CAb}}}}}{{Bf{ABh}}}}{{{b{CAd}}{b{CAb}}}{{Bf{ABh}}}}{{{b{CAd}}{b{{b{CAb}}}}}{{Bf{ABh}}}}{{{b{CAd}}{b{CAf}}}{{Bf{ABh}}}}{{{b{CAd}}{b{CAd}}}{{Bf{ABh}}}}{{{b{CAd}}{b{{C@n{CA`}}}}}{{Bf{ABh}}}}{{{b{CAd}}{b{{b{CA`}}}}}{{Bf{ABh}}}}{{{b{CAd}}{b{CA`}}}{{Bf{ABh}}}}{{{b{{b{CAb}}}}{b{CAd}}}{{Bf{ABh}}}}{{{b{CAb}}{b{{b{CA`}}}}}{{Bf{ABh}}}}{{{b{CAb}}{b{CAb}}}{{Bf{ABh}}}}{{{b{CAb}}{b{CAd}}}{{Bf{ABh}}}}{{{b{CAb}}{b{{C@n{CAb}}}}}{{Bf{ABh}}}}{{{b{{b{CAb}}}}{b{CAf}}}{{Bf{ABh}}}}{{{b{{b{CAb}}}}{b{{C@n{CAb}}}}}{{Bf{ABh}}}}{{{b{{b{CAb}}}}{b{{C@n{CA`}}}}}{{Bf{ABh}}}}{{{b{{b{CAb}}}}{b{CA`}}}{{Bf{ABh}}}}{{{b{CAb}}{b{{C@n{CA`}}}}}{{Bf{ABh}}}}{{{b{CAb}}{b{CA`}}}{{Bf{ABh}}}}{{{b{CAb}}{b{CAf}}}{{Bf{ABh}}}}{{{b{ECl}}{b{ECl}}}{{Bf{ABh}}}}{{{b{ECd}}{b{ECd}}}{{Bf{ABh}}}}{{{b{ECf}}{b{ECf}}}{{Bf{ABh}}}}{{{b{ECh}}{b{ECh}}}{{Bf{ABh}}}}{{{b{dCAd}}}Aj}{{{b{dCAd}}c}On{{AA`{CAb}}}}{{{b{CAb}}}{{n{DEfCBf}}}}{{{b{CAb}}}{{n{CAdCBf}}}}{{{b{dCAd}}Al}On}0{{{b{dCAd}}c}Aj{{AA`{CA`}}}}{{{b{dCAd}}c}On{{AA`{CA`}}}}2{{{b{dCAd}}}On}{{{b{CAb}}c}Aj{{AA`{CAb}}}}{{{b{CAb}}c}{{n{{b{CAb}}ECn}}}{{AA`{CAb}}}}{{{b{CAb}}}{{n{DDbCBf}}}}{bc{}}{{{b{CAb}}}CAd}11111110{{{b{CAb}}}{{Bf{{b{AKb}}}}}}{bA`}0{{{b{CAb}}}{{C@n{AKb}}}}{{{b{CAb}}}{{n{AjCBf}}}}{c{{n{e}}}{}{}}00000000{{}{{n{c}}}{}}00000000{{{b{dCAd}}Al}{{n{OnCGh}}}}0{bAf}000000000{{{b{CAb}}c}CAd{{AA`{CA`}}}}{AlCAd}11``{{{AFj{{b{d{AFj{c}}}}}}}{{AFj{{b{d}}}}}BHd}{{{b{d{AFj{c}}}}}{{AFj{{b{d}}}}}BHd}{{{b{{AFj{c}}}}}{{AFj{b}}}BHb}{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{{{b{{AFj{c}}}}}{{AFj{c}}}AAn}{{b{b{dc}}}On{}}{bOn}{{{b{{AFj{c}}}}{b{{AFj{c}}}}}ABhBHb}{{{b{{AFj{c}}}}}bBHb}{{{b{d{AFj{c}}}}}{{b{d}}}BHd}{{{b{{AFj{c}}}}{b{{AFj{e}}}}}AjBHbBHb}{{{b{{AFj{c}}}}{b{dAb}}}{{n{OnADb}}}ADd}{{{b{{AFj{c}}}}{b{dAb}}}{{n{OnADb}}}AJd}{{{b{{AFj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{AL`{ce}}}{{AFj{{AL`{ce}}}}}A@fAIb}{cc{}}5{{{AFj{{b{dc}}}}}{{b{dc}}}{BDlA@f}}{{{AFj{{b{c}}}}}{{b{c}}}A@f}{{{AFj{{b{dc}}}}}{{b{dc}}}A@f}8{{{b{{AFj{c}}}}{b{de}}}OnBHbBBj}{{}c{}}{{}}0{{{AFj{c}}}cBHb}0{{{AFj{{b{dc}}}}}{{AFj{{b{c}}}}}A@f}=={{{AFj{{b{c}}}}g}{{AFj{{b{e}}}}}A@fA@f{{AAf{{b{c}}}{{A@h{{b{e}}}}}}}}{{{AFj{{b{dc}}}}g}{{AFj{{b{de}}}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{b{de}}}}}}}}?{c{{AFj{c}}}BHb}0{{{b{{AFj{c}}}}{b{{AFj{e}}}}}{{Bf{ABh}}}BHbBHb}`{{{AFj{{b{d{AFj{c}}}}}}{b{dAFl}}}AFnBHd}{{{AFj{{b{d{AFj{c}}}}}}{b{dAFl}}}{{AFn{Bf}}}BHd}{{{AFj{{b{d{AFj{{b{de}}}}}}}}c}BJ`{}{{BDj{c}}A@f}}{{{AFj{{b{d{AFj{{AL`{eg}}}}}}}}c}BJ`{}{{BDj{c}}A@f}AIb}{{{b{d{AFj{c}}}}}OnBHd}{{{b{{AFj{c}}}}}{{Bb{Al{Bf{Al}}}}}BHd}{{{b{dc}}}{{AFj{{b{dc}}}}}A@f}{{{b{c}}}{{AFj{{b{c}}}}}A@f}{bc{}}{bA`}{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{bAf}``{{{b{DNd}}}CAl}{{{b{DMn}}}CAl}{{{b{DNd}}}F`}{{{b{DMn}}}F`}{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{{b{d{b{DMn}}}}}{{n{OnCBf}}}}{{{b{dDMn}}}{{n{OnCBf}}}}{{{b{DNd}}{b{dAb}}}{{n{OnADb}}}}{{{b{DMn}}{b{dAb}}}{{n{OnADb}}}}{cc{}}{DEhDNd}1{DEhDMn}{F`DNd}{F`DMn}{{}c{}}0{DNdF`}{DMnF`}{{{b{DNd}}}Aj}{{{b{{b{DNd}}}}}Aj}{{{b{{b{DMn}}}}}Aj}{{{b{DMn}}}Aj}{{}{{n{{Bb{DNdDMn}}CBf}}}}{{{b{d{b{DNd}}}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDNd}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DNd}}}}CCf}{{n{OnCBf}}}}{{{b{dDNd}}CCf}{{n{OnCBf}}}}{{{b{dDNd}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DNd}}}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DNd}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{dDNd}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{DNd}}}{{n{DNdCBf}}}}{{{b{DMn}}}{{n{DMnCBf}}}}{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{bAf}0{{{b{dDMn}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DMn}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDMn}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{b{DMn}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}``````````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}?`0?```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}};{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{AEl}}}Al}``=1{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}6{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2810`{{{b{ACf}}{b{c}}}AjA@f}8{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}``{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{b{AHb}}}A`}`{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}`````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}?`0?```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}};{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{AEl}}}Al}``=1{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}6{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2810`{{{b{ACf}}{b{c}}}AjA@f}8{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}``{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{b{AHb}}}A`}`{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}``````````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{eABj{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}`10```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}<;{{{b{AEl}}}Al}``=<{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}5{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2710`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}``{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{b{AHb}}}A`}`{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{{AHh{}{{AHf{e}}}}e}}}{}{}}{{{AHj{}{{AHf{c}}}}}{{n{ec}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}```````````````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{eABj{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}`10```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AEf{}{{A@h{c}}{AEd{e}}}}}e{}{{AEh{}{{A@h{c}}}}}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}}=<{{{b{AEl}}}Al}``>={{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}5{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2710`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{AFj{{b{d{AEh{}{{A@h{c}}}}}}}}{b{dAFl}}}{{AFn{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}``{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{b{AHb}}}A`}`{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{{AHh{}{{AHf{e}}}}e}}}{}{}}{{{AHj{}{{AHf{c}}}}}{{n{ec}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}`````````````````````````````````````````````````{{{b{dOl}}Al}{{n{On{A@`{Al}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{n{On{A@`{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{b{d{A@d{}{{A@b{c}}}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}`0{{{A@d{}{{A@b{c}}}}}{{A@l{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dA@n}}}{{b{dc}}}A@f}{{{b{AA`}}}{{b{c}}}A@f}``{{{b{d{A@d{}{{A@b{c}}}}}}}{{b{d{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAb}}c}eAAd{}}{{{b{dA@j}}c}eAAd{}}{{{AAf{}{{A@h{c}}}}e}c{}AAd}```{{{A@d{}{{A@b{c}}}}e}{{AAh{{A@d{}{{A@b{c}}}}}}}{}{{AAj{}{{A@b{c}}}}}}{{AAlAAlAAl}AAl}{{{b{AAn}}}AAn}{{{b{dAAn}}{b{AAn}}}On}{{{b{{ABb{}{{AB`{c}}}}}}{b{dc}}}On{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{A@d{}{{A@b{c}}}}}{{ABf{{A@d{}{{A@b{c}}}}}}}{}}{{{b{AAl}}{b{AAl}}}ABh}{{{A@d{}{{A@b{c}}}}e}ABh{}{{AAj{}{{A@b{c}}}}}}{{{A@d{}{{A@b{c}}}}eg}ABh{}AAj{{A@j{c}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{ABj{c}}}}{{{A@d{}{{A@b{c}}}}{b{de}}}{{b{de}}}{}{{ABl{c}}}}`````{{{A@d{}{{A@b{c}}}}}{{ABn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}}Al{}}{{{A@d{}{{A@b{c}}}}}{{AC`{{A@d{}{{A@b{c}}}}}}}{}}{{}AFf}```{cOn{}}{{{b{dACb}}}On}{{{A@d{}{{A@b{c}}}}}{{ACd{{A@d{}{{A@b{c}}}}}}}{}}`{{{b{ACf}}{b{c}}}AjA@f}{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{A@d{}{{A@b{c}}}}eg}Aj{}AAj{{A@j{c}{{A@h{Aj}}}}}}{{{b{dABl}}e}On{}{{AAj{}{{A@b{c}}}}}}{{{b{dABl}}c}On{}}{{{b{dABl}}Al}On}`{{{A@d{}{{A@b{c}}}}e}{{ACh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACj{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{{Bf{e}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{ACl{{A@d{}{{A@b{c}}}}eg}}}{}AAj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{ACn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}eg}e{}{}{{A@j{ec}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}e}On{}{{A@j{c}}}}``{cADf{}}{{{A@d{}{{A@b{c}}}}}{{ADh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{ADj}}{b{c}}}AjA@f}?`0?```{{{A@d{}{{A@b{c}}}}e}{{ADl{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}}}}{{{A@d{}{{A@b{c}}}}c}{{ADn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AE`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{}{{A@h{c}}}}}}{AEbc{}}{{{AAj{}{{A@b{c}}{AEj{e}}}}}e{}{{A@d{}{{A@b{c}}}}}}{{{b{AEl}}}Aj}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}Aj{}}{{{A@d{}{{A@b{c}}}}e}Aj{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}g}Aj{}ADj{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}}{{Bf{c}}}{}};{{{A@d{}{{A@b{c}}}}e}Aj{}AAj}{{{b{AEl}}}Al}``=1{{{A@d{}{{A@b{c}}}}g}{{AEn{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{e}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AF`{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{c}{{A@h{{Bf{e}}}}}}}}{{{A@d{}{{A@b{c}}}}g}{{AFb{{A@d{}{{A@b{c}}}}g}}}{}{}{{A@j{{b{{Db{c}}}}}{{A@h{e}}}}}}{{AAlAAl}AAl}6{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{ABh}}}}}}{{{A@d{}{{A@b{c}}}}g}{{Bf{c}}}{}AAl{{A@j{{b{c}}}{{A@h{e}}}}}}2810`{{{b{ACf}}{b{c}}}AjA@f}8{{{b{d{A@d{}{{A@b{c}}}}}}}{{Bf{c}}}{}}{{{b{dOl}}}{{Bf{c}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}}{{n{{Db{c}}{AFd{c}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}Al}{{Bf{c}}}{}}{{{b{dOl}}Al}{{Bf{c}}}{}}`{{{b{ADj}}{b{c}}}{{Bf{ABh}}}A@f}{{{A@d{}{{A@b{c}}}}e}{{Bf{ABh}}}{}AAj}{{{A@d{}{{A@b{c}}}}eg}{{Bf{ABh}}}{}AAj{{A@j{c}{{A@h{{Bf{ABh}}}}}}}}{{{A@d{}{{A@b{c}}}}e}{{Bb{gg}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}{AFf{ABl{c}}}}{{{A@d{}{{A@b{c}}}}g}Al{}{}{{A@j{{b{e}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}{{AFh{{A@d{}{{A@b{c}}}}}}}{}}{{{b{d{A@d{}{{A@b{c}}}}}}e}{{Bf{Al}}}{}{{A@j{c}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}}e{}{{AG`{c}}}}{{{A@d{}{{A@b{c}}}}e}{{Bf{c}}}{}{{A@j{cc}{{A@h{c}}}}}}{{{A@d{}{{A@b{c}}}}}{{AGb{{A@d{}{{A@b{c}}}}}}}{}}{{{b{dOl}}e}{{Bf{c}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{Olcg}c{}{}{{A@j{ce}{{A@h{c}}}}}}5{{{A@d{}{{A@b{c}}}}ei}{{AGd{{A@d{}{{A@b{c}}}}ei}}}{}{}{}{{A@j{{b{de}}c}{{A@h{{Bf{g}}}}}}}}{{{b{{A@d{}{{A@b{c}}}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{}Al}{{{b{c}}}AlA@f}{{{A@d{}{{A@b{c}}}}Al}{{AGf{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AGh{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGj{{A@d{}{{A@b{c}}}}}}}{}}`{{{A@d{}{{A@b{c}}}}}e{}{{AGl{c}}}}{{{A@d{}{{A@b{c}}}}Al}{{AGn{{A@d{}{{A@b{c}}}}}}}{}}{{{A@d{}{{A@b{c}}}}e}{{AH`{{A@d{}{{A@b{c}}}}e}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}``{{{b{{ABb{}{{AB`{c}}}}}}}c{{ABd{{ABb{}{{AB`{c}}}}}}}}{{{b{AHb}}}A`}`{{{b{d{A@d{}{{A@b{c}}}}}}}{}{}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{Aj}}}}}{{A@j{{b{c}}}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}ei}g{}{}{{AHd{}{{A@h{e}}}}}{{A@j{ec}{{A@h{g}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}e{}{{AHd{}{{A@h{On}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{d{A@d{}{{A@b{c}}}}}}g}{}{}{{AHd{}{{A@h{c}}}}}{{A@j{cc}{{A@h{e}}}}}}{{{b{dOl}}ci}g{}{}{{AHd{}{{A@h{c}}}}}{{A@j{ce}{{A@h{g}}}}}}`{{{A@d{}{{A@b{c}}}}}{{Bb{gk}}}{}{}{AFf{ABl{e}}}{}{AFf{ABl{i}}}}{{{A@d{}{{A@b{c}}}}e}{{AHl{{A@d{}{{A@b{c}}}}}}}{}AAj}````````````````````````````````{{}AIh}{{{b{dDOj}}c}{{b{dDOj}}}{{AA`{CA`}}}}0{{{b{dDOj}}e}{{b{dDOj}}}{{AA`{CA`}}}{{AAj{}{{A@b{c}}}}}}{{{b{DN`}}}CAl}{{{b{DMl}}}CAl}{{{b{DMh}}}CAl}{{{b{DN`}}}F`}{{{b{DMl}}}F`}{{{b{DMh}}}F`}{b{{b{c}}}{}}00000000000{{{b{d}}}{{b{dc}}}{}}00000000000{{{b{EDb}}}EDb}{{{b{DOn}}}DOn}{{{b{EDd}}}EDd}{{{b{D@n}}}D@n}{{b{b{dc}}}On{}}000{bOn}000{{{b{DOn}}}{{Bf{F`}}}}{{{b{EDd}}}{{Bf{F`}}}}{{{b{EDd}}}{{Bf{{A@`{F`}}}}}}{{{b{DOn}}}Aj}{{{b{EDd}}}Aj}10{{{b{dDOj}}Aj}{{b{dDOj}}}}{{{b{dDOj}}c}{{b{dDOj}}}{{AA`{CAb}}}}{{}DOn}{{}D@n}{{{b{dDOj}}ce}{{b{dDOj}}}{{AA`{CA`}}}{{AA`{CA`}}}}{{{b{dDOj}}}{{b{dDOj}}}}{{{b{dDOj}}c}{{b{dDOj}}}{{AA`{CA`}}}}{{{b{dDOj}}g}{{b{dDOj}}}{{AA`{CA`}}}{{AA`{CA`}}}{{AAj{}{{A@b{{Bb{ce}}}}}}}}{{{b{EDb}}{b{EDb}}}Aj}{{{b{DOn}}{b{DOn}}}Aj}{{{b{EDd}}{b{EDd}}}Aj}{{{b{dDOj}}}CBf}{F`AIh}{{{b{DOn}}}{{n{OnEDd}}}}{D@nAIh}{{{b{dDN`}}}{{n{OnCBf}}}}{{{b{d{b{DN`}}}}}{{n{OnCBf}}}}{{{b{EDf}}{b{dAb}}}{{n{OnADb}}}}{{{b{DN`}}{b{dAb}}}{{n{OnADb}}}}{{{b{DMl}}{b{dAb}}}{{n{OnADb}}}}{{{b{DMh}}{b{dAb}}}{{n{OnADb}}}}{{{b{DOj}}{b{dAb}}}{{n{OnADb}}}}{{{b{EDh}}{b{dAb}}}{{n{OnADb}}}}{{{b{EDj}}{b{dAb}}}{{n{OnADb}}}}{{{b{EDb}}{b{dAb}}}{{n{OnADb}}}}{{{b{DOn}}{b{dAb}}}{{n{OnADb}}}}0{{{b{EDd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{D@n}}{b{dAb}}}{{n{OnADb}}}}{{{b{EDl}}{b{dAb}}}{{n{OnADb}}}}{cc{}}0{DEhDN`}1{DEhDMl}{DEhDMh}33{DFjEDh}{DFfEDh}{DN`EDh}{DDhEDh}{DMnEDh}{DNdEDh}{DMlEDh}{DEhEDh};{DMhEDh}<<{EDdDOn}=={fD@n}>>{F`DOn}{F`EDd}{F`EDh}{{{b{DOj}}}EDj}{{{b{DOj}}}{{Bf{{b{CAb}}}}}}{{{b{DOj}}}EDl}{{{b{DOj}}}{{b{CA`}}}}{{{b{dDOj}}Hd}{{b{dDOj}}}}{{{b{dDOj}}{b{{h{Hd}}}}}{{b{dDOj}}}}{{}Hd}{{{b{EDf}}}Hd}{{}EDh}{{}c{}}0000000000000{EDf{{n{DMjEDf}}}}{DOnF`}{EDdF`}{DN`F`}{DMlF`}{DMhF`}{{{b{EDd}}}DOn}{{{b{EDj}}}Aj}{{{b{EDl}}}Aj}{{{b{DMl}}}Aj}{{{b{DMh}}}Aj}{{{b{DN`}}}Aj}{{{b{{b{DN`}}}}}Aj}{{{b{dEDf}}}{{n{OnCBf}}}}{{{b{EDj}}}Al}{{{b{EDl}}}Al}{{{b{EDh}}}Aj}{cDOj{{AA`{CA`}}}}{{{b{dEDj}}}{{Bf{{b{CA`}}}}}}{{{b{dEDl}}}Bf}{{}EDh}{{{b{dDOj}}}{{n{EDbCBf}}}}{{{b{EDf}}}{{n{{b{DMj}}CBf}}}}2{{{b{dDOj}}c}{{b{dDOj}}}{{A@j{}{{A@h{{n{OnCBf}}}}}}BLnBM`}}{{{b{dDOj}}F`}{{b{dDOj}}}}{{{b{dDMl}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDMh}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{dDMl}}CCf}{{n{OnCBf}}}}{{{b{dDMh}}CCf}{{n{OnCBf}}}}{{{b{dDMl}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dDMh}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{dDMl}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{b{dDMh}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{EDnD@n}{D@nD@n}{{{b{DOn}}}{{Bf{F`}}}}{{{b{EDd}}}{{Bf{F`}}}}{{{b{EDj}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EDl}}}{{Bb{Al{Bf{Al}}}}}}{{{b{dDOj}}}{{n{EDfCBf}}}}{{{b{dDOj}}}{{n{DOnCBf}}}}`{{{b{dDOj}}c}{{b{dDOj}}}{{AEb{EDh}}}}``0`0``65{{{b{DOn}}}Aj}{bc{}}000{bA`}0{c{{n{e}}}{}{}}00000000000{{}{{n{c}}}{}}00000000000{{{b{dEDf}}}{{n{{Bf{DOn}}CBf}}}}{bAf}00000000000{{{b{dDOj}}Hd}{{b{dDOj}}}}{{{b{dEDf}}}{{n{DOnCBf}}}}{EDf{{n{EDbCBf}}}}{{{b{dDN`}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{d{b{DN`}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{dDN`}}{b{{h{CCn}}}}}{{n{AlCBf}}}}{{{b{d{b{DN`}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}``````{{{AId{c}}Al}{{AId{c}}}A@f}{{{AId{c}}}{{A@`{Al}}}A@f}{{}Aj}``{{{EE`{c}}}AlA@f}{{{AId{c}}Al}AlA@f}{{{b{d{AId{c}}}}}{{b{dc}}}A@f}{{{AId{{h{c}}}}}{}{}}{{{AId{{h{c}}}}}{{AId{c}}}{}}{DLn{{A@`{Al}}}}{{{AId{c}}}{}A@f}{{{b{{AId{c}}}}}{{b{c}}}A@f}{{{AId{c}}}{{b{d{C@b{c}}}}}{}}{{{AId{c}}}{{b{{C@b{c}}}}}{}}{{{AId{{h{c}}}}}{{b{{h{{C@b{c}}}}}}}{}}{{{AId{{h{c}}}}}{{b{d{h{{C@b{c}}}}}}}{}}{DLnAl}{b{{b{c}}}{}}00{{{b{d}}}{{b{dc}}}{}}00{{{AId{c}}Al}{{AId{c}}}A@f}{{{AId{c}}Gb}{{AId{c}}}A@f}{{{AId{c}}{AId{e}}}GbA@fA@f}2{{{AId{c}}}{{AId{e}}}A@f{}}{{{b{{EE`{c}}}}}{{EE`{c}}}A@f}{{{b{{AId{c}}}}}{{AId{c}}}A@f}{{{b{DLn}}}DLn}{{b{b{dc}}}On{}}00{bOn}00{{{b{{EE`{c}}}}{b{{EE`{c}}}}}ABhA@f}{{{b{{AId{c}}}}{b{{AId{c}}}}}ABhA@f}{{{b{DLn}}{b{DLn}}}ABh}{AlOn}{{{AId{c}}{AId{c}}Al}OnA@f}0100{{}}{{}{{AId{c}}}{}}1{{}DLn}{{}On}{{{AId{c}}}OnA@f}{{}Aj}{{{b{{EE`{c}}}}{b{{EE`{c}}}}}AjA@f}{{{b{{AId{c}}}}{b{{AId{c}}}}}AjA@f}{{{b{DLn}}{b{DLn}}}Aj}{{{b{{EE`{c}}}}{b{dAb}}}{{n{OnADb}}}A@f}{{{b{{AId{c}}}}{b{dAb}}}{{n{OnADb}}}A@f}0{{{b{DLn}}{b{dAb}}}{{n{OnADb}}}}{{ce}AjBElBEl}{cc{}}0{{{b{dc}}}{{AId{c}}}A@f}{{{b{c}}}{{AId{c}}}A@f}2{{{b{dc}}}{}A@f}{{}}{{{AId{On}}}{{AId{c}}}A@f}1{{{b{c}}}{}A@f}{{{AId{{h{c}}}}e}AId{}{{AKh{{h{c}}}}}}{{{b{dc}}}OnBBj}{{{b{{EE`{c}}}}{b{de}}}OnA@fBBj}{{{b{{AId{c}}}}{b{de}}}OnA@fBBj}{{{b{DLn}}{b{dc}}}OnBBj}{{}c{}}00{{{AId{c}}}AjA@f}{{{AId{c}}Al}AjA@f}{{{AId{{h{c}}}}}Aj{}}{{{EE`{c}}}AHnA@f}{{{AId{{h{c}}}}}Al{}}{DLnHd}{{{AId{c}}e}{{AId{c}}}A@f{{AAf{{A@`{Al}}}{{A@h{{A@`{Al}}}}}}}}{DLnAl}{{}}{{}{{Bf{{AId{c}}}}}A@f}{Al{{Bf{DLn}}}}{{}{{AId{c}}}A@f}{AlDLn}44{{}DLn}{{{AId{c}}Gb}{{AId{c}}}A@f}{{{AId{c}}{AId{c}}}GbA@f}{{{b{{EE`{c}}}}{b{{EE`{c}}}}}{{Bf{ABh}}}A@f}{{{b{{AId{c}}}}{b{{AId{c}}}}}{{Bf{ABh}}}A@f}{{{b{DLn}}{b{DLn}}}{{Bf{ABh}}}}{{}c{}}{{{AId{c}}}cA@f}1010{cc{}}{{{AId{c}}c}cA@f}{{{EE`{c}}}AlA@f}{Alh}{{{AId{c}}Al}{{AId{{h{c}}}}}{}}1{{{AId{c}}Al}{{AId{c}}}A@f}{{{AId{c}}{AId{c}}}AlA@f}{{}On}{{{AId{c}}{AId{c}}}OnA@f}{AlOn}{bc{}}00{{{AId{c}}}{{Bb{{AId{On}}}}}A@f}{c{{n{e}}}{}{}}0{{{A@`{Al}}}{{n{DLn}}}}{Al{{n{DLn}}}}2{{}{{n{c}}}{}}00{bAf}00{{{AId{c}}{A@`{Al}}}{{AId{c}}}A@f}{Al}000{cOn{}}{{{AId{c}}c}OnA@f}{{fAl}On}{{{AId{c}}fAl}OnA@f}3232```{{{b{{AMh{ce}}}}}{{b{e}}}A@fAIb}{{{b{{EEb{ce}}}}}{{b{e}}}A@fAIb}{{{b{{AMh{c}}}}}CAl{CAnA@f}}{{{b{{AMh{ce}}}}}{}A@fAIb}{{{b{{EEb{ce}}}}}{}A@fAIb}{{{b{{AMh{c}}}}}F`CB`}{{{b{{AMh{ce}}}}}{{b{c}}}A@fAIb}{{{AMh{{h{{C@b{c}}}}e}}}{{AMh{{h{c}}e}}}{}AIb}{{{AMh{{C@b{c}}e}}}{{AMh{ce}}}{}AIb}2{b{{b{c}}}{}}00{{{b{d}}}{{b{dc}}}{}}00{{{b{{AMh{ce}}}}}{{AMh{ce}}}A@f{AIbAAn}}{{{b{{EEb{ce}}}}}{{EEb{ce}}}A@f{AIbAAn}}{{b{b{dc}}}On{}}0{bOn}0{{{b{{AMh{ce}}}}{b{{AMh{ce}}}}}ABh{AAlA@f}AIb}{{}On}{cOnAIb}{{}{{AMh{{h{c}}}}}{}}{{}{{AMh{CAj}}}}{{}{{AMh{c}}}AFf}{{}{{AMh{AKb}}}}{{}{{EEb{c}}}{}}{{{b{{AMh{ce}}}}}{{b{c}}}A@fAIb}{{{b{{EEd{ce}}}}}{{b{c}}}A@fAIb}{{{b{d{EEd{ce}}}}}{{b{dc}}}A@fAIb}{{{AMh{AMjc}}}{{n{{AMh{ec}}{AMh{AMjc}}}}}AIbAMj}{{{AMh{AMjc}}}{{AMh{ec}}}AIbAMj}{{{b{{AMh{ce}}}}}{{EEb{ce}}}A@f{AAnAIb}}{{{b{{EEd{ce}}}}}{{EEb{ce}}}A@f{AIbAAn}}{{{b{d{AMh{ce}}}}}OnA@fAIb}{{{b{d{EEb{ce}}}}}OnA@fAIb}{{{b{d{EEd{ce}}}}}OnA@fAIb}{{{b{{AMh{ce}}}}{b{{AMh{ce}}}}}Aj{ACfA@f}AIb}{{{b{{AMh{ce}}}}{b{dAb}}}{{n{OnADb}}}A@fAIb}{{{b{{AMh{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}AIb}{{{b{{AMh{ce}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}AIb}{{{b{{EEb{ce}}}}{b{dAb}}}{{n{OnADb}}}A@fAIb}{{{b{{EEd{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}{AD`AIb}}{{{AMh{AKb}}}{{AMh{{h{f}}}}}}{AIhc{}}{A`{{AMh{AKb}}}}{{{b{{h{c}}}}}{{AMh{{h{c}}}}}AAn}{{{b{CAb}}}{{AMh{CAb}}}}{{{AL`{ce}}}{{AMh{ce}}}A@fAIb}{{{Db{c}}}{{AMh{{h{c}}}}}{}}{CAd{{AMh{CAb}}}}{c{{AMh{c}}}{}}{{{b{CAj}}}{{AMh{CAj}}}}{{{C@n{c}}}{{AMh{c}}}{ABbA@f}}{CAh{{AMh{CAj}}}}{{{j{ce}}}{{AMh{{h{c}}e}}}{}AIb}{{{b{CA`}}}{{AMh{CA`}}}}{CAf{{AMh{CA`}}}}{{{b{AKb}}}{{AMh{AKb}}}}{cc{}}00{e{{AMh{{h{c}}}}}{}{{AAj{}{{A@b{c}}}}}}{{}{{AMh{c}}}A@f}{{}{{EEb{c}}}A@f}{c{{AMh{ec}}}AIbA@f}{c{{EEb{ec}}}AIbA@f}{{{b{{AMh{ce}}}}{b{{AMh{ce}}}}}Aj{ADjA@f}AIb}{{{b{d{AMh{ce}}}}}{{Bf{{b{dc}}}}}A@fAIb}{{{b{d{AMh{ce}}}}}{{b{dc}}}A@fAIb}2{{{b{{AMh{ce}}}}{b{dg}}}On{BBlA@f}AIbBBj}{{}On}{cOn{AAnAIb}}{{}c{}}00{{{AMh{ce}}}{{Bf{c}}}{}AIb}{{{AMh{ce}}}{}A@fAIb}{{{EEb{ce}}}{}A@fAIb}{{{AMh{ce}}}{{Bb{e}}}A@fAIb}{{{EEb{ce}}}{{Bb{e}}}A@fAIb}{{{EEd{ce}}}{{AMh{ce}}}A@fAIb}<<{{{b{d{AMh{ce}}}}}{{b{dc}}}{B@nA@f}{AIbAAn}}{{{b{{AMh{ce}}}}{b{{AMh{ce}}}}}Aj{ACfA@f}AIb}{c{{AMh{c}}}{}}{{}{{EEb{c}}}{}}{c{{EEd{c}}}{}}{e{{AMh{c}}}{}{{AAf{{b{{EEb{c}}}}}{{A@h{c}}}}}}{{ce}{{AMh{ce}}}{}AIb}{c{{EEb{ec}}}AIb{}}{{ce}{{EEd{ce}}}{}AIb}{{}{{AMh{{C@b{c}}}}}{}}{c{{AMh{{C@b{e}}c}}}AIb{}}{Al{{AMh{{h{{C@b{c}}}}}}}{}}{{Alc}{{AMh{{h{{C@b{e}}}}c}}}AIb{}}3210{{{b{{AMh{ce}}}}{b{{AMh{ce}}}}}{{Bf{ABh}}}{ADjA@f}AIb}{c{{AFj{{AMh{c}}}}}{}}{{ce}{{AFj{{AMh{ce}}}}}{}AIb}{{{b{{AMh{ce}}}}{b{{AMh{ce}}}}}AjA@fAIb}{{{b{{EEb{ce}}}}{b{{EEb{ce}}}}}AjA@fAIb}{{{b{{AMh{ce}}}}}AlA@fAIb}{{{b{{EEb{ce}}}}}AlA@fAIb}{bc{}}0{bA`}{c{{n{e}}}{}{}}{{{AMh{{h{c}}e}}}{{n{{AMh{{Db{c}}e}}}}}{}AIb}11{{}{{n{c}}}{}}00{c{{n{{AMh{c}}AIf}}}{}}{{ce}{{n{{AMh{ce}}AIf}}}{}AIb}{{}{{n{{AMh{{C@b{c}}}}AIf}}}{}}{c{{n{{AMh{{C@b{e}}c}}AIf}}}AIb{}}10{{{AMh{ce}}}{{n{c{AMh{ce}}}}}{}AIb}{bAf}00{{{AMh{ce}}}cAAnAIb}{{{b{{EEb{ce}}}}}{{Bf{{AMh{ce}}}}}A@f{AAnAIb}}>=``````{{{n{ce}}{n{ge}}}{{n{ge}}}{}{}{}}{{{n{ce}}i}{{n{ge}}}{}{}{}{{AAf{c}{{A@h{{n{ge}}}}}}}}{{{b{{n{ce}}}}}{{n{b{b{e}}}}}BHb{}}{{{b{d{n{ce}}}}}{{n{{b{d}}{b{de}}}}}BHd{}}{{{b{d{n{ce}}}}}{{n{{b{dc}}{b{de}}}}}{}{}}{{{b{{n{ce}}}}}{{n{{b{c}}{b{e}}}}}{}{}}{b{{b{c}}}{}}000{{{b{d}}}{{b{dc}}}{}}000{{{n{ce}}}BGn{}{}}{{{b{{n{ce}}}}}{{n{ce}}}AAnAAn}{{{b{{EEf{c}}}}}{{EEf{c}}}{}}{{{b{{EEh{c}}}}}{{EEh{c}}}AAn}{{{b{d{n{ce}}}}{b{{n{ce}}}}}OnAAnAAn}{{b{b{dc}}}On{}}00{bOn}00{{{n{{b{dc}}e}}}{{n{ce}}}AAn{}}{{{n{{b{c}}e}}}{{n{ce}}}AAn{}}{{{b{{n{ce}}}}{b{{n{ce}}}}}ABhAAlAAl}{{{n{{b{c}}e}}}{{n{ce}}}BBn{}}{{{n{{b{dc}}e}}}{{n{ce}}}BBn{}}{{{b{{n{ce}}}}{b{{n{ce}}}}}AjACfACf}{{{n{ce}}}{{Bf{e}}}{}{}}{{{n{ce}}{b{AKb}}}c{}AD`}{{{n{ce}}{b{AKb}}}eAD`{}}{{{n{{n{ce}}e}}}{{n{ce}}}{}{}}{{{b{{n{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AD`}{{{b{{EEf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EEj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EEh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{EEl}}}{{n{EEnEF`}}}}{EEl{{n{EEnEF`}}}}{cc{}}000{g{{n{ie}}}{}{}{{AAj{}{{A@b{{n{ce}}}}}}}{{ABj{c}}}}{{}{{n{ce}}}{}{}}{{{n{C@`c}}}{{n{eg}}}{}{}{{ADf{c}}}}{{{DMb{c}}}{{n{eg}}}{}{}{{ADf{c}}}}{{{b{{n{ce}}}}{b{dg}}}OnBBlBBlBBj}{{{n{ce}}g}{{n{ce}}}{}{}{{AAf{{b{c}}}}}}{{{n{ce}}g}{{n{ce}}}{}{}{{AAf{{b{e}}}}}}{{}c{}}000{{{n{ce}}}e{{AEb{AIh}}}{}}{{{n{ce}}}{{EEh{c}}}{}{}}{{{b{{n{ce}}}}}{{EEf{c}}}{}{}}{{{b{d{n{ce}}}}}{{EEj{c}}}{}{}}444{{{n{ce}}}c{}{{AEb{AIh}}}}{{{b{{n{ce}}}}}Aj{}{}}{{{n{ce}}g}Aj{}{}{{AAf{e}{{A@h{Aj}}}}}}1{{{n{ce}}g}Aj{}{}{{AAf{c}{{A@h{Aj}}}}}}54{{{n{ce}}i}{{n{ge}}}{}{}{}{{AAf{c}{{A@h{g}}}}}}{{{n{ce}}i}{{n{cg}}}{}{}{}{{AAf{e}{{A@h{g}}}}}}{{{n{ce}}gi}g{}{}{}{{AAf{c}{{A@h{g}}}}}}{{{n{ce}}ik}g{}{}{}{{AAf{e}{{A@h{g}}}}}{{AAf{c}{{A@h{g}}}}}}{{{b{d{EEf{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{EEj{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{EEh{c}}}}}{{Bf{c}}}{}}210{{{n{ce}}}{{Bf{c}}}{}{}}{{{n{ce}}{n{cg}}}{{n{cg}}}{}{}{}}{{{n{ce}}i}{{n{cg}}}{}{}{}{{AAf{e}{{A@h{{n{cg}}}}}}}}{{{b{{n{ce}}}}{b{{n{ce}}}}}{{Bf{ABh}}}ADjADj}{g{{n{ie}}}{}{}{{A@d{}{{A@b{{n{ce}}}}}}}{{AG`{c}}}}{{{n{ce}}}D@nEDnAD`}{{{b{{EEf{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EEj{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EEh{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{g{{n{ie}}}{}{}{{A@d{}{{A@b{{n{ce}}}}}}}{{AGl{c}}}}{bc{}}00{{{n{{Bf{c}}e}}}{{Bf{{n{ce}}}}}{}{}}{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{bAf}000{{{n{ce}}}c{}AD`}{{{n{ce}}}eAD`{}}{{{n{ce}}}e{}{}}{{{n{ce}}c}c{}{}}{{{n{ce}}}cAFf{}}{{{n{ce}}g}c{}{}{{AAf{e}{{A@h{c}}}}}}{{{n{ce}}}c{}{}}``````````````{b{{b{c}}}{}}{{{b{d}}}{{b{dc}}}{}}{EFbEFb}`{{{BLb{c}}{BLb{c}}}{{BLb{c}}}BLd}{{{BLf{c}}{BLf{c}}}{{BLf{c}}}BLh}222``````````````22{cc{}}{c{{BLl{}{{BLj{c}}}}}{BBnBDlBLnBM`{AA`{{h{f}}}}{A@n{{h{f}}}}{BMd{}{{BMb{f}}}}}}00````````````````````````````{{}c{}}```````5{{EFbEFb}EFb}66```````````````````````````````````{{EFbEFbEFb}EFb}```7`77{{{BLb{c}}}{{BLb{c}}}BLd}{{{BLf{c}}}{{BLf{c}}}BLh}{{{BLl{}{{BLj{c}}}}}c{BBnBDlBLnBM`{AA`{{h{f}}}}{A@n{{h{f}}}}{BMd{}{{BMb{f}}}}}}00:{c{{n{e}}}{}{}}{{}{{n{c}}}{}}{bAf}```````````````````````````````````````{{BMfBMfBMf}BMf}{{{BMj{}{{BMh{c}}}}{BMj{}{{BMh{c}}}}}c{}}{{BMlBMl}c{}}000{{BMfBMf}BMf}02`````````````{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}i{}{}{}{}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}i{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}e{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{c{{BNb{}{{BMh{e}}{BMb{g}}{BMn{c}}{BN`{i}}}}}{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}c{}{}{}{}}00{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}c{}{}{}{}}10111{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}g{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}10:{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}e{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}c{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}e{}{}{}{}}210212102102121<3<{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}>10?>{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}};;?6{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}g{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}i{}{}{}{}}1:9:99````````````````````````````````1{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BLb{Ff}}}{{BLb{Ff}}}}{{{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{Fl}}}{{BLb{Fl}}}}{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BLb{F`}}}{{BLb{F`}}}}{{{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Hj}}{BLb{Hj}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{b{{BLb{c}}}}{BLb{c}}}{}BLd}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Al}}{BLb{Al}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{Dh}}{BLb{Dh}}}}{{{BLb{F`}}{BLb{F`}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{Dn}}{BLb{Dn}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{{b{d{BLb{c}}}}e}OnBLd{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}c{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}c{}{}{}{}{}}{BLb}0{{{BLf{c}}}AjBLh}0{{{b{{BLb{c}}}}}{{b{{Db{c}}}}}BLd}{{{b{d{BLb{c}}}}}{{b{d{h{c}}}}}BLd}{{{b{d{BLb{c}}}}}{{b{d{Db{c}}}}}BLd}02{{{b{{BLb{c}}}}}{{b{{h{c}}}}}BLd}{{{BLf{c}}{BLf{c}}}{{BLf{c}}}BLh}{{{BLf{c}}Aj}{{BLf{c}}}BLh}={{{b{{BLb{c}}}}{BLb{c}}}{}BLd}<{{{BLb{Al}}{BLb{Al}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{F`}}{BLb{F`}}}}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Hj}}{BLb{Hj}}}}{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Ff}}{BLb{Ff}}}}{{{b{d{BLf{c}}}}{BLf{c}}}OnBLh}{{{b{d{BLf{c}}}}Aj}OnBLh}{{{b{d{BLb{c}}}}e}OnBLd{}}>?9{{{BLb{Gn}}{BLb{Gn}}}}49;{{{BLb{Gb}}{BLb{Gb}}}}6>=789?432{{{BLf{c}}Aj}{}BLh}{{{BLf{c}}{BLf{c}}}{}BLh}?8=3>{{{BLb{Al}}{BLb{Al}}}};<{{{b{{BLb{c}}}}{BLb{c}}}{}BLd};94>786{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}i{}{}{}{}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}i{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}e{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BLf{c}}}{{BLf{e}}}BLhBLh}{{{BLb{Ej}}}}{{{BLb{Fl}}}}{{{BLb{F`}}}}{{{BLb{Dh}}}}{BLb}{{{BLb{Ff}}}}{{{BLb{Gb}}}}2{{{BLb{f}}}}{{{BLb{Dn}}}}{{{BLb{Gn}}}}{{{BLb{Hd}}}}{{{BLb{Hj}}}}{{{BLb{Al}}}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}i{}{}{}{}{}}9{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}i{}{}{}{}{}}:{{{b{{BLf{c}}}}}{{BLf{c}}}BLh}{{{b{{BLb{c}}}}}{{BLb{c}}}BLd}{{b{b{dc}}}On{}}0{bOn}0{{{b{{BLb{c}}}}{b{{BLb{c}}}}}ABh{BLdAAl}}{{{BLb{c}}{b{d{h{c}}}}}OnBLd}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BLb{Dn}}{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Dh}}{BLb{Dh}}}{{BLb{Dh}}}}{{{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Dh}}}{{BLb{Dh}}}}{{}{{BLf{c}}}BLh}{{}{{BLb{c}}}{BLdAFf}}{{{BLb{c}}{BLb{c}}}{{Bb{{BLb{c}}{BLb{c}}}}}BLd}{{{BLb{F`}}{BLb{F`}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{b{{BLb{c}}}}{BLb{c}}}{}BLd}{{{BLb{Dn}}{BLb{Dn}}}}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Dh}}{BLb{Dh}}}}{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Al}}{BLb{Al}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{Hj}}{BLb{Hj}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{{b{d{BLb{c}}}}e}OnBLd{}}{{{b{{BLf{c}}}}{b{{BLf{c}}}}}Aj{BLhACf}}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}Aj{BLdACf}}{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BLb{Dn}}}{{BLb{Dn}}}}01{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}c{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}c{}{}{}{}{}}{BLb}0``````````````{{{BLf{c}}}{{Bf{Al}}}BLh}{{{b{{BLf{c}}}}{b{dAb}}}{{n{OnADb}}}{BLhAD`}}{{{b{{BLb{c}}}}{b{dAb}}}{{n{OnADb}}}{BLdAD`}}76{{{BLf{Fl}}}{{BLf{Ff}}}}{{{BLf{Ej}}}{{BLf{Gb}}}}{{{BLf{Gb}}}{{BLf{Ff}}}}{{{BLf{Gb}}}{{BLf{F`}}}}{cc{}}{{{BLf{Gb}}}{{BLf{Ej}}}}{{{BLf{Gb}}}{{BLf{Fl}}}}{{{BLf{Ff}}}{{BLf{F`}}}}{{{BLf{Ff}}}{{BLf{Ej}}}}{{{BLf{Ej}}}{{BLf{Fl}}}}{{{BLf{Fl}}}{{BLf{Ej}}}}{{{BLf{Fl}}}{{BLf{F`}}}}{{{BLf{Ff}}}{{BLf{Fl}}}}{{{BLf{Ff}}}{{BLf{Gb}}}}{{{BLf{F`}}}{{BLf{Ej}}}}{{{BLf{Fl}}}{{BLf{Gb}}}}{{{BLf{Ej}}}{{BLf{F`}}}}{{{BLf{Ej}}}{{BLf{Ff}}}}{{{BLf{F`}}}{{BLf{Fl}}}}{{{BLf{F`}}}{{BLf{Gb}}}}{{{BLf{F`}}}{{BLf{Ff}}}}{{{Db{Aj}}}{{BLf{c}}}BLh}{AOf{{BLb{Hj}}}}{ANn{{BLb{Gn}}}}{ANn{{BLb{F`}}}}{AN`{{BLb{F`}}}}{AOf{{BLb{F`}}}}{AMl{{BLb{Dh}}}}{ANf{{BLb{Dh}}}}{AOl{{BLb{Dh}}}}{ANn{{BLb{Hj}}}}{AN`{{BLb{Hj}}}}{ANn{{BLb{Ff}}}}{AN`{{BLb{Ff}}}}{AOf{{BLb{Ff}}}}{ANl{{BLb{Dn}}}}{AOf{{BLb{Hd}}}}{AN`{{BLb{Hd}}}}{ANn{{BLb{Hd}}}}{ANd{{BLb{Dn}}}}{AOh{{BLb{Dn}}}}{ANn{{BLb{Al}}}}{AOf{{BLb{Ej}}}}{ANn{{BLb{Fl}}}}{AOf{{BLb{Al}}}}{AN`{{BLb{Ej}}}}{ANn{{BLb{Gb}}}}{ANn{{BLb{Ej}}}}{AN`{{BLb{Gb}}}}{AOf{{BLb{Gb}}}}{AN`{{BLb{Fl}}}}{{{EFd{c}}}{{BLb{c}}}BLh}{cc{}}{{{Db{c}}}{{BLb{c}}}BLd}{AOf{{BLb{Gn}}}}{AOf{{BLb{Fl}}}}{AN`{{BLb{Gn}}}}{ANn{{BLb{f}}}}{AN`{{BLb{f}}}}{AOf{{BLb{f}}}}{AN`{{BLb{Al}}}}{{{Db{Aj}}}{{BLf{c}}}BLh}8{{}{{BLb{Ff}}}}{{}{{BLb{Hd}}}}{{}{{BLb{f}}}}0{{}{{BLb{F`}}}}{{}{{BLb{Al}}}}{{}{{BLb{Fl}}}}33{{}{{BLb{Ej}}}}3{{}{{BLb{Hj}}}}246{{}{{BLb{Dh}}}}065446856{{}{{BLb{Gn}}}}4090513290{{}{{BLb{Dn}}}}945{{}{{BLb{Gb}}}}1425402165601:3:5036{Hj{{BLf{c}}}BLh}{{{BLb{f}}}{{BLf{c}}}BLh}{c{{BNb{}{{BMh{e}}{BMb{g}}{BMn{c}}{BN`{i}}}}}{}{}{}{}}{{{BLb{Hj}}}{{BLb{Dn}}}}{{{BLb{Hd}}}{{BLb{Dh}}}}{{{BLb{c}}}{{BLf{c}}}BLh}0{{}{{BLb{Hd}}}}>0:<<0;::0<;=<:7099<:;9=9<87=99;8=7={{}{{BLb{f}}}}{{}{{BLb{F`}}}}:9101{{}{{BLb{Al}}}};{{}{{BLb{Fl}}}}{{}{{BLb{Ff}}}}2431404302403>>{{}{{BLb{Ej}}}}6{{}{{BLb{Dh}}}}10{{}{{BLb{Hj}}}}8537162347187637554837647{{}{{BLb{Dn}}}}7{{}{{BLb{Gb}}}}7960{{}{{BLb{Gn}}}}2917;201730523405357{{{b{{h{c}}}}}{{BLb{c}}}BLd}{{{b{{h{c}}}}{BLb{Al}}{BLb{c}}}{{BLb{c}}}BLd}{{{b{{h{c}}}}{BLb{Al}}}{{BLb{c}}}{AFfBLd}}{BLb{{BLb{c}}}{AFfBLd}}{{{b{{h{c}}}}{BLf{Gb}}{BLb{Al}}{BLb{c}}}{{BLb{c}}}BLd}{{BLb{BLf{Gb}}{BLb{c}}}{{BLb{c}}}BLd}1{{{b{{BLb{c}}}}{b{de}}}On{BLdBBl}BBj}````````````````````````````{{{b{{BLb{c}}}}e}bBLd{{AKh{{h{c}}}}}}{{{b{d{BLb{c}}}}e}{{b{d}}}BLd{{AKh{{h{c}}}}}}{{{BLb{c}}{BLb{c}}}{{Bb{{BLb{c}}{BLb{c}}}}}BLd}{{}c{}}0{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}c{}{}{}{}}{{{BLb{Dn}}}}{{{BLb{Dh}}}}201210{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}c{}{}{}{}}{{{BLb{Gb}}}}{{{BLb{Fl}}}}{{{BLb{Ej}}}}{{{BLb{F`}}}}{{{BLb{Ff}}}}867{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}k{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}k{}{}{}{}{}}{BLb}0857643;:9;9:;9:```````{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}g{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}689{{{BLb{Gn}}}{{BLb{Gn}}}}{{{BLb{Hd}}}{{BLb{Hd}}}}{{{BLb{Hj}}}{{BLb{Hj}}}}8{{{BLb{Al}}}{{BLb{Al}}}};{{{BLb{f}}}{{BLb{f}}}}65><102:3;=4{{{b{{BLb{c}}}}}AlBLd}{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BLb{Dn}}}{{BLb{Dn}}}}{{{b{{h{c}}}}{BLb{c}}}{{BLb{c}}}BLd}{{{b{{h{c}}}}}{{BLb{c}}}{AFfBLd}}{{{b{{h{c}}}}BLf{BLb{c}}}{{BLb{c}}}BLd}{{{b{{h{c}}}}BLf}{{BLb{c}}}{AFfBLd}}{{BLf{BLb{c}}}{{BLb{c}}}BLd}26565```````````````````````````````````{{{b{{BLb{c}}}}{BLb{c}}}{}BLd}{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Hj}}{BLb{Hj}}}}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{F`}}{BLb{F`}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Dn}}{BLb{Dn}}}}{{{BLb{Dh}}{BLb{Dh}}}}{{{BLb{Al}}{BLb{Al}}}}{{{b{d{BLb{c}}}}e}OnBLd{}}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}Aj{BLdACf}}{{{BLb{Ff}}}}{{{BLb{Gb}}}}{{{BLb{Fl}}}}{{{BLb{Ej}}}}{{{BLb{Dn}}}}{{{BLb{F`}}}}{{{BLb{Dh}}}}{{{BLf{c}}}{}BLh}2{{{BLb{f}}}}{{{BLb{Al}}}}{{{BLb{Gn}}}}{{{BLb{Hd}}}}:;{{{BLb{Hj}}}}9:{{{b{{BLf{c}}}}{b{{BLf{c}}}}}{{Bf{ABh}}}{BLhADj}}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{{Bf{ABh}}}{BLdADj}}{c{{BLb{Ej}}}{{A@d{}{{A@b{{BLb{Ej}}}}}}}}{c{{BLb{Dh}}}{{A@d{}{{A@b{{BLb{Dh}}}}}}}}{c{{BLb{Dn}}}{{A@d{}{{A@b{{BLb{Dn}}}}}}}}{c{{BLb{Gb}}}{{A@d{}{{A@b{{BLb{Gb}}}}}}}}{c{{BLb{f}}}{{A@d{}{{A@b{{BLb{f}}}}}}}}{c{{BLb{Dn}}}{{A@d{}{{A@b{{b{{BLb{Dn}}}}}}}}}}{c{{BLb{Gb}}}{{A@d{}{{A@b{{b{{BLb{Gb}}}}}}}}}}{c{{BLb{Gn}}}{{A@d{}{{A@b{{BLb{Gn}}}}}}}}{c{{BLb{Gn}}}{{A@d{}{{A@b{{b{{BLb{Gn}}}}}}}}}}{c{{BLb{Fl}}}{{A@d{}{{A@b{{BLb{Fl}}}}}}}}{c{{BLb{Hj}}}{{A@d{}{{A@b{{BLb{Hj}}}}}}}}{c{{BLb{f}}}{{A@d{}{{A@b{{b{{BLb{f}}}}}}}}}}{c{{BLb{Dh}}}{{A@d{}{{A@b{{b{{BLb{Dh}}}}}}}}}}{c{{BLb{Hj}}}{{A@d{}{{A@b{{b{{BLb{Hj}}}}}}}}}}{c{{BLb{Hd}}}{{A@d{}{{A@b{{BLb{Hd}}}}}}}}{c{{BLb{Hd}}}{{A@d{}{{A@b{{b{{BLb{Hd}}}}}}}}}}{c{{BLb{Fl}}}{{A@d{}{{A@b{{b{{BLb{Fl}}}}}}}}}}{c{{BLb{F`}}}{{A@d{}{{A@b{{BLb{F`}}}}}}}}{c{{BLb{F`}}}{{A@d{}{{A@b{{b{{BLb{F`}}}}}}}}}}{c{{BLb{Al}}}{{A@d{}{{A@b{{b{{BLb{Al}}}}}}}}}}{c{{BLb{Al}}}{{A@d{}{{A@b{{BLb{Al}}}}}}}}{c{{BLb{Ff}}}{{A@d{}{{A@b{{BLb{Ff}}}}}}}}{c{{BLb{Ff}}}{{A@d{}{{A@b{{b{{BLb{Ff}}}}}}}}}}{c{{BLb{Ej}}}{{A@d{}{{A@b{{b{{BLb{Ej}}}}}}}}}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BLb{Dn}}}{{BLb{Dn}}}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}e{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}c{}{}}{{{BLb{Al}}}}{{{BLb{Fl}}}}{{{BLb{Hd}}}}{{{BLb{F`}}}}{{{BLb{Hj}}}}{{{BLb{Gn}}}}{{{BLb{f}}}}{{{BLb{Ej}}}}{{{BLb{Ff}}}}{{{BLb{Gb}}}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}e{}{}{}{}}<;138796{{{BLb{Dh}}}}{{{BLb{Dn}}}}<4762>=0;78<356941:>=86934;<:752>=<50689:;43712>=;971<534608:>=6957:43<;8{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Dh}}{BLb{Dh}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{b{{BLb{c}}}}{BLb{c}}}{}BLd}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Gn}}{BLb{Gn}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{Hj}}{BLb{Hj}}}}{{{BLb{Al}}{BLb{Al}}}}{{{BLb{Dn}}{BLb{Dn}}}}{{{BLb{F`}}{BLb{F`}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{b{d{BLb{c}}}}e}OnBLd{}}{{{BLb{c}}c}{{BLb{c}}}BLd}{{{BLb{c}}}{{BLb{c}}}BLd}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}{{{BLb{F`}}}{{BLb{F`}}}}{{{BLb{f}}}{{BLb{f}}}}{{{BLb{Hj}}}{{BLb{Hj}}}}{{{BLb{Fl}}}{{BLb{Fl}}}}{{{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{Gn}}}{{BLb{Gn}}}}{{{BLb{Al}}}{{BLb{Al}}}}{{{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{Ff}}}{{BLb{Ff}}}}{{{BLb{Hd}}}{{BLb{Hd}}}}<<;65291{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}{{{BLb{Ej}}{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{f}}{BLb{f}}}{{BLb{f}}}}{{{BLb{Hd}}{BLb{Hd}}}{{BLb{Hd}}}}{{{BLb{Fl}}{BLb{Fl}}}{{BLb{Fl}}}}{{{BLb{F`}}{BLb{F`}}}{{BLb{F`}}}}{{{BLb{Al}}{BLb{Al}}}{{BLb{Al}}}}{{{BLb{Hj}}{BLb{Hj}}}{{BLb{Hj}}}}{{{BLb{Gn}}{BLb{Gn}}}{{BLb{Gn}}}}{{{BLb{Gb}}{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{Ff}}{BLb{Ff}}}{{BLb{Ff}}}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BLb{Fl}}}{{BLb{Fl}}}}?{{{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{F`}}}{{BLb{F`}}}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}{{{BLb{Ej}}{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{f}}{BLb{f}}}{{BLb{f}}}};?<9=:{{{BLb{Hd}}{BLb{Hd}}}{{BLb{Hd}}}}?{{{BLb{c}}{b{d{h{c}}}}{BLb{Al}}}OnBLd}{{{BLb{c}}BLb}OnBLd}{{{BLb{c}}{b{d{h{c}}}}{BLf{Gb}}{BLb{Al}}}OnBLd}{{{BLb{c}}BLb{BLf{Gb}}}OnBLd}1{{{BLf{c}}{BLb{e}}{BLb{e}}}{{BLb{e}}}BLh{{BLd{}{{BMh{c}}}}}}{{{BLf{c}}{BLf{c}}{BLf{c}}}{{BLf{c}}}BLh}{{{b{d{BLf{c}}}}AlAj}OnBLh}0{{{BLb{Hd}}{b{Hd}}}}{{{BLb{F`}}F`}}{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{b{{BLb{c}}}}{BLb{c}}}{}BLd}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{b{{BLb{Ej}}}}{b{Ej}}}}{{{BLb{Al}}{BLb{Al}}}}{{{BLb{Fl}}Fl}}{{{BLb{Hj}}{BLb{Hj}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Gb}}Gb}}{{{BLb{Gb}}{b{Gb}}}}{{{b{{BLb{Gb}}}}Gb}}{{{b{{BLb{Gb}}}}{b{Gb}}}}{{{BLb{f}}f}}{{{BLb{f}}{b{f}}}}{{{b{{BLb{f}}}}f}}{{{b{{BLb{f}}}}{b{f}}}}{{{BLb{Gn}}Gn}}{{{BLb{Gn}}{b{Gn}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{{b{{BLb{Gn}}}}Gn}}{{{b{{BLb{Gn}}}}{b{Gn}}}}{{{BLb{Hd}}Hd}}{{{b{{BLb{Ff}}}}Ff}}{{{b{{BLb{Ej}}}}Ej}}{{{BLb{Fl}}{b{Fl}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{F`}}{BLb{F`}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{Fl}}{BLb{Fl}}}}{{{b{{BLb{Al}}}}{b{Al}}}}{{{BLb{Ff}}Ff}}{{{b{{BLb{Hd}}}}Hd}}{{{b{{BLb{Ff}}}}{b{Ff}}}}{{{b{{BLb{Fl}}}}Fl}}{{{b{{BLb{Fl}}}}{b{Fl}}}}{{{b{{BLb{Hd}}}}{b{Hd}}}}{{{BLb{Hj}}Hj}}{{{b{{BLb{F`}}}}{b{F`}}}}{{{b{{BLb{F`}}}}F`}}{{{BLb{F`}}{b{F`}}}}{{{BLb{Hj}}{b{Hj}}}}{{{BLb{Ej}}Ej}}{{{b{{BLb{Hj}}}}Hj}}{{{b{{BLb{Hj}}}}{b{Hj}}}}{{{BLb{Al}}Al}}{{{BLb{Ej}}{b{Ej}}}}{{{BLb{Al}}{b{Al}}}}{{{b{{BLb{Al}}}}Al}}{{{BLb{Ff}}{b{Ff}}}}{{{b{d{BLb{c}}}}e}OnBLd{}}{{{b{{BLb{Ff}}}}Ff}}{{{BLb{Gb}}Gb}}{{{BLb{Gn}}{b{Gn}}}}{{{BLb{Gn}}Gn}}{{{b{{BLb{f}}}}{b{f}}}}{{{b{{BLb{f}}}}f}}{{{BLb{f}}{b{f}}}}=<:{{{BLb{f}}f}}:{{{b{{BLb{Al}}}}{b{Al}}}}{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{F`}}{BLb{F`}}}}{{{b{{BLb{Gb}}}}{b{Gb}}}}{{{b{{BLb{Hj}}}}Hj}}{{{BLb{Hj}}{b{Hj}}}}{{{BLb{Hj}}Hj}}{{{b{{BLb{Hd}}}}{b{Hd}}}}{{{b{{BLb{Hd}}}}Hd}}{{{BLb{Hd}}{b{Hd}}}}{{{BLb{Hd}}Hd}}{{{b{{BLb{Gn}}}}{b{Gn}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Hj}}{BLb{Hj}}}}{{{BLb{Al}}{BLb{Al}}}}{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{b{{BLb{c}}}}{BLb{c}}}{}BLd}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Fl}}Fl}}{{{BLb{Fl}}{b{Fl}}}}{{{b{{BLb{Gb}}}}Gb}}{{{b{{BLb{Fl}}}}{b{Fl}}}}{{{BLb{Ej}}Ej}}{{{BLb{Ej}}{b{Ej}}}}{{{b{{BLb{Ej}}}}Ej}}{{{b{{BLb{Ej}}}}{b{Ej}}}}{{{BLb{F`}}F`}}{{{BLb{F`}}{b{F`}}}}{{{b{{BLb{F`}}}}F`}}{{{b{{BLb{F`}}}}{b{F`}}}}{{{BLb{Ff}}Ff}}{{{BLb{Ff}}{b{Ff}}}}{{{b{{BLb{Gn}}}}Gn}}{{{BLb{Gb}}{b{Gb}}}}{{{b{{BLb{Ff}}}}{b{Ff}}}}{{{b{{BLb{Fl}}}}Fl}}{{{b{d{BLb{c}}}}e}OnBLd{}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BLb{F`}}}{{BLb{F`}}}}{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{Ff}}}{{BLb{Ff}}}}{{{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Fl}}}{{BLb{Fl}}}}{{{BLb{Ej}}}{{BLb{Ej}}}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{BMfBMfBMf}BMf}{{{BLf{Fl}}{BLf{Fl}}{BLf{Fl}}}{{BLf{Fl}}}}{{{BLf{Gb}}{BLf{Gb}}{BLf{Gb}}}{{BLf{Gb}}}}{{{BLf{Ej}}{BLf{Ej}}{BLf{Ej}}}{{BLf{Ej}}}}{{{BLf{Ff}}{BLf{Ff}}{BLf{Ff}}}{{BLf{Ff}}}}{{{BLf{F`}}{BLf{F`}}{BLf{F`}}}{{BLf{F`}}}}{{BLbBLbBLb}BLb}{{{BLb{Hj}}{BLb{Hj}}{BLb{Hj}}}{{BLb{Hj}}}}{{{BLb{Al}}{BLb{Al}}{BLb{Al}}}{{BLb{Al}}}}{{{BLb{Fl}}{BLb{Fl}}{BLb{Fl}}}{{BLb{Fl}}}}{{{BLb{f}}{BLb{f}}{BLb{f}}}{{BLb{f}}}}{{{BLb{Ej}}{BLb{Ej}}{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{F`}}{BLb{F`}}{BLb{F`}}}{{BLb{F`}}}}{{{BLb{Ff}}{BLb{Ff}}{BLb{Ff}}}{{BLb{Ff}}}}{{{BLb{Hd}}{BLb{Hd}}{BLb{Hd}}}{{BLb{Hd}}}}{{{BLb{Gb}}{BLb{Gb}}{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{Dn}}{BLb{Dn}}{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Gn}}{BLb{Gn}}{BLb{Gn}}}{{BLb{Gn}}}}{{{BLb{Dh}}{BLb{Dh}}{BLb{Dh}}}{{BLb{Dh}}}}<{{{BMj{}{{BMh{c}}}}{BMj{}{{BMh{c}}}}}c{}}{{{BLf{Gb}}{BLf{Gb}}}}{{{BLf{Fl}}{BLf{Fl}}}}{{{BLf{F`}}{BLf{F`}}}}{{{BLf{Ff}}{BLf{Ff}}}}{{{BLf{Ej}}{BLf{Ej}}}}{{{BLb{Hd}}{BLb{Hd}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{Al}}{BLb{Al}}}}{{{BLb{Hj}}{BLb{Hj}}}}{{BLbBLb}}{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Ej}}{BLb{Ej}}}}2{{{BLb{Dn}}{BLb{Dn}}}}{{{BLb{F`}}{BLb{F`}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Dh}}{BLb{Dh}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{BMlBMl}c{}}?{{{BLf{Gb}}{BLf{Gb}}}}{{{BLf{F`}}{BLf{F`}}}}{{{BLf{Ej}}{BLf{Ej}}}}{{{BLf{Fl}}{BLf{Fl}}}}8{{{BLb{Hd}}{BLb{Hd}}}}=8:<{{{BLb{Al}}{BLb{Al}}}}{{{BLb{Gb}}{BLb{Gb}}}}98{{{BLb{Hj}}{BLb{Hj}}}}{{BLbBLb}}?097856{{{BLf{Ff}}{BLf{Ff}}}}2;<{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{Fl}}{BLb{Fl}}}}?6{{{BLb{Gn}}{BLb{Gn}}}}{{{BLb{Dn}}{BLb{Dn}}}}{{{BLb{F`}}{BLb{F`}}}}6:86?><=;57680{{{BLb{Dh}}{BLb{Dh}}}}:;24{{{BLb{Ff}}{BLb{Ff}}}}486{{{BLb{f}}{BLb{f}}}}{{BMlBMl}c{}}{{{BLf{Gb}}{BLf{Gb}}}}{{{BLf{Fl}}{BLf{Fl}}}}{{{BLf{Ej}}{BLf{Ej}}}}{{{BLf{F`}}{BLf{F`}}}}=;>8<965{{{BLb{Al}}{BLb{Al}}}};{{{BLb{Hd}}{BLb{Hd}}}}{{BLbBLb}}{{{BLb{Hj}}{BLb{Hj}}}};{{{BLb{Gb}}{BLb{Gb}}}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{BMfBMf}BMf}{{{BLf{Fl}}{BLf{Fl}}}{{BLf{Fl}}}}{{{BLf{Gb}}{BLf{Gb}}}{{BLf{Gb}}}}{{{BLf{Ej}}{BLf{Ej}}}{{BLf{Ej}}}}{{{BLf{F`}}{BLf{F`}}}{{BLf{F`}}}}{{{BLf{Ff}}{BLf{Ff}}}{{BLf{Ff}}}}{{{BLb{Hj}}{BLb{Hj}}}{{BLb{Hj}}}}{{{BLb{Ff}}{BLb{Ff}}}{{BLb{Ff}}}}{{BLbBLb}BLb}{{{BLb{F`}}{BLb{F`}}}{{BLb{F`}}}}{{{BLb{Ej}}{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{Fl}}{BLb{Fl}}}{{BLb{Fl}}}}{{{BLb{Al}}{BLb{Al}}}{{BLb{Al}}}}{{{BLb{Gb}}{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{Dn}}{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Hd}}{BLb{Hd}}}{{BLb{Hd}}}}{{{BLb{Gn}}{BLb{Gn}}}{{BLb{Gn}}}}{{{BLb{f}}{BLb{f}}}{{BLb{f}}}}{{{BLb{Dh}}{BLb{Dh}}}{{BLb{Dh}}}}:{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{BMfBMf}BMf}{{{BLf{F`}}{BLf{F`}}}{{BLf{F`}}}}{{{BLf{Fl}}{BLf{Fl}}}{{BLf{Fl}}}}{{{BLf{Gb}}{BLf{Gb}}}{{BLf{Gb}}}}{{{BLf{Ff}}{BLf{Ff}}}{{BLf{Ff}}}}{{{BLf{Ej}}{BLf{Ej}}}{{BLf{Ej}}}}{{{BLb{Ff}}{BLb{Ff}}}{{BLb{Ff}}}}=?{{BLbBLb}BLb}:{{{BLb{F`}}{BLb{F`}}}{{BLb{F`}}}}:<{{{BLb{Al}}{BLb{Al}}}{{BLb{Al}}}}{{{BLb{Ej}}{BLb{Ej}}}{{BLb{Ej}}}}?{{{BLb{Dn}}{BLb{Dn}}}{{BLb{Dn}}}}4{{{BLb{Hj}}{BLb{Hj}}}{{BLb{Hj}}}}{{{BMj{}{{BMh{c}}}}{BMj{}{{BMh{c}}}}}c{}}{{{BLf{Ej}}{BLf{Ej}}}}{{{BLf{Fl}}{BLf{Fl}}}}{{{BLf{Gb}}{BLf{Gb}}}}{{{BLf{Ff}}{BLf{Ff}}}}{{{BLf{F`}}{BLf{F`}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{Fl}}{BLb{Fl}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{BLbBLb}}{{{BLb{F`}}{BLb{F`}}}}1{{{BLb{Al}}{BLb{Al}}}}{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Hj}}{BLb{Hj}}}}{{{BLb{Ej}}{BLb{Ej}}}}{{{BLb{Dn}}{BLb{Dn}}}}{{{BLb{Dh}}{BLb{Dh}}}}{{{BLb{Hd}}{BLb{Hd}}}}`{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BLb{Dn}}}{{BLb{Dn}}}}{Aj{{BLf{c}}}BLh}{c{{BLb{c}}}BLd}{{{BLb{c}}{b{d{h{c}}}}BLf}OnBLd}{{{BLb{c}}BLf}OnBLd}19{{{b{{BLb{c}}}}{BLb{c}}}{}BLd};{{{BLb{c}}{b{{BLb{c}}}}}{}BLd}{{{b{{BLb{c}}}}{b{{BLb{c}}}}}{}BLd}{{{BLb{Fl}}{BLb{Fl}}}}:{{{BLb{F`}}{BLb{F`}}}}<{{{BLb{Ff}}{BLb{Ff}}}}{{{BLb{Gb}}{BLb{Gb}}}}{{{BLb{Al}}{BLb{Al}}}}{{{BLb{f}}{BLb{f}}}}{{{BLb{Dn}}{BLb{Dn}}}}{{{BLb{Gn}}{BLb{Gn}}}}{{{b{d{BLb{c}}}}e}OnBLd{}}{c{{BLb{Hd}}}{{A@d{}{{A@b{{BLb{Hd}}}}}}}}{c{{BLb{Dh}}}{{A@d{}{{A@b{{b{{BLb{Dh}}}}}}}}}}{c{{BLb{Gb}}}{{A@d{}{{A@b{{BLb{Gb}}}}}}}}{c{{BLb{Ff}}}{{A@d{}{{A@b{{b{{BLb{Ff}}}}}}}}}}{c{{BLb{Ff}}}{{A@d{}{{A@b{{BLb{Ff}}}}}}}}{c{{BLb{F`}}}{{A@d{}{{A@b{{b{{BLb{F`}}}}}}}}}}{c{{BLb{F`}}}{{A@d{}{{A@b{{BLb{F`}}}}}}}}{c{{BLb{Ej}}}{{A@d{}{{A@b{{b{{BLb{Ej}}}}}}}}}}{c{{BLb{Ej}}}{{A@d{}{{A@b{{BLb{Ej}}}}}}}}{c{{BLb{Fl}}}{{A@d{}{{A@b{{b{{BLb{Fl}}}}}}}}}}{c{{BLb{Fl}}}{{A@d{}{{A@b{{BLb{Fl}}}}}}}}{c{{BLb{Al}}}{{A@d{}{{A@b{{b{{BLb{Al}}}}}}}}}}{c{{BLb{Al}}}{{A@d{}{{A@b{{BLb{Al}}}}}}}}{c{{BLb{Dh}}}{{A@d{}{{A@b{{BLb{Dh}}}}}}}}{c{{BLb{Hj}}}{{A@d{}{{A@b{{BLb{Hj}}}}}}}}{c{{BLb{Hd}}}{{A@d{}{{A@b{{b{{BLb{Hd}}}}}}}}}}{c{{BLb{Gb}}}{{A@d{}{{A@b{{b{{BLb{Gb}}}}}}}}}}{c{{BLb{Gn}}}{{A@d{}{{A@b{{b{{BLb{Gn}}}}}}}}}}{c{{BLb{Gn}}}{{A@d{}{{A@b{{BLb{Gn}}}}}}}}{c{{BLb{f}}}{{A@d{}{{A@b{{b{{BLb{f}}}}}}}}}}{c{{BLb{f}}}{{A@d{}{{A@b{{BLb{f}}}}}}}}{c{{BLb{Dn}}}{{A@d{}{{A@b{{b{{BLb{Dn}}}}}}}}}}{c{{BLb{Dn}}}{{A@d{}{{A@b{{BLb{Dn}}}}}}}}{c{{BLb{Hj}}}{{A@d{}{{A@b{{b{{BLb{Hj}}}}}}}}}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}{{{BLb{f}}}{{BLb{f}}}}{{{BLb{Al}}}{{BLb{Al}}}}{{{BLb{Hj}}}{{BLb{Hj}}}}{{{BLb{Hd}}}{{BLb{Hd}}}}{{{BLb{Gn}}}{{BLb{Gn}}}}{{{BLb{Fl}}}{{BLb{Fl}}}}{{{BLb{Gb}}}{{BLb{Gb}}}}{{{BLb{Ff}}}{{BLb{Ff}}}}{{{BLb{F`}}}{{BLb{F`}}}}{{{BLb{Ej}}}{{BLb{Ej}}}}{{{BLb{f}}{BLb{f}}}{{BLb{f}}}}{{{b{{BLf{c}}}}Al}AjBLh}0{{{BLf{c}}}{{Db{Aj}}}BLh}{{{BLb{c}}}{{Db{c}}}BLd}{{{BLb{Al}}}}{{{BLb{Fl}}}}{{{BLb{Dn}}}}{{{BLb{Dh}}}}{{{BLb{Ff}}}}{{{BLb{Gb}}}}212231000{{{BLb{F`}}}}{{{BLb{f}}}}0{{{BLb{Ej}}}}10001111{{{BLb{Gn}}}}000003{{{BLb{Hd}}}}046000{{{BLb{Hj}}}}000;;59;:59::3::3:8{{{BLf{c}}}HjBLh}{{{BLf{c}}}{{BLb{f}}}BLh}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}g{}{}{}{}}{{{BLb{Dn}}}{{BLb{Hj}}}}{{{BLb{Dh}}}{{BLb{Hd}}}}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BLf{c}}}{{BLb{c}}}BLh}{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}i{}{}{}{}}{{{BLb{Dh}}}}{{{BLb{Dn}}}}00{{{BLb{Gb}}}}1{{{BLb{Ff}}}}33103{{{BLb{Ej}}}}4403{{{BLb{F`}}}}1301{{{BLb{f}}}}0{{{BLb{Fl}}}}110110{{{BLb{Hj}}}}214{{{BLb{Gn}}}}207250200{{{BLb{Al}}}}5105{{{BLb{Hd}}}}1001683003388533996:03801;01;06108621;2472684:;:7;769597554524:2752445743{bc{}}0{{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{{BNb{}{{BMh{c}}{BMb{e}}{BMn{g}}{BN`{i}}}}}{}{}{}{}}{{{BLb{Dn}}}{{BLb{Dn}}}}{{{BLb{Dh}}}{{BLb{Dh}}}}{{{BNd{}{{BMh{c}}{BMb{e}}{Cb{g}}{BN`{i}}}}}g{}{}{}{}}{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}?{{{BLb{f}}}{{BLb{f}}}}{{{BLb{Gn}}}{{BLb{Gn}}}}?{{{BLb{Al}}}{{BLb{Al}}}}{{{BLb{Hd}}}{{BLb{Hd}}}}{{{BLb{Ff}}}}{{{BLb{F`}}}}{{{BLb{Hj}}}{{BLb{Hj}}}}{{{BLb{Fl}}}}9841023657{{{BLb{Gb}}}}{{{BLb{Ej}}}}{c{{n{e}}}{}{}}{{{b{{h{c}}}}}{{n{{BLb{c}}BOn}}}BLd}{{{b{d{h{c}}}}}{{n{{BLb{c}}BOn}}}BLd}2{{}{{n{c}}}{}}0{bAf}0```````````````````````````````````{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}c}{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}c}{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}{BLbBLb}0{c{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{c{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}{{}BLb}05433{{{BMd{}{{BMb{c}}{BN`{e}}}}}{{BMd{}{{BMb{c}}{BN`{e}}}}}{}{}}?{{{BLb{Gn}}}{{BLb{Gn}}}}{{{BLb{Al}}}{{BLb{Al}}}}{{{BLb{f}}}{{BLb{f}}}}{{{BLb{Hd}}}{{BLb{Hd}}}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}e}{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}e}{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}::<;::````````````{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}c{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}c{}{}{}{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}g{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}i{}{}{}{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}i{}{}{}{}{}}54{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}k{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}k{}{}{}{}{}}{{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}c}{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}c}{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}{c{{BNn{}{{BNf{c}}{BNh{e}}{BNj{g}}{BNl{i}}{BMh{k}}}}}{}{}{}{}{}}{c{{BOb{}{{BNf{c}}{BNh{e}}{BNj{g}}{BO`{i}}{BMh{k}}}}}{}{}{}{}{}}32=<32`````````````````````````````````{{{b{d{CBj{c}}}}Al}{{n{On{A@`{Al}}}}}{}}{{{b{d{CBl{c}}}}Al}{{n{On{A@`{Al}}}}}{}}10{{{b{d{CBj{c}}}}e}Aj{}{{A@j{}{{A@h{Aj}}}}}}{{{b{d{CBl{c}}}}e}Aj{}{{A@j{}{{A@h{Aj}}}}}}10{{{b{d{CBl{c}}}}}{{b{d{h{c}}}}}{}}{{{b{{CBj{c}}}}}{{b{{h{c}}}}}{}}{{{b{{CBl{c}}}}}{{b{{h{c}}}}}{}}10{{{b{{EFf{ce}}}}}{{b{{h{c}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{b{{b{c}}}{}}00000000000000000000000000{{{b{d}}}{{b{dc}}}{}}00000000000000000000000000{{{b{{CBj{c}}}}}{{CBj{c}}}{}}{{{b{{EFf{ce}}}}}{{EFf{ce}}}{}{AAn{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EFh{ce}}}}}{{EFh{ce}}}{}{AAn{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EFj{ce}}}}}{{EFj{ce}}}{}{AAn{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{EFl}}}EFl}{{{b{{EFn{c}}}}}{{EFn{c}}}{}}{{{b{{EG`{c}}}}}{{EG`{c}}}{}}{{{b{{EGb{c}}}}}{{EGb{c}}}{}}{{{b{{EGd{c}}}}}{{EGd{c}}}AAn}{{{b{{EGf{c}}}}}{{EGf{c}}}{}}{{{b{{EGh{c}}}}}{{EGh{c}}}{}}{{{b{{EGj{c}}}}}{{EGj{c}}}{}}{{b{b{dc}}}On{}}00000000000{bOn}00000000000{{{b{{AKd{}{{A@h{c}}}}}}}c{}}{{{CBj{c}}}Al{}}{{{CBl{c}}}Al{}}{{{EFn{c}}}Al{}}{{{EG`{c}}}Al{}}{{{EGl{c}}}Al{}}{{{EGb{c}}}Al{}}{{{EGn{c}}}Al{}}{{{EGd{c}}}Al{}}{{{EGf{c}}}Al{}}{{{EH`{c}}}Al{}}{{{EGh{c}}}Al{}}{{{EHb{c}}}Al{}}{{{EGj{c}}}Al{}}{{{EHd{c}}}Al{}}{{}{{CBj{c}}}{}}{{}{{CBl{c}}}{}}{{{b{d{CBj{c}}}}e}Bf{}{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{CBl{c}}}}e}Bf{}{{A@j{b}{{A@h{Aj}}}}}}{{{b{d{CBj{c}}}}g}{{Bf{e}}}{}{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{d{CBl{c}}}}g}{{Bf{e}}}{}{}{{A@j{}{{A@h{{Bf{e}}}}}}}}{{{b{{CBj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{CBl{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EFf{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EFh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHf{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHh{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EFj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHj{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHl{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EI`{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EIb{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EId{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{EIf{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{EFl}}{b{dAb}}}{{n{OnADb}}}}0{{{b{{EFn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EG`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EGl{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EGb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EGn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EGd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EGf{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EH`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EGh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EHb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EGj{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{EHd{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{CBj{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{{CBl{c}}eg}e{}{}{{A@j{e}{{A@h{e}}}}}}{{EFlce}c{}{{A@j{c}{{A@h{c}}}}}}{{{CBj{c}}e}On{}A@j}{{{CBl{c}}e}On{}A@j}{cc{}}00000000000000000000000000{{{b{dc}}}{{b{d{h{c}}}}}{}}{AKf{{b{d{h{c}}}}}{}}{AKf{{b{{h{c}}}}}{}}{Al{{b{{h{c}}}}}{}}{Al{{b{d{h{c}}}}}{}}{{{b{c}}}{{b{{h{c}}}}}{}}{{{AKh{}{{A@h{c}}}}{b{e}}}{{Bf{{b{c}}}}}A@fA@f}{{{AKh{}{{A@h{c}}}}{b{de}}}{{Bf{{b{dc}}}}}A@fA@f}{{{AKh{}{{A@h{c}}}}}cA@f}0{{{AKh{}{{A@h{c}}}}{b{e}}}{{b{c}}}A@fA@f}{{{AKh{}{{A@h{c}}}}{b{de}}}{{b{dc}}}A@fA@f}{{}c{}}00000000000000000000000000000000000000000000000000000{{{EGn{c}}}{{b{d{h{c}}}}}{}}{{{EH`{c}}}{{b{d{h{c}}}}}{}}{{{EHd{c}}}{{b{d{h{c}}}}}{}}{{{CBl{c}}}{{b{d{h{c}}}}}{}}{{{b{{CBj{c}}}}}Aj{}}{{{b{{CBl{c}}}}}Aj{}}{{{b{{EGb{c}}}}}Aj{}}{{{b{{EGn{c}}}}}Aj{}}{{{b{{EGd{c}}}}}Aj{}}{{{b{{EGf{c}}}}}Aj{}}{{{b{{EH`{c}}}}}Aj{}}{{{b{{EGj{c}}}}}Aj{}}{{{b{{EHd{c}}}}}Aj{}}{{{CBj{c}}e}Aj{}{{A@j{bb}{{A@h{Aj}}}}}}{{{b{{AKj{}{{A@h{c}}}}}}e}c{}{}}{{{CBj{c}}}{{Bf{{b{c}}}}}{}}{{{CBl{c}}}{{Bf{{b{dc}}}}}{}}{{{EId{ce}}}Bf{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{EIf{ce}}}Bf{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{EFl{{Bf{f}}}}{{{EFn{c}}}Bf{}}{{{EG`{c}}}Bf{}}{{{EGl{c}}}Bf{}}{{{EGb{c}}}Bf{}}{{{EGn{c}}}Bf{}}{{{EGd{c}}}Bf{}}{{{EGf{c}}}Bf{}}{{{EH`{c}}}Bf{}}{{{EGh{c}}}Bf{}}{{{EHb{c}}}Bf{}}{{{EGj{c}}}Bf{}}{{{EHd{c}}}Bf{}}{{{b{{CBj{c}}}}}Al{}}{{{b{{CBl{c}}}}}Al{}}{{{b{d{CBj{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CBl{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{EFf{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EFh{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHf{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHh{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EFj{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHj{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHl{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHn{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EI`{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EIb{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EId{ce}}}}}Bf{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EIf{ce}}}}}Bf{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{b{dEFl}}}{{Bf{f}}}}{{{b{d{EFn{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EG`{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EGl{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGb{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EGn{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGd{c}}}}}Bf{}}{{{b{d{EGf{c}}}}}{{Bf{{b{{Db{c}}}}}}}{}}{{{b{d{EH`{c}}}}}{{Bf{{b{d{Db{c}}}}}}}{}}{{{b{d{EGh{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EHb{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGj{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EHd{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{CBj{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{CBl{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{EFf{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EFh{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHf{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHh{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EFj{ce}}}}}{{Bf{{b{{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EHj{ce}}}}}{{Bf{{b{d{h{c}}}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EId{ce}}}}}Bf{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{b{d{EIf{ce}}}}}Bf{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{b{dEFl}}}{{Bf{f}}}}{{{b{d{EFn{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EG`{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EGl{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGb{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EGn{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGd{c}}}}}{{Bf{{b{{Db{c}}}}}}}{}}{{{b{d{EGf{c}}}}}{{Bf{{b{{Db{c}}}}}}}{}}{{{b{d{EH`{c}}}}}{{Bf{{b{d{Db{c}}}}}}}{}}{{{b{d{EGh{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EHb{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGj{c}}}}}{{Bf{{b{{h{c}}}}}}}{}}{{{b{d{EHd{c}}}}}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{CBj{c}}}}Al}{{Bf{{b{c}}}}}{}}{{{b{d{CBl{c}}}}Al}{{Bf{{b{dc}}}}}{}}{{{b{d{EFn{c}}}}Al}Bf{}}{{{b{d{EG`{c}}}}Al}Bf{}}{{{b{d{EGl{c}}}}Al}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGb{c}}}}Al}Bf{}}{{{b{d{EGn{c}}}}Al}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGd{c}}}}Al}Bf{}}{{{b{d{EGf{c}}}}Al}Bf{}}{{{b{d{EH`{c}}}}Al}Bf{}}{{{b{d{EGh{c}}}}Al}Bf{}}{{{b{d{EHb{c}}}}Al}{{Bf{{b{d{h{c}}}}}}}{}}{{{b{d{EGj{c}}}}Al}Bf{}}{{{b{d{EHd{c}}}}Al}{{Bf{{b{d{h{c}}}}}}}{}}=<;:{{{b{d{EGl{c}}}}Al}Bf{}}9{{{b{d{EGn{c}}}}Al}Bf{}}{{{b{d{EGd{c}}}}Al}{{Bf{{b{{Db{c}}}}}}}{}}876{{{b{d{EHb{c}}}}Al}Bf{}}5{{{b{d{EHd{c}}}}Al}Bf{}}{{{b{d{CBj{c}}}}e}{{Bf{Al}}}{}{{A@j{}{{A@h{Aj}}}}}}{{{b{d{CBl{c}}}}e}{{Bf{Al}}}{}{{A@j{}{{A@h{Aj}}}}}}{{c{AKl{Al}}}{{AKf{Al}}}{{AKn{Al}}}}{{{b{{EGb{c}}}}}{{b{{h{c}}}}}{}}{{{b{{EGf{c}}}}}{{b{{h{c}}}}}{}}{{{b{{EGj{c}}}}}{{b{{h{c}}}}}{}}54{{{b{{CBj{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{CBl{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EFf{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EFh{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHf{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHh{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EFj{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHj{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHl{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EHn{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EI`{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EIb{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{{EId{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{b{{EIf{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{c}}{b{c}}}{{A@h{Aj}}}}}}{{{b{EFl}}}{{Bb{Al{Bf{Al}}}}}}{{{b{{EFn{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EG`{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EGl{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EGb{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EGn{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EGd{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EGf{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EH`{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EGh{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EHb{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EGj{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{{{b{{EHd{c}}}}}{{Bb{Al{Bf{Al}}}}}{}}{bc{}}00000000000{bA`}{{{b{dEFl}}cg}e{}{{AHd{}{{A@h{c}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{e}}}{}{}}00000000000000000000000000{{}{{n{c}}}{}}00000000000000000000000000{{c{AKl{Al}}}{{Bf{{AKf{Al}}}}}{{AKn{Al}}}}{bAf}00000000000000000000000000````````````````````````````{{{b{dEIh}}Al}{{n{On{A@`{Al}}}}}}{{{b{dEIj}}c}Aj{{A@j{}{{A@h{Aj}}}}}}0{{{b{EIh}}}{{b{AKb}}}}{{{b{EIl}}}{{b{AKb}}}}{b{{b{c}}}{}}0000000000000000000000000{{{b{d}}}{{b{dc}}}{}}0000000000000000000000000{{{b{{EIn{c}}}}}{{EIn{c}}}ALl}{{{b{ALf}}}ALf}{{{b{EJ`}}}EJ`}{{{b{EIh}}}EIh}{{{b{EIl}}}EIl}{{{b{EIj}}}EIj}{{{b{{EJb{c}}}}}{{EJb{c}}}ALl}{{{b{{EJd{c}}}}}{{EJd{c}}}ALl}{{{b{{EJf{c}}}}}{{EJf{c}}}ALl}{{{b{{EJh{c}}}}}{{EJh{c}}}ALl}{{{b{{EJj{c}}}}}{{EJj{c}}}ALl}{{{b{{EJl{c}}}}}{{EJl{c}}}ALl}{{{b{{EJn{c}}}}}{{EJn{c}}}ALl}{{{b{{EK`{c}}}}}{{EK`{c}}}ALl}{{{b{{EKb{c}}}}}{{EKb{c}}}ALl}{{{b{{EKd{c}}}}}{{EKd{c}}}ALl}{{{b{EKf}}}EKf}{{{b{EKh}}}EKh}{{{b{EKj}}}EKj}{{{b{EKl}}}EKl}{{{b{EKn}}}EKn}{{{b{EL`}}}EL`}{{{b{ELb}}}ELb}{{{b{ELd}}}ELd}{{{b{ELf}}}ELf}{{{b{ELh}}}ELh}{{b{b{dc}}}On{}}0000000000000000000000000{bOn}0000000000000000000000000{EIhAl}{EIlAl}{EIjAl}{{{b{ALf}}}{{b{AKb}}}}{{{b{EJ`}}}{{b{AKb}}}}{{{b{ALf}}{b{ALf}}}Aj}{{{b{EJ`}}{b{EJ`}}}Aj}{{{b{ELf}}{b{ELf}}}Aj}{{{b{ALf}}}{{Bf{Al}}}}{{{b{dEIj}}c}Bf{{A@j{b}{{A@h{Aj}}}}}}{{{b{{EIn{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{ALf}}{b{dAb}}}{{n{OnADb}}}}0{{{b{EJ`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{EIh}}{b{dAb}}}{{n{OnADb}}}}{{{b{EIl}}{b{dAb}}}{{n{OnADb}}}}{{{b{EIj}}{b{dAb}}}{{n{OnADb}}}}{{{b{{EJb{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EJd{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EJf{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EJh{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EJj{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EJl{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EJn{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EK`{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EKb{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{{EKd{c}}}}{b{dAb}}}{{n{OnADb}}}ALl}{{{b{EKf}}{b{dAb}}}{{n{OnADb}}}}{{{b{EKh}}{b{dAb}}}{{n{OnADb}}}}{{{b{EKj}}{b{dAb}}}{{n{OnADb}}}}{{{b{EKl}}{b{dAb}}}{{n{OnADb}}}}{{{b{EKn}}{b{dAb}}}{{n{OnADb}}}}{{{b{EL`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{ELb}}{b{dAb}}}{{n{OnADb}}}}0{{{b{ELd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{ELf}}{b{dAb}}}{{n{OnADb}}}}{{{b{ELh}}{b{dAb}}}{{n{OnADb}}}}{{EL`ce}c{}{{A@j{c}{{A@h{c}}}}}}{{ELbce}c{}{{A@j{c}{{A@h{c}}}}}}{{ELdce}c{}{{A@j{c}{{A@h{c}}}}}}{cc{}}0000000000000000000000000{{{AL`{{h{f}}}}}{{AL`{AKb}}}}{{fAl}{{b{AKb}}}}{{fAl}{{b{dAKb}}}}{{{b{AKb}}}{{n{{ALd{}{{ALb{c}}}}c}}}{}}{{{b{{h{f}}}}}{{n{{b{AKb}}ALf}}}}{{{b{d{h{f}}}}}{{n{{b{dAKb}}ALf}}}}{{{b{{h{f}}}}}{{b{AKb}}}}{{{b{d{h{f}}}}}{{b{dAKb}}}}{{}c{}}000000000000000000000000000000000000000000000000{{{b{ELf}}}{{b{{h{f}}}}}}{{{b{EIj}}}Aj}{EIh{{Bf{AK`}}}}{EIl{{Bf{{Bb{AlAK`}}}}}}{EIjBf}{EKf{{Bf{{b{AKb}}}}}}{EKj{{Bf{{b{AKb}}}}}}{EKl{{Bf{{b{AKb}}}}}}{{{b{EIj}}}Al}{{{b{d{EIn{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{dEIh}}}{{Bf{AK`}}}}{{{b{dEIl}}}{{Bf{{Bb{AlAK`}}}}}}{{{b{dEIj}}}{{Bf{f}}}}{{{b{d{EJb{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJd{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJf{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJh{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJj{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJl{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJn{c}}}}}{{Bf{{Bb{Al{b{AKb}}}}}}}ALl}{{{b{d{EK`{c}}}}}{{Bf{{Bb{Al{b{AKb}}}}}}}ALl}{{{b{d{EKb{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EKd{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{dEKf}}}{{Bf{{b{AKb}}}}}}{{{b{dEKh}}}{{Bf{{b{AKb}}}}}}{{{b{dEKj}}}{{Bf{{b{AKb}}}}}}{{{b{dEKl}}}{{Bf{{b{AKb}}}}}}{{{b{dEKn}}}{{Bf{Gn}}}}{{{b{dEL`}}}{{Bf{AK`}}}}{{{b{dELb}}}{{Bf{AK`}}}}{{{b{dELd}}}{{Bf{AK`}}}}{{{b{dELh}}}{{Bf{ELf}}}}{{{b{d{EIn{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{dEIh}}}{{Bf{AK`}}}}{{{b{dEIl}}}{{Bf{{Bb{AlAK`}}}}}}{{{b{dEIj}}}{{Bf{f}}}}{{{b{d{EJb{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJd{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJf{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJh{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EJn{c}}}}}{{Bf{{Bb{Al{b{AKb}}}}}}}ALl}{{{b{d{EK`{c}}}}}{{Bf{{Bb{Al{b{AKb}}}}}}}ALl}{{{b{d{EKb{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{d{EKd{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{dEKf}}}{{Bf{{b{AKb}}}}}}{{{b{dEKh}}}{{Bf{{b{AKb}}}}}}{{{b{dEKj}}}{{Bf{{b{AKb}}}}}}{{{b{dEKl}}}{{Bf{{b{AKb}}}}}}{{{b{dEIj}}Al}Bf}0{{{b{EIl}}}Al}`{{{b{dEIj}}c}{{Bf{Al}}}{{A@j{}{{A@h{Aj}}}}}}{{{b{{EIn{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{{EJb{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{{EJd{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{{EJf{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{{EJh{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{{EJj{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{{EJl{c}}}}}{{Bf{{b{AKb}}}}}ALl}{{{b{EKf}}}{{Bf{{b{AKb}}}}}}{{{b{EKj}}}{{Bf{{b{AKb}}}}}}{{{b{EKl}}}{{Bf{{b{AKb}}}}}}{{{b{dEIj}}c}Bf{{A@j{b}{{A@h{Aj}}}}}};{{{b{EIh}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EIl}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EIj}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EKf}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EKh}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EKj}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EKl}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EKn}}}{{Bb{Al{Bf{Al}}}}}}{{{b{EL`}}}{{Bb{Al{Bf{Al}}}}}}{{{b{ELb}}}{{Bb{Al{Bf{Al}}}}}}{{{b{ELd}}}{{Bb{Al{Bf{Al}}}}}}{bc{}}0000000000000000000000000{bA`}0000{{{b{dEL`}}cg}e{}{{AHd{}{{A@h{c}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{dELb}}cg}e{}{{AHd{}{{A@h{c}}}}}{{A@j{c}{{A@h{e}}}}}}{{{b{dELd}}cg}e{}{{AHd{}{{A@h{c}}}}}{{A@j{c}{{A@h{e}}}}}}{c{{n{e}}}{}{}}0000000000000000000000000{{}{{n{c}}}{}}0000000000000000000000000{bAf}0000000000000000000000000{{{b{ELf}}}{{b{AKb}}}}{{{b{ALf}}}Al}```````````````{b{{b{c}}}{}}000000{{{b{d}}}{{b{dc}}}{}}000000{{{b{ALn}}}ALn}{{{b{ELj}}}ELj}{{{b{ELl}}}ELl}{{{b{ELn}}}ELn}{{{b{EM`}}}EM`}{{{b{{CC`{c}}}}}{{CC`{c}}}{AAn{A@j{AK`}{{A@h{Aj}}}}}}{{{b{EMb}}}EMb}{{b{b{dc}}}On{}}000000{bOn}000000{{{b{ALn}}{b{ALn}}}Aj}{{{b{ALn}}{b{dAb}}}{{n{OnADb}}}}{{{b{ELj}}{b{dAb}}}{{n{OnADb}}}}{{{b{ELl}}{b{dAb}}}{{n{OnADb}}}}{{{b{ELn}}{b{dAb}}}{{n{OnADb}}}}{{{b{EM`}}{b{dAb}}}{{n{OnADb}}}}{{{b{{CC`{c}}}}{b{dAb}}}{{n{OnADb}}}{{A@j{AK`}{{A@h{Aj}}}}}}{{{b{EMb}}{b{dAb}}}{{n{OnADb}}}}{cc{}}000000{{{b{ALh}}}{{b{AKb}}}}{{{b{ELj}}}{{b{AKb}}}}{{{b{ELl}}}{{b{AKb}}}}{{{b{ELn}}}{{b{AKb}}}}{{{b{EM`}}}{{b{AKb}}}}{{{b{{CC`{c}}}}}{{b{AKb}}}{{A@j{AK`}{{A@h{Aj}}}}}}{{{b{EMb}}}{{b{AKb}}}}{{}c{}}000000{{{ALl{}{{ALj{c}}}}{b{AKb}}}cALh}{{{ALl{}{{ALj{c}}}}{b{AKb}}}AjALh}00{{{b{dALh}}}ALn}{{{b{dELj}}}ALn}{{{b{dELl}}}ALn}{{{b{dELn}}}ALn}{{{b{dEM`}}}ALn}{{{b{d{CC`{c}}}}}ALn{{A@j{AK`}{{A@h{Aj}}}}}}{{{b{dEMb}}}ALn}{{{b{dAM`}}}ALn}654321{{{b{dALh}}}{{Bf{{Bb{AlAl}}}}}}{{{b{dELj}}}{{Bf{{Bb{AlAl}}}}}}{{{b{dELl}}}{{Bf{{Bb{AlAl}}}}}}{{{b{dELn}}}{{Bf{{Bb{AlAl}}}}}}{{{b{dEM`}}}{{Bf{{Bb{AlAl}}}}}}{{{b{d{CC`{c}}}}}{{Bf{{Bb{AlAl}}}}}{{A@j{AK`}{{A@h{Aj}}}}}}{{{b{dEMb}}}{{Bf{{Bb{AlAl}}}}}}{{{b{dAM`}}}{{Bf{{Bb{AlAl}}}}}}6543217543205432{{{ALl{}{{ALj{c}}}}{b{AKb}}}{{Bf{{b{AKb}}}}}ALh}0{bc{}}000000{c{{n{e}}}{}{}}000000{{}{{n{c}}}{}}000000{bAf}000000``````{{A`{b{AKb}}}A`}{{{b{dA`}}{b{AKb}}}On}{{{b{A`}}}{{b{{h{f}}}}}}{{{b{EMd}}}{{b{{h{f}}}}}}{{{b{dA`}}}{{b{dAKb}}}}0{{{b{dA`}}}{{b{d{j{f}}}}}}{{{b{EMf}}}{{b{{h{f}}}}}}{{{b{EMf}}}{{b{AKb}}}}{{{b{A`}}}{{b{CA`}}}}{{{b{A`}}}{{b{CAb}}}}7{{{b{A`}}}{{b{AKb}}}}30{b{{b{c}}}{}}0100{{{b{d}}}{{b{dc}}}{}}8000{{{b{A`}}}Al}{{{b{dA`}}}On}{{{b{A`}}}A`}{{{b{EMd}}}EMd}{{{b{dA`}}{b{A`}}}On}{{b{b{dc}}}On{}}0{bOn}0{{{b{A`}}{b{A`}}}ABh}{{}A`};{{{b{dA`}}}{{b{dAKb}}}}{{{b{EMd}}}{{b{AKb}}}}{{{b{EMh}}}{{b{AKb}}}}{{{b{dA`}}c}EMf{{AKn{Al}}}}{{{b{dEMf}}}On}{{{b{A`}}{b{{b{AKb}}}}}Aj}{{{b{A`}}{b{{C@n{AKb}}}}}Aj}{{{b{A`}}{b{AKb}}}Aj}{{{b{A`}}{b{A`}}}Aj}{{{b{EMd}}{b{EMd}}}Aj}{{{b{dA`}}c}On{{AAj{}{{A@b{{C@n{AKb}}}}}}}}{{{b{dA`}}e}OnAIb{{AAj{}{{A@b{{AL`{AKbc}}}}}}}}{{{b{dA`}}c}On{{AAj{}{{A@b{{b{AK`}}}}}}}}{{{b{dA`}}c}On{{AAj{}{{A@b{{b{AKb}}}}}}}}{{{b{dA`}}c}On{{AAj{}{{A@b{A`}}}}}}{{{b{dA`}}c}On{{AAj{}{{A@b{AK`}}}}}}{{{b{dA`}}c}On{{AKn{Al}}}}{{{b{dA`}}A`}On}{{{b{dA`}}{C@n{AKb}}}On}{{{b{dA`}}{b{AKb}}}On}{{{b{dA`}}{b{AK`}}}On}{{{b{dA`}}AK`}On}{{{b{dA`}}Al}On}0{{{b{EMf}}{b{dAb}}}{{n{OnADb}}}}{{{b{A`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{EMd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{EMh}}{b{dAb}}}{{n{OnADb}}}}0{cc{}}{{{AL`{AKb}}}A`}{AK`A`}{{{b{AKb}}}A`}3{{{C@n{AKb}}}A`}{{{b{A`}}}A`}{{{b{dAKb}}}A`}66{cA`{{AAj{}{{A@b{A`}}}}}}{eA`AIb{{AAj{}{{A@b{{AL`{AKbc}}}}}}}}{cA`{{AAj{}{{A@b{{C@n{AKb}}}}}}}}{cA`{{AAj{}{{A@b{{b{AKb}}}}}}}}{cA`{{AAj{}{{A@b{{b{AK`}}}}}}}}{cA`{{AAj{}{{A@b{AK`}}}}}}{{fAlAl}A`}{{{b{AKb}}}{{n{A`}}}}{{{b{{h{Gn}}}}}{{n{A`EMh}}}}{{{b{{h{Gn}}}}}A`}{{{b{{h{f}}}}}{{n{A`EMh}}}}{{{b{{h{f}}}}}A`}10{{{j{f}}}{{n{A`EMd}}}}{{{b{{h{f}}}}}{{C@n{AKb}}}}{{{j{f}}}A`}{{{b{A`}}{b{dc}}}OnBBj}{{{b{A`}}c}b{{AKh{AKb}}}}{{{b{dA`}}c}{{b{d}}}{{AKh{AKb}}}}{{{b{dA`}}AlAK`}On}{{{b{dA`}}Al{b{AKb}}}On}{{}c{}}000{A`{{AL`{AKb}}}}{A`{{j{f}}}}{EMd{{j{f}}}}3{A`{{Bb{fAlAl}}}}{{{b{A`}}{b{AKb}}}}{{{b{A`}}{b{AKb}}}Aj}{{{b{A`}}}Aj}11{EMf{{Bf{AK`}}}}{A`{{b{dAKb}}}}{{{b{A`}}}Al}{{{b{A`}}{b{{b{AKb}}}}}Aj}5{{{b{A`}}{b{{C@n{AKb}}}}}Aj}{{}A`}{{{b{dEMf}}}{{Bf{AK`}}}}0{{{b{A`}}{b{A`}}}{{Bf{ABh}}}}{{{b{dA`}}}{{Bf{AK`}}}}{{{b{dA`}}AK`}On}{{{b{dA`}}{b{AKb}}}On}{{{b{dA`}}Al}AK`}{{{b{dA`}}c}OnALl}{{{b{dA`}}c{b{AKb}}}On{{AKn{Al}}}}{{{b{dA`}}Al}On}0{{{b{dA`}}c}On{{A@j{AK`}{{A@h{Aj}}}}}}1{{{b{dA`}}}On}{{{b{EMf}}}{{Bb{Al{Bf{Al}}}}}}{{{b{dA`}}Al}A`}{{{b{A`}}{b{AKb}}}{{Bf{{b{AKb}}}}}}0{bc{}}0{{{b{A`}}}{{n{{CBn{DIn}}CBf}}}}{{{b{AHb}}}A`}{bA`}009{c{{n{e}}}{}{}}000{{}{{n{c}}}{}}000{{{b{dA`}}Al}{{n{OnCGh}}}}0{Al{{n{A`CGh}}}}{bAf}000{{{b{EMd}}}ALf}{AlA`}{{{b{dA`}}AK`}{{n{OnADb}}}}{{{b{dA`}}{b{AKb}}}{{n{OnADb}}}}````````````````````````````````{{{b{{AMd{ce}}}}}{{b{e}}}A@fAIb}{{{b{{EMj{ce}}}}}{{b{e}}}A@fAIb}{{{b{{AMd{c}}}}}CAl{CAnA@f}}{{{b{{AMd{ce}}}}}{}A@fAIb}{{{b{{EMj{ce}}}}}{}A@fAIb}{{{b{{AMd{c}}}}}F`CB`}{{{b{{AMd{ce}}}}}{{b{c}}}A@fAIb}{{{AMd{{C@b{c}}e}}}{{AMd{ce}}}{}AIb}{{{AMd{{h{{C@b{c}}}}e}}}{{AMd{{h{c}}e}}}{}AIb}`{b{{b{c}}}{}}00030000000000000000000{{{b{d}}}{{b{dc}}}{}}0000000000000000000000{{{b{d{EMl{e}}}}c}{}AAd{{A@j{c}}}}{{{b{EMn}}c}OnAAf}{{{EMl{e}}c}{}AAd{{AAf{c}}}}{{{b{EMn}}c}On{{AAf{{b{EN`}}}}}}{{{b{{AMd{c}}}}}{{Bf{{b{BA`}}}}}{BA`A@f}}{{{b{{ENb{c}}}}}{{Bf{{b{BA`}}}}}{}}{{{b{{ENd{c}}}}}OnA@f}{{{b{{ENf{c}}}}}OnA@f}{{{b{{AMd{ce}}}}}{{AMd{ce}}}A@f{AIbAAn}}{{{b{{EMj{ce}}}}}{{EMj{ce}}}A@f{AIbAAn}}{{{b{{ENh{c}}}}}{{ENh{c}}}AAn}{{{b{ENj}}}ENj}{{b{b{dc}}}On{}}000{bOn}000{{{b{{AMd{ce}}}}{b{{AMd{ce}}}}}ABh{AAlA@f}AIb}{{}On}{cOnAIb}{{}ENl}{{}{{ENn{c}}}AFf}{{}{{AMd{{h{c}}}}}{}}{{}{{AMd{c}}}AFf}{{}{{AMd{CAj}}}}{{}{{AMd{AKb}}}}{{}{{EMj{c}}}{}}{{}{{ENd{c}}}{AFfA@f}}{{}{{ENh{c}}}{}}{{}{{EO`{c}}}AFf}{{}{{ENf{c}}}AFf}{{}{{EMl{c}}}{AFfA@f}}{{{b{{ENn{ce}}}}}{{b{c}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{{AMd{ce}}}}}{{b{c}}}A@fAIb}{{{b{{EOb{c}}}}}{{b{c}}}A@f}{{{b{{EOd{c}}}}}{{b{c}}}A@f}{{{b{{EOf{c}}}}}{{b{c}}}A@f}{{{b{{EOh{c}}}}}{{b{c}}}A@f}{{{b{{EOj{c}}}}}{{b{c}}}A@f}{{{b{{EOl{c}}}}}{{b{c}}}A@f}{{{b{{EOn{c}}}}}{{b{c}}}A@f}{{{b{d{EOd{c}}}}}{{b{dc}}}A@f}{{{b{d{EOf{c}}}}}{{b{dc}}}A@f}{{{b{d{EOj{c}}}}}{{b{dc}}}A@f}{{{b{d{EOn{c}}}}}{{b{dc}}}A@f}{{{b{{AMd{c}}}}}{{b{AKb}}}{BA`A@f}}{{{b{{F@`{c}}}}}{{b{AKb}}}{}}{{{b{{ENb{c}}}}}{{b{AKb}}}{}}{{{AMd{AMjc}}}{{n{{AMd{ec}}{AMd{AMjc}}}}}AIb{AMjBLnBM`}}{{{AMd{AMjc}}}{{AMd{ec}}}AIb{AMjBLnBM`}}{{{b{{AMd{ce}}}}}{{EMj{ce}}}A@f{AAnAIb}}{{{b{d{ENn{ce}}}}}On{}{}}{{{b{d{AMd{ce}}}}}OnA@fAIb}{{{b{d{EMj{ce}}}}}OnA@fAIb}{{{b{d{ENh{c}}}}}On{}}{{{b{d{EOb{c}}}}}OnA@f}{{{b{d{EOd{c}}}}}OnA@f}{{{b{d{EOf{c}}}}}OnA@f}{{{b{d{EOh{c}}}}}OnA@f}{{{b{d{EOj{c}}}}}OnA@f}{{{b{d{EOl{c}}}}}OnA@f}{{{b{d{EOn{c}}}}}OnA@f}{{{b{{AMd{ce}}}}{b{{AMd{ce}}}}}Aj{ACfA@f}AIb}{{{b{{ENh{c}}}}{b{{ENh{c}}}}}AjACf}{{{b{ENj}}{b{ENj}}}Aj}{{{b{d{AMd{DDh}}}}}{{n{OnCBf}}}}{{{b{F@b}}{b{dAb}}}{{n{OnADb}}}}{{{b{F@d}}{b{dAb}}}{{n{OnADb}}}}{{{b{ENl}}{b{dAb}}}{{n{OnADb}}}}{{{b{{ENn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`{}}{{{b{{AMd{ce}}}}{b{dAb}}}{{n{OnADb}}}A@fAIb}{{{b{{AMd{ce}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}AIb}{{{b{{AMd{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}AIb}{{{b{{EMj{ce}}}}{b{dAb}}}{{n{OnADb}}}A@fAIb}{{{b{{ENd{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{EMn}}{b{dAb}}}{{n{OnADb}}}}{{{b{EN`}}{b{dAb}}}{{n{OnADb}}}}{{{b{{ENh{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{F@`{c}}}}{b{dAb}}}{{n{OnADb}}}{}}0{{{b{{ENb{c}}}}{b{dAb}}}{{n{OnADb}}}{}}0{{{b{{EO`{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOb{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOb{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{ENf{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{ENj}}{b{dAb}}}{{n{OnADb}}}}{{{b{{EOd{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{EOd{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOf{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOf{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{EOh{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{EOh{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOj{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{EOj{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOl{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{EOl{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOn{c}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@f}}{{{b{{EOn{c}}}}{b{dAb}}}{{n{OnADb}}}{ADdA@f}}{{{b{{EMl{c}}}}{b{dAb}}}{{n{OnADb}}}A@f}{{{b{{ENn{ce}}}}}{{b{c}}}{}{{AAf{}{{A@h{c}}}}}}{cc{}}000{CAd{{AMd{CAb}}}}1{AIhc{}}{{{C@n{c}}}{{AMd{c}}}{ABbA@f}}{{{b{CAj}}}{{AMd{CAj}}}}{{{Db{c}}}{{AMd{{h{c}}}}}{}}{{{b{{h{c}}}}}{{AMd{{h{c}}}}}AAn}{{{b{AKb}}}{{AMd{AKb}}}}{A`{{AMd{AKb}}}}{c{{AMd{c}}}{}}{{{j{ce}}}{{AMd{{h{c}}e}}}{}{AIbAAn}}{CAf{{AMd{CA`}}}}{CAh{{AMd{CAj}}}}{{{b{CA`}}}{{AMd{CA`}}}}{{{AMd{AKb}}}{{AMd{{h{f}}}}}}{{{b{CAb}}}{{AMd{CAb}}}}{{{AL`{ce}}}{{AMd{ce}}}A@fAIb}{cc{}}?0{c{{ENd{c}}}{}}111{AIhc{}}{c{{ENh{c}}}{}}33{{{F@`{c}}}{{ENb{c}}}{}}4{c{{EO`{c}}}{}}35{c{{ENf{c}}}{}}6466666666{c{{EMl{c}}}{}}5{e{{AMd{{h{c}}}}}{}{{AAj{}{{A@b{c}}}}}}{{{b{dc}}}{{b{d{EMl{c}}}}}A@f}{{{AFj{{b{dc}}}}}{{AFj{{b{d{EMl{c}}}}}}}A@f}{{}{{AMd{c}}}A@f}{{}{{EMj{c}}}A@f}{c{{AMd{ec}}}AIbA@f}{c{{EMj{ec}}}AIbA@f}{{{b{{AMd{ce}}}}{b{{AMd{ce}}}}}Aj{ADjA@f}AIb}{{{b{{ENh{c}}}}}{{Bf{{b{c}}}}}{}}{{{b{d{AMd{ce}}}}}{{Bf{{b{dc}}}}}A@fAIb}{{{b{d{ENd{c}}}}}{{n{{b{dc}}{F@`{{b{dc}}}}}}}A@f}{{{b{d{ENh{c}}}}}{{Bf{{b{dc}}}}}{}}{{{b{d{F@`{c}}}}}{{b{dc}}}{}}{{{b{d{EO`{c}}}}}{{b{dc}}}A@f}{{{b{d{ENf{c}}}}}{{n{{b{dc}}{F@`{{b{dc}}}}}}}A@f}{{{b{d{EMl{c}}}}}{{b{dc}}}A@f}{{{b{d{ENh{c}}}}e}{{b{dc}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{d{ENh{c}}}}g}{{n{{b{dc}}e}}}{}{}{{AAf{}{{A@h{{n{ce}}}}}}}}{{{b{d{AMd{ce}}}}}{{b{dc}}}A@fAIb}{{{b{{ENh{c}}}}e}{{b{c}}}{}{{AAf{}{{A@h{c}}}}}}{{{b{{ENh{c}}}}g}{{n{{b{c}}e}}}{}{}{{AAf{}{{A@h{{n{ce}}}}}}}}{{{AFj{{b{d{EMl{c}}}}}}}{{AFj{{b{dc}}}}}A@f}{{{b{{F@`{c}}}}}{{b{c}}}{}}?{{{b{{AMd{ce}}}}{b{dg}}}On{BBlA@f}AIbBBj}{{}On}{cOn{AAnAIb}}{{}c{}}0000000000000000000000{{}}{{{ENn{ce}}}{{n{ce}}}{}{{AAf{}{{A@h{c}}}}}}{{{AMd{ce}}}{{Bf{c}}}{}AIb}{{{ENd{c}}}{{n{c{F@`{c}}}}}A@f}{{{ENh{c}}}{{Bf{c}}}{}}{{{F@`{c}}}c{}}{{{EO`{c}}}c{}}{{{ENf{c}}}{{n{c{F@`{c}}}}}A@f}{{{EMl{c}}}c{}}{{{AMd{ce}}}{}A@fAIb}{{{EMj{ce}}}{}A@fAIb}{{{AMd{ce}}}{{Bb{e}}}A@fAIb}{{{EMj{ce}}}{{Bb{e}}}A@fAIb}{{{b{AKb}}}{{CC`{c}}}{}}{{{b{EMn}}}Aj}{{{b{AKb}}}Aj}{{{b{F@d}}}Aj}{{{b{{ENd{c}}}}}AjA@f}{{{b{EN`}}}Aj}{{{b{{ENf{c}}}}}AjA@f}4{{{b{{AMd{DDh}}}}}Aj}50{{{b{{AMd{ce}}}}{b{{AMd{ce}}}}}Aj{ADjA@f}AIb}{{{b{{ENd{c}}}}}{{n{{EOd{c}}{F@`{{EOd{c}}}}}}}A@f}{{{b{{EO`{c}}}}}{{EOb{c}}}A@f}2{{{b{d{AMd{ce}}}}}{{b{dc}}}{B@nA@f}{AIbAAn}}{{{EOd{c}}g}{{EOf{e}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{b{de}}}}}}}}{{{EOf{c}}g}{{EOf{e}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{b{de}}}}}}}}{{{EOh{c}}g}{{EOl{e}}}A@fA@f{{AAf{{b{c}}}{{A@h{{b{e}}}}}}}}{{{EOj{c}}g}{{EOn{e}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{b{de}}}}}}}}{{{EOl{c}}g}{{EOl{e}}}A@fA@f{{AAf{{b{c}}}{{A@h{{b{e}}}}}}}}{{{EOn{c}}g}{{EOn{e}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{b{de}}}}}}}}`{{{b{{AMd{ce}}}}{b{{AMd{ce}}}}}Aj{ACfA@f}AIb}{AlF@b}{{}ENl}{e{{ENn{ce}}}{}{{AAf{}{{A@h{c}}}}}}{c{{AMd{c}}}{}}{{}{{EMj{c}}}{}}{c{{ENd{c}}}{}}{{}EMn}{{}{{ENh{c}}}{}}{c{{F@`{c}}}{}}{c{{EO`{c}}}{}}{c{{ENf{c}}}{}}{c{{EMl{c}}}{}}{e{{AMd{c}}}{}{{AAf{{b{{EMj{c}}}}}{{A@h{c}}}}}}{{ce}{{AMd{ce}}}{}AIb}{c{{EMj{ec}}}AIb{}}{{}{{AMd{{C@b{c}}}}}{}}{c{{AMd{{C@b{e}}c}}}AIb{}}{Al{{AMd{{h{{C@b{c}}}}}}}{}}{{Alc}{{AMd{{h{{C@b{e}}}}c}}}AIb{}}3210{{{b{ENl}}}On}0{{{b{{AMd{ce}}}}{b{{AMd{ce}}}}}{{Bf{ABh}}}{ADjA@f}AIb}{c{{AFj{{AMd{c}}}}}{}}{{ce}{{AFj{{AMd{ce}}}}}{}AIb}{{{AFj{{b{d{EMl{c}}}}}}{b{dAFl}}}AFn{AEhA@f}}{{{b{{AMd{c}}}}{b{dBAd}}}On{BA`A@f}}{{{b{{AMd{ce}}}}{b{{AMd{ce}}}}}AjA@fAIb}{{{b{{EMj{ce}}}}{b{{EMj{ce}}}}}AjA@fAIb}{{{b{d{AMd{DDh}}}}{b{d{h{f}}}}}{{n{AlCBf}}}}{{{b{{ENf{c}}}}}{{n{{EOh{c}}{F@`{{EOh{c}}}}}}}A@f}{{{b{d{AMd{DDh}}}}CCf}{{n{OnCBf}}}}{{{b{d{AMd{DDh}}}}{b{d{j{f}}}}}{{n{AlCBf}}}}{{{b{d{AMd{DDh}}}}{b{dA`}}}{{n{AlCBf}}}}{{{b{d{AMd{DDh}}}}{b{d{h{CCh}}}}}{{n{AlCBf}}}}{{{AFj{{b{d{EMl{e}}}}}}c}BJ`{}{{BDj{c}}A@f}}{{{b{d{AMd{DDh}}}}CCj}{{n{HjCBf}}}}{{{b{{ENh{c}}}}c}{{n{Onc}}}{}}{{{b{{AMd{c}}}}}{{Bf{{b{BA`}}}}}{BA`A@f}}{{{b{AKb}}}{{Bf{{b{AKb}}}}}}0{{{b{{AMd{ce}}}}}AlA@fAIb}{{{b{{EMj{ce}}}}}AlA@fAIb}{{{b{d{ENh{c}}}}}{{Bf{c}}}{}}{{{b{ENj}}}Aj}{bc{}}000{bA`}000000000{c{{n{e}}}{}{}}0000{{{AMd{{h{c}}e}}}{{n{{AMd{{Db{c}}e}}}}}{}AIb}111111111111111111{{{b{{ENh{c}}}}c}{{n{{b{c}}{Bb{{b{c}}c}}}}}{}}{{}{{n{c}}}{}}0000000000000000000000{{{b{{ENd{c}}}}}{{n{{EOd{c}}{ENb{{EOd{c}}}}}}}A@f}{{{EOd{c}}g}{{n{{EOf{e}}{EOd{c}}}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{Bf{{b{de}}}}}}}}}}{{{EOf{c}}g}{{n{{EOf{e}}{EOf{c}}}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{Bf{{b{de}}}}}}}}}}{{{EOh{c}}g}{{n{{EOl{e}}{EOh{c}}}}}A@fA@f{{AAf{{b{c}}}{{A@h{{Bf{{b{e}}}}}}}}}}{{{EOj{c}}g}{{n{{EOn{e}}{EOj{c}}}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{Bf{{b{de}}}}}}}}}}{{{EOl{c}}g}{{n{{EOl{e}}{EOl{c}}}}}A@fA@f{{AAf{{b{c}}}{{A@h{{Bf{{b{e}}}}}}}}}}{{{EOn{c}}g}{{n{{EOn{e}}{EOn{c}}}}}A@fA@f{{AAf{{b{dc}}}{{A@h{{Bf{{b{de}}}}}}}}}}{c{{n{{AMd{c}}AIf}}}{}}{{ce}{{n{{AMd{ce}}AIf}}}{}AIb}{{}{{n{{AMd{{C@b{c}}}}AIf}}}{}}{c{{n{{AMd{{C@b{e}}c}}AIf}}}AIb{}}10{c{{n{{AFj{{AMd{c}}}}AIf}}}{}}{{ce}{{n{{AFj{{AMd{ce}}}}AIf}}}{}AIb}{{{b{{ENf{c}}}}}{{n{{EOh{c}}{ENb{{EOh{c}}}}}}}A@f}{{{AMd{ce}}}{{n{c{AMd{ce}}}}}{}AIb}{{{b{{ENf{c}}}}}{{n{{EOj{c}}{ENb{{EOj{c}}}}}}}A@f}{bAf}0000000000000000000000{{{AMd{ce}}}cAAnAIb}{{{b{{EMj{ce}}}}}{{Bf{{AMd{ce}}}}}A@f{AAnAIb}}{{{b{F@b}}}F@d}{{{b{ENl}}{EOd{c}}}{{n{{EOd{c}}{F@`{{EOd{c}}}}}}}{}}{{{b{EMn}}}On}{{{b{{ENh{c}}}}}{{b{c}}}{}}1{{{b{ENl}}{EOd{c}}DKd}{{n{{Bb{{EOd{c}}ENj}}{F@`{{Bb{{EOd{c}}ENj}}}}}}}{}}{{{b{ENl}}{EOd{c}}Hd}{{n{{Bb{{EOd{c}}Aj}}{F@`{{Bb{{EOd{c}}Aj}}}}}}}{}}{{{b{ENl}}{EOd{c}}DKde}{{n{{Bb{{EOd{c}}ENj}}{F@`{{Bb{{EOd{c}}ENj}}}}}}}{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}}{{{b{ENl}}{EOd{c}}e}{{n{{EOd{c}}{F@`{{EOd{c}}}}}}}{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}}{{{b{{AMd{ce}}}}}AlA@fAIb}{{{b{{EMj{ce}}}}}AlA@fAIb}{{{b{d{AMd{DDh}}}}{b{{h{f}}}}}{{n{AlCBf}}}}{{{b{{ENf{c}}}}}{{n{{EOj{c}}{F@`{{EOj{c}}}}}}}A@f}{{{b{d{AMd{DDh}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}}`````````````````````{{{b{F@f}}}Aj}{{{b{{F@h{c}}}}}{}{}}{{{b{F@j}}}Fl}{{{b{F@l}}}f}{{{b{F@n}}}Ej}{{{b{FA`}}}Gn}{{{b{FAb}}}F`}{{{b{FAd}}}Hd}{{{b{FAf}}}Ff}{{{b{FAh}}}Hj}{{{b{FAj}}}Gb}{{{b{FAl}}}Al}{b{{b{c}}}{}}000000000000{{{b{d}}}{{b{dc}}}{}}000000000000{{{b{B@`}}}B@`}{{b{b{dc}}}On{}}{bOn}{{{b{F@f}}AjAjB@`}Aj}{{{b{{F@h{c}}}}B@`}{}{}}{{{b{F@j}}FlFlB@`}Fl}{{{b{F@l}}ffB@`}f}{{{b{F@n}}EjEjB@`}Ej}{{{b{FA`}}GnGnB@`}Gn}{{{b{FAb}}F`F`B@`}F`}{{{b{FAd}}HdHdB@`}Hd}{{{b{FAf}}FfFfB@`}Ff}{{{b{FAh}}HjHjB@`}Hj}{{{b{FAj}}GbGbB@`}Gb}{{{b{FAl}}AlAlB@`}Al}{{{b{F@f}}AjAjB@`B@`}{{n{AjAj}}}}{{{b{{F@h{c}}}}B@`B@`}n{}}{{{b{F@j}}FlFlB@`B@`}{{n{FlFl}}}}{{{b{F@l}}ffB@`B@`}{{n{ff}}}}{{{b{F@n}}EjEjB@`B@`}{{n{EjEj}}}}{{{b{FA`}}GnGnB@`B@`}{{n{GnGn}}}}{{{b{FAb}}F`F`B@`B@`}{{n{F`F`}}}}{{{b{FAd}}HdHdB@`B@`}{{n{HdHd}}}}{{{b{FAf}}FfFfB@`B@`}{{n{FfFf}}}}{{{b{FAh}}HjHjB@`B@`}{{n{HjHj}}}}{{{b{FAj}}GbGbB@`B@`}{{n{GbGb}}}}{{{b{FAl}}AlAlB@`B@`}{{n{AlAl}}}};:9876543210{B@`On}{{}F@f}{{}{{F@h{c}}}{}}{{}F@j}{{}F@l}{{}F@n}{{}FA`}{{}FAb}{{}FAd}{{}FAf}{{}FAh}{{}FAj}{{}FAl}{{{b{B@`}}{b{B@`}}}Aj}={{{b{F@j}}FlB@`}Fl}{{{b{F@l}}fB@`}f}{{{b{F@n}}EjB@`}Ej}{{{b{FA`}}GnB@`}Gn}{{{b{FAb}}F`B@`}F`}{{{b{FAd}}HdB@`}Hd}{{{b{FAf}}FfB@`}Ff}{{{b{FAh}}HjB@`}Hj}{{{b{FAj}}GbB@`}Gb}{{{b{FAl}}AlB@`}Al}{{{b{F@f}}AjB@`}Aj}{{{b{{F@h{c}}}}AlB@`}{}{}};:9876543200;:98765432;:987654321;:98765432{{{b{F@f}}B@`}Aj}21<;:987654311<;:9876543{{{b{F@f}}B@`B@`c}{{n{AjAj}}}{{A@j{Aj}{{A@h{{Bf{Aj}}}}}}}}{{{b{{F@h{c}}}}B@`B@`e}n{}{{A@j{}{{A@h{Bf}}}}}}{{{b{F@j}}B@`B@`c}{{n{FlFl}}}{{A@j{Fl}{{A@h{{Bf{Fl}}}}}}}}{{{b{F@l}}B@`B@`c}{{n{ff}}}{{A@j{f}{{A@h{{Bf{f}}}}}}}}{{{b{F@n}}B@`B@`c}{{n{EjEj}}}{{A@j{Ej}{{A@h{{Bf{Ej}}}}}}}}{{{b{FA`}}B@`B@`c}{{n{GnGn}}}{{A@j{Gn}{{A@h{{Bf{Gn}}}}}}}}{{{b{FAb}}B@`B@`c}{{n{F`F`}}}{{A@j{F`}{{A@h{{Bf{F`}}}}}}}}{{{b{FAd}}B@`B@`c}{{n{HdHd}}}{{A@j{Hd}{{A@h{{Bf{Hd}}}}}}}}{{{b{FAf}}B@`B@`c}{{n{FfFf}}}{{A@j{Ff}{{A@h{{Bf{Ff}}}}}}}}{{{b{FAh}}B@`B@`c}{{n{HjHj}}}{{A@j{Hj}{{A@h{{Bf{Hj}}}}}}}}{{{b{FAj}}B@`B@`c}{{n{GbGb}}}{{A@j{Gb}{{A@h{{Bf{Gb}}}}}}}}{{{b{FAl}}B@`B@`c}{{n{AlAl}}}{{A@j{Al}{{A@h{{Bf{Al}}}}}}}}>={{{b{F@j}}FlB@`}Fl}{{{b{F@l}}fB@`}f}{{{b{F@n}}EjB@`}Ej}{{{b{FA`}}GnB@`}Gn}{{{b{FAb}}F`B@`}F`}{{{b{FAd}}HdB@`}Hd}{{{b{FAf}}FfB@`}Ff}{{{b{FAh}}HjB@`}Hj}{{{b{FAj}}GbB@`}Gb}{{{b{FAl}}AlB@`}Al}{{{b{F@f}}{b{dAb}}}{{n{OnADb}}}}{{{b{{F@h{c}}}}{b{dAb}}}{{n{OnADb}}}{}}0{{{b{B@`}}{b{dAb}}}{{n{OnADb}}}}{{{b{F@j}}{b{dAb}}}{{n{OnADb}}}}{{{b{F@l}}{b{dAb}}}{{n{OnADb}}}}{{{b{F@n}}{b{dAb}}}{{n{OnADb}}}}{{{b{FA`}}{b{dAb}}}{{n{OnADb}}}}{{{b{FAb}}{b{dAb}}}{{n{OnADb}}}}{{{b{FAd}}{b{dAb}}}{{n{OnADb}}}}{{{b{FAf}}{b{dAb}}}{{n{OnADb}}}}{{{b{FAh}}{b{dAb}}}{{n{OnADb}}}}{{{b{FAj}}{b{dAb}}}{{n{OnADb}}}}{{{b{FAl}}{b{dAb}}}{{n{OnADb}}}}{cc{}}{AjF@f}1{{}{{F@h{c}}}{}}22{FlF@j}{fF@l}44{EjF@n}5{GnFA`}6{F`FAb}{HdFAd}88{FfFAf}9{HjFAh}{GbFAj};{AlFAl}<{{{b{dAj}}}{{b{dF@f}}}}{{{b{d}}}{{b{d{F@h{c}}}}}{}}{{{b{dFl}}}{{b{dF@j}}}}{{{b{df}}}{{b{dF@l}}}}{{{b{dEj}}}{{b{dF@n}}}}{{{b{dGn}}}{{b{dFA`}}}}{{{b{dF`}}}{{b{dFAb}}}}{{{b{dHd}}}{{b{dFAd}}}}{{{b{dFf}}}{{b{dFAf}}}}{{{b{dHj}}}{{b{dFAh}}}}{{{b{dGb}}}{{b{dFAj}}}}{{{b{dAl}}}{{b{dFAl}}}}{{{b{d{h{Aj}}}}}{{b{d{h{F@f}}}}}}{{{b{dh}}}{{b{d{h{{F@h{c}}}}}}}{}}{{{b{d{h{Fl}}}}}{{b{d{h{F@j}}}}}}{{{b{d{h{f}}}}}{{b{d{h{F@l}}}}}}{{{b{d{h{Ej}}}}}{{b{d{h{F@n}}}}}}{{{b{d{h{Gn}}}}}{{b{d{h{FA`}}}}}}{{{b{d{h{F`}}}}}{{b{d{h{FAb}}}}}}{{{b{d{h{Hd}}}}}{{b{d{h{FAd}}}}}}{{{b{d{h{Ff}}}}}{{b{d{h{FAf}}}}}}{{{b{d{h{Hj}}}}}{{b{d{h{FAh}}}}}}{{{b{d{h{Gb}}}}}{{b{d{h{FAj}}}}}}{{{b{d{h{Al}}}}}{{b{d{h{FAl}}}}}}{Aj{{b{F@f}}}}{{}{{b{{F@h{c}}}}}{}}{Fl{{b{F@j}}}}{f{{b{F@l}}}}{Ej{{b{F@n}}}}{Gn{{b{FA`}}}}{F`{{b{FAb}}}}{Hd{{b{FAd}}}}{Ff{{b{FAf}}}}{Hj{{b{FAh}}}}{Gb{{b{FAj}}}}{Al{{b{FAl}}}}{{{b{dF@f}}}{{b{dAj}}}}{{{b{d{F@h{c}}}}}{{b{d}}}{}}{{{b{dF@j}}}{{b{dFl}}}}{{{b{dF@l}}}{{b{df}}}}{{{b{dF@n}}}{{b{dEj}}}}{{{b{dFA`}}}{{b{dGn}}}}{{{b{dFAb}}}{{b{dF`}}}}{{{b{dFAd}}}{{b{dHd}}}}{{{b{dFAf}}}{{b{dFf}}}}{{{b{dFAh}}}{{b{dHj}}}}{{{b{dFAj}}}{{b{dGb}}}}{{{b{dFAl}}}{{b{dAl}}}}{{{b{d{h{F@f}}}}}{{b{d{h{Aj}}}}}}{{{b{d{h{{F@h{c}}}}}}}{{b{dh}}}{}}{{{b{d{h{F@j}}}}}{{b{d{h{Fl}}}}}}{{{b{d{h{F@l}}}}}{{b{d{h{f}}}}}}{{{b{d{h{F@n}}}}}{{b{d{h{Ej}}}}}}{{{b{d{h{FA`}}}}}{{b{d{h{Gn}}}}}}{{{b{d{h{FAb}}}}}{{b{d{h{F`}}}}}}{{{b{d{h{FAd}}}}}{{b{d{h{Hd}}}}}}{{{b{d{h{FAf}}}}}{{b{d{h{Ff}}}}}}{{{b{d{h{FAh}}}}}{{b{d{h{Hj}}}}}}{{{b{d{h{FAj}}}}}{{b{d{h{Gb}}}}}}{{{b{d{h{FAl}}}}}{{b{d{h{Al}}}}}}{{{b{B@`}}{b{dc}}}OnBBj}{{}c{}}000000000000{F@fAj}{{{F@h{c}}}{}{}}{F@jFl}{F@lf}{F@nEj}{FA`Gn}{FAbF`}{FAdHd}{FAfFf}{FAhHj}{FAjGb}{FAlAl}{{{b{F@f}}B@`}Aj}{{{b{{F@h{c}}}}B@`}{}{}}{{{b{F@j}}B@`}Fl}{{{b{F@l}}B@`}f}{{{b{F@n}}B@`}Ej}{{{b{FA`}}B@`}Gn}{{{b{FAb}}B@`}F`}{{{b{FAd}}B@`}Hd}{{{b{FAf}}B@`}Ff}{{{b{FAh}}B@`}Hj}{{{b{FAj}}B@`}Gb}{{{b{FAl}}B@`}Al}{AjF@f}{{}{{F@h{c}}}{}}{FlF@j}{fF@l}{EjF@n}{GnFA`}{F`FAb}{HdFAd}{FfFAf}{HjFAh}{GbFAj}{AlFAl}{{}On}{{{b{F@f}}AjB@`}On}{{{b{{F@h{c}}}}B@`}On{}}{{{b{F@j}}FlB@`}On}{{{b{F@l}}fB@`}On}{{{b{F@n}}EjB@`}On}{{{b{FA`}}GnB@`}On}{{{b{FAb}}F`B@`}On}{{{b{FAd}}HdB@`}On}{{{b{FAf}}FfB@`}On}{{{b{FAh}}HjB@`}On}{{{b{FAj}}GbB@`}On}{{{b{FAl}}AlB@`}On}{{{b{F@f}}AjB@`}Aj}{{{b{{F@h{c}}}}B@`}{}{}}{{{b{F@j}}FlB@`}Fl}{{{b{F@l}}fB@`}f}{{{b{F@n}}EjB@`}Ej}{{{b{FA`}}GnB@`}Gn}{{{b{FAb}}F`B@`}F`}{{{b{FAd}}HdB@`}Hd}{{{b{FAf}}FfB@`}Ff}{{{b{FAh}}HjB@`}Hj}{{{b{FAj}}GbB@`}Gb}{{{b{FAl}}AlB@`}Al}{bc{}}{c{{n{e}}}{}{}}000000000000{{}{{n{c}}}{}}000000000000{bAf}000000000000`````````````````{b{{b{c}}}{}}0000000000{{{b{d}}}{{b{dc}}}{}}0000000000{{}{{Bb{{FAn{c}}{FB`{c}}}}}{}}{{{b{{FAn{c}}}}}{{FAn{c}}}{}}{{{b{{FBb{c}}}}}{{FBb{c}}}{}}{{{b{{FBd{c}}}}}{{FBd{c}}}AAn}{{{b{FBf}}}FBf}{{{b{FBh}}}FBh}{{{b{FBj}}}FBj}{{{b{{FBl{c}}}}}{{FBl{c}}}AAn}{{b{b{dc}}}On{}}000000{bOn}000000{{{b{{FBd{c}}}}}{{b{AKb}}}{}}{{{b{FBf}}}{{b{AKb}}}}{{{b{FBh}}}{{b{AKb}}}}{{{b{FBj}}}{{b{AKb}}}}{{{b{{FBl{c}}}}}{{b{AKb}}}{}}{{{b{{FBd{c}}}}{b{{FBd{c}}}}}AjACf}{{{b{FBf}}{b{FBf}}}Aj}{{{b{FBh}}{b{FBh}}}Aj}{{{b{FBj}}{b{FBj}}}Aj}{{{b{{FBl{c}}}}{b{{FBl{c}}}}}AjACf}{{{b{{FB`{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{FAn{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{FBb{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{FBn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{FC`{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{FCb{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{{FBd{c}}}}{b{dAb}}}{{n{OnADb}}}{}}0{{{b{FBf}}{b{dAb}}}{{n{OnADb}}}}0{{{b{FBh}}{b{dAb}}}{{n{OnADb}}}}0{{{b{FBj}}{b{dAb}}}{{n{OnADb}}}}0{{{b{{FBl{c}}}}{b{dAb}}}{{n{OnADb}}}{}}0{cc{}}00000000{FBfFBh}1{FBfFBj}2{{{FBd{c}}}{{FBl{c}}}{}}{{}c{}}0000000000{{{FB`{c}}}{{FCb{c}}}{}}{{{b{{FB`{c}}}}}{{FBn{c}}}{}}2220{{{b{d{FBn{c}}}}}{{Bf{c}}}{}}{{{b{d{FC`{c}}}}}{{Bf{c}}}{}}{{{b{d{FCb{c}}}}}{{Bf{c}}}{}}{{{b{{FB`{c}}}}}{{n{cFBf}}}{}}{{{b{{FB`{c}}}}FCd}{{n{cFBj}}}{}}{{{b{{FB`{c}}}}DKd}{{n{cFBj}}}{}}{{{b{{FAn{c}}}}c}{{n{On{FBd{c}}}}}{}}{{{b{{FBb{c}}}}c}{{n{On{FBd{c}}}}}{}}{Al{{Bb{{FBb{c}}{FB`{c}}}}}{}}{bc{}}000000{bA`}0000{c{{n{e}}}{}{}}0000000000{{}{{n{c}}}{}}0000000000{{{b{{FB`{c}}}}}{{FC`{c}}}{}}{{{b{{FB`{c}}}}}{{n{cFBh}}}{}}{{{b{{FBb{c}}}}c}{{n{On{FBl{c}}}}}{}}{bAf}0000000000```````````{{{b{FCf}}}{{b{FCh}}}}{{{b{FCj}}}{{b{FCh}}}}{{{b{FCf}}}{{b{FCj}}}}{b{{b{c}}}{}}000000{{{b{d}}}{{b{dc}}}{}}000000{{{AFn{{n{ce}}}}}BGn{}{}}{{{AFn{{Bf{{n{ce}}}}}}}BGn{}{}}{FClAFl}{{{b{FCf}}}FCf}{{{b{FCj}}}FCj}{{{b{{AFn{c}}}}}{{AFn{c}}}AAn}{{{b{FCn}}}FCn}{{{b{dFCf}}{b{FCf}}}On}{{{b{dFCj}}{b{FCj}}}On}{{b{b{dc}}}On{}}000{bOn}000{{{b{{AFn{c}}}}{b{{AFn{c}}}}}ABhAAl}{{{b{FCh}}}On}{{{b{dFCf}}}On}{{{b{dFCj}}}On}{{{b{{AFn{c}}}}{b{{AFn{c}}}}}AjACf}{{{b{FCh}}{b{FCh}}}Aj}{{{b{FCn}}{b{FCn}}}Aj}{{{b{dAFl}}}{{b{dAMj}}}}{{FCl{b{dAMj}}}FCl}{{{b{AFl}}{b{dAb}}}{{n{OnADb}}}}{{{b{FCf}}{b{dAb}}}{{n{OnADb}}}}{{{b{FCj}}{b{dAb}}}{{n{OnADb}}}}{{{b{{AFn{c}}}}{b{dAb}}}{{n{OnADb}}}AD`}{{{b{FCh}}{b{dAb}}}{{n{OnADb}}}}{{{b{FCn}}{b{dAb}}}{{n{OnADb}}}}{{{b{FCl}}{b{dAb}}}{{n{OnADb}}}}{cc{}}0{{{AMd{c}}}FCf{AMbBLnBM`}}{{{AMh{c}}}FCjAMf}2{AIhc{}}3{c{{AFn{c}}}{}}4{{{AMd{c}}}FCh{AMbBLnBM`}}{{{AMh{c}}}FChAMf}6{{{b{dAFl}}}FCl}7{{}{{AFn{{Bf{{n{ce}}}}}}}{}{}}{{}{{AFn{{n{ce}}}}}{}{}}{FChFCf}{FChFCj}{{{n{C@`c}}}{{AFn{{Bf{{n{eg}}}}}}}{}{}{{ADf{c}}}}{{{n{C@`c}}}{{AFn{{n{eg}}}}}{}{}{{ADf{c}}}}{{{b{FCf}}}AFl}{{{b{FCf}}}FCl}{{{b{{AFn{c}}}}{b{de}}}OnBBlBBj}{{}c{}}000000{{{b{{AFn{c}}}}}Aj{}}0{{{b{AFl}}}{{b{FCj}}}}{{FCl{b{FCj}}}FCl}{{{AFn{c}}g}{{AFn{e}}}{}{}{{AAf{c}{{A@h{e}}}}}}{{{AFn{{n{ce}}}}i}{{AFn{{n{cg}}}}}{}{}{}{{AAf{e}{{A@h{g}}}}}}{{{AFn{{Bf{{n{ce}}}}}}i}{{AFn{{Bf{{n{cg}}}}}}}{}{}{}{{AAf{e}{{A@h{g}}}}}}{{{AFn{{n{ce}}}}i}{{AFn{{n{ge}}}}}{}{}{}{{AAf{c}{{A@h{g}}}}}}{{{AFn{{Bf{{n{ce}}}}}}i}{{AFn{{Bf{{n{ge}}}}}}}{}{}{}{{AAf{c}{{A@h{g}}}}}}{{On{b{FCn}}}FCh}{{{BCf{On}{{A@h{FCh}}}}{BCf{On}{{A@h{On}}}}{BCf{On}{{A@h{On}}}}{BCf{On}{{A@h{On}}}}}FCn}{{}{{b{FCf}}}}{{}{{b{FCj}}}}{{{b{{AFn{c}}}}{b{{AFn{c}}}}}{{Bf{ABh}}}ADj}`{bc{}}000{c{{n{e}}}{}{}}000000{{}{{n{c}}}{}}000000{bAf}000000{{{b{FCh}}}{{b{FCn}}}}{{{AMd{AMb}}}On}{{{AMh{AMf}}}On}{FCfOn}{FCjOn}{{{b{{AMd{AMb}}}}}On}{{{b{{AMh{AMf}}}}}On}{{{b{FCf}}}On}{{{b{FCj}}}On}{{{b{AFl}}}{{b{FCf}}}}{{FCl{b{FCf}}}FCl}{{{b{FCf}}{b{FCf}}}Aj}{{{b{FCj}}{b{FCj}}}Aj}```````````{{{b{{FD`{c}}}}}Hj{}}{{{b{FDb}}}{{A@`{Hj}}}}{{}{{n{{A@`{Al}}CBf}}}}{b{{b{c}}}{}}0000000{{{b{d}}}{{b{dc}}}{}}0000000{{{b{FDd}}}FDd}{{{b{FDb}}}FDb}{{{b{FDf}}}FDf}{{b{b{dc}}}On{}}00{bOn}00{{}FDf}{{{b{FDd}}{b{FDd}}}Aj}{{{b{FDb}}{b{FDb}}}Aj}{{{b{FDh}}{b{dAb}}}{{n{OnADb}}}}{{{b{{FDj{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{FDl{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{{FD`{c}}}}{b{dAb}}}{{n{OnADb}}}{}}{{{b{FDd}}{b{dAb}}}{{n{OnADb}}}}0{{{b{FDn}}{b{dAb}}}{{n{OnADb}}}}{{{b{FDb}}{b{dAb}}}{{n{OnADb}}}}{{{b{FDf}}{b{dAb}}}{{n{OnADb}}}}{cc{}}0000000{{{b{{FDl{{CD`{c}}}}}}}cBBn}{{{b{FDb}}{b{dc}}}OnBBj}{{{b{FDf}}}FDb}{{}c{}}0000000{{{FD`{c}}}Hj{}}{{{b{{FDj{c}}}}}Aj{}}{{{b{{FD`{c}}}}}Aj{}}{{{FDj{c}}}{{n{c{AL`{AMj}}}}}{}}{{{FD`{c}}}{{n{c{AL`{AMj}}}}}{}}{{FDnA`}FDn}{{{b{FDf}}}{{Bf{{b{AKb}}}}}}{{}FDn}{{}Aj}{{}On}{DKdOn}{HdOn}{{{b{{FDl{{CDb{c}}}}}}c}c{}}{{{b{{FDl{{CD`{c}}}}}}c}c{}}{ec{}{{AAf{{b{FDh}}}{{A@h{c}}}}}}{{{b{{FDl{{CDb{c}}}}}}c}On{}}{{{b{{FDl{{CD`{c}}}}}}c}On{}}65{FCdOn}{e{{FD`{c}}}BLn{{AAf{}{{A@h{c}}}}BLn}}{{{b{FDh}}e}{{FDj{c}}}BLn{{AAf{}{{A@h{c}}}}BLn}}{{FDne}{{n{{FD`{c}}CBf}}}BLn{{AAf{}{{A@h{c}}}}BLn}}{{FDn{b{FDh}}e}{{n{{FDj{c}}CBf}}}BLn{{AAf{}{{A@h{c}}}}BLn}}1{{FDnAl}FDn}{{{b{{FDl{{CD`{c}}}}}}}cAFf}{{{b{{FDl{{CDb{c}}}}}}}cAFf}{{{b{{FDj{c}}}}}{{b{FDf}}}{}}{{{b{{FD`{c}}}}}{{b{FDf}}}{}}{bc{}}00{bA`}{c{{n{e}}}{}{}}0000000{{}{{n{c}}}{}}0000000{{{b{{FDl{c}}}}g}{{n{eFDd}}}{}{}{{AAf{{b{c}}}{{A@h{e}}}}}}{bAf}0000000{{{b{FDf}}}On}{{{b{{FDl{c}}}}g}e{}{}{{AAf{{b{c}}}{{A@h{e}}}}}}{{{b{{FDl{{CDb{c}}}}}}g}e{}{}{{AAf{{b{c}}}{{A@h{e}}}}}}{{{b{{FDl{{CDb{c}}}}}}g}e{}{}{{AAf{{b{dc}}}{{A@h{e}}}}}}{{}On}`````````````{{DKdDKd}DKd}{{FCdDKd}FCd}{{DDdDKd}DDd}2{{{b{dFCd}}DKd}On}{{{b{dDDd}}DKd}On}{{{b{dDKd}}DKd}On}{{{b{DKd}}}Gh}0{{{b{DKd}}}Dh}{{{b{DKd}}}Dn}2{{{b{DKd}}}Hj}21{b{{b{c}}}{}}0000{{{b{d}}}{{b{dc}}}{}}0000{{{b{FCd}}DKd}{{Bf{FCd}}}}{{{b{DDd}}DKd}{{Bf{DDd}}}}{{DKdDKd}{{Bf{DKd}}}}{{DKdHd}{{Bf{DKd}}}}{{{b{FCd}}FCd}{{Bf{DKd}}}}1432{{{b{FCd}}}FCd}{{{b{DDd}}}DDd}{{{b{FE`}}}FE`}{{{b{DKd}}}DKd}{{{b{FEb}}}FEb}{{b{b{dc}}}On{}}0000{bOn}0000{{{b{FCd}}{b{FCd}}}ABh}{{{b{DDd}}{b{DDd}}}ABh}{{{b{DKd}}{b{DKd}}}ABh}{{}DKd}{{{b{FE`}}}{{b{AKb}}}}{{DKdHd}DKd}{{{b{dDKd}}Hd}On}{{DKdDKd}Dh}{{DKdDKd}Dn}{{DKdDh}DKd}{{DKdDn}DKd}{{{b{FE`}}}DKd}{{{b{FCd}}FCd}DKd}{{{b{DDd}}DDd}{{n{DKdFE`}}}}{{{b{FCd}}}DKd}{{{b{DDd}}}{{n{DKdFE`}}}}{{{b{FCd}}{b{FCd}}}Aj}{{{b{DDd}}{b{DDd}}}Aj}{{{b{DKd}}{b{DKd}}}Aj}{{{b{FEb}}{b{FEb}}}Aj}{{{b{FCd}}{b{dAb}}}{{n{OnADb}}}}{{{b{DDd}}{b{dAb}}}{{n{OnADb}}}}{{{b{FE`}}{b{dAb}}}{{n{OnADb}}}}0{{{b{DKd}}{b{dAb}}}{{n{OnADb}}}}{{{b{FEb}}{b{dAb}}}{{n{OnADb}}}}0{cc{}}0000{HjDKd}000000{DhDKd}{DnDKd}2{{{b{FCd}}{b{dc}}}OnBBj}{{{b{DDd}}{b{dc}}}OnBBj}{{{b{DKd}}{b{dc}}}OnBBj}{{}c{}}0000{{{b{DKd}}}Aj}{{DKdHd}DKd}{{{b{dDKd}}Hd}On}{{DKdDh}DKd}{{DKdDn}DKd}{{HjHd}DKd}{{}FCd}{{}DDd}{{{b{FCd}}{b{FCd}}}{{Bf{ABh}}}}{{{b{DDd}}{b{DDd}}}{{Bf{ABh}}}}{{{b{DKd}}{b{DKd}}}{{Bf{ABh}}}}{{DKdDKd}DKd}{{{b{FCd}}FCd}DKd};1{{FCdDKd}FCd}{{FCdFCd}DKd}{{DDdDKd}DDd}4{{{b{dFCd}}DKd}On}{{{b{dDDd}}DKd}On}{{{b{dDKd}}DKd}On}{{{b{DKd}}}Hd}00{cDKd{{A@d{}{{A@b{{b{DKd}}}}}}}}{cDKd{{A@d{}{{A@b{DKd}}}}}}{bc{}}0000{bA`}0{c{{n{e}}}{}{}}0000{Dh{{n{DKdFEb}}}}{Dn{{n{DKdFEb}}}}{{}{{n{c}}}{}}0000{bAf}0000`````````````````{{{b{d{CBn{ce}}}}Al}{{n{On{A@`{Al}}}}}{}AIb}0{{{b{{FEd{ce}}}}}{{b{e}}}{}AIb}{{{b{{CBn{ce}}}}}{{b{e}}}{}AIb}{{{b{{j{ce}}}}}{{b{e}}}{}AIb}{{{b{{FEf{ceg}}}}}{{b{g}}}{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}AIb}{{{b{d{j{ce}}}}{b{d{j{ce}}}}}On{}AIb}{{{b{d{j{ce}}}}}{{b{d{j{ce}}}}}{}AIb}{{{b{d{j{ce}}}}}{{b{d{h{c}}}}}{}AIb}{{{b{d{j{ce}}}}}{}{}AIb}{{{b{d{CBn{ce}}}}}{{b{d{h{c}}}}}{}AIb}2{{{b{{j{ce}}}}}{}{}AIb}{{{b{{FEd{ce}}}}}{{b{{h{c}}}}}{}AIb}{{{b{{CBn{ce}}}}}{{b{{h{c}}}}}{}AIb}{{{b{{j{ce}}}}}{{b{{h{c}}}}}{}AIb}{{{b{{j{ce}}}}}{{b{{j{ce}}}}}{}AIb}321{b{{b{c}}}{}}02000{{{b{d}}}{{b{dc}}}{}}00900{{{b{{j{ce}}}}}Al{}AIb}{{{b{d{j{ce}}}}}On{}AIb}{{{b{{CBn{ce}}}}}{{CBn{ce}}}AAn{AIbAAn}}{{{b{{j{ce}}}}}{{j{ce}}}AAn{AIbAAn}}{{{b{d{j{ce}}}}{b{{j{ce}}}}}OnAAn{AIbAAn}}{{b{b{dc}}}On{}}0{bOn}0{{{b{{j{ce}}}}{b{{j{ce}}}}}ABhAAlAIb}{{{CBn{ce}}}Al{}AIb}{{{b{d{j{ce}}}}}OnACfAIb}{{{b{d{j{ce}}}}g}On{}AIb{{A@j{{b{dc}}{b{dc}}}{{A@h{Aj}}}}}}{{{b{d{j{ce}}}}i}On{}AIbACf{{A@j{{b{dc}}}{{A@h{g}}}}}}{{}{{CBn{ce}}}{}{AIbAFf}}{{}{{j{c}}}{}}{{{b{{j{ce}}}}}{{b{{h{c}}}}}{}AIb}{{{b{d{j{ce}}}}}{{b{d{h{c}}}}}{}AIb}{{{b{d{j{ce}}}}g}{{FEd{ce}}}{}AIb{{AKn{Al}}}}{{{b{d{FEd{ce}}}}}On{}AIb}{{{b{d{CBn{ce}}}}}On{}AIb}{{{b{d{j{ce}}}}}On{}AIb}{{{b{d{FEf{ceg}}}}}On{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}AIb}{{{b{d{FEh{ce}}}}}OnA@dAIb}{{{b{{j{eg}}}}{b{{b{{Db{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{b{{h{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{j{ci}}}}}Aj{}{{ACf{c}}}AIbAIb}{{{b{{j{eg}}}}{b{{h{c}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{b{d{h{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{Db{c}}}}}Aj{}{{ACf{c}}}AIb}{{{b{d{j{ce}}}}g}On{}AIb{{AAj{}{{A@b{c}}}}}}{{{b{d{j{ce}}}}g}OnBBnAIb{{AAj{}{{A@b{{b{c}}}}}}}}{{{b{d{j{ce}}}}{b{{h{c}}}}}OnAAnAIb}{{{b{d{j{ce}}}}g}OnAAnAIb{{AKn{Al}}}}{{{b{d{j{ce}}}}{b{c}}}OnBBnAIb}{{{b{d{j{ce}}}}c}On{}AIb}{{{b{d{j{ce}}}}Al}On{}AIb}{{{b{d{j{ce}}}}Al}OnBBnAIb}{{{b{d{j{ce}}}}g}{{FEf{cge}}}{}AIb{{A@j{{b{dc}}}{{A@h{Aj}}}}}}{{{b{d{j{fc}}}}}{{n{OnCBf}}}AIb}{{{b{{FEd{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{CBn{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{j{ce}}}}{b{dAb}}}{{n{OnADb}}}AD`AIb}{{{b{{FEf{ceg}}}}{b{dAb}}}{{n{OnADb}}}AD`{AD`{A@j{{b{dc}}}{{A@h{Aj}}}}}{AD`AIb}}{{{b{{FEh{ce}}}}{b{dAb}}}{{n{OnADb}}}{AD`A@d}{AD`AIb}}{{{CBn{ce}}gi}g{}AIb{}{{A@j{g}{{A@h{g}}}}}}{cc{}}0{CAh{{j{f}}}}{{{b{d{Db{c}}}}}{{j{c}}}AAn}{A`{{j{f}}}}3{{{CFj{ce}}}{{j{ce}}}{}AIb}{{{CFh{ce}}}{{j{ce}}}{}AIb}{{{b{{h{c}}}}}{{j{c}}}AAn}{{{b{d{h{c}}}}}{{j{c}}}AAn}{{{b{AKb}}}{{j{f}}}}{{{b{{Db{c}}}}}{{j{c}}}AAn}{{{C@n{{h{c}}}}}{{j{c}}}{}}{{{Db{c}}}{{j{c}}}{}}{{{AL`{{h{c}}e}}}{{j{ce}}}{}AIb}<<{e{{j{c}}}{}{{AAj{}{{A@b{c}}}}}}{{AlAl}{{j{c}}}{}}{{AlAlc}{{j{ec}}}AIb{}}{{{b{{j{ce}}}}{b{dg}}}OnBBlAIbBBj}{{{b{{j{ce}}}}g}b{}AIb{{AKh{{h{c}}}}}}{{{b{d{j{ce}}}}g}{{b{d}}}{}AIb{{AKh{{h{c}}}}}}{{{b{d{j{ce}}}}Alc}On{}AIb}{{}c{}}0000{{{j{ce}}}{{AL`{{h{c}}e}}}{}AIb}{{{j{{Db{c}}e}}}{{j{ce}}}{}AIb}22{{{j{ce}}}{}{}AIb}{{{b{d{j{ce}}}}}{}{}AIb}{{{b{{j{ce}}}}}{}{}AIb}55{{{j{ce}}}{{Bb{AlAl}}}{}AIb}{{{j{ce}}}{{Bb{AlAle}}}{}AIb}{{{b{{FEd{ce}}}}}Aj{}AIb}{{{b{{CBn{ce}}}}}Aj{}AIb}{{{b{{j{ce}}}}}Aj{}AIb}{{{b{{j{fc}}}}}AjAIb}{{{FEd{ce}}}On{}AIb}{{{j{ce}}}{{b{d{h{c}}}}}{}AIb}{{{b{{j{ce}}}}}Al{}AIb}{{{b{{j{eg}}}}{b{{h{c}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{b{{h{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{j{ci}}}}}Aj{}{{ACf{c}}}AIbAIb}{{{b{{j{eg}}}}{b{{b{d{h{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{Db{c}}}}}Aj{}{{ACf{c}}}AIb}{{{b{{j{eg}}}}{b{{b{{Db{c}}}}}}}Aj{}{{ACf{c}}}AIb}{{}{{j{c}}}{}}{c{{j{ec}}}AIb{}}{{{b{d{FEd{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{CBn{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{FEf{ceg}}}}}{{Bf{c}}}{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}AIb}{{{b{d{FEh{ce}}}}}BfA@dAIb}320{{{b{d{CBn{ce}}}}}{{n{{Db{c}}{AFd{c}}}}}{}AIb}{{{b{{j{ce}}}}{b{{j{cg}}}}}{{Bf{ABh}}}ADjAIbAIb}{{{b{d{j{ce}}}}}{{Bf{c}}}{}AIb}{{{b{d{j{ce}}}}g}{{Bf{c}}}{}AIb{{AAf{{b{dc}}}{{A@h{Aj}}}}}}{{{b{d{j{ce}}}}c}On{}AIb}{{{b{d{j{ce}}}}c}{{n{Onc}}}{}AIb}{{{b{d{j{ce}}}}Al}c{}AIb}{{{b{d{j{ce}}}}Al}On{}AIb}0{{{b{d{j{ce}}}}Alc}OnAAnAIb}{{{b{d{j{ce}}}}Alg}On{}AIb{{A@j{}{{A@h{c}}}}}}{{{b{d{j{ce}}}}g}On{}AIb{{A@j{{b{c}}}{{A@h{Aj}}}}}}{{{b{d{j{ce}}}}g}On{}AIb{{A@j{{b{dc}}}{{A@h{Aj}}}}}}44{{{b{d{j{ce}}}}}On{}AIb}{{{b{{FEd{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}AIb}{{{b{{CBn{ce}}}}}{{Bb{Al{Bf{Al}}}}}{}AIb}{{{b{{FEf{ceg}}}}}{{Bb{Al{Bf{Al}}}}}{}{{A@j{{b{dc}}}{{A@h{Aj}}}}}AIb}{{{b{{FEh{ce}}}}}{{Bb{Al{Bf{Al}}}}}A@dAIb}{{{b{d{j{ce}}}}}{{b{d{h{{C@b{c}}}}}}}{}AIb}{{{b{d{j{ce}}}}gi}{{FEh{e}}}{}AIb{{AKn{Al}}}{{AAj{}{{A@b{c}}}}}}{{{b{d{j{ce}}}}}{{Bb{{b{d{h{c}}}}{b{d{h{{C@b{c}}}}}}}}}{}AIb}{{{b{d{j{ce}}}}Al}{{j{ce}}}{}{AAnAIb}}>{bc{}}0>{{{b{d{CBn{ce}}}}gk}i{}AIb{}{{AHd{}{{A@h{g}}}}}{{A@j{g}{{A@h{i}}}}}}{c{{n{e}}}{}{}}0000{{}{{n{c}}}{}}0000{{{b{d{j{ce}}}}Al}{{n{OnCGh}}}{}AIb}0{Al{{n{{j{c}}CGh}}}{}}{{Alc}{{n{{j{ec}}CGh}}}AIb{}}{bAf}0000{Al{{j{c}}}{}}{{Alc}{{j{ec}}}AIb{}}{{{b{d{j{fc}}}}{b{{h{f}}}}}{{n{AlCBf}}}AIb}{{{b{d{j{fc}}}}{b{{h{f}}}}}{{n{OnCBf}}}AIb}{{{b{d{j{fc}}}}{b{{h{CCn}}}}}{{n{AlCBf}}}AIb}```{{{b{dFEj}}Al}On}{{{b{dFEj}}}f}{b{{b{c}}}{}}0{{{b{d}}}{{b{dc}}}{}}0{cc{}}0{{}c{}}0{FEj{{j{f}}}}{{{b{{h{f}}}}}FEl}{{{b{dFEl}}}{{b{{Db{f}}}}}}{{{b{FEl}}}{{b{{h{f}}}}}}{c{{n{e}}}{}{}}0{{}{{n{c}}}{}}0{bAf}0{AlFEj}{{FElc}On{{AAf{{b{{Db{f}}}}}}}}{{{b{dFEj}}fAl}On}{{{b{dFEj}}f}On}","D":"ABCjA@OnA@MnACCfABBbA@OjA@MlABJhABMjAAL`ABFd","p":[[1,"reference"],[0,"mut"],[1,"u8"],[1,"slice"],[5,"Vec",36063,36288],[6,"DecodeError",14],[6,"Result",31250,36289],[5,"String",34335,36290],[5,"Formatter",21735,36291],[8,"Result",21735,36291],[5,"TypeId",11188,36292],[6,"DecodeError",33],[1,"bool"],[1,"usize"],[5,"EncodedReprInfo",33],[10,"AddCarrying",70,36293],[1,"tuple"],[10,"AddChecked",70,36294],[6,"Option",28453,36295],[10,"AddOverflowing",70,36296],[10,"Add",70,36297],[10,"And",70,36298],[17,"Signed"],[10,"IntUnsigned",70,36299],[17,"Unsigned"],[10,"IntSigned",70,36299],[10,"CountBits",70,36300],[10,"DivChecked",70,36301],[10,"DivFloat",70,36302],[10,"DivInt",70,36303],[10,"DivOverflowing",70,36304],[10,"Div",70,36305],[1,"array"],[10,"ArrayConversions",70,36306],[10,"Base",70,36307],[1,"f32"],[10,"FromF32Lossless",70,36308],[10,"FromF32Lossy",70,36309],[1,"f64"],[10,"FromF64Lossless",70,36308],[10,"FromF64Lossy",70,36309],[1,"i128"],[10,"FromI128Lossless",70,36308],[10,"FromI128Lossy",70,36309],[1,"i16"],[10,"FromI16Lossless",70,36308],[10,"FromI16Lossy",70,36309],[1,"i32"],[10,"FromI32Lossless",70,36308],[10,"FromI32Lossy",70,36309],[1,"i64"],[10,"FromI64Lossless",70,36308],[10,"FromI64Lossy",70,36309],[1,"i8"],[10,"FromI8Lossless",70,36308],[10,"FromI8Lossy",70,36309],[1,"isize"],[10,"FromIsizeLossless",70,36308],[10,"FromIsizeLossy",70,36309],[1,"u128"],[10,"FromU128Lossless",70,36308],[10,"FromU128Lossy",70,36309],[1,"u16"],[10,"FromU16Lossless",70,36308],[10,"FromU16Lossy",70,36309],[1,"u32"],[10,"FromU32Lossless",70,36308],[10,"FromU32Lossy",70,36309],[1,"u64"],[10,"FromU64Lossless",70,36308],[10,"FromU64Lossy",70,36309],[10,"FromU8Lossless",70,36308],[10,"FromU8Lossy",70,36309],[10,"FromUsizeLossless",70,36308],[10,"FromUsizeLossy",70,36309],[10,"IntoF32Lossless",70,36310],[10,"IntoF32Lossy",70,36311],[10,"IntoF64Lossless",70,36310],[10,"IntoF64Lossy",70,36311],[10,"IntoI128Lossless",70,36310],[10,"IntoI128Lossy",70,36311],[10,"IntoI16Lossless",70,36310],[10,"IntoI16Lossy",70,36311],[10,"IntoI32Lossless",70,36310],[10,"IntoI32Lossy",70,36311],[10,"IntoI64Lossless",70,36310],[10,"IntoI64Lossy",70,36311],[10,"IntoI8Lossless",70,36310],[10,"IntoI8Lossy",70,36311],[10,"IntoIsizeLossless",70,36310],[10,"IntoIsizeLossy",70,36311],[10,"IntoU128Lossless",70,36310],[10,"IntoU128Lossy",70,36311],[10,"IntoU16Lossless",70,36310],[10,"IntoU16Lossy",70,36311],[10,"IntoU32Lossless",70,36310],[10,"IntoU32Lossy",70,36311],[10,"IntoU64Lossless",70,36310],[10,"IntoU64Lossy",70,36311],[10,"IntoU8Lossless",70,36310],[10,"IntoU8Lossy",70,36311],[10,"IntoUsizeLossless",70,36310],[10,"IntoUsizeLossy",70,36311],[10,"Widening",70,36312],[10,"Narrowing",70,36313],[10,"MulChecked",70,36314],[10,"MulOverflowing",70,36315],[10,"Mul",70,36316],[10,"MulUnchecked",70,36317],[10,"MulWidening",70,36318],[10,"NegChecked",70,36319],[10,"Neg",70,36320],[10,"Not",70,36321],[10,"Or",70,36322],[10,"RemChecked",70,36323],[10,"Rem",70,36324],[10,"ShlChecked",70,36325],[10,"Shl",70,36326],[10,"ShrChecked",70,36327],[10,"Shr",70,36328],[10,"SubBorrowing",70,36329],[10,"SubChecked",70,36330],[10,"SubOverflowing",70,36331],[10,"Sub",70,36332],[10,"Xor",70,36333],[10,"DoubleEndedIterator",23492,36334],[1,"unit"],[5,"NonZero",25056,36335],[17,"Item"],[10,"Iterator",23492,36336],[10,"Sized",24397,36337],[17,"Output"],[10,"FnMut",28035,36338],[5,"ArrayChunks",23492,36339],[10,"AsMut",21022,36340],[10,"AsRef",21022,36340],[10,"Fn",28035,36338],[10,"Tuple",24397,36337],[10,"FnOnce",28035,36338],[5,"Chain",23492,36341],[10,"IntoIterator",23492,36342],[10,"Ord",19161,36343],[10,"Clone",19155,36344],[17,"Owned"],[10,"ToOwned",18426,36345],[10,"Borrow",18426,36346],[5,"Cloned",23492,36347],[6,"Ordering",19161,36343],[10,"FromIterator",23492,36342],[10,"Extend",23492,36342],[5,"Copied",23492,36348],[5,"Cycle",23492,36349],[10,"Drop",28035,36350],[5,"Enumerate",23492,36351],[10,"PartialEq",19161,36343],[5,"Filter",23492,36352],[5,"FilterMap",23492,36353],[5,"FlatMap",23492,36354],[5,"Flatten",23492,36354],[10,"Debug",21735,36291],[5,"Error",21735,36291],[10,"Display",21735,36291],[10,"From",21022,36340],[5,"Fuse",23492,36355],[10,"PartialOrd",19161,36343],[5,"Inspect",23492,36356],[5,"Intersperse",23492,36357],[5,"IntersperseWith",23492,36357],[10,"Into",21022,36340],[17,"IntoFuture"],[10,"IntoFuture",22171,36358],[10,"Future",22171,36359],[17,"IntoIter"],[10,"ExactSizeIterator",23492,36360],[5,"Map",23492,36361],[5,"MapWhile",23492,36362],[5,"MapWindows",23492,36363],[5,"IntoIter",18115,36364],[10,"Default",21061,36365],[5,"Peekable",23492,36366],[5,"Pin",29567,36367],[5,"Context",35610,36368],[6,"Poll",35610,36369],[10,"Product",23492,36370],[5,"Rev",23492,36371],[5,"Scan",23492,36372],[5,"Skip",23492,36373],[5,"SkipWhile",23492,36374],[5,"StepBy",23492,36375],[10,"Sum",23492,36370],[5,"Take",23492,36376],[5,"TakeWhile",23492,36377],[10,"ToString",34335,36290],[10,"Try",28035,36378],[17,"Error"],[10,"TryFrom",21022,36340],[10,"TryInto",21022,36340],[5,"Zip",23492,36379],[5,"Layout",11060,36380],[10,"GlobalAlloc",11060,36381],[10,"Allocator",11060,36382],[5,"NonNull",30959,36383],[5,"AllocError",11060,36382],[1,"never"],[10,"BorrowMut",18426,36346],[10,"Octal",21735,36291],[10,"Binary",21735,36291],[10,"LowerHex",21735,36291],[10,"UpperHex",21735,36291],[10,"Pointer",21735,36291],[10,"LowerExp",21735,36291],[10,"UpperExp",21735,36291],[5,"Arguments",21735,36291],[5,"FromFn",21735,36384],[10,"Write",21735,36291],[1,"char"],[1,"str"],[10,"Concat",33177,36385],[5,"Range",28035,36386],[10,"SliceIndex",33177,36387],[10,"Join",33177,36385],[5,"RangeTo",28035,36386],[10,"RangeBounds",28035,36386],[5,"Box",18525,36388],[17,"Err"],[10,"FromStr",33704,36389],[5,"Utf8Error",33704,36390],[10,"Searcher",34184,36391],[17,"Searcher"],[10,"Pattern",34184,36391],[6,"SearchStep",34184,36391],[10,"ReverseSearcher",34184,36391],[10,"Wake",35610,36392],[5,"Arc",34507,36393],[10,"LocalWake",35610,36392],[5,"Rc",31111,36394],[10,"Any",11188,36292],[5,"__m128",11239,36395],[5,"CpuidResult",11239,36396],[5,"__m256i",11239,36395],[5,"__m256h",11239,36395],[5,"__m256d",11239,36395],[5,"__m256",11239,36395],[5,"bf16",11239,36395],[1,"f16"],[5,"__m128d",11239,36395],[5,"__m128i",11239,36395],[5,"__m128h",11239,36395],[5,"__m256bh",11239,36395],[5,"__m128bh",11239,36395],[5,"__m512i",11239,36395],[5,"__m512d",11239,36395],[5,"__m512h",11239,36395],[5,"__m512",11239,36395],[5,"__m512bh",11239,36395],[6,"Ordering",35004,36397],[5,"EscapeDefault",18168,36398],[5,"FromIter",18363,36399],[17,"IntoAsyncIter"],[10,"IntoAsyncIterator",18363,36400],[10,"AsyncIterator",18363,36400],[5,"DecodeUtf16",18946,36401],[10,"CloneToUninit",19155,36344],[10,"Error",21185,36402],[5,"Source",7831,36402],[5,"Request",21185,36402],[5,"Bytes",8011,36403],[5,"AsyncDropOwning",36404],[17,"Dropper"],[10,"AsyncDrop",22171,36404],[5,"AsyncDropInPlace",22171,36404],[5,"Pending",22171,36405],[5,"PollFn",22171,36406],[5,"Ready",22171,36407],[17,"Hasher"],[10,"BuildHasher",22240,36408],[10,"Hasher",22240,36408],[10,"Hash",22240,36408],[10,"Copy",24397,36337],[17,"Metadata"],[10,"AggregateRawPtr",22350,36409],[5,"Location",29184,36410],[1,"fn"],[1,"f128"],[5,"ReturnToArg",22643,36411],[5,"UnwindActionArg",22643,36411],[6,"BasicBlock",22643,36411],[6,"UnwindTerminateReason",22643,36411],[10,"Step",23492,36412],[5,"Empty",23492,36413],[5,"FromCoroutine",36414],[17,"Return"],[10,"Coroutine",28035,36415],[10,"Unpin",24397,36337],[5,"FromFn",23492,36416],[5,"Once",23492,36417],[5,"OnceWith",23492,36418],[5,"Repeat",23492,36419],[5,"RepeatN",23492,36420],[5,"RepeatWith",23492,36421],[5,"Successors",23492,36422],[10,"FnPtr",24397,36337],[5,"Discriminant",24454,36423],[10,"TransmuteFrom",24454,36424],[10,"Add",28035,36425],[10,"AddAssign",28035,36425],[10,"AsyncFn",28035,36426],[17,"CallRefFuture"],[10,"AsyncFnMut",28035,36426],[17,"CallOnceFuture"],[10,"AsyncFnOnce",28035,36426],[10,"BitAnd",28035,36427],[10,"BitAndAssign",28035,36427],[10,"BitOr",28035,36427],[10,"BitOrAssign",28035,36427],[10,"BitXor",28035,36427],[10,"BitXorAssign",28035,36427],[17,"Residual"],[6,"ControlFlow",28035,36428],[17,"Target"],[10,"Deref",28035,36429],[10,"DerefMut",28035,36429],[10,"Div",28035,36425],[10,"DivAssign",28035,36425],[6,"Bound",28035,36386],[10,"FromResidual",28035,36378],[10,"Index",28035,36430],[10,"IndexMut",28035,36430],[10,"Mul",28035,36425],[10,"MulAssign",28035,36425],[10,"Neg",28035,36425],[10,"Not",28035,36427],[10,"Rem",28035,36425],[10,"RemAssign",28035,36425],[17,"Yield"],[6,"CoroutineState",28035,36415],[10,"Shl",28035,36427],[10,"ShlAssign",28035,36427],[10,"Shr",28035,36427],[10,"ShrAssign",28035,36427],[10,"Sub",28035,36425],[10,"SubAssign",28035,36425],[5,"PanicMessage",8939,36431],[5,"PanicInfo",8939,36431],[5,"IterRange",10031,36432],[5,"IterRangeInclusive",10031,36432],[5,"IterRangeFrom",10031,36432],[5,"Range",10031,36433],[5,"RangeInclusive",10031,36433],[5,"RangeFrom",10031,36433],[5,"RangeInclusive",28035,36386],[5,"RangeFrom",28035,36386],[5,"Simd",31628,36434],[10,"SimdElement",31369,36434],[5,"Mask",31628,36435],[10,"MaskElement",31369,36435],[17,"Bytes"],[10,"ToBytes",31369,36436],[10,"Send",24397,36337],[10,"Sync",24397,36337],[17,"Scalar"],[10,"SimdUint",31628,36437],[10,"SimdOrd",31628,36438],[17,"Mask"],[10,"SimdPartialEq",31628,36439],[10,"SimdPartialOrd",31628,36438],[17,"Bits"],[17,"Cast"],[10,"SimdFloat",31628,36440],[10,"SimdInt",31628,36441],[17,"Usize"],[17,"Isize"],[17,"CastPtr"],[17,"MutPtr"],[10,"SimdConstPtr",31628,36442],[17,"ConstPtr"],[10,"SimdMutPtr",31628,36443],[10,"SlicePattern",10761,36444],[5,"GetManyMutError",10761,36444],[5,"LayoutError",11060,36380],[5,"System",11060,36445],[5,"Global",11060,36446],[5,"TryFromSliceError",18115,36447],[6,"Infallible",21022,36340],[20,"MaybeUninit",24454,36448],[6,"Char",18168],[10,"AsciiExt",18168,36449],[5,"Backtrace",18388,36450],[6,"BacktraceStatus",18388,36450],[5,"BacktraceFrame",18388,36450],[6,"Cow",18426,36345],[5,"OsStr",21364,36451],[5,"Path",29270,36452],[5,"PathBuf",29270,36452],[5,"OsString",21364,36451],[5,"CString",21364,36453],[5,"CStr",21364,36403],[5,"BorrowedFd",28587,36454],[10,"AsFd",28587,36454],[10,"AsRawFd",28587,36455],[10,"BufRead",22779,36456],[5,"ThinBox",18525,36457],[5,"Error",22779,36458],[10,"Write",22779,36456],[5,"Iter",33177,36459],[5,"IterMut",33177,36459],[5,"IntoIter",36063,36460],[5,"CharPredicateSearcher",34184,36391],[10,"Read",22779,36456],[10,"Unsize",24397,36337],[5,"BorrowedCursor",22779,36461],[5,"IoSliceMut",22779,36456],[6,"SeekFrom",22779,36456],[10,"Seek",22779,36456],[5,"IoSlice",22779,36456],[5,"Cell",18737,36462],[5,"RefCell",18737,36462],[5,"Ref",18737,36462],[5,"RefMut",18737,36462],[5,"OnceCell",18737,36463],[5,"LazyCell",18737,36464],[5,"UnsafeCell",18737,36462],[5,"SyncUnsafeCell",18737,36462],[5,"BorrowError",18737,36462],[5,"BorrowMutError",18737,36462],[5,"ToLowercase",18946,36465],[5,"ToUppercase",18946,36465],[5,"EscapeUnicode",18946,36465],[5,"EscapeDefault",18946,36465],[5,"ParseCharError",18946,36466],[5,"CharTryFromError",18946,36466],[5,"DecodeUtf16Error",18946,36401],[5,"EscapeDebug",18946,36465],[5,"TryFromCharError",18946,36465],[5,"Reverse",19161,36343],[5,"BinaryHeap",19241,36467],[5,"VecDeque",19241,36468],[5,"BTreeMap",19241,36469],[5,"BTreeSet",19241,36470],[5,"LinkedList",19241,36471],[5,"HashSet",19241,36472],[10,"Eq",19161,36343],[5,"HashMap",19241,36473],[5,"TryReserveError",19241,36474],[6,"TryReserveErrorKind",19241,36474],[5,"Cursor",20810,36471],[5,"CursorMut",20810,36471],[5,"Difference",20680,36472],[5,"Difference",20173,36470],[5,"Drain",20385,36473],[5,"Drain",19758,36467],[5,"Drain",20680,36472],[5,"Drain",20930,36475],[5,"DrainSorted",19758,36467],[6,"Entry",20385,36473],[6,"Entry",19858,36476],[5,"ExtractIf",20385,36473],[5,"ExtractIf",19858,36469],[5,"ExtractIf",20680,36472],[5,"ExtractIf",20173,36470],[5,"ExtractIf",20810,36471],[5,"OccupiedEntry",19858,36476],[5,"Intersection",20680,36472],[5,"Intersection",20173,36470],[5,"IterMut",20385,36473],[5,"Iter",20385,36473],[5,"IntoIter",20385,36473],[5,"Iter",19758,36467],[5,"IntoIter",19758,36467],[5,"Iter",19858,36469],[5,"IntoIter",19858,36469],[5,"IterMut",19858,36469],[5,"Iter",20680,36472],[5,"IntoIter",20680,36472],[5,"Iter",20173,36470],[5,"IntoIter",20173,36470],[5,"IterMut",20810,36471],[5,"Iter",20810,36471],[5,"IntoIter",20810,36471],[5,"IterMut",20930,36477],[5,"Iter",20930,36478],[5,"IntoIter",20930,36479],[5,"IntoIterSorted",19758,36467],[5,"IntoKeys",20385,36473],[5,"IntoKeys",19858,36469],[5,"IntoValues",20385,36473],[5,"IntoValues",19858,36469],[5,"Keys",20385,36473],[5,"Keys",19858,36469],[5,"Cursor",19858,36469],[5,"Cursor",20173,36470],[5,"CursorMut",19858,36469],[5,"CursorMut",20173,36470],[5,"PeekMut",19758,36467],[5,"Range",19858,36469],[5,"Range",20173,36470],[5,"RangeMut",19858,36469],[5,"RawEntryBuilder",20385,36473],[5,"RawEntryBuilderMut",20385,36473],[5,"SymmetricDifference",20680,36472],[5,"SymmetricDifference",20173,36470],[5,"OccupiedError",20385,36473],[5,"OccupiedError",19858,36476],[5,"Union",20680,36472],[5,"Union",20173,36470],[5,"Values",20385,36473],[5,"Values",19858,36469],[5,"ValuesMut",20385,36473],[5,"ValuesMut",19858,36469],[5,"CursorMutKey",19858,36469],[5,"VacantEntry",19858,36476],[5,"UnorderedKeyError",20173,36469],[5,"CursorMutKey",20173,36470],[6,"RawEntryMut",20385,36473],[5,"RawOccupiedEntryMut",20385,36473],[5,"RawVacantEntryMut",20385,36473],[5,"OccupiedEntry",20385,36473],[5,"VacantEntry",20385,36473],[5,"ExitCode",30704,36480],[5,"Args",21064,36481],[5,"ArgsOs",21064,36481],[6,"VarError",21064,36481],[5,"JoinPathsError",21064,36481],[5,"Vars",21064,36481],[5,"VarsOs",21064,36481],[5,"SplitPaths",21064,36481],[5,"Report",21185,36482],[5,"VaListImpl",21364,36483],[10,"VaArgSafe",36484],[5,"FromVecWithNulError",21364,36453],[5,"VaList",21364,36483],[5,"NulError",21364,36453],[5,"IntoStringError",21364,36453],[5,"FromBytesWithNulError",21364,36403],[5,"FromBytesUntilNulError",21364,36403],[5,"Display",21722,36451],[6,"c_void",21364,36485],[5,"RangeFull",28035,36386],[6,"Alignment",21735,36291],[5,"DebugList",21735,36384],[5,"DebugMap",21735,36384],[5,"DebugSet",21735,36384],[5,"DebugStruct",21735,36384],[5,"DebugTuple",21735,36384],[5,"Metadata",21924,36486],[5,"SystemTime",35888,36487],[5,"OpenOptions",21924,36486],[5,"File",21924,36486],[5,"stat",28698,36488],[5,"FileTimes",21924,36486],[5,"Permissions",21924,36486],[5,"FileType",21924,36486],[5,"DirBuilder",21924,36486],[5,"DirEntry",21924,36486],[5,"ReadDir",21924,36486],[5,"OwnedFd",28587,36454],[5,"RandomState",22240,36489],[5,"DefaultHasher",22240,36489],[5,"BuildHasherDefault",22240,36408],[5,"SipHasher",22240,36490],[5,"Stdin",22779,36491],[5,"StdinLock",22779,36491],[5,"Stdout",22779,36491],[5,"StdoutLock",22779,36491],[5,"Stderr",22779,36491],[5,"StderrLock",22779,36491],[5,"BufReader",22779,36492],[5,"BufWriter",22779,36493],[5,"Bytes",22779,36456],[5,"BorrowedBuf",22779,36461],[5,"Chain",22779,36456],[5,"Cursor",22779,36494],[6,"ErrorKind",22779,36458],[5,"Empty",22779,36495],[5,"Sink",22779,36495],[5,"Take",22779,36456],[5,"WriterPanicked",22779,36493],[5,"IntoInnerError",22779,36496],[5,"LineWriter",22779,36497],[5,"Repeat",22779,36495],[5,"Split",22779,36456],[5,"Lines",22779,36456],[10,"IsTerminal",22779,36491],[5,"ByRefSized",23492,36498],[5,"PhantomData",24397,36337],[5,"PhantomPinned",24397,36337],[5,"Assume",24454,36424],[5,"ManuallyDrop",24454,36499],[5,"TcpListener",24585,36500],[5,"TcpStream",24585,36500],[6,"SocketAddr",24585,36501],[5,"UdpSocket",24585,36502],[5,"Ipv4Addr",24585,36503],[5,"Ipv6Addr",24585,36503],[10,"ToSocketAddrs",24585,36504],[6,"Shutdown",24585,36505],[6,"IpAddr",24585,36503],[6,"Ipv6MulticastScope",24585,36503],[5,"AddrParseError",24585,36506],[5,"SocketAddrV4",24585,36501],[5,"SocketAddrV6",24585,36501],[5,"Duration",35888,36507],[5,"Incoming",24585,36500],[5,"IntoIncoming",24585,36500],[17,"Iter"],[5,"IntoIter",28453,36295],[5,"Saturating",25056,36508],[5,"Wrapping",25056,36509],[10,"ZeroablePrimitive",25056,36335],[5,"ParseFloatError",25056,36510],[5,"TryFromIntError",25056,36511],[5,"ParseIntError",25056,36511],[6,"IntErrorKind",25056,36511],[6,"FpCategory",25056,36512],[5,"Alignment",30959,36513],[5,"RangeToInclusive",28035,36386],[5,"Yeet",28035,36378],[5,"Iter",28453,36295],[5,"IterMut",28453,36295],[5,"ChildStderr",30704,36480],[5,"PidFd",28676,36514],[5,"ChildStdout",30704,36480],[5,"PipeWriter",29620,36515],[5,"ChildStdin",30704,36480],[5,"UnixDatagram",28823,36516],[5,"PipeReader",29620,36515],[5,"UnixStream",28823,36517],[5,"UnixListener",28823,36518],[10,"FromRawFd",28587,36455],[10,"IntoRawFd",28587,36455],[10,"MetadataExt",28647,36519],[10,"SocketAddrExt",28665,36520],[10,"TcpStreamExt",28665,36521],[5,"SocketAddr",28823,36522],[10,"UnixSocketExt",28665,36523],[10,"CommandExt",28676,36514],[5,"Command",30704,36480],[10,"ChildExt",28676,36514],[5,"ExitStatus",30704,36480],[10,"OsStrExt",29077,36524],[10,"OsStringExt",29077,36524],[10,"MetadataExt",29077,36525],[10,"OpenOptionsExt",29077,36525],[10,"DirEntryExt2",28765,36525],[10,"PermissionsExt",29077,36525],[10,"DirEntryExt",29077,36525],[10,"FileTypeExt",29077,36525],[10,"DirBuilderExt",28765,36525],[10,"FileExt",29077,36525],[5,"SocketAncillary",28823,36526],[5,"SocketCred",28823,36526],[5,"UCred",28823,36527],[6,"AncillaryError",28823,36526],[5,"Incoming",28823,36518],[5,"Messages",28823,36526],[5,"ScmRights",28823,36526],[5,"ScmCredentials",28823,36526],[10,"CommandExt",29077,36528],[10,"JoinHandleExt",29077,36529],[10,"ExitStatusExt",29077,36528],[5,"AssertUnwindSafe",29184,36530],[5,"PanicHookInfo",29184,36531],[10,"UnwindSafe",29184,36530],[6,"BacktraceStyle",29184,36531],[5,"Ancestors",29270,36452],[5,"PrefixComponent",29270,36452],[6,"Component",29270,36452],[5,"Components",29270,36452],[5,"Iter",29270,36452],[6,"Prefix",29270,36452],[5,"StripPrefixError",29270,36452],[5,"Display",29270,36452],[5,"Output",30704,36480],[5,"ExitStatusError",30704,36480],[5,"Child",30704,36480],[5,"Stdio",30704,36480],[5,"CommandArgs",30704,36480],[5,"CommandEnvs",30704,36532],[10,"Termination",30704,36480],[5,"DynMetadata",30959,36533],[5,"Weak",31111,36394],[5,"UniqueRc",31111,36394],[5,"Iter",31250,36289],[5,"IntoIter",31250,36289],[5,"IterMut",31250,36289],[5,"StreamResult",36534],[6,"MZStatus",36534],[6,"MZError",36534],[10,"StdFloat",31369,36535],[5,"Mask",36536],[5,"Split",33177,36459],[5,"SplitInclusive",33177,36459],[5,"RSplit",33177,36459],[5,"EscapeAscii",33177,36537],[5,"Windows",33177,36459],[5,"Chunks",33177,36459],[5,"ChunksExact",33177,36459],[5,"ArrayWindows",33177,36459],[5,"ArrayChunks",33177,36459],[5,"RChunks",33177,36459],[5,"RChunksExact",33177,36459],[5,"ChunksMut",33177,36459],[5,"ChunksExactMut",33177,36459],[5,"ArrayChunksMut",33177,36459],[5,"RChunksMut",33177,36459],[5,"RChunksExactMut",33177,36459],[5,"SplitMut",33177,36459],[5,"SplitInclusiveMut",33177,36459],[5,"RSplitMut",33177,36459],[5,"SplitN",33177,36459],[5,"RSplitN",33177,36459],[5,"SplitNMut",33177,36459],[5,"RSplitNMut",33177,36459],[5,"ChunkBy",33177,36459],[5,"ChunkByMut",33177,36459],[5,"Chars",33704,36538],[5,"Bytes",33704,36538],[5,"CharIndices",33704,36538],[5,"SplitInclusive",33704,36538],[5,"ParseBoolError",33704,36390],[5,"Split",33704,36538],[5,"RSplit",33704,36538],[5,"SplitTerminator",33704,36538],[5,"RSplitTerminator",33704,36538],[5,"SplitN",33704,36538],[5,"RSplitN",33704,36538],[5,"MatchIndices",33704,36538],[5,"RMatchIndices",33704,36538],[5,"Matches",33704,36538],[5,"RMatches",33704,36538],[5,"Lines",33704,36538],[5,"LinesAny",33704,36538],[5,"SplitWhitespace",33704,36538],[5,"SplitAsciiWhitespace",33704,36538],[5,"EncodeUtf16",33704,36538],[5,"EscapeDebug",33704,36538],[5,"EscapeDefault",33704,36538],[5,"EscapeUnicode",33704,36538],[5,"Utf8Chunk",33704,36539],[5,"Utf8Chunks",33704,36539],[5,"CharSearcher",34184,36391],[5,"CharArraySearcher",34184,36391],[5,"CharArrayRefSearcher",34184,36391],[5,"CharSliceSearcher",34184,36391],[5,"StrSearcher",34184,36391],[5,"FromUtf8Error",34335,36290],[5,"Drain",34335,36290],[5,"FromUtf16Error",34335,36290],[5,"Weak",34507,36393],[5,"Exclusive",34507,36540],[5,"Once",34507,36541],[5,"OnceState",34507,36541],[6,"TryLockError",34507,36542],[5,"Mutex",34507,36543],[5,"RwLock",34507,36544],[5,"OnceLock",34507,36545],[5,"WaitTimeoutResult",34507,36546],[5,"Condvar",34507,36546],[5,"LazyLock",34507,36547],[5,"ReentrantLock",34507,36548],[5,"ReentrantLockGuard",34507,36548],[5,"MutexGuard",34507,36543],[5,"MappedMutexGuard",34507,36543],[5,"RwLockReadGuard",34507,36544],[5,"RwLockWriteGuard",34507,36544],[5,"MappedRwLockReadGuard",34507,36544],[5,"MappedRwLockWriteGuard",34507,36544],[5,"PoisonError",34507,36542],[5,"Barrier",34507,36549],[5,"BarrierWaitResult",34507,36549],[5,"AtomicBool",35004,36397],[5,"AtomicPtr",35004,36397],[5,"AtomicI8",35004,36397],[5,"AtomicU8",35004,36397],[5,"AtomicI16",35004,36397],[5,"AtomicU16",35004,36397],[5,"AtomicI32",35004,36397],[5,"AtomicU32",35004,36397],[5,"AtomicI64",35004,36397],[5,"AtomicU64",35004,36397],[5,"AtomicIsize",35004,36397],[5,"AtomicUsize",35004,36397],[5,"Sender",35435,36550],[5,"Receiver",35435,36550],[5,"SyncSender",35435,36550],[5,"SendError",35435,36550],[5,"RecvError",35435,36550],[6,"TryRecvError",35435,36550],[6,"RecvTimeoutError",35435,36550],[6,"TrySendError",35435,36550],[5,"Iter",35435,36550],[5,"TryIter",35435,36550],[5,"IntoIter",35435,36550],[5,"Instant",35888,36487],[5,"Waker",35610,36368],[5,"RawWaker",35610,36368],[5,"LocalWaker",35610,36368],[5,"ContextBuilder",35610,36368],[5,"RawWakerVTable",35610,36368],[5,"JoinHandle",35754,36551],[5,"ThreadId",35754,36551],[5,"AccessError",35754,36552],[5,"Thread",35754,36551],[5,"Scope",35754,36553],[5,"ScopedJoinHandle",35754,36553],[5,"LocalKey",35754,36552],[5,"Builder",35754,36551],[5,"SystemTimeError",35888,36487],[5,"TryFromFloatSecsError",35888,36507],[5,"Drain",36063,36554],[5,"ExtractIf",36063,36555],[5,"Splice",36063,36556],[5,"UnsafeBufWriteGuard",36262,36557],[5,"ChunkedSlice",36262,36557],[15,"AllocError",591],[10,"DiscriminantKind",24397],[10,"Residual",28035],[10,"Pointee",30959],[10,"Swizzle",31369],[8,"Result",22779],[6,"AncillaryData",28823],[15,"Unknown",29075],[5,"LaneCount",31369],[8,"LockResult",34507],[8,"TryLockResult",34507],[8,"Result",35754]],"r":[[17,36558],[18,36558],[19,36558],[72,36297],[73,36293],[74,36294],[75,36296],[76,36298],[77,36306],[82,36307],[83,36300],[84,36305],[85,36301],[86,36302],[87,36303],[88,36304],[89,36308],[90,36309],[91,36308],[92,36309],[93,36308],[94,36309],[95,36308],[96,36309],[97,36308],[98,36309],[99,36308],[100,36309],[101,36308],[102,36309],[103,36308],[104,36309],[105,36308],[106,36309],[107,36308],[108,36309],[109,36308],[110,36309],[111,36308],[112,36309],[113,36308],[114,36309],[115,36308],[116,36309],[117,36299],[118,36299],[119,36310],[120,36311],[121,36310],[122,36311],[123,36310],[124,36311],[125,36310],[126,36311],[127,36310],[128,36311],[129,36310],[130,36311],[131,36310],[132,36311],[133,36310],[134,36311],[135,36310],[136,36311],[137,36310],[138,36311],[139,36310],[140,36311],[141,36310],[142,36311],[143,36310],[144,36311],[145,36310],[146,36311],[149,36316],[150,36314],[151,36315],[152,36317],[153,36318],[154,36313],[155,36320],[156,36319],[157,36321],[159,36322],[160,36324],[161,36323],[162,36326],[163,36325],[164,36328],[165,36327],[167,36332],[168,36329],[169,36330],[170,36331],[172,36312],[173,36333],[298,36340],[299,36340],[301,36344],[302,36344],[303,36345],[304,36291],[305,36559],[306,36291],[307,36334],[308,36350],[309,36343],[310,36343],[311,36560],[315,36360],[316,36342],[317,36338],[318,36338],[319,36338],[320,36340],[321,36342],[322,36359],[323,36340],[324,36358],[327,36342],[330,36336],[331,36561],[333,36560],[335,36295],[336,36343],[337,36343],[343,36343],[344,36343],[345,36343],[346,36343],[347,36337],[348,36337],[349,36289],[350,36337],[351,36337],[352,36561],[354,36290],[355,36337],[356,36345],[357,36290],[358,36340],[359,36340],[360,36337],[361,36288],[364,36423],[365,36423],[371,36562],[372,36562],[373,36562],[378,36562],[390,36562],[391,36562],[392,36562],[396,36563],[397,36562],[398,36562],[399,36562],[400,36423],[403,36563],[404,36563],[411,36562],[422,36423],[423,36564],[424,36562],[432,36340],[448,36562],[469,0],[478,36563],[479,36563],[482,36423],[487,0],[488,0],[489,0],[492,36423],[493,36423],[497,36562],[499,36423],[500,36423],[505,36409],[506,36423],[515,36562],[517,36564],[518,36564],[519,36423],[521,36554],[522,36555],[523,36460],[524,36556],[525,36288],[526,36564],[527,36564],[528,36564],[529,36564],[530,36564],[531,36564],[532,36564],[533,36564],[534,36564],[535,36564],[536,36564],[537,36564],[538,36564],[539,36564],[540,36564],[541,36382],[542,36382],[543,36446],[544,36381],[545,36380],[546,36380],[547,36380],[548,36446],[550,36446],[555,36446],[560,36446],[561,36446],[564,36346],[565,36346],[567,36345],[570,36345],[575,36388],[576,36457],[578,36469],[579,36470],[580,36467],[582,36471],[583,36474],[584,36474],[585,36468],[586,36474],[587,36474],[588,36474],[589,36474],[590,36474],[592,36467],[593,36467],[594,36467],[595,36467],[596,36467],[597,36467],[598,36467],[599,36469],[600,36469],[601,36469],[602,36469],[603,36476],[604,36469],[605,36469],[606,36469],[607,36469],[608,36469],[609,36469],[610,36469],[612,36476],[613,36476],[614,36469],[615,36469],[616,36469],[618,36476],[619,36469],[620,36469],[623,36470],[624,36470],[625,36470],[626,36470],[627,36470],[628,36470],[629,36470],[630,36470],[631,36470],[632,36470],[633,36470],[634,36470],[635,36469],[636,36471],[637,36471],[638,36471],[639,36471],[640,36471],[641,36471],[642,36471],[643,36475],[644,36479],[645,36478],[646,36477],[647,36468],[648,36453],[649,36453],[650,36453],[651,36453],[652,36565],[653,36453],[654,36453],[655,36453],[656,36453],[657,36291],[658,36291],[659,36291],[661,36291],[662,36559],[663,36384],[664,36384],[665,36384],[666,36384],[667,36384],[668,36291],[670,36291],[671,36291],[672,36384],[674,36291],[675,36291],[676,36291],[678,36291],[679,36291],[681,36291],[682,36291],[683,36291],[693,36566],[694,36384],[695,36291],[699,36394],[700,36394],[701,36394],[702,36459],[703,36459],[704,36459],[705,36459],[706,36459],[707,36459],[708,36459],[709,36459],[710,36459],[711,36385],[712,36537],[713,36459],[714,36459],[715,36385],[719,36459],[720,36459],[721,36459],[722,36459],[723,36459],[724,36459],[725,36459],[726,36459],[727,36387],[728,36459],[729,36459],[730,36459],[731,36459],[732,36459],[733,36459],[734,36459],[736,36567],[737,36567],[738,36567],[739,36567],[740,36567],[741,36567],[749,36387],[750,36387],[751,36538],[752,36538],[753,36538],[754,36538],[756,36538],[757,36538],[758,36538],[759,36389],[760,36538],[761,36538],[762,36538],[763,36538],[764,36390],[765,36538],[766,36538],[767,36538],[768,36538],[769,36538],[770,36538],[771,36538],[772,36538],[773,36538],[774,36538],[775,36538],[776,36539],[777,36539],[778,36390],[779,36568],[780,36569],[781,36569],[783,36569],[784,36569],[785,36569],[786,36569],[787,36570],[788,36391],[789,36391],[790,36391],[791,36391],[792,36391],[794,36391],[796,36391],[798,36391],[799,36391],[800,36391],[802,36391],[816,36290],[817,36290],[818,36290],[819,36290],[820,36290],[821,36290],[823,36393],[824,36393],[825,36392],[826,36392],[831,36554],[832,36555],[833,36460],[834,36556],[835,36288],[836,36562],[837,36562],[838,36562],[839,36562],[840,36562],[841,36562],[842,36562],[843,36562],[844,36562],[845,36562],[846,36562],[847,36562],[848,36562],[849,36562],[850,36571],[851,36562],[852,36562],[853,36562],[854,36562],[855,36562],[856,36562],[857,36562],[858,36562],[859,36562],[860,36562],[861,36562],[862,36562],[863,36562],[864,36562],[865,36562],[866,36562],[867,36562],[868,36562],[869,36562],[870,36562],[871,36562],[872,36562],[873,36562],[874,36562],[875,36562],[876,36562],[877,36562],[878,36562],[879,36562],[880,36562],[881,36562],[882,36562],[883,36562],[884,36562],[885,36562],[886,36562],[887,36562],[888,36562],[889,36562],[890,36562],[891,36562],[892,36562],[893,36562],[894,36562],[895,36562],[896,36562],[897,36562],[898,36562],[899,36562],[900,36562],[901,36562],[902,36562],[903,36562],[904,36562],[905,36562],[906,36562],[907,36562],[908,36562],[909,36562],[910,36562],[911,36562],[912,36562],[913,36562],[914,36562],[915,36562],[916,36562],[917,36562],[918,36562],[919,36562],[920,36562],[921,36562],[922,36562],[923,36562],[924,36562],[925,36562],[926,36562],[927,36562],[928,36562],[929,36562],[930,36562],[931,36562],[932,36562],[933,36562],[934,36562],[935,36382],[936,36382],[937,36381],[938,36380],[939,36380],[940,36380],[952,36292],[953,36292],[955,36292],[956,36292],[957,36572],[958,36572],[959,36573],[960,36396],[961,36574],[962,36574],[963,36574],[964,36574],[965,36574],[966,36574],[967,36574],[968,36574],[969,36574],[970,36574],[971,36574],[972,36574],[973,36574],[974,36574],[975,36574],[976,36574],[977,36574],[978,36574],[979,36574],[980,36574],[981,36574],[982,36574],[983,36574],[984,36574],[985,36574],[986,36574],[987,36574],[988,36574],[989,36574],[990,36574],[991,36574],[992,36574],[993,36395],[994,36575],[995,36575],[996,36575],[997,36575],[998,36575],[999,36575],[1000,36575],[1001,36575],[1002,36576],[1003,36576],[1004,36576],[1005,36576],[1006,36576],[1007,36576],[1008,36576],[1009,36576],[1010,36576],[1011,36576],[1012,36577],[1013,36577],[1014,36577],[1015,36577],[1016,36577],[1017,36577],[1018,36577],[1019,36577],[1020,36577],[1021,36577],[1022,36577],[1023,36577],[1024,36577],[1025,36576],[1026,36576],[1027,36576],[1028,36576],[1029,36576],[1030,36576],[1031,36576],[1032,36576],[1033,36576],[1034,36576],[1035,36395],[1036,36395],[1037,36575],[1038,36575],[1039,36575],[1040,36575],[1041,36575],[1042,36575],[1043,36575],[1044,36576],[1045,36576],[1046,36576],[1047,36576],[1048,36576],[1049,36576],[1050,36576],[1051,36575],[1052,36575],[1053,36575],[1054,36575],[1055,36575],[1056,36575],[1057,36575],[1058,36575],[1059,36575],[1060,36575],[1061,36575],[1062,36575],[1063,36575],[1064,36575],[1065,36575],[1066,36575],[1067,36575],[1068,36575],[1069,36575],[1070,36575],[1071,36575],[1072,36575],[1073,36575],[1074,36575],[1075,36575],[1076,36575],[1077,36575],[1078,36575],[1079,36575],[1080,36575],[1081,36575],[1082,36575],[1083,36575],[1084,36575],[1085,36575],[1086,36575],[1087,36575],[1088,36575],[1089,36575],[1090,36575],[1091,36575],[1092,36575],[1093,36575],[1094,36575],[1095,36575],[1096,36575],[1097,36575],[1098,36575],[1099,36575],[1100,36575],[1101,36575],[1102,36575],[1103,36575],[1104,36575],[1105,36575],[1106,36575],[1107,36575],[1108,36575],[1109,36575],[1110,36575],[1111,36575],[1112,36575],[1113,36575],[1114,36575],[1115,36575],[1116,36575],[1117,36575],[1118,36575],[1119,36575],[1120,36575],[1121,36575],[1122,36575],[1123,36575],[1124,36575],[1125,36575],[1126,36575],[1127,36575],[1128,36575],[1129,36575],[1130,36575],[1131,36575],[1132,36575],[1133,36575],[1134,36575],[1135,36575],[1136,36575],[1137,36575],[1138,36575],[1139,36575],[1140,36575],[1141,36575],[1142,36575],[1143,36575],[1144,36575],[1145,36575],[1146,36575],[1147,36575],[1148,36575],[1149,36575],[1150,36575],[1151,36575],[1152,36575],[1153,36575],[1154,36575],[1155,36575],[1156,36575],[1157,36575],[1158,36575],[1159,36575],[1160,36575],[1161,36575],[1162,36575],[1163,36575],[1164,36575],[1165,36575],[1166,36575],[1167,36575],[1168,36575],[1169,36575],[1170,36575],[1171,36575],[1172,36575],[1173,36575],[1174,36575],[1175,36575],[1176,36575],[1177,36575],[1178,36575],[1179,36575],[1180,36575],[1181,36575],[1182,36575],[1183,36575],[1184,36575],[1185,36575],[1186,36575],[1187,36575],[1188,36575],[1189,36575],[1190,36575],[1191,36575],[1192,36575],[1193,36575],[1194,36575],[1195,36575],[1196,36575],[1197,36575],[1198,36575],[1199,36575],[1200,36575],[1201,36575],[1202,36575],[1203,36575],[1204,36575],[1205,36575],[1206,36575],[1207,36575],[1208,36575],[1209,36575],[1210,36575],[1211,36575],[1212,36575],[1213,36575],[1214,36575],[1215,36575],[1216,36575],[1217,36575],[1218,36575],[1219,36575],[1220,36575],[1221,36575],[1222,36575],[1223,36575],[1224,36575],[1225,36575],[1226,36575],[1227,36575],[1228,36575],[1229,36575],[1230,36575],[1231,36575],[1232,36575],[1233,36575],[1234,36575],[1235,36575],[1236,36575],[1237,36575],[1238,36575],[1239,36575],[1240,36575],[1241,36575],[1242,36575],[1243,36575],[1244,36575],[1245,36575],[1246,36575],[1247,36575],[1248,36575],[1249,36575],[1250,36575],[1251,36575],[1252,36575],[1253,36575],[1254,36575],[1255,36575],[1256,36575],[1257,36575],[1258,36575],[1259,36575],[1260,36575],[1261,36575],[1262,36575],[1263,36575],[1264,36575],[1265,36575],[1266,36575],[1267,36575],[1268,36575],[1269,36575],[1270,36575],[1271,36575],[1272,36575],[1273,36575],[1274,36575],[1275,36575],[1276,36575],[1277,36575],[1278,36575],[1279,36575],[1280,36575],[1281,36575],[1282,36575],[1283,36575],[1284,36575],[1285,36575],[1286,36575],[1287,36575],[1288,36575],[1289,36575],[1290,36575],[1291,36575],[1292,36575],[1293,36575],[1294,36575],[1295,36575],[1296,36575],[1297,36575],[1298,36575],[1299,36575],[1300,36575],[1301,36575],[1302,36575],[1303,36575],[1304,36575],[1305,36575],[1306,36575],[1307,36395],[1308,36576],[1309,36576],[1310,36576],[1311,36576],[1312,36576],[1313,36576],[1314,36576],[1315,36576],[1316,36576],[1317,36576],[1318,36576],[1319,36578],[1320,36578],[1321,36578],[1322,36578],[1323,36578],[1324,36578],[1325,36578],[1326,36578],[1327,36578],[1328,36578],[1329,36578],[1330,36578],[1331,36578],[1332,36578],[1333,36578],[1334,36578],[1335,36579],[1336,36579],[1337,36579],[1338,36579],[1339,36579],[1340,36579],[1341,36579],[1342,36580],[1343,36396],[1344,36396],[1345,36396],[1346,36395],[1347,36395],[1348,36395],[1349,36395],[1350,36395],[1351,36395],[1352,36395],[1353,36395],[1354,36395],[1355,36395],[1356,36395],[1357,36395],[1358,36395],[1359,36395],[1360,36395],[1361,36395],[1362,36395],[1363,36395],[1364,36395],[1365,36581],[1366,36582],[1367,36583],[1368,36582],[1369,36583],[1370,36584],[1371,36585],[1372,36584],[1373,36585],[1374,36584],[1375,36585],[1376,36586],[1377,36587],[1378,36588],[1379,36589],[1380,36588],[1381,36589],[1382,36588],[1383,36589],[1384,36588],[1385,36589],[1386,36586],[1387,36587],[1388,36586],[1389,36587],[1390,36586],[1391,36587],[1392,36586],[1393,36587],[1394,36586],[1395,36587],[1396,36586],[1397,36587],[1398,36584],[1399,36585],[1400,36586],[1401,36587],[1402,36584],[1403,36585],[1404,36584],[1405,36585],[1406,36590],[1407,36591],[1408,36592],[1409,36593],[1410,36575],[1411,36594],[1412,36595],[1413,36596],[1414,36575],[1415,36594],[1416,36596],[1417,36595],[1418,36597],[1419,36598],[1420,36597],[1421,36598],[1422,36596],[1423,36594],[1424,36594],[1425,36596],[1426,36575],[1427,36594],[1428,36594],[1429,36596],[1430,36575],[1431,36594],[1432,36594],[1433,36596],[1434,36575],[1435,36594],[1436,36594],[1437,36596],[1438,36575],[1439,36594],[1440,36594],[1441,36596],[1442,36575],[1443,36594],[1444,36594],[1445,36596],[1446,36575],[1447,36594],[1448,36594],[1449,36596],[1450,36575],[1451,36594],[1452,36594],[1453,36596],[1454,36575],[1455,36594],[1456,36594],[1457,36596],[1458,36575],[1459,36594],[1460,36594],[1461,36596],[1462,36596],[1463,36594],[1464,36594],[1465,36596],[1466,36596],[1467,36594],[1468,36594],[1469,36596],[1470,36596],[1471,36594],[1472,36594],[1473,36596],[1474,36575],[1475,36594],[1476,36594],[1477,36596],[1478,36575],[1479,36594],[1480,36594],[1481,36596],[1482,36575],[1483,36594],[1484,36594],[1485,36596],[1486,36599],[1487,36600],[1488,36601],[1489,36601],[1490,36575],[1491,36601],[1492,36602],[1493,36601],[1494,36601],[1495,36601],[1496,36601],[1497,36574],[1498,36602],[1499,36574],[1500,36601],[1501,36601],[1502,36601],[1503,36601],[1504,36574],[1505,36574],[1506,36603],[1507,36603],[1508,36603],[1509,36603],[1510,36575],[1511,36575],[1512,36601],[1513,36574],[1514,36574],[1515,36601],[1516,36574],[1517,36574],[1518,36601],[1519,36601],[1520,36601],[1521,36604],[1522,36604],[1523,36605],[1524,36601],[1525,36601],[1526,36574],[1527,36574],[1528,36601],[1529,36574],[1530,36574],[1531,36596],[1532,36575],[1533,36596],[1534,36596],[1535,36575],[1536,36596],[1537,36574],[1538,36574],[1539,36574],[1540,36574],[1541,36601],[1542,36601],[1543,36606],[1544,36606],[1545,36601],[1546,36601],[1547,36601],[1548,36601],[1549,36601],[1550,36601],[1551,36601],[1552,36574],[1553,36574],[1554,36602],[1555,36574],[1556,36574],[1557,36602],[1558,36602],[1559,36602],[1560,36602],[1561,36602],[1562,36574],[1563,36574],[1564,36574],[1565,36602],[1566,36574],[1567,36574],[1568,36574],[1569,36602],[1570,36574],[1571,36574],[1572,36574],[1573,36574],[1574,36607],[1575,36594],[1576,36575],[1577,36575],[1578,36594],[1579,36594],[1580,36575],[1581,36575],[1582,36594],[1583,36574],[1584,36575],[1585,36602],[1586,36574],[1587,36575],[1588,36601],[1589,36594],[1590,36601],[1591,36575],[1592,36601],[1593,36575],[1594,36601],[1595,36594],[1596,36594],[1597,36575],[1598,36575],[1599,36594],[1600,36594],[1601,36575],[1602,36575],[1603,36594],[1604,36594],[1605,36575],[1606,36575],[1607,36594],[1608,36601],[1609,36594],[1610,36601],[1611,36575],[1612,36601],[1613,36575],[1614,36601],[1615,36594],[1616,36594],[1617,36575],[1618,36575],[1619,36594],[1620,36594],[1621,36575],[1622,36575],[1623,36594],[1624,36594],[1625,36575],[1626,36575],[1627,36594],[1628,36594],[1629,36575],[1630,36575],[1631,36594],[1632,36594],[1633,36575],[1634,36575],[1635,36594],[1636,36594],[1637,36575],[1638,36575],[1639,36594],[1640,36594],[1641,36575],[1642,36575],[1643,36594],[1644,36602],[1645,36606],[1646,36606],[1647,36602],[1648,36601],[1649,36601],[1650,36594],[1651,36602],[1652,36575],[1653,36601],[1654,36575],[1655,36574],[1656,36602],[1657,36574],[1658,36575],[1659,36575],[1660,36575],[1661,36596],[1662,36602],[1663,36596],[1664,36601],[1665,36601],[1666,36601],[1667,36601],[1668,36601],[1669,36602],[1670,36601],[1671,36575],[1672,36602],[1673,36596],[1674,36602],[1675,36596],[1676,36601],[1677,36601],[1678,36601],[1679,36608],[1680,36604],[1681,36604],[1682,36604],[1683,36604],[1684,36604],[1685,36608],[1686,36608],[1687,36574],[1688,36596],[1689,36575],[1690,36596],[1691,36602],[1692,36574],[1693,36602],[1694,36602],[1695,36602],[1696,36602],[1697,36602],[1698,36602],[1699,36602],[1700,36609],[1701,36574],[1702,36596],[1703,36575],[1704,36596],[1705,36574],[1706,36609],[1707,36574],[1708,36594],[1709,36575],[1710,36575],[1711,36575],[1712,36575],[1713,36575],[1714,36602],[1715,36574],[1716,36574],[1717,36574],[1718,36596],[1719,36575],[1720,36596],[1721,36602],[1722,36602],[1723,36602],[1724,36602],[1725,36602],[1726,36602],[1727,36574],[1728,36596],[1729,36575],[1730,36596],[1731,36594],[1732,36575],[1733,36575],[1734,36575],[1735,36575],[1736,36575],[1737,36602],[1738,36602],[1739,36594],[1740,36574],[1741,36602],[1742,36574],[1743,36574],[1744,36608],[1745,36610],[1746,36610],[1747,36610],[1748,36610],[1749,36610],[1750,36610],[1751,36610],[1752,36610],[1753,36610],[1754,36610],[1755,36610],[1756,36610],[1757,36610],[1758,36610],[1759,36610],[1760,36610],[1761,36610],[1762,36610],[1763,36610],[1764,36610],[1765,36601],[1766,36574],[1767,36611],[1768,36601],[1769,36574],[1770,36574],[1771,36574],[1772,36575],[1773,36596],[1774,36601],[1775,36575],[1776,36596],[1777,36602],[1778,36602],[1779,36575],[1780,36575],[1781,36574],[1782,36574],[1783,36602],[1784,36612],[1785,36602],[1786,36612],[1787,36612],[1788,36602],[1789,36612],[1790,36612],[1791,36602],[1792,36612],[1793,36612],[1794,36602],[1795,36612],[1796,36602],[1797,36612],[1798,36602],[1799,36612],[1800,36612],[1801,36602],[1802,36612],[1803,36596],[1804,36602],[1805,36596],[1806,36575],[1807,36602],[1808,36575],[1809,36575],[1810,36602],[1811,36575],[1812,36613],[1813,36613],[1814,36613],[1815,36601],[1816,36601],[1817,36574],[1818,36574],[1819,36601],[1820,36601],[1821,36601],[1822,36574],[1823,36574],[1824,36601],[1825,36601],[1826,36601],[1827,36601],[1828,36601],[1829,36575],[1830,36575],[1831,36575],[1832,36575],[1833,36601],[1834,36601],[1835,36601],[1836,36601],[1837,36575],[1838,36575],[1839,36575],[1840,36575],[1841,36574],[1842,36574],[1843,36611],[1844,36574],[1845,36574],[1846,36574],[1847,36574],[1848,36575],[1849,36596],[1850,36601],[1851,36575],[1852,36596],[1853,36574],[1854,36575],[1855,36575],[1856,36574],[1857,36602],[1858,36574],[1859,36574],[1860,36574],[1861,36574],[1862,36574],[1863,36594],[1864,36575],[1865,36575],[1866,36594],[1867,36574],[1868,36602],[1869,36574],[1870,36574],[1871,36606],[1872,36606],[1873,36614],[1874,36614],[1875,36614],[1876,36614],[1877,36601],[1878,36601],[1879,36594],[1880,36575],[1881,36575],[1882,36615],[1883,36575],[1884,36575],[1885,36602],[1886,36602],[1887,36575],[1888,36602],[1889,36575],[1890,36575],[1891,36602],[1892,36575],[1893,36575],[1894,36602],[1895,36575],[1896,36575],[1897,36602],[1898,36575],[1899,36575],[1900,36602],[1901,36575],[1902,36575],[1903,36602],[1904,36575],[1905,36594],[1906,36575],[1907,36575],[1908,36594],[1909,36594],[1910,36575],[1911,36575],[1912,36594],[1913,36575],[1914,36602],[1915,36575],[1916,36594],[1917,36594],[1918,36594],[1919,36594],[1920,36575],[1921,36575],[1922,36594],[1923,36575],[1924,36575],[1925,36596],[1926,36596],[1927,36575],[1928,36575],[1929,36596],[1930,36596],[1931,36594],[1932,36594],[1933,36605],[1934,36594],[1935,36575],[1936,36575],[1937,36594],[1938,36575],[1939,36602],[1940,36575],[1941,36596],[1942,36575],[1943,36596],[1944,36596],[1945,36575],[1946,36596],[1947,36594],[1948,36575],[1949,36575],[1950,36575],[1951,36575],[1952,36594],[1953,36594],[1954,36575],[1955,36575],[1956,36594],[1957,36594],[1958,36575],[1959,36575],[1960,36594],[1961,36575],[1962,36602],[1963,36575],[1964,36594],[1965,36575],[1966,36575],[1967,36594],[1968,36594],[1969,36575],[1970,36575],[1971,36594],[1972,36594],[1973,36575],[1974,36575],[1975,36594],[1976,36594],[1977,36575],[1978,36575],[1979,36594],[1980,36594],[1981,36575],[1982,36575],[1983,36594],[1984,36594],[1985,36575],[1986,36575],[1987,36594],[1988,36594],[1989,36575],[1990,36575],[1991,36594],[1992,36594],[1993,36575],[1994,36575],[1995,36594],[1996,36594],[1997,36575],[1998,36575],[1999,36594],[2000,36594],[2001,36575],[2002,36575],[2003,36594],[2004,36594],[2005,36575],[2006,36575],[2007,36594],[2008,36594],[2009,36575],[2010,36575],[2011,36594],[2012,36602],[2013,36616],[2014,36575],[2015,36575],[2016,36616],[2017,36575],[2018,36575],[2019,36616],[2020,36575],[2021,36575],[2022,36616],[2023,36575],[2024,36575],[2025,36606],[2026,36606],[2027,36602],[2028,36575],[2029,36575],[2030,36575],[2031,36594],[2032,36602],[2033,36594],[2034,36575],[2035,36575],[2036,36575],[2037,36575],[2038,36602],[2039,36575],[2040,36575],[2041,36575],[2042,36575],[2043,36575],[2044,36575],[2045,36596],[2046,36602],[2047,36596],[2048,36575],[2049,36575],[2050,36575],[2051,36594],[2052,36575],[2053,36575],[2054,36575],[2055,36575],[2056,36602],[2057,36575],[2058,36575],[2059,36602],[2060,36596],[2061,36602],[2062,36596],[2063,36594],[2064,36575],[2065,36575],[2066,36608],[2067,36608],[2068,36608],[2069,36575],[2070,36596],[2071,36575],[2072,36596],[2073,36602],[2074,36575],[2075,36602],[2076,36602],[2077,36602],[2078,36602],[2079,36602],[2080,36602],[2081,36602],[2082,36575],[2083,36575],[2084,36596],[2085,36575],[2086,36596],[2087,36575],[2088,36594],[2089,36594],[2090,36575],[2091,36575],[2092,36575],[2093,36575],[2094,36575],[2095,36575],[2096,36575],[2097,36575],[2098,36575],[2099,36575],[2100,36575],[2101,36596],[2102,36575],[2103,36596],[2104,36602],[2105,36602],[2106,36602],[2107,36602],[2108,36602],[2109,36602],[2110,36575],[2111,36596],[2112,36575],[2113,36596],[2114,36594],[2115,36594],[2116,36575],[2117,36575],[2118,36575],[2119,36575],[2120,36575],[2121,36575],[2122,36575],[2123,36575],[2124,36575],[2125,36575],[2126,36602],[2127,36602],[2128,36594],[2129,36575],[2130,36602],[2131,36575],[2132,36608],[2133,36610],[2134,36610],[2135,36610],[2136,36610],[2137,36616],[2138,36575],[2139,36575],[2140,36616],[2141,36575],[2142,36575],[2143,36616],[2144,36575],[2145,36575],[2146,36616],[2147,36575],[2148,36575],[2149,36575],[2150,36596],[2151,36575],[2152,36596],[2153,36602],[2154,36602],[2155,36575],[2156,36575],[2157,36602],[2158,36575],[2159,36602],[2160,36575],[2161,36575],[2162,36602],[2163,36575],[2164,36575],[2165,36602],[2166,36575],[2167,36575],[2168,36602],[2169,36575],[2170,36602],[2171,36575],[2172,36602],[2173,36575],[2174,36575],[2175,36602],[2176,36575],[2177,36596],[2178,36602],[2179,36596],[2180,36575],[2181,36602],[2182,36575],[2183,36575],[2184,36602],[2185,36575],[2186,36613],[2187,36613],[2188,36613],[2189,36601],[2190,36601],[2191,36601],[2192,36601],[2193,36575],[2194,36575],[2195,36575],[2196,36575],[2197,36601],[2198,36601],[2199,36601],[2200,36601],[2201,36575],[2202,36575],[2203,36575],[2204,36575],[2205,36575],[2206,36596],[2207,36575],[2208,36596],[2209,36575],[2210,36575],[2211,36575],[2212,36575],[2213,36594],[2214,36575],[2215,36575],[2216,36594],[2217,36575],[2218,36575],[2219,36606],[2220,36606],[2221,36614],[2222,36614],[2223,36594],[2224,36594],[2225,36594],[2226,36575],[2227,36575],[2228,36594],[2229,36594],[2230,36575],[2231,36575],[2232,36594],[2233,36575],[2234,36602],[2235,36575],[2236,36594],[2237,36575],[2238,36575],[2239,36594],[2240,36594],[2241,36575],[2242,36575],[2243,36594],[2244,36575],[2245,36602],[2246,36575],[2247,36594],[2248,36575],[2249,36575],[2250,36594],[2251,36575],[2252,36575],[2253,36575],[2254,36575],[2255,36575],[2256,36575],[2257,36575],[2258,36602],[2259,36575],[2260,36602],[2261,36575],[2262,36594],[2263,36594],[2264,36594],[2265,36594],[2266,36575],[2267,36596],[2268,36615],[2269,36575],[2270,36575],[2271,36596],[2272,36596],[2273,36594],[2274,36594],[2275,36594],[2276,36594],[2277,36575],[2278,36575],[2279,36575],[2280,36575],[2281,36594],[2282,36575],[2283,36575],[2284,36615],[2285,36575],[2286,36575],[2287,36575],[2288,36575],[2289,36594],[2290,36575],[2291,36575],[2292,36615],[2293,36575],[2294,36575],[2295,36605],[2296,36617],[2297,36617],[2298,36605],[2299,36596],[2300,36596],[2301,36575],[2302,36575],[2303,36602],[2304,36594],[2305,36594],[2306,36594],[2307,36594],[2308,36594],[2309,36594],[2310,36594],[2311,36594],[2312,36594],[2313,36594],[2314,36594],[2315,36594],[2316,36594],[2317,36594],[2318,36594],[2319,36594],[2320,36596],[2321,36602],[2322,36596],[2323,36575],[2324,36575],[2325,36575],[2326,36575],[2327,36575],[2328,36575],[2329,36575],[2330,36575],[2331,36575],[2332,36602],[2333,36575],[2334,36575],[2335,36575],[2336,36602],[2337,36575],[2338,36602],[2339,36575],[2340,36594],[2341,36575],[2342,36575],[2343,36594],[2344,36616],[2345,36616],[2346,36616],[2347,36616],[2348,36616],[2349,36616],[2350,36616],[2351,36616],[2352,36616],[2353,36616],[2354,36616],[2355,36616],[2356,36575],[2357,36594],[2358,36575],[2359,36575],[2360,36575],[2361,36575],[2362,36575],[2363,36575],[2364,36594],[2365,36594],[2366,36594],[2367,36575],[2368,36575],[2369,36594],[2370,36575],[2371,36575],[2372,36594],[2373,36575],[2374,36575],[2375,36575],[2376,36602],[2377,36575],[2378,36594],[2379,36575],[2380,36575],[2381,36594],[2382,36575],[2383,36575],[2384,36594],[2385,36575],[2386,36575],[2387,36594],[2388,36575],[2389,36575],[2390,36594],[2391,36575],[2392,36575],[2393,36594],[2394,36575],[2395,36575],[2396,36575],[2397,36575],[2398,36575],[2399,36575],[2400,36594],[2401,36575],[2402,36575],[2403,36594],[2404,36575],[2405,36575],[2406,36594],[2407,36575],[2408,36575],[2409,36594],[2410,36575],[2411,36602],[2412,36575],[2413,36594],[2414,36594],[2415,36594],[2416,36594],[2417,36575],[2418,36575],[2419,36594],[2420,36575],[2421,36575],[2422,36594],[2423,36594],[2424,36575],[2425,36575],[2426,36594],[2427,36594],[2428,36575],[2429,36575],[2430,36594],[2431,36575],[2432,36575],[2433,36594],[2434,36575],[2435,36575],[2436,36594],[2437,36575],[2438,36575],[2439,36575],[2440,36575],[2441,36596],[2442,36596],[2443,36601],[2444,36601],[2445,36574],[2446,36574],[2447,36601],[2448,36601],[2449,36574],[2450,36574],[2451,36594],[2452,36575],[2453,36575],[2454,36594],[2455,36594],[2456,36575],[2457,36575],[2458,36594],[2459,36575],[2460,36602],[2461,36575],[2462,36594],[2463,36594],[2464,36594],[2465,36594],[2466,36575],[2467,36575],[2468,36594],[2469,36575],[2470,36575],[2471,36596],[2472,36596],[2473,36575],[2474,36575],[2475,36596],[2476,36596],[2477,36594],[2478,36594],[2479,36596],[2480,36575],[2481,36596],[2482,36596],[2483,36575],[2484,36596],[2485,36594],[2486,36575],[2487,36575],[2488,36575],[2489,36575],[2490,36594],[2491,36602],[2492,36616],[2493,36575],[2494,36575],[2495,36616],[2496,36575],[2497,36575],[2498,36606],[2499,36606],[2500,36602],[2501,36575],[2502,36575],[2503,36575],[2504,36594],[2505,36602],[2506,36575],[2507,36575],[2508,36575],[2509,36575],[2510,36602],[2511,36575],[2512,36575],[2513,36575],[2514,36575],[2515,36596],[2516,36602],[2517,36596],[2518,36594],[2519,36575],[2520,36575],[2521,36575],[2522,36575],[2523,36602],[2524,36575],[2525,36575],[2526,36602],[2527,36596],[2528,36602],[2529,36596],[2530,36594],[2531,36575],[2532,36575],[2533,36608],[2534,36608],[2535,36608],[2536,36575],[2537,36596],[2538,36575],[2539,36596],[2540,36602],[2541,36575],[2542,36602],[2543,36602],[2544,36602],[2545,36602],[2546,36602],[2547,36602],[2548,36602],[2549,36575],[2550,36575],[2551,36596],[2552,36575],[2553,36596],[2554,36575],[2555,36594],[2556,36575],[2557,36575],[2558,36575],[2559,36575],[2560,36575],[2561,36575],[2562,36596],[2563,36575],[2564,36596],[2565,36602],[2566,36602],[2567,36602],[2568,36602],[2569,36602],[2570,36602],[2571,36575],[2572,36596],[2573,36575],[2574,36596],[2575,36594],[2576,36575],[2577,36575],[2578,36575],[2579,36575],[2580,36575],[2581,36602],[2582,36602],[2583,36594],[2584,36575],[2585,36602],[2586,36575],[2587,36608],[2588,36610],[2589,36610],[2590,36610],[2591,36610],[2592,36616],[2593,36575],[2594,36575],[2595,36616],[2596,36575],[2597,36575],[2598,36616],[2599,36575],[2600,36575],[2601,36616],[2602,36575],[2603,36575],[2604,36575],[2605,36596],[2606,36575],[2607,36596],[2608,36602],[2609,36602],[2610,36575],[2611,36575],[2612,36602],[2613,36575],[2614,36602],[2615,36575],[2616,36575],[2617,36602],[2618,36575],[2619,36575],[2620,36602],[2621,36575],[2622,36575],[2623,36602],[2624,36575],[2625,36602],[2626,36575],[2627,36602],[2628,36575],[2629,36575],[2630,36602],[2631,36575],[2632,36575],[2633,36602],[2634,36575],[2635,36575],[2636,36602],[2637,36575],[2638,36613],[2639,36613],[2640,36613],[2641,36575],[2642,36596],[2643,36575],[2644,36596],[2645,36575],[2646,36575],[2647,36575],[2648,36575],[2649,36594],[2650,36575],[2651,36575],[2652,36594],[2653,36575],[2654,36575],[2655,36606],[2656,36606],[2657,36614],[2658,36614],[2659,36594],[2660,36594],[2661,36594],[2662,36575],[2663,36575],[2664,36594],[2665,36594],[2666,36575],[2667,36575],[2668,36594],[2669,36575],[2670,36602],[2671,36575],[2672,36594],[2673,36575],[2674,36575],[2675,36594],[2676,36594],[2677,36575],[2678,36575],[2679,36594],[2680,36575],[2681,36602],[2682,36575],[2683,36594],[2684,36575],[2685,36575],[2686,36594],[2687,36575],[2688,36575],[2689,36575],[2690,36575],[2691,36575],[2692,36575],[2693,36575],[2694,36602],[2695,36575],[2696,36602],[2697,36575],[2698,36594],[2699,36594],[2700,36594],[2701,36594],[2702,36575],[2703,36596],[2704,36615],[2705,36575],[2706,36575],[2707,36596],[2708,36596],[2709,36594],[2710,36594],[2711,36594],[2712,36594],[2713,36575],[2714,36575],[2715,36575],[2716,36575],[2717,36594],[2718,36575],[2719,36575],[2720,36615],[2721,36575],[2722,36575],[2723,36575],[2724,36575],[2725,36594],[2726,36575],[2727,36575],[2728,36615],[2729,36575],[2730,36575],[2731,36605],[2732,36617],[2733,36617],[2734,36605],[2735,36596],[2736,36596],[2737,36575],[2738,36575],[2739,36602],[2740,36596],[2741,36602],[2742,36596],[2743,36575],[2744,36575],[2745,36575],[2746,36575],[2747,36575],[2748,36575],[2749,36575],[2750,36575],[2751,36575],[2752,36602],[2753,36575],[2754,36575],[2755,36575],[2756,36602],[2757,36575],[2758,36602],[2759,36575],[2760,36594],[2761,36575],[2762,36575],[2763,36594],[2764,36616],[2765,36616],[2766,36616],[2767,36616],[2768,36616],[2769,36616],[2770,36616],[2771,36616],[2772,36616],[2773,36616],[2774,36616],[2775,36616],[2776,36575],[2777,36594],[2778,36575],[2779,36575],[2780,36575],[2781,36575],[2782,36575],[2783,36575],[2784,36594],[2785,36594],[2786,36594],[2787,36575],[2788,36575],[2789,36594],[2790,36575],[2791,36575],[2792,36594],[2793,36575],[2794,36575],[2795,36575],[2796,36602],[2797,36575],[2798,36594],[2799,36575],[2800,36575],[2801,36594],[2802,36575],[2803,36575],[2804,36594],[2805,36575],[2806,36575],[2807,36594],[2808,36575],[2809,36575],[2810,36594],[2811,36575],[2812,36575],[2813,36594],[2814,36575],[2815,36575],[2816,36594],[2817,36575],[2818,36575],[2819,36594],[2820,36575],[2821,36602],[2822,36575],[2823,36594],[2824,36594],[2825,36594],[2826,36594],[2827,36575],[2828,36575],[2829,36594],[2830,36575],[2831,36575],[2832,36594],[2833,36575],[2834,36575],[2835,36594],[2836,36575],[2837,36575],[2838,36594],[2839,36575],[2840,36575],[2841,36575],[2842,36575],[2843,36596],[2844,36596],[2845,36601],[2846,36601],[2847,36575],[2848,36601],[2849,36601],[2850,36601],[2851,36575],[2852,36601],[2853,36574],[2854,36602],[2855,36574],[2856,36601],[2857,36601],[2858,36575],[2859,36601],[2860,36601],[2861,36601],[2862,36575],[2863,36601],[2864,36574],[2865,36602],[2866,36574],[2867,36575],[2868,36575],[2869,36575],[2870,36575],[2871,36575],[2872,36575],[2873,36575],[2874,36575],[2875,36574],[2876,36574],[2877,36574],[2878,36601],[2879,36574],[2880,36574],[2881,36594],[2882,36596],[2883,36596],[2884,36594],[2885,36594],[2886,36596],[2887,36596],[2888,36594],[2889,36601],[2890,36601],[2891,36601],[2892,36602],[2893,36574],[2894,36602],[2895,36574],[2896,36601],[2897,36601],[2898,36601],[2899,36601],[2900,36601],[2901,36596],[2902,36615],[2903,36575],[2904,36575],[2905,36574],[2906,36574],[2907,36601],[2908,36601],[2909,36601],[2910,36601],[2911,36601],[2912,36574],[2913,36574],[2914,36574],[2915,36601],[2916,36601],[2917,36601],[2918,36574],[2919,36574],[2920,36601],[2921,36601],[2922,36574],[2923,36574],[2924,36594],[2925,36575],[2926,36575],[2927,36615],[2928,36575],[2929,36602],[2930,36575],[2931,36575],[2932,36575],[2933,36594],[2934,36575],[2935,36575],[2936,36615],[2937,36575],[2938,36602],[2939,36575],[2940,36605],[2941,36617],[2942,36617],[2943,36605],[2944,36596],[2945,36596],[2946,36575],[2947,36575],[2948,36602],[2949,36574],[2950,36594],[2951,36594],[2952,36602],[2953,36594],[2954,36594],[2955,36594],[2956,36594],[2957,36594],[2958,36594],[2959,36602],[2960,36594],[2961,36594],[2962,36594],[2963,36594],[2964,36602],[2965,36594],[2966,36594],[2967,36602],[2968,36594],[2969,36594],[2970,36596],[2971,36602],[2972,36596],[2973,36575],[2974,36575],[2975,36575],[2976,36575],[2977,36575],[2978,36575],[2979,36575],[2980,36575],[2981,36574],[2982,36574],[2983,36575],[2984,36602],[2985,36575],[2986,36575],[2987,36575],[2988,36602],[2989,36574],[2990,36601],[2991,36575],[2992,36602],[2993,36575],[2994,36574],[2995,36574],[2996,36574],[2997,36574],[2998,36574],[2999,36602],[3000,36574],[3001,36574],[3002,36574],[3003,36574],[3004,36574],[3005,36574],[3006,36574],[3007,36574],[3008,36574],[3009,36602],[3010,36574],[3011,36574],[3012,36574],[3013,36574],[3014,36574],[3015,36574],[3016,36574],[3017,36574],[3018,36574],[3019,36602],[3020,36574],[3021,36574],[3022,36602],[3023,36574],[3024,36574],[3025,36616],[3026,36616],[3027,36616],[3028,36616],[3029,36616],[3030,36616],[3031,36616],[3032,36616],[3033,36616],[3034,36616],[3035,36616],[3036,36616],[3037,36601],[3038,36601],[3039,36575],[3040,36575],[3041,36575],[3042,36575],[3043,36574],[3044,36574],[3045,36601],[3046,36601],[3047,36601],[3048,36601],[3049,36601],[3050,36601],[3051,36601],[3052,36601],[3053,36601],[3054,36601],[3055,36601],[3056,36601],[3057,36594],[3058,36601],[3059,36601],[3060,36574],[3061,36602],[3062,36574],[3063,36601],[3064,36601],[3065,36575],[3066,36601],[3067,36601],[3068,36575],[3069,36594],[3070,36601],[3071,36575],[3072,36601],[3073,36601],[3074,36601],[3075,36601],[3076,36601],[3077,36601],[3078,36601],[3079,36594],[3080,36601],[3081,36601],[3082,36575],[3083,36575],[3084,36574],[3085,36602],[3086,36574],[3087,36574],[3088,36574],[3089,36574],[3090,36574],[3091,36594],[3092,36575],[3093,36575],[3094,36594],[3095,36574],[3096,36602],[3097,36574],[3098,36574],[3099,36601],[3100,36574],[3101,36574],[3102,36574],[3103,36601],[3104,36601],[3105,36601],[3106,36601],[3107,36574],[3108,36602],[3109,36574],[3110,36601],[3111,36601],[3112,36601],[3113,36601],[3114,36575],[3115,36575],[3116,36594],[3117,36575],[3118,36575],[3119,36594],[3120,36574],[3121,36574],[3122,36574],[3123,36594],[3124,36575],[3125,36575],[3126,36594],[3127,36574],[3128,36574],[3129,36574],[3130,36574],[3131,36574],[3132,36574],[3133,36574],[3134,36602],[3135,36574],[3136,36574],[3137,36601],[3138,36601],[3139,36601],[3140,36601],[3141,36574],[3142,36574],[3143,36601],[3144,36601],[3145,36601],[3146,36601],[3147,36574],[3148,36574],[3149,36575],[3150,36575],[3151,36574],[3152,36574],[3153,36601],[3154,36574],[3155,36574],[3156,36574],[3157,36602],[3158,36574],[3159,36574],[3160,36594],[3161,36575],[3162,36575],[3163,36594],[3164,36575],[3165,36602],[3166,36575],[3167,36594],[3168,36575],[3169,36575],[3170,36594],[3171,36575],[3172,36602],[3173,36575],[3174,36575],[3175,36602],[3176,36575],[3177,36594],[3178,36594],[3179,36594],[3180,36594],[3181,36603],[3182,36603],[3183,36603],[3184,36603],[3185,36575],[3186,36575],[3187,36594],[3188,36575],[3189,36575],[3190,36596],[3191,36596],[3192,36575],[3193,36575],[3194,36575],[3195,36596],[3196,36596],[3197,36575],[3198,36594],[3199,36594],[3200,36605],[3201,36596],[3202,36575],[3203,36596],[3204,36596],[3205,36575],[3206,36596],[3207,36575],[3208,36596],[3209,36596],[3210,36575],[3211,36594],[3212,36575],[3213,36606],[3214,36606],[3215,36575],[3216,36575],[3217,36575],[3218,36594],[3219,36594],[3220,36594],[3221,36575],[3222,36575],[3223,36575],[3224,36575],[3225,36602],[3226,36575],[3227,36575],[3228,36602],[3229,36602],[3230,36602],[3231,36602],[3232,36602],[3233,36602],[3234,36602],[3235,36575],[3236,36575],[3237,36575],[3238,36575],[3239,36575],[3240,36602],[3241,36575],[3242,36575],[3243,36575],[3244,36575],[3245,36602],[3246,36575],[3247,36575],[3248,36575],[3249,36607],[3250,36594],[3251,36575],[3252,36575],[3253,36594],[3254,36594],[3255,36575],[3256,36575],[3257,36594],[3258,36575],[3259,36602],[3260,36575],[3261,36575],[3262,36602],[3263,36575],[3264,36594],[3265,36575],[3266,36575],[3267,36594],[3268,36594],[3269,36575],[3270,36575],[3271,36594],[3272,36575],[3273,36575],[3274,36594],[3275,36575],[3276,36575],[3277,36594],[3278,36594],[3279,36575],[3280,36575],[3281,36594],[3282,36594],[3283,36575],[3284,36575],[3285,36594],[3286,36594],[3287,36575],[3288,36575],[3289,36594],[3290,36594],[3291,36575],[3292,36575],[3293,36594],[3294,36594],[3295,36575],[3296,36575],[3297,36594],[3298,36575],[3299,36575],[3300,36594],[3301,36575],[3302,36575],[3303,36594],[3304,36594],[3305,36575],[3306,36575],[3307,36594],[3308,36575],[3309,36575],[3310,36594],[3311,36575],[3312,36575],[3313,36594],[3314,36594],[3315,36575],[3316,36575],[3317,36594],[3318,36575],[3319,36575],[3320,36575],[3321,36575],[3322,36575],[3323,36575],[3324,36575],[3325,36575],[3326,36575],[3327,36575],[3328,36602],[3329,36602],[3330,36606],[3331,36606],[3332,36602],[3333,36602],[3334,36602],[3335,36575],[3336,36596],[3337,36602],[3338,36596],[3339,36602],[3340,36602],[3341,36575],[3342,36596],[3343,36602],[3344,36596],[3345,36575],[3346,36596],[3347,36575],[3348,36596],[3349,36602],[3350,36575],[3351,36602],[3352,36602],[3353,36602],[3354,36602],[3355,36602],[3356,36602],[3357,36602],[3358,36575],[3359,36575],[3360,36596],[3361,36575],[3362,36596],[3363,36575],[3364,36575],[3365,36575],[3366,36575],[3367,36594],[3368,36602],[3369,36575],[3370,36575],[3371,36575],[3372,36575],[3373,36602],[3374,36575],[3375,36575],[3376,36575],[3377,36575],[3378,36575],[3379,36596],[3380,36602],[3381,36596],[3382,36594],[3383,36575],[3384,36575],[3385,36575],[3386,36575],[3387,36602],[3388,36575],[3389,36575],[3390,36602],[3391,36575],[3392,36575],[3393,36596],[3394,36602],[3395,36596],[3396,36594],[3397,36575],[3398,36575],[3399,36608],[3400,36608],[3401,36608],[3402,36575],[3403,36596],[3404,36575],[3405,36596],[3406,36602],[3407,36575],[3408,36575],[3409,36602],[3410,36602],[3411,36602],[3412,36602],[3413,36602],[3414,36602],[3415,36602],[3416,36575],[3417,36575],[3418,36596],[3419,36575],[3420,36596],[3421,36575],[3422,36575],[3423,36575],[3424,36575],[3425,36594],[3426,36575],[3427,36575],[3428,36575],[3429,36575],[3430,36575],[3431,36602],[3432,36575],[3433,36575],[3434,36575],[3435,36596],[3436,36575],[3437,36596],[3438,36602],[3439,36602],[3440,36602],[3441,36602],[3442,36602],[3443,36602],[3444,36575],[3445,36596],[3446,36575],[3447,36596],[3448,36575],[3449,36596],[3450,36575],[3451,36596],[3452,36602],[3453,36602],[3454,36602],[3455,36602],[3456,36602],[3457,36602],[3458,36575],[3459,36596],[3460,36575],[3461,36596],[3462,36594],[3463,36575],[3464,36575],[3465,36575],[3466,36575],[3467,36575],[3468,36602],[3469,36602],[3470,36602],[3471,36602],[3472,36594],[3473,36575],[3474,36602],[3475,36575],[3476,36575],[3477,36602],[3478,36575],[3479,36608],[3480,36610],[3481,36610],[3482,36610],[3483,36610],[3484,36575],[3485,36596],[3486,36596],[3487,36575],[3488,36575],[3489,36596],[3490,36596],[3491,36575],[3492,36602],[3493,36602],[3494,36602],[3495,36602],[3496,36575],[3497,36575],[3498,36575],[3499,36575],[3500,36602],[3501,36575],[3502,36602],[3503,36575],[3504,36602],[3505,36575],[3506,36602],[3507,36575],[3508,36575],[3509,36602],[3510,36575],[3511,36575],[3512,36602],[3513,36575],[3514,36575],[3515,36602],[3516,36575],[3517,36575],[3518,36602],[3519,36575],[3520,36575],[3521,36602],[3522,36575],[3523,36575],[3524,36602],[3525,36575],[3526,36602],[3527,36602],[3528,36575],[3529,36602],[3530,36575],[3531,36575],[3532,36602],[3533,36575],[3534,36575],[3535,36602],[3536,36575],[3537,36575],[3538,36602],[3539,36575],[3540,36596],[3541,36602],[3542,36596],[3543,36575],[3544,36602],[3545,36575],[3546,36575],[3547,36602],[3548,36575],[3549,36575],[3550,36602],[3551,36575],[3552,36575],[3553,36602],[3554,36575],[3555,36613],[3556,36613],[3557,36613],[3558,36575],[3559,36575],[3560,36575],[3561,36575],[3562,36575],[3563,36575],[3564,36575],[3565,36575],[3566,36575],[3567,36575],[3568,36575],[3569,36575],[3570,36575],[3571,36575],[3572,36575],[3573,36575],[3574,36575],[3575,36575],[3576,36575],[3577,36575],[3578,36575],[3579,36596],[3580,36596],[3581,36575],[3582,36575],[3583,36596],[3584,36596],[3585,36575],[3586,36575],[3587,36575],[3588,36575],[3589,36575],[3590,36575],[3591,36575],[3592,36575],[3593,36575],[3594,36575],[3595,36594],[3596,36594],[3597,36575],[3598,36575],[3599,36575],[3600,36575],[3601,36575],[3602,36602],[3603,36575],[3604,36575],[3605,36594],[3606,36575],[3607,36575],[3608,36594],[3609,36575],[3610,36602],[3611,36575],[3612,36575],[3613,36606],[3614,36606],[3615,36614],[3616,36614],[3617,36594],[3618,36594],[3619,36594],[3620,36575],[3621,36575],[3622,36615],[3623,36575],[3624,36575],[3625,36575],[3626,36602],[3627,36602],[3628,36602],[3629,36575],[3630,36602],[3631,36575],[3632,36602],[3633,36575],[3634,36602],[3635,36575],[3636,36575],[3637,36602],[3638,36575],[3639,36575],[3640,36602],[3641,36575],[3642,36575],[3643,36602],[3644,36575],[3645,36575],[3646,36602],[3647,36575],[3648,36575],[3649,36602],[3650,36575],[3651,36575],[3652,36602],[3653,36575],[3654,36575],[3655,36602],[3656,36575],[3657,36575],[3658,36602],[3659,36575],[3660,36575],[3661,36602],[3662,36575],[3663,36575],[3664,36602],[3665,36575],[3666,36594],[3667,36575],[3668,36575],[3669,36594],[3670,36575],[3671,36575],[3672,36594],[3673,36575],[3674,36575],[3675,36594],[3676,36575],[3677,36602],[3678,36575],[3679,36575],[3680,36602],[3681,36575],[3682,36594],[3683,36594],[3684,36594],[3685,36594],[3686,36575],[3687,36575],[3688,36594],[3689,36575],[3690,36575],[3691,36596],[3692,36596],[3693,36575],[3694,36575],[3695,36596],[3696,36596],[3697,36594],[3698,36594],[3699,36605],[3700,36594],[3701,36575],[3702,36575],[3703,36594],[3704,36575],[3705,36602],[3706,36575],[3707,36596],[3708,36575],[3709,36596],[3710,36596],[3711,36575],[3712,36596],[3713,36575],[3714,36596],[3715,36596],[3716,36575],[3717,36594],[3718,36575],[3719,36575],[3720,36575],[3721,36575],[3722,36594],[3723,36594],[3724,36575],[3725,36575],[3726,36594],[3727,36594],[3728,36575],[3729,36575],[3730,36594],[3731,36575],[3732,36602],[3733,36575],[3734,36575],[3735,36602],[3736,36575],[3737,36594],[3738,36575],[3739,36575],[3740,36594],[3741,36594],[3742,36575],[3743,36575],[3744,36594],[3745,36575],[3746,36575],[3747,36594],[3748,36575],[3749,36575],[3750,36594],[3751,36594],[3752,36575],[3753,36575],[3754,36594],[3755,36594],[3756,36575],[3757,36575],[3758,36594],[3759,36594],[3760,36575],[3761,36575],[3762,36594],[3763,36594],[3764,36575],[3765,36575],[3766,36594],[3767,36594],[3768,36575],[3769,36575],[3770,36594],[3771,36575],[3772,36575],[3773,36594],[3774,36575],[3775,36575],[3776,36594],[3777,36594],[3778,36575],[3779,36575],[3780,36594],[3781,36575],[3782,36575],[3783,36594],[3784,36575],[3785,36575],[3786,36594],[3787,36594],[3788,36575],[3789,36575],[3790,36594],[3791,36575],[3792,36575],[3793,36575],[3794,36575],[3795,36575],[3796,36575],[3797,36575],[3798,36575],[3799,36575],[3800,36575],[3801,36602],[3802,36602],[3803,36616],[3804,36575],[3805,36575],[3806,36616],[3807,36575],[3808,36575],[3809,36616],[3810,36575],[3811,36575],[3812,36616],[3813,36575],[3814,36575],[3815,36606],[3816,36606],[3817,36602],[3818,36602],[3819,36602],[3820,36575],[3821,36596],[3822,36602],[3823,36596],[3824,36602],[3825,36602],[3826,36575],[3827,36596],[3828,36602],[3829,36596],[3830,36575],[3831,36596],[3832,36575],[3833,36596],[3834,36602],[3835,36575],[3836,36602],[3837,36602],[3838,36602],[3839,36602],[3840,36602],[3841,36602],[3842,36602],[3843,36575],[3844,36575],[3845,36596],[3846,36575],[3847,36596],[3848,36575],[3849,36575],[3850,36575],[3851,36575],[3852,36594],[3853,36602],[3854,36594],[3855,36575],[3856,36575],[3857,36575],[3858,36575],[3859,36602],[3860,36575],[3861,36575],[3862,36575],[3863,36575],[3864,36575],[3865,36575],[3866,36575],[3867,36596],[3868,36602],[3869,36596],[3870,36575],[3871,36575],[3872,36575],[3873,36594],[3874,36575],[3875,36575],[3876,36575],[3877,36575],[3878,36602],[3879,36575],[3880,36575],[3881,36602],[3882,36575],[3883,36575],[3884,36596],[3885,36602],[3886,36596],[3887,36594],[3888,36575],[3889,36575],[3890,36608],[3891,36608],[3892,36608],[3893,36575],[3894,36596],[3895,36575],[3896,36596],[3897,36602],[3898,36575],[3899,36575],[3900,36602],[3901,36602],[3902,36602],[3903,36602],[3904,36602],[3905,36602],[3906,36602],[3907,36575],[3908,36575],[3909,36596],[3910,36575],[3911,36596],[3912,36575],[3913,36575],[3914,36575],[3915,36594],[3916,36594],[3917,36575],[3918,36575],[3919,36575],[3920,36575],[3921,36575],[3922,36575],[3923,36575],[3924,36575],[3925,36575],[3926,36575],[3927,36575],[3928,36596],[3929,36575],[3930,36596],[3931,36602],[3932,36602],[3933,36602],[3934,36602],[3935,36602],[3936,36602],[3937,36575],[3938,36596],[3939,36575],[3940,36596],[3941,36575],[3942,36596],[3943,36575],[3944,36596],[3945,36602],[3946,36602],[3947,36602],[3948,36602],[3949,36602],[3950,36602],[3951,36575],[3952,36596],[3953,36575],[3954,36596],[3955,36594],[3956,36594],[3957,36575],[3958,36575],[3959,36575],[3960,36575],[3961,36575],[3962,36575],[3963,36575],[3964,36575],[3965,36575],[3966,36575],[3967,36602],[3968,36602],[3969,36602],[3970,36602],[3971,36594],[3972,36575],[3973,36602],[3974,36575],[3975,36575],[3976,36602],[3977,36575],[3978,36608],[3979,36610],[3980,36610],[3981,36610],[3982,36610],[3983,36616],[3984,36575],[3985,36575],[3986,36616],[3987,36575],[3988,36575],[3989,36616],[3990,36575],[3991,36575],[3992,36616],[3993,36575],[3994,36575],[3995,36575],[3996,36596],[3997,36596],[3998,36575],[3999,36575],[4000,36596],[4001,36596],[4002,36575],[4003,36602],[4004,36602],[4005,36602],[4006,36602],[4007,36575],[4008,36575],[4009,36575],[4010,36575],[4011,36602],[4012,36575],[4013,36602],[4014,36575],[4015,36602],[4016,36575],[4017,36602],[4018,36575],[4019,36575],[4020,36602],[4021,36575],[4022,36575],[4023,36602],[4024,36575],[4025,36575],[4026,36602],[4027,36575],[4028,36575],[4029,36602],[4030,36575],[4031,36575],[4032,36602],[4033,36575],[4034,36575],[4035,36602],[4036,36575],[4037,36602],[4038,36602],[4039,36575],[4040,36602],[4041,36575],[4042,36575],[4043,36602],[4044,36575],[4045,36575],[4046,36602],[4047,36575],[4048,36575],[4049,36602],[4050,36575],[4051,36596],[4052,36602],[4053,36596],[4054,36575],[4055,36602],[4056,36575],[4057,36575],[4058,36602],[4059,36575],[4060,36575],[4061,36602],[4062,36575],[4063,36575],[4064,36602],[4065,36575],[4066,36613],[4067,36613],[4068,36613],[4069,36575],[4070,36575],[4071,36575],[4072,36575],[4073,36575],[4074,36575],[4075,36575],[4076,36575],[4077,36575],[4078,36575],[4079,36575],[4080,36575],[4081,36575],[4082,36575],[4083,36575],[4084,36575],[4085,36575],[4086,36575],[4087,36575],[4088,36575],[4089,36575],[4090,36596],[4091,36596],[4092,36575],[4093,36575],[4094,36596],[4095,36596],[4096,36575],[4097,36575],[4098,36575],[4099,36575],[4100,36575],[4101,36594],[4102,36575],[4103,36575],[4104,36594],[4105,36575],[4106,36575],[4107,36606],[4108,36606],[4109,36614],[4110,36614],[4111,36594],[4112,36594],[4113,36594],[4114,36575],[4115,36575],[4116,36594],[4117,36594],[4118,36575],[4119,36575],[4120,36594],[4121,36575],[4122,36602],[4123,36575],[4124,36575],[4125,36602],[4126,36575],[4127,36594],[4128,36575],[4129,36575],[4130,36594],[4131,36594],[4132,36575],[4133,36575],[4134,36594],[4135,36575],[4136,36602],[4137,36575],[4138,36575],[4139,36602],[4140,36575],[4141,36594],[4142,36575],[4143,36575],[4144,36594],[4145,36575],[4146,36575],[4147,36575],[4148,36575],[4149,36575],[4150,36575],[4151,36575],[4152,36602],[4153,36575],[4154,36602],[4155,36575],[4156,36602],[4157,36575],[4158,36602],[4159,36575],[4160,36594],[4161,36594],[4162,36594],[4163,36594],[4164,36575],[4165,36596],[4166,36575],[4167,36615],[4168,36575],[4169,36575],[4170,36596],[4171,36596],[4172,36594],[4173,36594],[4174,36594],[4175,36594],[4176,36575],[4177,36575],[4178,36575],[4179,36575],[4180,36575],[4181,36594],[4182,36575],[4183,36575],[4184,36615],[4185,36575],[4186,36575],[4187,36575],[4188,36575],[4189,36594],[4190,36575],[4191,36575],[4192,36615],[4193,36575],[4194,36575],[4195,36605],[4196,36617],[4197,36617],[4198,36605],[4199,36596],[4200,36596],[4201,36596],[4202,36596],[4203,36575],[4204,36575],[4205,36602],[4206,36575],[4207,36575],[4208,36575],[4209,36575],[4210,36575],[4211,36575],[4212,36575],[4213,36575],[4214,36575],[4215,36575],[4216,36575],[4217,36575],[4218,36575],[4219,36575],[4220,36575],[4221,36575],[4222,36575],[4223,36575],[4224,36575],[4225,36575],[4226,36575],[4227,36575],[4228,36575],[4229,36575],[4230,36596],[4231,36602],[4232,36596],[4233,36596],[4234,36602],[4235,36596],[4236,36575],[4237,36575],[4238,36575],[4239,36575],[4240,36575],[4241,36575],[4242,36575],[4243,36575],[4244,36575],[4245,36602],[4246,36575],[4247,36575],[4248,36602],[4249,36575],[4250,36575],[4251,36575],[4252,36602],[4253,36575],[4254,36602],[4255,36575],[4256,36575],[4257,36602],[4258,36575],[4259,36594],[4260,36575],[4261,36575],[4262,36594],[4263,36616],[4264,36616],[4265,36616],[4266,36616],[4267,36616],[4268,36616],[4269,36616],[4270,36616],[4271,36616],[4272,36616],[4273,36616],[4274,36616],[4275,36575],[4276,36594],[4277,36575],[4278,36575],[4279,36575],[4280,36575],[4281,36575],[4282,36575],[4283,36594],[4284,36594],[4285,36594],[4286,36575],[4287,36575],[4288,36594],[4289,36575],[4290,36575],[4291,36594],[4292,36575],[4293,36575],[4294,36575],[4295,36602],[4296,36575],[4297,36575],[4298,36602],[4299,36575],[4300,36594],[4301,36575],[4302,36575],[4303,36594],[4304,36575],[4305,36575],[4306,36594],[4307,36575],[4308,36575],[4309,36594],[4310,36575],[4311,36575],[4312,36594],[4313,36575],[4314,36575],[4315,36594],[4316,36575],[4317,36575],[4318,36575],[4319,36575],[4320,36575],[4321,36575],[4322,36594],[4323,36575],[4324,36575],[4325,36594],[4326,36575],[4327,36575],[4328,36594],[4329,36575],[4330,36575],[4331,36594],[4332,36575],[4333,36602],[4334,36575],[4335,36575],[4336,36602],[4337,36575],[4338,36594],[4339,36594],[4340,36594],[4341,36594],[4342,36575],[4343,36575],[4344,36594],[4345,36575],[4346,36575],[4347,36594],[4348,36594],[4349,36575],[4350,36575],[4351,36594],[4352,36594],[4353,36575],[4354,36575],[4355,36594],[4356,36575],[4357,36575],[4358,36594],[4359,36575],[4360,36575],[4361,36594],[4362,36575],[4363,36575],[4364,36575],[4365,36575],[4366,36596],[4367,36596],[4368,36594],[4369,36575],[4370,36575],[4371,36594],[4372,36594],[4373,36575],[4374,36575],[4375,36594],[4376,36575],[4377,36602],[4378,36575],[4379,36575],[4380,36602],[4381,36575],[4382,36594],[4383,36594],[4384,36594],[4385,36594],[4386,36575],[4387,36575],[4388,36594],[4389,36575],[4390,36575],[4391,36596],[4392,36596],[4393,36575],[4394,36575],[4395,36596],[4396,36596],[4397,36594],[4398,36594],[4399,36596],[4400,36575],[4401,36596],[4402,36596],[4403,36575],[4404,36596],[4405,36575],[4406,36596],[4407,36596],[4408,36575],[4409,36594],[4410,36575],[4411,36575],[4412,36575],[4413,36575],[4414,36594],[4415,36602],[4416,36602],[4417,36616],[4418,36575],[4419,36575],[4420,36616],[4421,36575],[4422,36575],[4423,36606],[4424,36606],[4425,36602],[4426,36602],[4427,36602],[4428,36575],[4429,36596],[4430,36602],[4431,36596],[4432,36602],[4433,36602],[4434,36575],[4435,36596],[4436,36602],[4437,36596],[4438,36575],[4439,36596],[4440,36575],[4441,36596],[4442,36602],[4443,36575],[4444,36602],[4445,36602],[4446,36602],[4447,36602],[4448,36602],[4449,36602],[4450,36602],[4451,36575],[4452,36575],[4453,36596],[4454,36575],[4455,36596],[4456,36575],[4457,36575],[4458,36575],[4459,36575],[4460,36594],[4461,36602],[4462,36575],[4463,36575],[4464,36575],[4465,36575],[4466,36602],[4467,36575],[4468,36575],[4469,36575],[4470,36575],[4471,36596],[4472,36602],[4473,36596],[4474,36594],[4475,36575],[4476,36575],[4477,36575],[4478,36575],[4479,36602],[4480,36575],[4481,36575],[4482,36602],[4483,36575],[4484,36596],[4485,36602],[4486,36596],[4487,36594],[4488,36575],[4489,36575],[4490,36608],[4491,36608],[4492,36608],[4493,36575],[4494,36596],[4495,36575],[4496,36596],[4497,36602],[4498,36575],[4499,36602],[4500,36602],[4501,36602],[4502,36602],[4503,36602],[4504,36602],[4505,36602],[4506,36575],[4507,36575],[4508,36596],[4509,36575],[4510,36596],[4511,36575],[4512,36575],[4513,36594],[4514,36575],[4515,36575],[4516,36575],[4517,36575],[4518,36575],[4519,36575],[4520,36596],[4521,36575],[4522,36596],[4523,36602],[4524,36602],[4525,36602],[4526,36602],[4527,36602],[4528,36602],[4529,36575],[4530,36596],[4531,36575],[4532,36596],[4533,36575],[4534,36596],[4535,36575],[4536,36596],[4537,36602],[4538,36602],[4539,36602],[4540,36602],[4541,36602],[4542,36602],[4543,36575],[4544,36596],[4545,36575],[4546,36596],[4547,36594],[4548,36575],[4549,36575],[4550,36575],[4551,36575],[4552,36575],[4553,36602],[4554,36602],[4555,36602],[4556,36602],[4557,36594],[4558,36575],[4559,36602],[4560,36575],[4561,36575],[4562,36602],[4563,36575],[4564,36608],[4565,36610],[4566,36610],[4567,36610],[4568,36610],[4569,36616],[4570,36575],[4571,36575],[4572,36616],[4573,36575],[4574,36575],[4575,36616],[4576,36575],[4577,36575],[4578,36616],[4579,36575],[4580,36575],[4581,36575],[4582,36596],[4583,36596],[4584,36575],[4585,36575],[4586,36596],[4587,36596],[4588,36575],[4589,36602],[4590,36602],[4591,36602],[4592,36602],[4593,36575],[4594,36575],[4595,36575],[4596,36575],[4597,36602],[4598,36575],[4599,36602],[4600,36575],[4601,36602],[4602,36575],[4603,36602],[4604,36575],[4605,36575],[4606,36602],[4607,36575],[4608,36575],[4609,36602],[4610,36575],[4611,36575],[4612,36602],[4613,36575],[4614,36575],[4615,36602],[4616,36575],[4617,36575],[4618,36602],[4619,36575],[4620,36575],[4621,36602],[4622,36575],[4623,36602],[4624,36602],[4625,36575],[4626,36602],[4627,36575],[4628,36575],[4629,36602],[4630,36575],[4631,36575],[4632,36602],[4633,36575],[4634,36575],[4635,36602],[4636,36575],[4637,36575],[4638,36602],[4639,36575],[4640,36575],[4641,36602],[4642,36575],[4643,36575],[4644,36602],[4645,36575],[4646,36575],[4647,36602],[4648,36575],[4649,36613],[4650,36613],[4651,36613],[4652,36575],[4653,36596],[4654,36596],[4655,36575],[4656,36575],[4657,36596],[4658,36596],[4659,36575],[4660,36575],[4661,36575],[4662,36575],[4663,36575],[4664,36594],[4665,36575],[4666,36575],[4667,36594],[4668,36575],[4669,36575],[4670,36606],[4671,36606],[4672,36614],[4673,36614],[4674,36594],[4675,36594],[4676,36594],[4677,36575],[4678,36575],[4679,36594],[4680,36594],[4681,36575],[4682,36575],[4683,36594],[4684,36575],[4685,36602],[4686,36575],[4687,36575],[4688,36602],[4689,36575],[4690,36594],[4691,36575],[4692,36575],[4693,36594],[4694,36594],[4695,36575],[4696,36575],[4697,36594],[4698,36575],[4699,36602],[4700,36575],[4701,36575],[4702,36602],[4703,36575],[4704,36594],[4705,36575],[4706,36575],[4707,36594],[4708,36575],[4709,36575],[4710,36575],[4711,36575],[4712,36575],[4713,36575],[4714,36575],[4715,36602],[4716,36575],[4717,36602],[4718,36575],[4719,36602],[4720,36575],[4721,36602],[4722,36575],[4723,36594],[4724,36594],[4725,36594],[4726,36594],[4727,36575],[4728,36596],[4729,36615],[4730,36575],[4731,36575],[4732,36596],[4733,36596],[4734,36594],[4735,36594],[4736,36594],[4737,36594],[4738,36575],[4739,36575],[4740,36575],[4741,36575],[4742,36594],[4743,36575],[4744,36575],[4745,36615],[4746,36575],[4747,36575],[4748,36575],[4749,36575],[4750,36594],[4751,36575],[4752,36575],[4753,36615],[4754,36575],[4755,36575],[4756,36605],[4757,36617],[4758,36617],[4759,36605],[4760,36596],[4761,36596],[4762,36596],[4763,36596],[4764,36575],[4765,36575],[4766,36602],[4767,36596],[4768,36602],[4769,36596],[4770,36596],[4771,36602],[4772,36596],[4773,36575],[4774,36575],[4775,36575],[4776,36575],[4777,36575],[4778,36575],[4779,36575],[4780,36575],[4781,36575],[4782,36602],[4783,36575],[4784,36575],[4785,36602],[4786,36575],[4787,36575],[4788,36575],[4789,36602],[4790,36575],[4791,36602],[4792,36575],[4793,36575],[4794,36602],[4795,36575],[4796,36594],[4797,36575],[4798,36575],[4799,36594],[4800,36616],[4801,36616],[4802,36616],[4803,36616],[4804,36616],[4805,36616],[4806,36616],[4807,36616],[4808,36616],[4809,36616],[4810,36616],[4811,36616],[4812,36575],[4813,36594],[4814,36575],[4815,36575],[4816,36575],[4817,36575],[4818,36575],[4819,36575],[4820,36594],[4821,36594],[4822,36594],[4823,36575],[4824,36575],[4825,36594],[4826,36575],[4827,36575],[4828,36594],[4829,36575],[4830,36575],[4831,36575],[4832,36602],[4833,36575],[4834,36575],[4835,36602],[4836,36575],[4837,36594],[4838,36575],[4839,36575],[4840,36594],[4841,36575],[4842,36575],[4843,36594],[4844,36575],[4845,36575],[4846,36594],[4847,36575],[4848,36575],[4849,36594],[4850,36575],[4851,36575],[4852,36594],[4853,36575],[4854,36575],[4855,36594],[4856,36575],[4857,36575],[4858,36594],[4859,36575],[4860,36602],[4861,36575],[4862,36575],[4863,36602],[4864,36575],[4865,36594],[4866,36594],[4867,36594],[4868,36594],[4869,36575],[4870,36575],[4871,36594],[4872,36575],[4873,36575],[4874,36594],[4875,36575],[4876,36575],[4877,36594],[4878,36575],[4879,36575],[4880,36594],[4881,36575],[4882,36575],[4883,36575],[4884,36575],[4885,36596],[4886,36596],[4887,36594],[4888,36575],[4889,36575],[4890,36594],[4891,36594],[4892,36575],[4893,36575],[4894,36594],[4895,36575],[4896,36602],[4897,36575],[4898,36575],[4899,36602],[4900,36575],[4901,36594],[4902,36575],[4903,36575],[4904,36594],[4905,36594],[4906,36575],[4907,36575],[4908,36594],[4909,36575],[4910,36602],[4911,36575],[4912,36575],[4913,36602],[4914,36575],[4915,36575],[4916,36575],[4917,36575],[4918,36594],[4919,36596],[4920,36596],[4921,36594],[4922,36594],[4923,36596],[4924,36596],[4925,36594],[4926,36575],[4927,36575],[4928,36602],[4929,36575],[4930,36602],[4931,36575],[4932,36602],[4933,36575],[4934,36602],[4935,36575],[4936,36594],[4937,36594],[4938,36594],[4939,36594],[4940,36575],[4941,36596],[4942,36575],[4943,36615],[4944,36575],[4945,36575],[4946,36596],[4947,36596],[4948,36575],[4949,36594],[4950,36594],[4951,36594],[4952,36594],[4953,36575],[4954,36575],[4955,36575],[4956,36575],[4957,36575],[4958,36594],[4959,36575],[4960,36575],[4961,36615],[4962,36575],[4963,36602],[4964,36575],[4965,36575],[4966,36575],[4967,36594],[4968,36575],[4969,36575],[4970,36615],[4971,36575],[4972,36602],[4973,36575],[4974,36605],[4975,36617],[4976,36617],[4977,36605],[4978,36596],[4979,36596],[4980,36596],[4981,36596],[4982,36575],[4983,36575],[4984,36602],[4985,36575],[4986,36575],[4987,36575],[4988,36602],[4989,36575],[4990,36575],[4991,36575],[4992,36575],[4993,36575],[4994,36575],[4995,36575],[4996,36575],[4997,36602],[4998,36575],[4999,36575],[5000,36575],[5001,36575],[5002,36575],[5003,36575],[5004,36602],[5005,36575],[5006,36575],[5007,36575],[5008,36575],[5009,36602],[5010,36575],[5011,36575],[5012,36575],[5013,36596],[5014,36602],[5015,36596],[5016,36596],[5017,36602],[5018,36596],[5019,36575],[5020,36575],[5021,36575],[5022,36575],[5023,36575],[5024,36575],[5025,36575],[5026,36575],[5027,36575],[5028,36602],[5029,36575],[5030,36575],[5031,36602],[5032,36575],[5033,36575],[5034,36575],[5035,36602],[5036,36594],[5037,36575],[5038,36602],[5039,36575],[5040,36575],[5041,36602],[5042,36575],[5043,36575],[5044,36575],[5045,36575],[5046,36575],[5047,36575],[5048,36602],[5049,36575],[5050,36575],[5051,36575],[5052,36575],[5053,36575],[5054,36575],[5055,36575],[5056,36575],[5057,36575],[5058,36575],[5059,36602],[5060,36575],[5061,36575],[5062,36575],[5063,36575],[5064,36575],[5065,36575],[5066,36575],[5067,36575],[5068,36602],[5069,36575],[5070,36575],[5071,36575],[5072,36575],[5073,36602],[5074,36575],[5075,36575],[5076,36616],[5077,36616],[5078,36616],[5079,36616],[5080,36616],[5081,36616],[5082,36616],[5083,36616],[5084,36616],[5085,36616],[5086,36616],[5087,36616],[5088,36575],[5089,36594],[5090,36575],[5091,36575],[5092,36575],[5093,36575],[5094,36575],[5095,36575],[5096,36594],[5097,36594],[5098,36594],[5099,36575],[5100,36575],[5101,36594],[5102,36575],[5103,36575],[5104,36594],[5105,36575],[5106,36575],[5107,36575],[5108,36602],[5109,36575],[5110,36575],[5111,36602],[5112,36575],[5113,36594],[5114,36575],[5115,36575],[5116,36594],[5117,36575],[5118,36575],[5119,36594],[5120,36575],[5121,36575],[5122,36594],[5123,36575],[5124,36575],[5125,36594],[5126,36575],[5127,36575],[5128,36594],[5129,36575],[5130,36575],[5131,36575],[5132,36575],[5133,36575],[5134,36602],[5135,36575],[5136,36575],[5137,36594],[5138,36575],[5139,36575],[5140,36594],[5141,36575],[5142,36602],[5143,36575],[5144,36575],[5145,36575],[5146,36575],[5147,36575],[5148,36575],[5149,36594],[5150,36575],[5151,36575],[5152,36594],[5153,36575],[5154,36602],[5155,36575],[5156,36575],[5157,36602],[5158,36575],[5159,36594],[5160,36594],[5161,36594],[5162,36594],[5163,36575],[5164,36575],[5165,36594],[5166,36575],[5167,36575],[5168,36594],[5169,36594],[5170,36575],[5171,36575],[5172,36594],[5173,36575],[5174,36575],[5175,36575],[5176,36602],[5177,36575],[5178,36594],[5179,36575],[5180,36575],[5181,36594],[5182,36575],[5183,36575],[5184,36594],[5185,36575],[5186,36575],[5187,36594],[5188,36575],[5189,36575],[5190,36575],[5191,36575],[5192,36596],[5193,36596],[5194,36575],[5195,36575],[5196,36575],[5197,36602],[5198,36602],[5199,36575],[5200,36575],[5201,36575],[5202,36575],[5203,36618],[5204,36618],[5205,36575],[5206,36618],[5207,36602],[5208,36619],[5209,36619],[5210,36619],[5211,36619],[5212,36619],[5213,36602],[5214,36576],[5215,36575],[5216,36602],[5217,36575],[5218,36619],[5219,36602],[5220,36576],[5221,36619],[5222,36619],[5223,36619],[5224,36619],[5225,36620],[5226,36620],[5227,36621],[5228,36621],[5229,36621],[5230,36621],[5231,36621],[5232,36621],[5233,36575],[5234,36575],[5235,36618],[5236,36619],[5237,36576],[5238,36619],[5239,36619],[5240,36576],[5241,36619],[5242,36619],[5243,36619],[5244,36604],[5245,36604],[5246,36605],[5247,36577],[5248,36601],[5249,36577],[5250,36577],[5251,36577],[5252,36577],[5253,36577],[5254,36596],[5255,36574],[5256,36601],[5257,36601],[5258,36606],[5259,36606],[5260,36601],[5261,36601],[5262,36601],[5263,36601],[5264,36601],[5265,36619],[5266,36619],[5267,36602],[5268,36619],[5269,36619],[5270,36602],[5271,36602],[5272,36602],[5273,36619],[5274,36602],[5275,36619],[5276,36619],[5277,36602],[5278,36619],[5279,36577],[5280,36577],[5281,36577],[5282,36577],[5283,36619],[5284,36622],[5285,36594],[5286,36575],[5287,36575],[5288,36594],[5289,36594],[5290,36575],[5291,36575],[5292,36594],[5293,36574],[5294,36575],[5295,36602],[5296,36574],[5297,36575],[5298,36575],[5299,36602],[5300,36575],[5301,36574],[5302,36575],[5303,36602],[5304,36574],[5305,36575],[5306,36619],[5307,36594],[5308,36619],[5309,36575],[5310,36577],[5311,36575],[5312,36619],[5313,36594],[5314,36594],[5315,36575],[5316,36575],[5317,36594],[5318,36619],[5319,36576],[5320,36619],[5321,36576],[5322,36578],[5323,36578],[5324,36578],[5325,36578],[5326,36578],[5327,36578],[5328,36578],[5329,36594],[5330,36575],[5331,36575],[5332,36594],[5333,36594],[5334,36575],[5335,36575],[5336,36594],[5337,36619],[5338,36576],[5339,36619],[5340,36576],[5341,36619],[5342,36594],[5343,36619],[5344,36575],[5345,36578],[5346,36575],[5347,36619],[5348,36594],[5349,36594],[5350,36575],[5351,36575],[5352,36594],[5353,36619],[5354,36576],[5355,36619],[5356,36576],[5357,36578],[5358,36578],[5359,36578],[5360,36578],[5361,36578],[5362,36578],[5363,36578],[5364,36594],[5365,36575],[5366,36575],[5367,36594],[5368,36594],[5369,36575],[5370,36575],[5371,36594],[5372,36619],[5373,36576],[5374,36619],[5375,36576],[5376,36619],[5377,36594],[5378,36619],[5379,36575],[5380,36575],[5381,36619],[5382,36594],[5383,36594],[5384,36575],[5385,36575],[5386,36594],[5387,36619],[5388,36576],[5389,36619],[5390,36576],[5391,36594],[5392,36575],[5393,36575],[5394,36594],[5395,36594],[5396,36575],[5397,36575],[5398,36594],[5399,36619],[5400,36576],[5401,36619],[5402,36576],[5403,36619],[5404,36576],[5405,36619],[5406,36576],[5407,36619],[5408,36576],[5409,36619],[5410,36576],[5411,36619],[5412,36576],[5413,36619],[5414,36576],[5415,36619],[5416,36576],[5417,36619],[5418,36576],[5419,36619],[5420,36576],[5421,36619],[5422,36576],[5423,36619],[5424,36576],[5425,36619],[5426,36576],[5427,36602],[5428,36602],[5429,36602],[5430,36575],[5431,36602],[5432,36575],[5433,36602],[5434,36619],[5435,36602],[5436,36576],[5437,36619],[5438,36602],[5439,36576],[5440,36619],[5441,36602],[5442,36576],[5443,36619],[5444,36602],[5445,36576],[5446,36619],[5447,36602],[5448,36576],[5449,36619],[5450,36602],[5451,36576],[5452,36606],[5453,36606],[5454,36602],[5455,36578],[5456,36578],[5457,36623],[5458,36578],[5459,36602],[5460,36575],[5461,36624],[5462,36625],[5463,36624],[5464,36575],[5465,36624],[5466,36602],[5467,36575],[5468,36624],[5469,36575],[5470,36575],[5471,36624],[5472,36602],[5473,36625],[5474,36602],[5475,36602],[5476,36602],[5477,36625],[5478,36575],[5479,36624],[5480,36624],[5481,36575],[5482,36624],[5483,36575],[5484,36602],[5485,36575],[5486,36624],[5487,36575],[5488,36624],[5489,36602],[5490,36575],[5491,36624],[5492,36625],[5493,36624],[5494,36576],[5495,36576],[5496,36577],[5497,36577],[5498,36594],[5499,36602],[5500,36575],[5501,36577],[5502,36575],[5503,36619],[5504,36602],[5505,36619],[5506,36575],[5507,36575],[5508,36575],[5509,36596],[5510,36602],[5511,36596],[5512,36577],[5513,36577],[5514,36577],[5515,36577],[5516,36577],[5517,36602],[5518,36577],[5519,36575],[5520,36602],[5521,36596],[5522,36602],[5523,36596],[5524,36577],[5525,36577],[5526,36577],[5527,36575],[5528,36602],[5529,36575],[5530,36624],[5531,36625],[5532,36624],[5533,36608],[5534,36604],[5535,36604],[5536,36604],[5537,36604],[5538,36604],[5539,36608],[5540,36608],[5541,36608],[5542,36619],[5543,36596],[5544,36575],[5545,36596],[5546,36602],[5547,36619],[5548,36602],[5549,36602],[5550,36602],[5551,36602],[5552,36602],[5553,36602],[5554,36602],[5555,36609],[5556,36619],[5557,36596],[5558,36575],[5559,36596],[5560,36619],[5561,36609],[5562,36608],[5563,36619],[5564,36575],[5565,36624],[5566,36602],[5567,36619],[5568,36626],[5569,36626],[5570,36619],[5571,36575],[5572,36624],[5573,36594],[5574,36575],[5575,36575],[5576,36575],[5577,36575],[5578,36575],[5579,36602],[5580,36602],[5581,36625],[5582,36602],[5583,36602],[5584,36602],[5585,36625],[5586,36602],[5587,36619],[5588,36626],[5589,36626],[5590,36602],[5591,36619],[5592,36619],[5593,36576],[5594,36626],[5595,36626],[5596,36627],[5597,36626],[5598,36626],[5599,36576],[5600,36575],[5601,36624],[5602,36619],[5603,36602],[5604,36576],[5605,36627],[5606,36575],[5607,36624],[5608,36575],[5609,36624],[5610,36575],[5611,36624],[5612,36575],[5613,36624],[5614,36602],[5615,36625],[5616,36602],[5617,36625],[5618,36575],[5619,36624],[5620,36575],[5621,36624],[5622,36575],[5623,36624],[5624,36576],[5625,36619],[5626,36596],[5627,36575],[5628,36596],[5629,36602],[5630,36602],[5631,36602],[5632,36602],[5633,36602],[5634,36602],[5635,36619],[5636,36596],[5637,36575],[5638,36596],[5639,36575],[5640,36624],[5641,36619],[5642,36626],[5643,36626],[5644,36575],[5645,36624],[5646,36602],[5647,36625],[5648,36602],[5649,36625],[5650,36575],[5651,36624],[5652,36576],[5653,36627],[5654,36575],[5655,36624],[5656,36575],[5657,36602],[5658,36575],[5659,36624],[5660,36625],[5661,36624],[5662,36594],[5663,36575],[5664,36575],[5665,36575],[5666,36575],[5667,36575],[5668,36602],[5669,36602],[5670,36594],[5671,36619],[5672,36602],[5673,36576],[5674,36575],[5675,36602],[5676,36575],[5677,36619],[5678,36602],[5679,36576],[5680,36577],[5681,36577],[5682,36608],[5683,36610],[5684,36610],[5685,36610],[5686,36610],[5687,36610],[5688,36610],[5689,36610],[5690,36610],[5691,36610],[5692,36610],[5693,36610],[5694,36610],[5695,36610],[5696,36610],[5697,36610],[5698,36610],[5699,36610],[5700,36610],[5701,36610],[5702,36610],[5703,36619],[5704,36577],[5705,36628],[5706,36577],[5707,36577],[5708,36629],[5709,36629],[5710,36602],[5711,36602],[5712,36602],[5713,36602],[5714,36602],[5715,36602],[5716,36575],[5717,36575],[5718,36575],[5719,36575],[5720,36575],[5721,36575],[5722,36577],[5723,36577],[5724,36577],[5725,36577],[5726,36602],[5727,36612],[5728,36602],[5729,36612],[5730,36602],[5731,36575],[5732,36602],[5733,36575],[5734,36602],[5735,36612],[5736,36602],[5737,36612],[5738,36612],[5739,36602],[5740,36612],[5741,36612],[5742,36602],[5743,36612],[5744,36575],[5745,36602],[5746,36575],[5747,36612],[5748,36602],[5749,36612],[5750,36612],[5751,36602],[5752,36612],[5753,36602],[5754,36602],[5755,36602],[5756,36612],[5757,36602],[5758,36612],[5759,36575],[5760,36602],[5761,36575],[5762,36612],[5763,36602],[5764,36612],[5765,36612],[5766,36602],[5767,36612],[5768,36575],[5769,36602],[5770,36575],[5771,36612],[5772,36602],[5773,36612],[5774,36596],[5775,36602],[5776,36596],[5777,36596],[5778,36602],[5779,36596],[5780,36576],[5781,36575],[5782,36602],[5783,36575],[5784,36575],[5785,36602],[5786,36575],[5787,36575],[5788,36602],[5789,36575],[5790,36575],[5791,36602],[5792,36575],[5793,36575],[5794,36602],[5795,36575],[5796,36575],[5797,36602],[5798,36575],[5799,36613],[5800,36613],[5801,36613],[5802,36618],[5803,36618],[5804,36620],[5805,36620],[5806,36618],[5807,36618],[5808,36618],[5809,36620],[5810,36620],[5811,36618],[5812,36601],[5813,36601],[5814,36601],[5815,36601],[5816,36575],[5817,36575],[5818,36575],[5819,36575],[5820,36601],[5821,36601],[5822,36601],[5823,36601],[5824,36575],[5825,36575],[5826,36575],[5827,36575],[5828,36619],[5829,36577],[5830,36628],[5831,36577],[5832,36577],[5833,36629],[5834,36629],[5835,36620],[5836,36619],[5837,36619],[5838,36576],[5839,36575],[5840,36575],[5841,36619],[5842,36619],[5843,36602],[5844,36576],[5845,36576],[5846,36619],[5847,36602],[5848,36619],[5849,36576],[5850,36620],[5851,36619],[5852,36619],[5853,36619],[5854,36619],[5855,36576],[5856,36594],[5857,36575],[5858,36575],[5859,36594],[5860,36619],[5861,36602],[5862,36576],[5863,36619],[5864,36619],[5865,36619],[5866,36619],[5867,36606],[5868,36606],[5869,36614],[5870,36614],[5871,36614],[5872,36614],[5873,36619],[5874,36618],[5875,36594],[5876,36575],[5877,36575],[5878,36615],[5879,36575],[5880,36575],[5881,36602],[5882,36602],[5883,36602],[5884,36602],[5885,36575],[5886,36602],[5887,36575],[5888,36602],[5889,36575],[5890,36602],[5891,36575],[5892,36602],[5893,36575],[5894,36602],[5895,36575],[5896,36575],[5897,36602],[5898,36575],[5899,36575],[5900,36602],[5901,36575],[5902,36575],[5903,36602],[5904,36575],[5905,36575],[5906,36602],[5907,36575],[5908,36575],[5909,36602],[5910,36575],[5911,36575],[5912,36602],[5913,36575],[5914,36575],[5915,36602],[5916,36575],[5917,36575],[5918,36602],[5919,36575],[5920,36575],[5921,36602],[5922,36575],[5923,36575],[5924,36602],[5925,36575],[5926,36575],[5927,36602],[5928,36575],[5929,36594],[5930,36575],[5931,36575],[5932,36594],[5933,36594],[5934,36575],[5935,36575],[5936,36594],[5937,36575],[5938,36602],[5939,36575],[5940,36575],[5941,36602],[5942,36575],[5943,36575],[5944,36602],[5945,36575],[5946,36594],[5947,36594],[5948,36594],[5949,36594],[5950,36575],[5951,36575],[5952,36594],[5953,36575],[5954,36575],[5955,36596],[5956,36596],[5957,36575],[5958,36575],[5959,36596],[5960,36596],[5961,36594],[5962,36594],[5963,36605],[5964,36594],[5965,36575],[5966,36575],[5967,36594],[5968,36575],[5969,36602],[5970,36575],[5971,36596],[5972,36594],[5973,36575],[5974,36575],[5975,36575],[5976,36594],[5977,36594],[5978,36575],[5979,36575],[5980,36594],[5981,36594],[5982,36575],[5983,36575],[5984,36594],[5985,36575],[5986,36602],[5987,36575],[5988,36575],[5989,36602],[5990,36575],[5991,36575],[5992,36602],[5993,36575],[5994,36594],[5995,36575],[5996,36575],[5997,36594],[5998,36594],[5999,36575],[6000,36575],[6001,36594],[6002,36594],[6003,36575],[6004,36575],[6005,36594],[6006,36594],[6007,36575],[6008,36575],[6009,36594],[6010,36594],[6011,36575],[6012,36575],[6013,36594],[6014,36594],[6015,36575],[6016,36575],[6017,36594],[6018,36594],[6019,36575],[6020,36575],[6021,36594],[6022,36594],[6023,36575],[6024,36575],[6025,36594],[6026,36594],[6027,36575],[6028,36575],[6029,36594],[6030,36594],[6031,36575],[6032,36575],[6033,36594],[6034,36594],[6035,36575],[6036,36575],[6037,36594],[6038,36594],[6039,36575],[6040,36575],[6041,36594],[6042,36602],[6043,36602],[6044,36602],[6045,36616],[6046,36575],[6047,36575],[6048,36616],[6049,36575],[6050,36575],[6051,36616],[6052,36575],[6053,36575],[6054,36616],[6055,36575],[6056,36575],[6057,36606],[6058,36606],[6059,36602],[6060,36575],[6061,36602],[6062,36575],[6063,36602],[6064,36602],[6065,36575],[6066,36602],[6067,36575],[6068,36575],[6069,36594],[6070,36602],[6071,36594],[6072,36575],[6073,36575],[6074,36575],[6075,36575],[6076,36602],[6077,36575],[6078,36575],[6079,36575],[6080,36575],[6081,36575],[6082,36575],[6083,36596],[6084,36602],[6085,36596],[6086,36575],[6087,36575],[6088,36575],[6089,36594],[6090,36575],[6091,36575],[6092,36575],[6093,36575],[6094,36602],[6095,36575],[6096,36575],[6097,36602],[6098,36596],[6099,36602],[6100,36596],[6101,36594],[6102,36575],[6103,36575],[6104,36608],[6105,36608],[6106,36608],[6107,36575],[6108,36596],[6109,36575],[6110,36596],[6111,36602],[6112,36575],[6113,36602],[6114,36602],[6115,36602],[6116,36602],[6117,36602],[6118,36602],[6119,36602],[6120,36575],[6121,36575],[6122,36596],[6123,36575],[6124,36596],[6125,36575],[6126,36602],[6127,36575],[6128,36594],[6129,36594],[6130,36575],[6131,36575],[6132,36575],[6133,36575],[6134,36575],[6135,36575],[6136,36575],[6137,36575],[6138,36575],[6139,36575],[6140,36602],[6141,36602],[6142,36575],[6143,36602],[6144,36575],[6145,36596],[6146,36575],[6147,36596],[6148,36602],[6149,36602],[6150,36602],[6151,36602],[6152,36602],[6153,36602],[6154,36575],[6155,36596],[6156,36575],[6157,36596],[6158,36594],[6159,36594],[6160,36575],[6161,36575],[6162,36575],[6163,36575],[6164,36575],[6165,36575],[6166,36575],[6167,36575],[6168,36575],[6169,36575],[6170,36602],[6171,36602],[6172,36594],[6173,36575],[6174,36602],[6175,36575],[6176,36575],[6177,36602],[6178,36575],[6179,36575],[6180,36602],[6181,36575],[6182,36608],[6183,36610],[6184,36610],[6185,36610],[6186,36610],[6187,36616],[6188,36575],[6189,36575],[6190,36616],[6191,36575],[6192,36575],[6193,36616],[6194,36575],[6195,36575],[6196,36616],[6197,36575],[6198,36575],[6199,36602],[6200,36602],[6201,36602],[6202,36602],[6203,36602],[6204,36602],[6205,36575],[6206,36575],[6207,36575],[6208,36575],[6209,36575],[6210,36575],[6211,36602],[6212,36575],[6213,36602],[6214,36575],[6215,36602],[6216,36575],[6217,36602],[6218,36575],[6219,36602],[6220,36575],[6221,36602],[6222,36575],[6223,36575],[6224,36602],[6225,36575],[6226,36575],[6227,36602],[6228,36575],[6229,36575],[6230,36602],[6231,36575],[6232,36575],[6233,36602],[6234,36575],[6235,36575],[6236,36602],[6237,36575],[6238,36602],[6239,36602],[6240,36602],[6241,36575],[6242,36602],[6243,36575],[6244,36575],[6245,36602],[6246,36575],[6247,36575],[6248,36602],[6249,36575],[6250,36575],[6251,36602],[6252,36575],[6253,36575],[6254,36602],[6255,36575],[6256,36575],[6257,36602],[6258,36575],[6259,36596],[6260,36602],[6261,36596],[6262,36596],[6263,36602],[6264,36596],[6265,36575],[6266,36602],[6267,36575],[6268,36575],[6269,36602],[6270,36575],[6271,36575],[6272,36602],[6273,36575],[6274,36575],[6275,36602],[6276,36575],[6277,36575],[6278,36602],[6279,36575],[6280,36575],[6281,36602],[6282,36575],[6283,36613],[6284,36613],[6285,36613],[6286,36601],[6287,36601],[6288,36601],[6289,36601],[6290,36575],[6291,36575],[6292,36575],[6293,36575],[6294,36601],[6295,36601],[6296,36601],[6297,36601],[6298,36575],[6299,36575],[6300,36575],[6301,36575],[6302,36575],[6303,36575],[6304,36575],[6305,36575],[6306,36575],[6307,36602],[6308,36575],[6309,36594],[6310,36575],[6311,36575],[6312,36594],[6313,36575],[6314,36575],[6315,36606],[6316,36606],[6317,36614],[6318,36614],[6319,36594],[6320,36594],[6321,36594],[6322,36575],[6323,36575],[6324,36594],[6325,36594],[6326,36575],[6327,36575],[6328,36594],[6329,36575],[6330,36602],[6331,36575],[6332,36575],[6333,36602],[6334,36575],[6335,36575],[6336,36602],[6337,36575],[6338,36594],[6339,36575],[6340,36575],[6341,36594],[6342,36594],[6343,36575],[6344,36575],[6345,36594],[6346,36575],[6347,36602],[6348,36575],[6349,36575],[6350,36602],[6351,36575],[6352,36575],[6353,36602],[6354,36575],[6355,36594],[6356,36575],[6357,36575],[6358,36594],[6359,36575],[6360,36575],[6361,36575],[6362,36602],[6363,36575],[6364,36575],[6365,36575],[6366,36575],[6367,36575],[6368,36575],[6369,36602],[6370,36575],[6371,36602],[6372,36575],[6373,36602],[6374,36575],[6375,36602],[6376,36575],[6377,36602],[6378,36575],[6379,36602],[6380,36575],[6381,36594],[6382,36594],[6383,36594],[6384,36594],[6385,36575],[6386,36596],[6387,36615],[6388,36575],[6389,36575],[6390,36596],[6391,36596],[6392,36594],[6393,36594],[6394,36594],[6395,36594],[6396,36575],[6397,36575],[6398,36575],[6399,36575],[6400,36594],[6401,36575],[6402,36575],[6403,36615],[6404,36575],[6405,36575],[6406,36594],[6407,36615],[6408,36605],[6409,36617],[6410,36617],[6411,36605],[6412,36596],[6413,36596],[6414,36596],[6415,36596],[6416,36596],[6417,36596],[6418,36575],[6419,36575],[6420,36575],[6421,36575],[6422,36602],[6423,36602],[6424,36594],[6425,36594],[6426,36594],[6427,36594],[6428,36594],[6429,36594],[6430,36594],[6431,36594],[6432,36594],[6433,36594],[6434,36594],[6435,36594],[6436,36594],[6437,36594],[6438,36594],[6439,36594],[6440,36596],[6441,36602],[6442,36596],[6443,36596],[6444,36602],[6445,36596],[6446,36596],[6447,36602],[6448,36596],[6449,36575],[6450,36575],[6451,36575],[6452,36575],[6453,36575],[6454,36575],[6455,36575],[6456,36575],[6457,36575],[6458,36602],[6459,36575],[6460,36575],[6461,36602],[6462,36575],[6463,36575],[6464,36602],[6465,36575],[6466,36575],[6467,36575],[6468,36575],[6469,36575],[6470,36602],[6471,36602],[6472,36575],[6473,36602],[6474,36575],[6475,36575],[6476,36602],[6477,36575],[6478,36575],[6479,36602],[6480,36575],[6481,36594],[6482,36575],[6483,36575],[6484,36594],[6485,36616],[6486,36616],[6487,36616],[6488,36616],[6489,36616],[6490,36616],[6491,36616],[6492,36616],[6493,36616],[6494,36616],[6495,36616],[6496,36616],[6497,36575],[6498,36594],[6499,36575],[6500,36575],[6501,36594],[6502,36594],[6503,36594],[6504,36575],[6505,36575],[6506,36594],[6507,36575],[6508,36575],[6509,36594],[6510,36575],[6511,36575],[6512,36575],[6513,36602],[6514,36575],[6515,36575],[6516,36602],[6517,36575],[6518,36575],[6519,36602],[6520,36575],[6521,36594],[6522,36575],[6523,36575],[6524,36594],[6525,36575],[6526,36575],[6527,36594],[6528,36575],[6529,36575],[6530,36594],[6531,36575],[6532,36575],[6533,36594],[6534,36575],[6535,36575],[6536,36594],[6537,36575],[6538,36575],[6539,36575],[6540,36575],[6541,36575],[6542,36575],[6543,36575],[6544,36602],[6545,36575],[6546,36594],[6547,36575],[6548,36575],[6549,36594],[6550,36575],[6551,36575],[6552,36594],[6553,36575],[6554,36575],[6555,36594],[6556,36575],[6557,36602],[6558,36575],[6559,36575],[6560,36602],[6561,36575],[6562,36575],[6563,36602],[6564,36575],[6565,36594],[6566,36594],[6567,36594],[6568,36594],[6569,36575],[6570,36575],[6571,36594],[6572,36575],[6573,36575],[6574,36594],[6575,36594],[6576,36575],[6577,36575],[6578,36594],[6579,36594],[6580,36575],[6581,36575],[6582,36594],[6583,36575],[6584,36575],[6585,36594],[6586,36575],[6587,36575],[6588,36594],[6589,36575],[6590,36575],[6591,36575],[6592,36575],[6593,36596],[6594,36596],[6595,36601],[6596,36601],[6597,36574],[6598,36574],[6599,36619],[6600,36601],[6601,36601],[6602,36574],[6603,36574],[6604,36594],[6605,36575],[6606,36575],[6607,36594],[6608,36594],[6609,36575],[6610,36575],[6611,36594],[6612,36575],[6613,36602],[6614,36575],[6615,36575],[6616,36602],[6617,36575],[6618,36575],[6619,36602],[6620,36575],[6621,36594],[6622,36594],[6623,36594],[6624,36594],[6625,36575],[6626,36575],[6627,36594],[6628,36575],[6629,36575],[6630,36596],[6631,36596],[6632,36575],[6633,36575],[6634,36596],[6635,36596],[6636,36594],[6637,36594],[6638,36596],[6639,36594],[6640,36575],[6641,36575],[6642,36575],[6643,36594],[6644,36602],[6645,36602],[6646,36602],[6647,36616],[6648,36575],[6649,36575],[6650,36616],[6651,36575],[6652,36575],[6653,36606],[6654,36606],[6655,36602],[6656,36575],[6657,36602],[6658,36575],[6659,36602],[6660,36602],[6661,36575],[6662,36602],[6663,36575],[6664,36575],[6665,36594],[6666,36602],[6667,36575],[6668,36575],[6669,36575],[6670,36575],[6671,36602],[6672,36575],[6673,36575],[6674,36575],[6675,36575],[6676,36596],[6677,36602],[6678,36596],[6679,36594],[6680,36575],[6681,36575],[6682,36575],[6683,36575],[6684,36602],[6685,36575],[6686,36575],[6687,36602],[6688,36596],[6689,36602],[6690,36596],[6691,36594],[6692,36575],[6693,36575],[6694,36608],[6695,36608],[6696,36608],[6697,36575],[6698,36596],[6699,36575],[6700,36596],[6701,36602],[6702,36575],[6703,36602],[6704,36602],[6705,36602],[6706,36602],[6707,36602],[6708,36602],[6709,36602],[6710,36575],[6711,36575],[6712,36596],[6713,36575],[6714,36596],[6715,36575],[6716,36602],[6717,36575],[6718,36594],[6719,36575],[6720,36575],[6721,36575],[6722,36575],[6723,36575],[6724,36602],[6725,36602],[6726,36575],[6727,36602],[6728,36575],[6729,36596],[6730,36575],[6731,36596],[6732,36602],[6733,36602],[6734,36602],[6735,36602],[6736,36602],[6737,36602],[6738,36575],[6739,36596],[6740,36575],[6741,36596],[6742,36594],[6743,36575],[6744,36575],[6745,36575],[6746,36575],[6747,36575],[6748,36602],[6749,36602],[6750,36594],[6751,36575],[6752,36602],[6753,36575],[6754,36575],[6755,36602],[6756,36575],[6757,36575],[6758,36602],[6759,36575],[6760,36608],[6761,36610],[6762,36610],[6763,36610],[6764,36610],[6765,36616],[6766,36575],[6767,36575],[6768,36616],[6769,36575],[6770,36575],[6771,36616],[6772,36575],[6773,36575],[6774,36616],[6775,36575],[6776,36575],[6777,36602],[6778,36602],[6779,36602],[6780,36602],[6781,36602],[6782,36602],[6783,36575],[6784,36575],[6785,36575],[6786,36575],[6787,36575],[6788,36575],[6789,36602],[6790,36575],[6791,36602],[6792,36575],[6793,36602],[6794,36575],[6795,36602],[6796,36575],[6797,36602],[6798,36575],[6799,36602],[6800,36575],[6801,36575],[6802,36602],[6803,36575],[6804,36575],[6805,36602],[6806,36575],[6807,36575],[6808,36602],[6809,36575],[6810,36575],[6811,36602],[6812,36575],[6813,36575],[6814,36602],[6815,36575],[6816,36602],[6817,36602],[6818,36602],[6819,36575],[6820,36602],[6821,36575],[6822,36575],[6823,36602],[6824,36575],[6825,36575],[6826,36602],[6827,36575],[6828,36575],[6829,36602],[6830,36575],[6831,36575],[6832,36602],[6833,36575],[6834,36575],[6835,36602],[6836,36575],[6837,36575],[6838,36602],[6839,36575],[6840,36575],[6841,36602],[6842,36575],[6843,36575],[6844,36602],[6845,36575],[6846,36575],[6847,36602],[6848,36575],[6849,36575],[6850,36602],[6851,36575],[6852,36575],[6853,36602],[6854,36575],[6855,36613],[6856,36613],[6857,36613],[6858,36575],[6859,36575],[6860,36575],[6861,36575],[6862,36575],[6863,36602],[6864,36575],[6865,36594],[6866,36575],[6867,36575],[6868,36594],[6869,36575],[6870,36575],[6871,36606],[6872,36606],[6873,36614],[6874,36614],[6875,36594],[6876,36594],[6877,36594],[6878,36575],[6879,36575],[6880,36594],[6881,36594],[6882,36575],[6883,36575],[6884,36594],[6885,36575],[6886,36602],[6887,36575],[6888,36575],[6889,36602],[6890,36575],[6891,36575],[6892,36602],[6893,36575],[6894,36594],[6895,36575],[6896,36575],[6897,36594],[6898,36594],[6899,36575],[6900,36575],[6901,36594],[6902,36575],[6903,36602],[6904,36575],[6905,36575],[6906,36602],[6907,36575],[6908,36575],[6909,36602],[6910,36575],[6911,36594],[6912,36575],[6913,36575],[6914,36594],[6915,36575],[6916,36575],[6917,36575],[6918,36602],[6919,36575],[6920,36575],[6921,36575],[6922,36575],[6923,36575],[6924,36575],[6925,36602],[6926,36575],[6927,36602],[6928,36575],[6929,36602],[6930,36575],[6931,36602],[6932,36575],[6933,36602],[6934,36575],[6935,36602],[6936,36575],[6937,36594],[6938,36594],[6939,36594],[6940,36594],[6941,36575],[6942,36596],[6943,36615],[6944,36575],[6945,36575],[6946,36596],[6947,36596],[6948,36594],[6949,36594],[6950,36594],[6951,36594],[6952,36575],[6953,36575],[6954,36575],[6955,36575],[6956,36594],[6957,36575],[6958,36575],[6959,36615],[6960,36575],[6961,36575],[6962,36594],[6963,36615],[6964,36605],[6965,36617],[6966,36617],[6967,36605],[6968,36596],[6969,36596],[6970,36596],[6971,36596],[6972,36596],[6973,36596],[6974,36575],[6975,36575],[6976,36575],[6977,36575],[6978,36602],[6979,36602],[6980,36596],[6981,36602],[6982,36596],[6983,36596],[6984,36602],[6985,36596],[6986,36596],[6987,36602],[6988,36596],[6989,36575],[6990,36575],[6991,36575],[6992,36575],[6993,36575],[6994,36575],[6995,36575],[6996,36575],[6997,36575],[6998,36602],[6999,36575],[7000,36575],[7001,36602],[7002,36575],[7003,36575],[7004,36602],[7005,36575],[7006,36575],[7007,36575],[7008,36575],[7009,36575],[7010,36602],[7011,36602],[7012,36575],[7013,36602],[7014,36575],[7015,36575],[7016,36602],[7017,36575],[7018,36575],[7019,36602],[7020,36575],[7021,36594],[7022,36575],[7023,36575],[7024,36594],[7025,36616],[7026,36616],[7027,36616],[7028,36616],[7029,36616],[7030,36616],[7031,36616],[7032,36616],[7033,36616],[7034,36616],[7035,36616],[7036,36616],[7037,36575],[7038,36594],[7039,36575],[7040,36575],[7041,36594],[7042,36594],[7043,36594],[7044,36575],[7045,36575],[7046,36594],[7047,36575],[7048,36575],[7049,36594],[7050,36575],[7051,36575],[7052,36575],[7053,36602],[7054,36575],[7055,36575],[7056,36602],[7057,36575],[7058,36575],[7059,36602],[7060,36575],[7061,36594],[7062,36575],[7063,36575],[7064,36594],[7065,36575],[7066,36575],[7067,36594],[7068,36575],[7069,36575],[7070,36594],[7071,36575],[7072,36575],[7073,36594],[7074,36575],[7075,36575],[7076,36594],[7077,36575],[7078,36575],[7079,36594],[7080,36575],[7081,36575],[7082,36594],[7083,36575],[7084,36602],[7085,36575],[7086,36575],[7087,36602],[7088,36575],[7089,36575],[7090,36602],[7091,36575],[7092,36594],[7093,36594],[7094,36594],[7095,36594],[7096,36575],[7097,36575],[7098,36594],[7099,36575],[7100,36575],[7101,36594],[7102,36575],[7103,36575],[7104,36594],[7105,36575],[7106,36575],[7107,36594],[7108,36575],[7109,36575],[7110,36575],[7111,36575],[7112,36596],[7113,36596],[7114,36619],[7115,36577],[7116,36575],[7117,36577],[7118,36577],[7119,36577],[7120,36575],[7121,36619],[7122,36619],[7123,36602],[7124,36576],[7125,36575],[7126,36602],[7127,36575],[7128,36619],[7129,36602],[7130,36576],[7131,36619],[7132,36619],[7133,36577],[7134,36575],[7135,36577],[7136,36577],[7137,36577],[7138,36575],[7139,36619],[7140,36619],[7141,36602],[7142,36576],[7143,36575],[7144,36602],[7145,36575],[7146,36619],[7147,36602],[7148,36576],[7149,36577],[7150,36575],[7151,36575],[7152,36575],[7153,36575],[7154,36575],[7155,36575],[7156,36575],[7157,36575],[7158,36619],[7159,36619],[7160,36602],[7161,36576],[7162,36620],[7163,36620],[7164,36576],[7165,36620],[7166,36576],[7167,36619],[7168,36619],[7169,36576],[7170,36594],[7171,36596],[7172,36596],[7173,36594],[7174,36594],[7175,36596],[7176,36596],[7177,36594],[7178,36577],[7179,36577],[7180,36619],[7181,36602],[7182,36619],[7183,36602],[7184,36576],[7185,36602],[7186,36575],[7187,36602],[7188,36575],[7189,36602],[7190,36619],[7191,36602],[7192,36576],[7193,36619],[7194,36619],[7195,36618],[7196,36619],[7197,36577],[7198,36596],[7199,36615],[7200,36575],[7201,36575],[7202,36619],[7203,36576],[7204,36619],[7205,36619],[7206,36619],[7207,36619],[7208,36577],[7209,36619],[7210,36574],[7211,36574],[7212,36574],[7213,36574],[7214,36594],[7215,36575],[7216,36575],[7217,36615],[7218,36575],[7219,36602],[7220,36575],[7221,36594],[7222,36615],[7223,36602],[7224,36605],[7225,36617],[7226,36617],[7227,36605],[7228,36576],[7229,36596],[7230,36596],[7231,36596],[7232,36596],[7233,36575],[7234,36575],[7235,36575],[7236,36575],[7237,36602],[7238,36576],[7239,36602],[7240,36576],[7241,36594],[7242,36594],[7243,36602],[7244,36594],[7245,36594],[7246,36594],[7247,36594],[7248,36594],[7249,36594],[7250,36602],[7251,36594],[7252,36594],[7253,36594],[7254,36594],[7255,36602],[7256,36594],[7257,36594],[7258,36602],[7259,36594],[7260,36594],[7261,36596],[7262,36602],[7263,36596],[7264,36596],[7265,36602],[7266,36596],[7267,36596],[7268,36602],[7269,36596],[7270,36575],[7271,36575],[7272,36575],[7273,36575],[7274,36575],[7275,36575],[7276,36575],[7277,36575],[7278,36577],[7279,36577],[7280,36577],[7281,36577],[7282,36575],[7283,36602],[7284,36575],[7285,36575],[7286,36602],[7287,36575],[7288,36575],[7289,36602],[7290,36575],[7291,36575],[7292,36575],[7293,36575],[7294,36575],[7295,36602],[7296,36576],[7297,36602],[7298,36576],[7299,36619],[7300,36575],[7301,36602],[7302,36575],[7303,36575],[7304,36602],[7305,36575],[7306,36575],[7307,36602],[7308,36575],[7309,36619],[7310,36619],[7311,36619],[7312,36619],[7313,36619],[7314,36602],[7315,36576],[7316,36619],[7317,36619],[7318,36619],[7319,36619],[7320,36619],[7321,36619],[7322,36602],[7323,36576],[7324,36576],[7325,36619],[7326,36602],[7327,36576],[7328,36576],[7329,36619],[7330,36619],[7331,36619],[7332,36619],[7333,36602],[7334,36576],[7335,36619],[7336,36602],[7337,36576],[7338,36619],[7339,36576],[7340,36630],[7341,36630],[7342,36630],[7343,36630],[7344,36630],[7345,36630],[7346,36630],[7347,36616],[7348,36616],[7349,36616],[7350,36616],[7351,36616],[7352,36616],[7353,36616],[7354,36616],[7355,36616],[7356,36616],[7357,36616],[7358,36616],[7359,36619],[7360,36618],[7361,36619],[7362,36576],[7363,36619],[7364,36619],[7365,36618],[7366,36618],[7367,36618],[7368,36619],[7369,36619],[7370,36619],[7371,36619],[7372,36619],[7373,36619],[7374,36619],[7375,36594],[7376,36601],[7377,36601],[7378,36619],[7379,36602],[7380,36576],[7381,36575],[7382,36602],[7383,36575],[7384,36619],[7385,36602],[7386,36576],[7387,36619],[7388,36619],[7389,36575],[7390,36619],[7391,36619],[7392,36575],[7393,36594],[7394,36601],[7395,36575],[7396,36619],[7397,36619],[7398,36619],[7399,36619],[7400,36619],[7401,36619],[7402,36619],[7403,36594],[7404,36601],[7405,36601],[7406,36619],[7407,36576],[7408,36575],[7409,36575],[7410,36619],[7411,36619],[7412,36602],[7413,36576],[7414,36576],[7415,36619],[7416,36602],[7417,36619],[7418,36576],[7419,36619],[7420,36619],[7421,36619],[7422,36619],[7423,36576],[7424,36594],[7425,36575],[7426,36575],[7427,36594],[7428,36619],[7429,36602],[7430,36576],[7431,36619],[7432,36619],[7433,36619],[7434,36619],[7435,36577],[7436,36619],[7437,36576],[7438,36629],[7439,36619],[7440,36619],[7441,36626],[7442,36629],[7443,36619],[7444,36619],[7445,36619],[7446,36619],[7447,36619],[7448,36602],[7449,36576],[7450,36575],[7451,36602],[7452,36575],[7453,36619],[7454,36602],[7455,36576],[7456,36619],[7457,36619],[7458,36619],[7459,36619],[7460,36575],[7461,36575],[7462,36577],[7463,36577],[7464,36594],[7465,36575],[7466,36575],[7467,36594],[7468,36577],[7469,36574],[7470,36574],[7471,36577],[7472,36594],[7473,36575],[7474,36575],[7475,36594],[7476,36574],[7477,36574],[7478,36577],[7479,36574],[7480,36574],[7481,36577],[7482,36584],[7483,36585],[7484,36619],[7485,36602],[7486,36576],[7487,36619],[7488,36602],[7489,36576],[7490,36619],[7491,36602],[7492,36576],[7493,36619],[7494,36602],[7495,36576],[7496,36619],[7497,36602],[7498,36576],[7499,36619],[7500,36602],[7501,36576],[7502,36619],[7503,36602],[7504,36576],[7505,36619],[7506,36619],[7507,36619],[7508,36619],[7509,36619],[7510,36619],[7511,36576],[7512,36619],[7513,36619],[7514,36619],[7515,36619],[7516,36619],[7517,36576],[7518,36575],[7519,36575],[7520,36619],[7521,36576],[7522,36619],[7523,36592],[7524,36593],[7525,36592],[7526,36593],[7527,36592],[7528,36593],[7529,36599],[7530,36600],[7531,36631],[7532,36631],[7533,36632],[7534,36631],[7535,36631],[7536,36632],[7537,36581],[7538,36575],[7539,36594],[7540,36594],[7541,36596],[7542,36582],[7543,36583],[7544,36586],[7545,36587],[7546,36633],[7547,36633],[7548,36633],[7549,36633],[7550,36633],[7551,36633],[7552,36633],[7553,36633],[7554,36633],[7555,36633],[7556,36633],[7557,36633],[7558,36633],[7559,36633],[7560,36633],[7561,36584],[7562,36584],[7563,36585],[7564,36586],[7565,36587],[7566,36579],[7567,36579],[7568,36579],[7569,36579],[7570,36580],[7571,36580],[7572,36634],[7573,36580],[7574,36634],[7575,36580],[7576,36634],[7577,36580],[7578,36634],[7579,36580],[7580,36634],[7581,36580],[7582,36634],[7583,36580],[7584,36579],[7585,36395],[7586,36635],[7591,36364],[7592,36447],[7593,36447],[7594,36447],[7595,36447],[7596,36447],[7597,36447],[7662,36398],[7728,36398],[7729,36571],[7730,36571],[7731,36400],[7732,36399],[7734,36400],[7737,36399],[7741,36346],[7742,36346],[7745,36462],[7746,36462],[7747,36462],[7748,36464],[7749,36463],[7750,36462],[7751,36462],[7752,36462],[7753,36462],[7754,36462],[7755,36466],[7756,36401],[7757,36401],[7758,36465],[7759,36465],[7760,36465],[7761,36465],[7762,36466],[7763,36465],[7764,36465],[7765,36465],[7766,36465],[7767,36465],[7768,36465],[7769,36465],[7770,36465],[7771,36465],[7772,36344],[7773,36344],[7774,36344],[7778,36343],[7779,36343],[7783,36343],[7784,36343],[7785,36343],[7786,36343],[7787,36343],[7788,36343],[7789,36343],[7790,36343],[7798,36343],[7800,36343],[7801,36343],[7802,36343],[7804,36343],[7805,36343],[7806,36343],[7807,36343],[7808,36343],[7811,36340],[7812,36340],[7815,36636],[7816,36340],[7817,36340],[7818,36340],[7819,36340],[7820,36340],[7824,36340],[7828,36365],[7829,36365],[7831,36402],[7832,36402],[7833,36402],[7847,36402],[7848,36402],[7855,36637],[7856,36638],[7857,36638],[7858,36638],[7859,36638],[7860,36638],[7861,36638],[7862,36638],[7863,36638],[7864,36638],[7865,36638],[7866,36638],[7867,36638],[7868,36638],[7869,36638],[7870,36638],[7871,36638],[7872,36638],[7873,36638],[7874,36638],[7875,36638],[7876,36638],[7877,36638],[7878,36638],[7879,36638],[7880,36638],[7881,36639],[7882,36640],[7883,36640],[7884,36640],[7885,36640],[7886,36640],[7887,36640],[7888,36640],[7889,36640],[7890,36640],[7891,36640],[7892,36640],[7893,36640],[7894,36640],[7895,36640],[7896,36640],[7897,36640],[7898,36640],[7899,36640],[7900,36640],[7901,36640],[7902,36640],[7903,36640],[7904,36640],[7905,36640],[7906,36640],[7907,36641],[7908,36641],[7909,36641],[7910,36641],[7911,36641],[7912,36641],[7913,36641],[7914,36641],[7915,36641],[7916,36641],[7917,36641],[7918,36641],[7919,36641],[7920,36641],[7921,36641],[7922,36642],[7923,36642],[7924,36642],[7925,36642],[7926,36642],[7927,36642],[7928,36642],[7929,36642],[7930,36642],[7931,36642],[7932,36642],[7933,36642],[7934,36642],[7935,36642],[7936,36642],[7937,36642],[7938,36642],[7939,36642],[7940,36642],[7941,36642],[7942,36642],[7943,36642],[7944,36642],[7945,36642],[7946,36642],[7947,36643],[7948,36643],[7949,36643],[7950,36643],[7951,36643],[7952,36643],[7953,36643],[7954,36643],[7955,36643],[7956,36643],[7957,36643],[7958,36643],[7959,36643],[7960,36643],[7961,36643],[7962,36644],[7963,36644],[7964,36644],[7965,36644],[7966,36644],[7967,36644],[7968,36644],[7969,36644],[7970,36644],[7971,36644],[7972,36644],[7973,36644],[7974,36644],[7975,36644],[7976,36644],[7977,36644],[7978,36644],[7979,36644],[7980,36644],[7981,36644],[7982,36644],[7983,36644],[7984,36644],[7985,36644],[7986,36644],[7987,36403],[7988,36403],[7989,36403],[7990,36483],[7991,36483],[7992,36485],[7993,36485],[7994,36485],[7995,36485],[7996,36485],[7997,36485],[7998,36485],[7999,36485],[8000,36485],[8001,36485],[8002,36485],[8003,36485],[8004,36485],[8005,36485],[8006,36485],[8007,36485],[8008,36485],[8009,36485],[8010,36485],[8011,36403],[8012,36403],[8013,36403],[8014,36403],[8031,36483],[8032,36483],[8033,36291],[8034,36291],[8035,36291],[8037,36291],[8038,36559],[8039,36384],[8040,36384],[8041,36384],[8042,36384],[8043,36384],[8044,36291],[8046,36291],[8047,36291],[8048,36384],[8050,36291],[8051,36291],[8052,36291],[8054,36291],[8055,36291],[8057,36291],[8058,36291],[8059,36291],[8069,36384],[8070,36291],[8074,36404],[8075,36404],[8077,36359],[8078,36358],[8082,36405],[8083,36406],[8084,36407],[8085,36404],[8087,36404],[8089,36645],[8090,36405],[8092,36406],[8093,36407],[8094,36408],[8095,36408],[8096,36408],[8097,36646],[8098,36408],[8100,36490],[8121,36647],[8122,36647],[8123,36647],[8124,36647],[8125,36647],[8126,36648],[8127,36648],[8128,36649],[8129,36649],[8130,36650],[8131,36650],[8132,36651],[8133,36651],[8134,36652],[8135,36652],[8136,36409],[8138,36409],[8139,36409],[8140,36409],[8141,36409],[8142,36409],[8143,36409],[8144,36409],[8145,36409],[8146,36409],[8147,36409],[8148,36409],[8149,36409],[8150,36409],[8151,36409],[8152,36409],[8153,36409],[8154,36409],[8155,36409],[8156,36409],[8157,36409],[8158,36409],[8159,36409],[8160,36409],[8161,36409],[8162,36409],[8163,36409],[8164,36409],[8165,36409],[8166,36409],[8167,36409],[8168,36409],[8169,36409],[8170,36409],[8171,36409],[8172,36409],[8173,36409],[8174,36409],[8175,36409],[8176,36409],[8177,36409],[8178,36409],[8179,36409],[8180,36409],[8181,36409],[8182,36409],[8183,36409],[8184,36409],[8185,36409],[8186,36409],[8187,36409],[8188,36409],[8189,36409],[8190,36409],[8191,36409],[8192,36409],[8193,36409],[8194,36409],[8195,36409],[8196,36409],[8197,36409],[8198,36409],[8199,36409],[8200,36409],[8201,36409],[8202,36409],[8203,36409],[8204,36409],[8205,36409],[8206,36409],[8207,36409],[8208,36409],[8209,36409],[8210,36409],[8211,36409],[8212,36409],[8213,36409],[8214,36409],[8215,36409],[8216,36409],[8217,36409],[8218,36409],[8219,36409],[8220,36409],[8221,36409],[8222,36409],[8223,36409],[8224,36409],[8225,36409],[8226,36409],[8227,36409],[8228,36409],[8229,36409],[8230,36409],[8231,36409],[8232,36409],[8233,36409],[8234,36409],[8235,36409],[8236,36409],[8237,36409],[8238,36409],[8239,36409],[8240,36409],[8241,36409],[8242,36409],[8243,36409],[8244,36409],[8245,36409],[8246,36409],[8247,36409],[8248,36409],[8249,36409],[8250,36409],[8251,36409],[8252,36409],[8253,36409],[8254,36409],[8255,36409],[8256,36409],[8257,36409],[8258,36409],[8259,36409],[8260,36409],[8261,36409],[8262,36409],[8263,36409],[8264,36409],[8265,36409],[8266,36409],[8267,36409],[8268,36409],[8269,36409],[8270,36409],[8271,36409],[8272,36409],[8273,36409],[8274,36409],[8275,36409],[8276,36409],[8277,36409],[8278,36409],[8279,36409],[8280,36409],[8281,36409],[8282,36409],[8283,36409],[8284,36409],[8285,36409],[8286,36409],[8287,36409],[8288,36409],[8289,36409],[8290,36409],[8291,36409],[8292,36409],[8293,36409],[8294,36409],[8295,36409],[8296,36409],[8297,36409],[8298,36409],[8299,36409],[8300,36409],[8301,36409],[8302,36409],[8303,36409],[8304,36409],[8305,36409],[8306,36409],[8307,36409],[8308,36409],[8309,36409],[8310,36409],[8311,36409],[8312,36409],[8313,36409],[8314,36409],[8315,36409],[8316,36409],[8317,36409],[8318,36409],[8319,36409],[8320,36409],[8321,36409],[8322,36409],[8323,36409],[8324,36409],[8325,36409],[8326,36409],[8327,36409],[8328,36409],[8329,36409],[8330,36409],[8331,36409],[8332,36409],[8333,36409],[8334,36409],[8335,36409],[8336,36409],[8337,36409],[8338,36409],[8339,36409],[8340,36409],[8341,36409],[8342,36409],[8343,36409],[8344,36409],[8345,36409],[8346,36409],[8347,36409],[8348,36409],[8349,36409],[8350,36409],[8351,36409],[8352,36409],[8353,36409],[8354,36409],[8355,36409],[8356,36409],[8357,36409],[8358,36409],[8359,36409],[8360,36409],[8361,36409],[8362,36409],[8363,36409],[8364,36409],[8365,36409],[8366,36409],[8367,36409],[8368,36409],[8369,36409],[8370,36409],[8371,36409],[8372,36409],[8373,36409],[8374,36409],[8375,36409],[8376,36409],[8377,36409],[8378,36409],[8379,36409],[8380,36409],[8381,36409],[8382,36409],[8383,36409],[8384,36409],[8385,36409],[8386,36409],[8387,36409],[8388,36409],[8389,36409],[8390,36409],[8391,36409],[8392,36409],[8393,36409],[8394,36409],[8395,36409],[8396,36409],[8397,36409],[8398,36409],[8399,36409],[8400,36409],[8401,36409],[8402,36409],[8403,36409],[8404,36409],[8405,36409],[8406,36409],[8407,36409],[8408,36409],[8409,36409],[8410,36409],[8411,36409],[8412,36409],[8413,36409],[8414,36409],[8415,36409],[8416,36409],[8417,36409],[8418,36409],[8419,36409],[8420,36409],[8421,36409],[8422,36409],[8423,36409],[8424,36409],[8425,36409],[8426,36409],[8427,36409],[8428,36409],[8430,36411],[8431,36411],[8432,36411],[8433,36411],[8434,36411],[8435,36411],[8437,36411],[8438,36411],[8439,36411],[8440,36411],[8441,36411],[8442,36411],[8444,36411],[8445,36411],[8447,36411],[8448,36411],[8449,36411],[8450,36411],[8451,36411],[8452,36411],[8453,36411],[8454,36411],[8455,36411],[8456,36411],[8457,36411],[8458,36411],[8459,36411],[8460,36411],[8461,36411],[8462,36411],[8463,36411],[8464,36411],[8465,36411],[8466,36411],[8467,36411],[8468,36411],[8469,36411],[8470,36653],[8471,36653],[8472,36653],[8473,36653],[8474,36653],[8475,36653],[8476,36653],[8477,36653],[8478,36653],[8479,36653],[8480,36653],[8481,36653],[8482,36653],[8483,36653],[8484,36653],[8485,36653],[8486,36653],[8487,36653],[8488,36653],[8489,36653],[8490,36653],[8491,36653],[8492,36653],[8493,36653],[8494,36653],[8495,36653],[8496,36653],[8497,36653],[8498,36653],[8499,36653],[8500,36653],[8501,36653],[8502,36653],[8503,36653],[8504,36653],[8505,36653],[8506,36653],[8507,36653],[8508,36653],[8509,36653],[8510,36653],[8511,36653],[8512,36653],[8513,36653],[8514,36653],[8515,36653],[8516,36653],[8517,36653],[8518,36653],[8519,36653],[8520,36653],[8521,36653],[8522,36653],[8523,36653],[8524,36653],[8525,36653],[8526,36653],[8527,36653],[8528,36653],[8529,36653],[8530,36653],[8531,36653],[8532,36653],[8533,36653],[8534,36653],[8535,36653],[8536,36653],[8537,36461],[8538,36461],[8539,36654],[8540,36654],[8541,36339],[8542,36498],[8543,36341],[8544,36347],[8545,36348],[8546,36349],[8547,36334],[8548,36413],[8549,36351],[8550,36360],[8551,36342],[8552,36352],[8553,36353],[8554,36354],[8555,36354],[8556,36416],[8557,36342],[8558,36355],[8559,36655],[8560,36356],[8561,36357],[8562,36357],[8564,36342],[8567,36336],[8568,36361],[8569,36362],[8570,36363],[8571,36417],[8572,36418],[8573,36366],[8574,36370],[8575,36419],[8576,36420],[8577,36421],[8578,36371],[8579,36372],[8580,36373],[8581,36374],[8582,36412],[8583,36375],[8584,36422],[8585,36370],[8586,36376],[8587,36377],[8588,36655],[8589,36655],[8590,36379],[8600,36341],[8610,36413],[8628,36414],[8629,36416],[8662,36417],[8663,36418],[8673,36419],[8674,36420],[8675,36421],[8686,36422],[8698,36379],[8700,36337],[8701,36337],[8702,36337],[8703,36337],[8704,36337],[8706,36337],[8707,36337],[8708,36337],[8709,36337],[8710,36337],[8711,36337],[8712,36337],[8713,36337],[8714,36337],[8715,36337],[8716,36337],[8717,36337],[8718,36337],[8719,36337],[8720,36337],[8721,36337],[8723,36424],[8724,36423],[8725,36499],[8726,36448],[8727,36424],[8728,36423],[8729,36423],[8730,36423],[8732,36423],[8733,36423],[8734,36423],[8735,36423],[8736,36423],[8738,36423],[8739,36423],[8740,36423],[8741,36423],[8742,36423],[8744,36423],[8745,36423],[8746,36423],[8747,36423],[8748,36423],[8749,36409],[8751,36423],[8752,36423],[8754,36423],[8755,36423],[8756,36506],[8760,36503],[8761,36503],[8762,36503],[8763,36503],[8768,36501],[8769,36501],[8770,36501],[8776,36512],[8778,36511],[8782,36335],[8783,36335],[8784,36335],[8785,36335],[8786,36335],[8787,36335],[8788,36335],[8789,36335],[8790,36335],[8791,36335],[8792,36335],[8793,36335],[8794,36335],[8796,36510],[8797,36511],[8799,36508],[8801,36511],[8802,36509],[8805,36335],[8806,36425],[8807,36425],[8808,36426],[8809,36426],[8810,36426],[8811,36427],[8812,36427],[8813,36427],[8814,36427],[8815,36427],[8816,36427],[8817,36386],[8821,36656],[8824,36428],[8825,36415],[8826,36415],[8827,36429],[8828,36429],[8829,36429],[8830,36656],[8831,36425],[8832,36425],[8833,36350],[8835,36338],[8836,36338],[8837,36338],[8838,36378],[8840,36430],[8841,36430],[8842,36425],[8843,36425],[8844,36425],[8845,36427],[8846,36386],[8863,36386],[8864,36386],[8865,36386],[8866,36386],[8867,36386],[8868,36386],[8869,36386],[8870,36425],[8871,36425],[8872,36378],[8875,36427],[8876,36427],[8877,36427],[8878,36427],[8879,36425],[8880,36425],[8882,36378],[8885,36378],[8933,36295],[8934,36295],[8935,36295],[8937,36295],[8939,36530],[8940,36410],[8941,36431],[8942,36431],[8943,36530],[8944,36530],[8970,36657],[8971,36657],[8972,36657],[8973,36657],[8974,36657],[8975,36657],[8976,36657],[8977,36657],[8978,36657],[8979,36657],[8980,36657],[8981,36658],[8982,36658],[8983,36658],[8984,36658],[8985,36658],[8986,36658],[8987,36658],[8988,36658],[8989,36658],[8990,36658],[8991,36658],[8992,36658],[8993,36658],[8994,36658],[8995,36658],[8996,36658],[8997,36658],[8998,36658],[8999,36367],[9000,36367],[9001,36367],[9002,36659],[9003,36659],[9004,36659],[9005,36659],[9006,36659],[9007,36340],[9008,36340],[9009,36344],[9010,36344],[9011,36337],[9012,36337],[9013,36559],[9014,36365],[9015,36365],[9016,36334],[9017,36350],[9018,36343],[9019,36343],[9021,36360],[9022,36342],[9023,36338],[9024,36338],[9025,36338],[9026,36340],[9027,36646],[9028,36340],[9030,36342],[9033,36336],[9036,36295],[9037,36343],[9038,36343],[9040,36343],[9041,36343],[9042,36343],[9043,36343],[9044,36289],[9045,36337],[9046,36337],[9048,36337],[9049,36337],[9052,36423],[9053,36423],[9055,36660],[9060,36562],[9061,36660],[9066,36562],[9067,36660],[9068,36660],[9079,36562],[9080,36562],[9081,36562],[9082,36562],[9083,36562],[9088,36660],[9089,36660],[9090,36660],[9091,36423],[9094,36562],[9101,36562],[9110,36562],[9111,36562],[9116,36660],[9119,36562],[9120,36562],[9121,36562],[9136,36562],[9137,36562],[9151,36562],[9159,36562],[9175,36423],[9176,36423],[9180,36562],[9184,36660],[9185,36660],[9186,36562],[9193,36660],[9196,36340],[9197,36340],[9198,36344],[9199,36344],[9200,36337],[9201,36337],[9202,36559],[9203,36365],[9204,36365],[9205,36334],[9206,36350],[9207,36343],[9208,36343],[9210,36360],[9211,36342],[9212,36338],[9213,36338],[9214,36338],[9215,36340],[9216,36646],[9217,36340],[9219,36342],[9222,36336],[9225,36295],[9226,36343],[9227,36343],[9229,36343],[9230,36343],[9231,36343],[9232,36343],[9233,36289],[9234,36337],[9235,36337],[9237,36337],[9238,36337],[9241,36423],[9242,36423],[9244,36660],[9249,36562],[9250,36660],[9255,36562],[9256,36660],[9257,36660],[9268,36562],[9269,36562],[9270,36562],[9271,36562],[9272,36562],[9277,36660],[9278,36660],[9279,36660],[9280,36423],[9283,36562],[9290,36562],[9299,36562],[9300,36562],[9305,36660],[9308,36562],[9309,36562],[9310,36562],[9325,36562],[9326,36562],[9340,36562],[9348,36562],[9364,36423],[9365,36423],[9369,36562],[9373,36660],[9374,36660],[9375,36562],[9382,36660],[9385,36340],[9386,36340],[9387,36344],[9388,36344],[9389,36337],[9390,36337],[9391,36559],[9392,36365],[9393,36365],[9394,36334],[9395,36350],[9396,36343],[9397,36343],[9401,36360],[9402,36342],[9403,36338],[9404,36338],[9405,36338],[9406,36340],[9407,36342],[9408,36646],[9409,36340],[9411,36342],[9414,36336],[9417,36295],[9418,36343],[9419,36343],[9421,36343],[9422,36343],[9423,36343],[9424,36343],[9425,36289],[9426,36337],[9427,36337],[9429,36337],[9430,36340],[9431,36340],[9432,36337],[9435,36423],[9436,36423],[9438,36660],[9443,36562],[9444,36660],[9449,36562],[9450,36660],[9451,36660],[9462,36562],[9463,36562],[9464,36562],[9465,36562],[9466,36562],[9471,36660],[9472,36660],[9473,36660],[9474,36423],[9477,36562],[9484,36562],[9493,36562],[9494,36562],[9500,36660],[9503,36562],[9504,36562],[9505,36562],[9520,36562],[9521,36562],[9535,36562],[9543,36562],[9559,36423],[9560,36423],[9564,36562],[9568,36660],[9569,36660],[9570,36562],[9579,36660],[9582,36340],[9583,36340],[9584,36344],[9585,36344],[9586,36337],[9587,36337],[9588,36559],[9589,36365],[9590,36365],[9591,36334],[9592,36350],[9593,36343],[9594,36343],[9598,36360],[9599,36342],[9600,36338],[9601,36338],[9602,36338],[9603,36340],[9604,36342],[9605,36359],[9606,36646],[9607,36340],[9608,36358],[9611,36342],[9614,36336],[9617,36295],[9618,36343],[9619,36343],[9623,36343],[9624,36343],[9625,36343],[9626,36343],[9627,36289],[9628,36337],[9629,36337],[9631,36337],[9632,36340],[9633,36340],[9634,36337],[9637,36423],[9638,36423],[9640,36660],[9645,36562],[9646,36660],[9651,36562],[9652,36660],[9653,36660],[9664,36562],[9665,36562],[9666,36562],[9667,36562],[9668,36562],[9673,36660],[9674,36660],[9675,36660],[9676,36423],[9679,36562],[9686,36562],[9695,36562],[9696,36562],[9702,36660],[9705,36562],[9706,36562],[9707,36562],[9723,36562],[9724,36562],[9738,36562],[9746,36562],[9763,36423],[9764,36423],[9768,36562],[9772,36660],[9773,36660],[9774,36562],[9783,36660],[9786,36340],[9787,36340],[9788,36344],[9789,36344],[9790,36337],[9791,36337],[9792,36559],[9793,36365],[9794,36365],[9795,36334],[9796,36350],[9797,36343],[9798,36343],[9800,36360],[9801,36342],[9802,36338],[9803,36338],[9804,36338],[9805,36340],[9806,36646],[9807,36340],[9809,36342],[9812,36336],[9815,36295],[9816,36343],[9817,36343],[9819,36343],[9820,36343],[9821,36343],[9822,36343],[9823,36289],[9824,36337],[9825,36337],[9827,36337],[9828,36337],[9831,36423],[9832,36423],[9834,36660],[9839,36562],[9840,36660],[9845,36562],[9846,36660],[9847,36660],[9858,36562],[9859,36562],[9860,36562],[9861,36562],[9862,36562],[9867,36660],[9868,36660],[9869,36660],[9870,36423],[9873,36562],[9880,36562],[9889,36562],[9890,36562],[9895,36660],[9898,36562],[9899,36562],[9900,36562],[9915,36562],[9916,36562],[9930,36562],[9938,36562],[9954,36423],[9955,36423],[9959,36562],[9963,36660],[9964,36660],[9965,36562],[9972,36660],[9992,36513],[9993,36533],[9995,36383],[9996,36533],[9997,36661],[9998,36661],[9999,36661],[10000,36409],[10001,36409],[10002,36661],[10003,36661],[10004,36661],[10005,36661],[10006,36661],[10007,36661],[10008,36533],[10009,36533],[10010,36661],[10011,36661],[10012,36533],[10013,36661],[10014,36661],[10015,36661],[10016,36661],[10017,36661],[10018,36661],[10019,36661],[10020,36661],[10021,36661],[10022,36661],[10023,36661],[10024,36661],[10025,36661],[10026,36661],[10027,36661],[10028,36409],[10029,36661],[10030,36661],[10031,36386],[10034,36432],[10035,36432],[10036,36432],[10037,36386],[10038,36433],[10039,36386],[10040,36433],[10041,36386],[10042,36433],[10043,36386],[10044,36386],[10045,36412],[10183,36433],[10239,36386],[10240,36386],[10241,36386],[10246,36289],[10247,36289],[10248,36289],[10250,36289],[10253,36662],[10254,36435],[10256,36435],[10257,36434],[10258,36663],[10259,36434],[10260,36662],[10261,36664],[10262,36436],[10263,36665],[10266,36666],[10267,36666],[10268,36666],[10269,36666],[10270,36666],[10271,36666],[10272,36666],[10273,36666],[10274,36666],[10275,36666],[10276,36666],[10277,36666],[10278,36666],[10279,36666],[10283,36666],[10284,36666],[10285,36666],[10286,36666],[10287,36666],[10288,36666],[10289,36666],[10290,36666],[10291,36666],[10292,36666],[10293,36666],[10294,36666],[10295,36666],[10296,36666],[10297,36666],[10298,36666],[10299,36666],[10300,36666],[10301,36666],[10302,36666],[10303,36666],[10304,36666],[10305,36666],[10306,36666],[10307,36666],[10308,36666],[10309,36666],[10310,36666],[10311,36666],[10312,36666],[10313,36666],[10314,36666],[10315,36666],[10316,36666],[10317,36666],[10318,36666],[10319,36666],[10320,36666],[10321,36666],[10322,36666],[10323,36666],[10324,36666],[10325,36666],[10326,36666],[10327,36666],[10328,36666],[10329,36666],[10330,36666],[10331,36666],[10332,36666],[10333,36666],[10334,36666],[10335,36666],[10336,36666],[10337,36666],[10338,36666],[10339,36666],[10340,36666],[10341,36666],[10342,36666],[10343,36666],[10344,36666],[10345,36666],[10346,36666],[10347,36666],[10348,36666],[10349,36666],[10350,36666],[10351,36666],[10352,36666],[10353,36665],[10354,36665],[10355,36665],[10356,36664],[10362,36666],[10363,36666],[10364,36666],[10365,36666],[10366,36666],[10367,36666],[10368,36666],[10369,36666],[10370,36666],[10371,36666],[10372,36666],[10373,36666],[10374,36666],[10375,36666],[10376,36666],[10377,36666],[10378,36666],[10379,36666],[10380,36666],[10381,36666],[10382,36666],[10383,36666],[10384,36666],[10385,36666],[10386,36666],[10387,36666],[10388,36666],[10389,36666],[10390,36666],[10391,36666],[10392,36666],[10393,36666],[10394,36666],[10395,36666],[10396,36666],[10398,36438],[10399,36439],[10400,36438],[10419,36440],[10420,36441],[10421,36437],[10495,36435],[10505,36434],[10506,36442],[10507,36440],[10508,36441],[10509,36443],[10510,36438],[10511,36439],[10512,36438],[10513,36437],[10531,36666],[10532,36666],[10533,36666],[10534,36666],[10535,36666],[10536,36666],[10537,36666],[10538,36666],[10539,36666],[10540,36666],[10541,36666],[10542,36666],[10543,36666],[10544,36666],[10546,36666],[10547,36666],[10548,36666],[10549,36666],[10550,36666],[10551,36666],[10552,36666],[10553,36666],[10554,36666],[10555,36666],[10556,36666],[10557,36666],[10558,36666],[10559,36666],[10560,36666],[10561,36666],[10562,36666],[10563,36666],[10564,36666],[10565,36666],[10566,36666],[10567,36666],[10568,36666],[10569,36666],[10570,36666],[10571,36666],[10572,36666],[10573,36666],[10585,36666],[10586,36666],[10587,36666],[10588,36666],[10589,36666],[10590,36666],[10591,36666],[10596,36666],[10597,36666],[10598,36666],[10599,36666],[10600,36666],[10601,36666],[10602,36666],[10603,36666],[10604,36666],[10605,36666],[10606,36666],[10607,36666],[10608,36666],[10609,36666],[10610,36666],[10611,36666],[10612,36666],[10613,36666],[10614,36666],[10615,36666],[10616,36666],[10617,36666],[10618,36666],[10619,36666],[10620,36666],[10621,36666],[10622,36666],[10623,36666],[10624,36666],[10625,36666],[10626,36666],[10627,36666],[10628,36666],[10629,36666],[10630,36666],[10672,36664],[10683,36666],[10684,36666],[10685,36666],[10686,36666],[10687,36666],[10688,36666],[10689,36666],[10690,36666],[10691,36666],[10692,36666],[10693,36666],[10694,36666],[10695,36666],[10696,36666],[10697,36666],[10698,36666],[10699,36666],[10700,36666],[10701,36666],[10702,36666],[10703,36666],[10704,36666],[10705,36666],[10706,36666],[10707,36666],[10708,36666],[10709,36666],[10710,36666],[10711,36666],[10712,36666],[10713,36666],[10714,36666],[10715,36666],[10716,36666],[10717,36666],[10737,36442],[10738,36443],[10761,36459],[10762,36459],[10763,36459],[10764,36459],[10765,36459],[10766,36459],[10767,36459],[10768,36459],[10769,36459],[10770,36537],[10771,36444],[10773,36459],[10774,36459],[10776,36459],[10777,36459],[10778,36459],[10779,36459],[10780,36459],[10781,36459],[10782,36459],[10783,36459],[10784,36387],[10785,36444],[10786,36459],[10787,36459],[10788,36459],[10789,36459],[10790,36459],[10791,36459],[10792,36459],[10799,36567],[10800,36567],[10801,36567],[10802,36567],[10803,36567],[10804,36567],[10812,36444],[10813,36387],[10817,36387],[10819,36667],[10820,36667],[10821,36538],[10822,36538],[10823,36538],[10824,36538],[10826,36538],[10827,36538],[10828,36538],[10829,36389],[10830,36538],[10831,36538],[10832,36538],[10833,36538],[10834,36390],[10835,36538],[10836,36538],[10837,36538],[10838,36538],[10839,36538],[10840,36538],[10841,36538],[10842,36538],[10843,36538],[10844,36538],[10845,36538],[10846,36539],[10847,36539],[10848,36390],[10849,36569],[10850,36569],[10852,36569],[10853,36569],[10854,36569],[10855,36569],[10856,36668],[10857,36570],[10858,36668],[10859,36391],[10860,36391],[10861,36391],[10862,36391],[10863,36391],[10865,36391],[10867,36391],[10869,36391],[10870,36391],[10871,36391],[10873,36391],[10887,36540],[10888,36669],[10889,36397],[10890,36397],[10891,36397],[10894,36397],[10895,36397],[10896,36397],[10897,36397],[10898,36397],[10899,36397],[10900,36397],[10901,36397],[10902,36397],[10903,36397],[10904,36397],[10905,36397],[10906,36397],[10910,36397],[10911,36397],[10912,36397],[10913,36368],[10914,36368],[10915,36368],[10917,36369],[10918,36368],[10919,36368],[10921,36368],[10922,36670],[10923,36507],[10924,36507],[10925,36671],[10926,36671],[10927,36672],[10928,36672],[10929,36673],[10930,36673],[10931,36674],[10932,36674],[10933,36675],[10934,36675],[10935,36562],[10939,36676],[10940,36677],[10941,36678],[10942,36678],[10943,36679],[10944,36679],[10945,36563],[10946,36562],[10947,36563],[10948,36562],[10949,36563],[10950,36562],[10951,36562],[10952,36562],[10953,36562],[10954,36562],[10955,36563],[10956,36564],[10957,36564],[10958,36562],[10959,36562],[10960,36571],[10961,36562],[10962,36562],[10963,36562],[10964,36563],[10965,36562],[10966,36562],[10967,36562],[10968,36562],[10969,36562],[10970,36562],[10971,36562],[10972,36563],[10973,36562],[10974,36562],[10975,36562],[10976,36562],[10977,36563],[10978,36562],[10979,36563],[10980,36563],[10981,36563],[10982,36563],[10983,36563],[10984,36563],[10985,36563],[10986,36563],[10987,36562],[10988,36564],[10989,36564],[10990,36562],[10991,36562],[10992,36563],[10993,36562],[10994,36563],[10995,36562],[10996,36562],[10997,36562],[10998,36562],[10999,36562],[11000,36562],[11001,36562],[11002,36562],[11003,36562],[11004,36562],[11005,36563],[11006,36680],[11007,36562],[11008,36562],[11009,36562],[11010,36562],[11011,36562],[11012,36562],[11013,36562],[11014,36562],[11015,36563],[11016,36563],[11017,36562],[11018,36562],[11019,36562],[11020,36563],[11021,36563],[11022,36563],[11023,36563],[11024,36563],[11025,36562],[11026,36563],[11027,36563],[11028,36562],[11029,36563],[11030,36563],[11031,36563],[11032,36562],[11033,36564],[11034,36562],[11035,36563],[11036,36564],[11037,36564],[11038,36564],[11039,36562],[11040,36563],[11041,36563],[11042,36563],[11043,36563],[11044,36563],[11045,36562],[11046,36562],[11047,36562],[11048,36562],[11049,36562],[11050,36562],[11051,36562],[11052,36562],[11053,36562],[11054,36562],[11055,36562],[11056,36564],[11057,36564],[11058,36562],[11059,36562],[11060,36382],[11061,36382],[11062,36446],[11063,36381],[11064,36380],[11065,36380],[11066,36380],[11067,36445],[11070,36446],[11073,36446],[11110,36446],[11145,36446],[11155,36446],[11160,36445],[11165,36445],[11188,36292],[11189,36292],[11226,36292],[11227,36292],[11228,36572],[11229,36572],[11230,36680],[11231,36680],[11232,36680],[11233,36680],[11234,36680],[11235,36680],[11236,36680],[11237,36680],[11238,36573],[11239,36396],[11240,36574],[11241,36574],[11242,36574],[11243,36574],[11244,36574],[11245,36574],[11246,36574],[11247,36574],[11248,36574],[11249,36574],[11250,36574],[11251,36574],[11252,36574],[11253,36574],[11254,36574],[11255,36574],[11256,36574],[11257,36574],[11258,36574],[11259,36574],[11260,36574],[11261,36574],[11262,36574],[11263,36574],[11264,36574],[11265,36574],[11266,36574],[11267,36574],[11268,36574],[11269,36574],[11270,36574],[11271,36574],[11272,36395],[11273,36575],[11274,36575],[11275,36575],[11276,36575],[11277,36575],[11278,36575],[11279,36575],[11280,36575],[11281,36576],[11282,36576],[11283,36576],[11284,36576],[11285,36576],[11286,36576],[11287,36576],[11288,36576],[11289,36576],[11290,36576],[11291,36577],[11292,36577],[11293,36577],[11294,36577],[11295,36577],[11296,36577],[11297,36577],[11298,36577],[11299,36577],[11300,36577],[11301,36577],[11302,36577],[11303,36577],[11304,36576],[11305,36576],[11306,36576],[11307,36576],[11308,36576],[11309,36576],[11310,36576],[11311,36576],[11312,36576],[11313,36576],[11314,36395],[11315,36395],[11316,36575],[11317,36575],[11318,36575],[11319,36575],[11320,36575],[11321,36575],[11322,36575],[11323,36576],[11324,36576],[11325,36576],[11326,36576],[11327,36576],[11328,36576],[11329,36576],[11330,36575],[11331,36575],[11332,36575],[11333,36575],[11334,36575],[11335,36575],[11336,36575],[11337,36575],[11338,36575],[11339,36575],[11340,36575],[11341,36575],[11342,36575],[11343,36575],[11344,36575],[11345,36575],[11346,36575],[11347,36575],[11348,36575],[11349,36575],[11350,36575],[11351,36575],[11352,36575],[11353,36575],[11354,36575],[11355,36575],[11356,36575],[11357,36575],[11358,36575],[11359,36575],[11360,36575],[11361,36575],[11362,36575],[11363,36575],[11364,36575],[11365,36575],[11366,36575],[11367,36575],[11368,36575],[11369,36575],[11370,36575],[11371,36575],[11372,36575],[11373,36575],[11374,36575],[11375,36575],[11376,36575],[11377,36575],[11378,36575],[11379,36575],[11380,36575],[11381,36575],[11382,36575],[11383,36575],[11384,36575],[11385,36575],[11386,36575],[11387,36575],[11388,36575],[11389,36575],[11390,36575],[11391,36575],[11392,36575],[11393,36575],[11394,36575],[11395,36575],[11396,36575],[11397,36575],[11398,36575],[11399,36575],[11400,36575],[11401,36575],[11402,36575],[11403,36575],[11404,36575],[11405,36575],[11406,36575],[11407,36575],[11408,36575],[11409,36575],[11410,36575],[11411,36575],[11412,36575],[11413,36575],[11414,36575],[11415,36575],[11416,36575],[11417,36575],[11418,36575],[11419,36575],[11420,36575],[11421,36575],[11422,36575],[11423,36575],[11424,36575],[11425,36575],[11426,36575],[11427,36575],[11428,36575],[11429,36575],[11430,36575],[11431,36575],[11432,36575],[11433,36575],[11434,36575],[11435,36575],[11436,36575],[11437,36575],[11438,36575],[11439,36575],[11440,36575],[11441,36575],[11442,36575],[11443,36575],[11444,36575],[11445,36575],[11446,36575],[11447,36575],[11448,36575],[11449,36575],[11450,36575],[11451,36575],[11452,36575],[11453,36575],[11454,36575],[11455,36575],[11456,36575],[11457,36575],[11458,36575],[11459,36575],[11460,36575],[11461,36575],[11462,36575],[11463,36575],[11464,36575],[11465,36575],[11466,36575],[11467,36575],[11468,36575],[11469,36575],[11470,36575],[11471,36575],[11472,36575],[11473,36575],[11474,36575],[11475,36575],[11476,36575],[11477,36575],[11478,36575],[11479,36575],[11480,36575],[11481,36575],[11482,36575],[11483,36575],[11484,36575],[11485,36575],[11486,36575],[11487,36575],[11488,36575],[11489,36575],[11490,36575],[11491,36575],[11492,36575],[11493,36575],[11494,36575],[11495,36575],[11496,36575],[11497,36575],[11498,36575],[11499,36575],[11500,36575],[11501,36575],[11502,36575],[11503,36575],[11504,36575],[11505,36575],[11506,36575],[11507,36575],[11508,36575],[11509,36575],[11510,36575],[11511,36575],[11512,36575],[11513,36575],[11514,36575],[11515,36575],[11516,36575],[11517,36575],[11518,36575],[11519,36575],[11520,36575],[11521,36575],[11522,36575],[11523,36575],[11524,36575],[11525,36575],[11526,36575],[11527,36575],[11528,36575],[11529,36575],[11530,36575],[11531,36575],[11532,36575],[11533,36575],[11534,36575],[11535,36575],[11536,36575],[11537,36575],[11538,36575],[11539,36575],[11540,36575],[11541,36575],[11542,36575],[11543,36575],[11544,36575],[11545,36575],[11546,36575],[11547,36575],[11548,36575],[11549,36575],[11550,36575],[11551,36575],[11552,36575],[11553,36575],[11554,36575],[11555,36575],[11556,36575],[11557,36575],[11558,36575],[11559,36575],[11560,36575],[11561,36575],[11562,36575],[11563,36575],[11564,36575],[11565,36575],[11566,36575],[11567,36575],[11568,36575],[11569,36575],[11570,36575],[11571,36575],[11572,36575],[11573,36575],[11574,36575],[11575,36575],[11576,36575],[11577,36575],[11578,36575],[11579,36575],[11580,36575],[11581,36575],[11582,36575],[11583,36575],[11584,36575],[11585,36575],[11586,36395],[11587,36576],[11588,36576],[11589,36576],[11590,36576],[11591,36576],[11592,36576],[11593,36576],[11594,36576],[11595,36576],[11596,36576],[11597,36576],[11598,36578],[11599,36578],[11600,36578],[11601,36578],[11602,36578],[11603,36578],[11604,36578],[11605,36578],[11606,36578],[11607,36578],[11608,36578],[11609,36578],[11610,36578],[11611,36578],[11612,36578],[11613,36578],[11614,36579],[11615,36579],[11616,36579],[11617,36579],[11618,36579],[11619,36579],[11620,36579],[11621,36580],[11622,36396],[11623,36396],[11624,36396],[11625,36395],[11626,36395],[11627,36395],[11628,36395],[11629,36395],[11630,36395],[11631,36395],[11632,36395],[11633,36395],[11634,36395],[11635,36395],[11636,36395],[11637,36395],[11638,36395],[11639,36395],[11640,36395],[11641,36395],[11642,36395],[11643,36395],[11644,36581],[11645,36582],[11646,36583],[11647,36582],[11648,36583],[11649,36584],[11650,36585],[11651,36584],[11652,36585],[11653,36584],[11654,36585],[11655,36586],[11656,36587],[11657,36588],[11658,36589],[11659,36588],[11660,36589],[11661,36588],[11662,36589],[11663,36588],[11664,36589],[11665,36586],[11666,36587],[11667,36586],[11668,36587],[11669,36586],[11670,36587],[11671,36586],[11672,36587],[11673,36586],[11674,36587],[11675,36586],[11676,36587],[11677,36584],[11678,36585],[11679,36586],[11680,36587],[11681,36584],[11682,36585],[11683,36584],[11684,36585],[11685,36590],[11686,36591],[11687,36592],[11688,36593],[11689,36575],[11690,36594],[11691,36595],[11692,36596],[11693,36575],[11694,36594],[11695,36596],[11696,36595],[11697,36597],[11698,36598],[11699,36597],[11700,36598],[11701,36596],[11702,36594],[11703,36594],[11704,36596],[11705,36575],[11706,36594],[11707,36594],[11708,36596],[11709,36575],[11710,36594],[11711,36594],[11712,36596],[11713,36575],[11714,36594],[11715,36594],[11716,36596],[11717,36575],[11718,36594],[11719,36594],[11720,36596],[11721,36575],[11722,36594],[11723,36594],[11724,36596],[11725,36575],[11726,36594],[11727,36594],[11728,36596],[11729,36575],[11730,36594],[11731,36594],[11732,36596],[11733,36575],[11734,36594],[11735,36594],[11736,36596],[11737,36575],[11738,36594],[11739,36594],[11740,36596],[11741,36596],[11742,36594],[11743,36594],[11744,36596],[11745,36596],[11746,36594],[11747,36594],[11748,36596],[11749,36596],[11750,36594],[11751,36594],[11752,36596],[11753,36575],[11754,36594],[11755,36594],[11756,36596],[11757,36575],[11758,36594],[11759,36594],[11760,36596],[11761,36575],[11762,36594],[11763,36594],[11764,36596],[11765,36599],[11766,36600],[11767,36601],[11768,36601],[11769,36575],[11770,36601],[11771,36602],[11772,36601],[11773,36601],[11774,36601],[11775,36601],[11776,36574],[11777,36602],[11778,36574],[11779,36601],[11780,36601],[11781,36601],[11782,36601],[11783,36574],[11784,36574],[11785,36603],[11786,36603],[11787,36603],[11788,36603],[11789,36575],[11790,36575],[11791,36601],[11792,36574],[11793,36574],[11794,36601],[11795,36574],[11796,36574],[11797,36601],[11798,36601],[11799,36601],[11800,36604],[11801,36604],[11802,36605],[11803,36601],[11804,36601],[11805,36574],[11806,36574],[11807,36601],[11808,36574],[11809,36574],[11810,36596],[11811,36575],[11812,36596],[11813,36596],[11814,36575],[11815,36596],[11816,36574],[11817,36574],[11818,36574],[11819,36574],[11820,36601],[11821,36601],[11822,36606],[11823,36606],[11824,36601],[11825,36601],[11826,36601],[11827,36601],[11828,36601],[11829,36601],[11830,36601],[11831,36574],[11832,36574],[11833,36602],[11834,36574],[11835,36574],[11836,36602],[11837,36602],[11838,36602],[11839,36602],[11840,36602],[11841,36574],[11842,36574],[11843,36574],[11844,36602],[11845,36574],[11846,36574],[11847,36574],[11848,36602],[11849,36574],[11850,36574],[11851,36574],[11852,36574],[11853,36607],[11854,36594],[11855,36575],[11856,36575],[11857,36594],[11858,36594],[11859,36575],[11860,36575],[11861,36594],[11862,36574],[11863,36575],[11864,36602],[11865,36574],[11866,36575],[11867,36601],[11868,36594],[11869,36601],[11870,36575],[11871,36601],[11872,36575],[11873,36601],[11874,36594],[11875,36594],[11876,36575],[11877,36575],[11878,36594],[11879,36594],[11880,36575],[11881,36575],[11882,36594],[11883,36594],[11884,36575],[11885,36575],[11886,36594],[11887,36601],[11888,36594],[11889,36601],[11890,36575],[11891,36601],[11892,36575],[11893,36601],[11894,36594],[11895,36594],[11896,36575],[11897,36575],[11898,36594],[11899,36594],[11900,36575],[11901,36575],[11902,36594],[11903,36594],[11904,36575],[11905,36575],[11906,36594],[11907,36594],[11908,36575],[11909,36575],[11910,36594],[11911,36594],[11912,36575],[11913,36575],[11914,36594],[11915,36594],[11916,36575],[11917,36575],[11918,36594],[11919,36594],[11920,36575],[11921,36575],[11922,36594],[11923,36602],[11924,36606],[11925,36606],[11926,36602],[11927,36601],[11928,36601],[11929,36594],[11930,36602],[11931,36575],[11932,36601],[11933,36575],[11934,36574],[11935,36602],[11936,36574],[11937,36575],[11938,36575],[11939,36575],[11940,36596],[11941,36602],[11942,36596],[11943,36601],[11944,36601],[11945,36601],[11946,36601],[11947,36601],[11948,36602],[11949,36601],[11950,36575],[11951,36602],[11952,36596],[11953,36602],[11954,36596],[11955,36601],[11956,36601],[11957,36601],[11958,36608],[11959,36604],[11960,36604],[11961,36604],[11962,36604],[11963,36604],[11964,36608],[11965,36608],[11966,36574],[11967,36596],[11968,36575],[11969,36596],[11970,36602],[11971,36574],[11972,36602],[11973,36602],[11974,36602],[11975,36602],[11976,36602],[11977,36602],[11978,36602],[11979,36609],[11980,36574],[11981,36596],[11982,36575],[11983,36596],[11984,36574],[11985,36609],[11986,36574],[11987,36594],[11988,36575],[11989,36575],[11990,36575],[11991,36575],[11992,36575],[11993,36602],[11994,36574],[11995,36574],[11996,36574],[11997,36596],[11998,36575],[11999,36596],[12000,36602],[12001,36602],[12002,36602],[12003,36602],[12004,36602],[12005,36602],[12006,36574],[12007,36596],[12008,36575],[12009,36596],[12010,36594],[12011,36575],[12012,36575],[12013,36575],[12014,36575],[12015,36575],[12016,36602],[12017,36602],[12018,36594],[12019,36574],[12020,36602],[12021,36574],[12022,36574],[12023,36608],[12024,36610],[12025,36610],[12026,36610],[12027,36610],[12028,36610],[12029,36610],[12030,36610],[12031,36610],[12032,36610],[12033,36610],[12034,36610],[12035,36610],[12036,36610],[12037,36610],[12038,36610],[12039,36610],[12040,36610],[12041,36610],[12042,36610],[12043,36610],[12044,36601],[12045,36574],[12046,36611],[12047,36601],[12048,36574],[12049,36574],[12050,36574],[12051,36575],[12052,36596],[12053,36601],[12054,36575],[12055,36596],[12056,36602],[12057,36602],[12058,36575],[12059,36575],[12060,36574],[12061,36574],[12062,36602],[12063,36612],[12064,36602],[12065,36612],[12066,36612],[12067,36602],[12068,36612],[12069,36612],[12070,36602],[12071,36612],[12072,36612],[12073,36602],[12074,36612],[12075,36602],[12076,36612],[12077,36602],[12078,36612],[12079,36612],[12080,36602],[12081,36612],[12082,36596],[12083,36602],[12084,36596],[12085,36575],[12086,36602],[12087,36575],[12088,36575],[12089,36602],[12090,36575],[12091,36613],[12092,36613],[12093,36613],[12094,36601],[12095,36601],[12096,36574],[12097,36574],[12098,36601],[12099,36601],[12100,36601],[12101,36574],[12102,36574],[12103,36601],[12104,36601],[12105,36601],[12106,36601],[12107,36601],[12108,36575],[12109,36575],[12110,36575],[12111,36575],[12112,36601],[12113,36601],[12114,36601],[12115,36601],[12116,36575],[12117,36575],[12118,36575],[12119,36575],[12120,36574],[12121,36574],[12122,36611],[12123,36574],[12124,36574],[12125,36574],[12126,36574],[12127,36575],[12128,36596],[12129,36601],[12130,36575],[12131,36596],[12132,36574],[12133,36575],[12134,36575],[12135,36574],[12136,36602],[12137,36574],[12138,36574],[12139,36574],[12140,36574],[12141,36574],[12142,36594],[12143,36575],[12144,36575],[12145,36594],[12146,36574],[12147,36602],[12148,36574],[12149,36574],[12150,36606],[12151,36606],[12152,36614],[12153,36614],[12154,36614],[12155,36614],[12156,36601],[12157,36601],[12158,36594],[12159,36575],[12160,36575],[12161,36615],[12162,36575],[12163,36575],[12164,36602],[12165,36602],[12166,36575],[12167,36602],[12168,36575],[12169,36575],[12170,36602],[12171,36575],[12172,36575],[12173,36602],[12174,36575],[12175,36575],[12176,36602],[12177,36575],[12178,36575],[12179,36602],[12180,36575],[12181,36575],[12182,36602],[12183,36575],[12184,36594],[12185,36575],[12186,36575],[12187,36594],[12188,36594],[12189,36575],[12190,36575],[12191,36594],[12192,36575],[12193,36602],[12194,36575],[12195,36594],[12196,36594],[12197,36594],[12198,36594],[12199,36575],[12200,36575],[12201,36594],[12202,36575],[12203,36575],[12204,36596],[12205,36596],[12206,36575],[12207,36575],[12208,36596],[12209,36596],[12210,36594],[12211,36594],[12212,36605],[12213,36594],[12214,36575],[12215,36575],[12216,36594],[12217,36575],[12218,36602],[12219,36575],[12220,36596],[12221,36575],[12222,36596],[12223,36596],[12224,36575],[12225,36596],[12226,36594],[12227,36575],[12228,36575],[12229,36575],[12230,36575],[12231,36594],[12232,36594],[12233,36575],[12234,36575],[12235,36594],[12236,36594],[12237,36575],[12238,36575],[12239,36594],[12240,36575],[12241,36602],[12242,36575],[12243,36594],[12244,36575],[12245,36575],[12246,36594],[12247,36594],[12248,36575],[12249,36575],[12250,36594],[12251,36594],[12252,36575],[12253,36575],[12254,36594],[12255,36594],[12256,36575],[12257,36575],[12258,36594],[12259,36594],[12260,36575],[12261,36575],[12262,36594],[12263,36594],[12264,36575],[12265,36575],[12266,36594],[12267,36594],[12268,36575],[12269,36575],[12270,36594],[12271,36594],[12272,36575],[12273,36575],[12274,36594],[12275,36594],[12276,36575],[12277,36575],[12278,36594],[12279,36594],[12280,36575],[12281,36575],[12282,36594],[12283,36594],[12284,36575],[12285,36575],[12286,36594],[12287,36594],[12288,36575],[12289,36575],[12290,36594],[12291,36602],[12292,36616],[12293,36575],[12294,36575],[12295,36616],[12296,36575],[12297,36575],[12298,36616],[12299,36575],[12300,36575],[12301,36616],[12302,36575],[12303,36575],[12304,36606],[12305,36606],[12306,36602],[12307,36575],[12308,36575],[12309,36575],[12310,36594],[12311,36602],[12312,36594],[12313,36575],[12314,36575],[12315,36575],[12316,36575],[12317,36602],[12318,36575],[12319,36575],[12320,36575],[12321,36575],[12322,36575],[12323,36575],[12324,36596],[12325,36602],[12326,36596],[12327,36575],[12328,36575],[12329,36575],[12330,36594],[12331,36575],[12332,36575],[12333,36575],[12334,36575],[12335,36602],[12336,36575],[12337,36575],[12338,36602],[12339,36596],[12340,36602],[12341,36596],[12342,36594],[12343,36575],[12344,36575],[12345,36608],[12346,36608],[12347,36608],[12348,36575],[12349,36596],[12350,36575],[12351,36596],[12352,36602],[12353,36575],[12354,36602],[12355,36602],[12356,36602],[12357,36602],[12358,36602],[12359,36602],[12360,36602],[12361,36575],[12362,36575],[12363,36596],[12364,36575],[12365,36596],[12366,36575],[12367,36594],[12368,36594],[12369,36575],[12370,36575],[12371,36575],[12372,36575],[12373,36575],[12374,36575],[12375,36575],[12376,36575],[12377,36575],[12378,36575],[12379,36575],[12380,36596],[12381,36575],[12382,36596],[12383,36602],[12384,36602],[12385,36602],[12386,36602],[12387,36602],[12388,36602],[12389,36575],[12390,36596],[12391,36575],[12392,36596],[12393,36594],[12394,36594],[12395,36575],[12396,36575],[12397,36575],[12398,36575],[12399,36575],[12400,36575],[12401,36575],[12402,36575],[12403,36575],[12404,36575],[12405,36602],[12406,36602],[12407,36594],[12408,36575],[12409,36602],[12410,36575],[12411,36608],[12412,36610],[12413,36610],[12414,36610],[12415,36610],[12416,36616],[12417,36575],[12418,36575],[12419,36616],[12420,36575],[12421,36575],[12422,36616],[12423,36575],[12424,36575],[12425,36616],[12426,36575],[12427,36575],[12428,36575],[12429,36596],[12430,36575],[12431,36596],[12432,36602],[12433,36602],[12434,36575],[12435,36575],[12436,36602],[12437,36575],[12438,36602],[12439,36575],[12440,36575],[12441,36602],[12442,36575],[12443,36575],[12444,36602],[12445,36575],[12446,36575],[12447,36602],[12448,36575],[12449,36602],[12450,36575],[12451,36602],[12452,36575],[12453,36575],[12454,36602],[12455,36575],[12456,36596],[12457,36602],[12458,36596],[12459,36575],[12460,36602],[12461,36575],[12462,36575],[12463,36602],[12464,36575],[12465,36613],[12466,36613],[12467,36613],[12468,36601],[12469,36601],[12470,36601],[12471,36601],[12472,36575],[12473,36575],[12474,36575],[12475,36575],[12476,36601],[12477,36601],[12478,36601],[12479,36601],[12480,36575],[12481,36575],[12482,36575],[12483,36575],[12484,36575],[12485,36596],[12486,36575],[12487,36596],[12488,36575],[12489,36575],[12490,36575],[12491,36575],[12492,36594],[12493,36575],[12494,36575],[12495,36594],[12496,36575],[12497,36575],[12498,36606],[12499,36606],[12500,36614],[12501,36614],[12502,36594],[12503,36594],[12504,36594],[12505,36575],[12506,36575],[12507,36594],[12508,36594],[12509,36575],[12510,36575],[12511,36594],[12512,36575],[12513,36602],[12514,36575],[12515,36594],[12516,36575],[12517,36575],[12518,36594],[12519,36594],[12520,36575],[12521,36575],[12522,36594],[12523,36575],[12524,36602],[12525,36575],[12526,36594],[12527,36575],[12528,36575],[12529,36594],[12530,36575],[12531,36575],[12532,36575],[12533,36575],[12534,36575],[12535,36575],[12536,36575],[12537,36602],[12538,36575],[12539,36602],[12540,36575],[12541,36594],[12542,36594],[12543,36594],[12544,36594],[12545,36575],[12546,36596],[12547,36615],[12548,36575],[12549,36575],[12550,36596],[12551,36596],[12552,36594],[12553,36594],[12554,36594],[12555,36594],[12556,36575],[12557,36575],[12558,36575],[12559,36575],[12560,36594],[12561,36575],[12562,36575],[12563,36615],[12564,36575],[12565,36575],[12566,36575],[12567,36575],[12568,36594],[12569,36575],[12570,36575],[12571,36615],[12572,36575],[12573,36575],[12574,36605],[12575,36617],[12576,36617],[12577,36605],[12578,36596],[12579,36596],[12580,36575],[12581,36575],[12582,36602],[12583,36594],[12584,36594],[12585,36594],[12586,36594],[12587,36594],[12588,36594],[12589,36594],[12590,36594],[12591,36594],[12592,36594],[12593,36594],[12594,36594],[12595,36594],[12596,36594],[12597,36594],[12598,36594],[12599,36596],[12600,36602],[12601,36596],[12602,36575],[12603,36575],[12604,36575],[12605,36575],[12606,36575],[12607,36575],[12608,36575],[12609,36575],[12610,36575],[12611,36602],[12612,36575],[12613,36575],[12614,36575],[12615,36602],[12616,36575],[12617,36602],[12618,36575],[12619,36594],[12620,36575],[12621,36575],[12622,36594],[12623,36616],[12624,36616],[12625,36616],[12626,36616],[12627,36616],[12628,36616],[12629,36616],[12630,36616],[12631,36616],[12632,36616],[12633,36616],[12634,36616],[12635,36575],[12636,36594],[12637,36575],[12638,36575],[12639,36575],[12640,36575],[12641,36575],[12642,36575],[12643,36594],[12644,36594],[12645,36594],[12646,36575],[12647,36575],[12648,36594],[12649,36575],[12650,36575],[12651,36594],[12652,36575],[12653,36575],[12654,36575],[12655,36602],[12656,36575],[12657,36594],[12658,36575],[12659,36575],[12660,36594],[12661,36575],[12662,36575],[12663,36594],[12664,36575],[12665,36575],[12666,36594],[12667,36575],[12668,36575],[12669,36594],[12670,36575],[12671,36575],[12672,36594],[12673,36575],[12674,36575],[12675,36575],[12676,36575],[12677,36575],[12678,36575],[12679,36594],[12680,36575],[12681,36575],[12682,36594],[12683,36575],[12684,36575],[12685,36594],[12686,36575],[12687,36575],[12688,36594],[12689,36575],[12690,36602],[12691,36575],[12692,36594],[12693,36594],[12694,36594],[12695,36594],[12696,36575],[12697,36575],[12698,36594],[12699,36575],[12700,36575],[12701,36594],[12702,36594],[12703,36575],[12704,36575],[12705,36594],[12706,36594],[12707,36575],[12708,36575],[12709,36594],[12710,36575],[12711,36575],[12712,36594],[12713,36575],[12714,36575],[12715,36594],[12716,36575],[12717,36575],[12718,36575],[12719,36575],[12720,36596],[12721,36596],[12722,36601],[12723,36601],[12724,36574],[12725,36574],[12726,36601],[12727,36601],[12728,36574],[12729,36574],[12730,36594],[12731,36575],[12732,36575],[12733,36594],[12734,36594],[12735,36575],[12736,36575],[12737,36594],[12738,36575],[12739,36602],[12740,36575],[12741,36594],[12742,36594],[12743,36594],[12744,36594],[12745,36575],[12746,36575],[12747,36594],[12748,36575],[12749,36575],[12750,36596],[12751,36596],[12752,36575],[12753,36575],[12754,36596],[12755,36596],[12756,36594],[12757,36594],[12758,36596],[12759,36575],[12760,36596],[12761,36596],[12762,36575],[12763,36596],[12764,36594],[12765,36575],[12766,36575],[12767,36575],[12768,36575],[12769,36594],[12770,36602],[12771,36616],[12772,36575],[12773,36575],[12774,36616],[12775,36575],[12776,36575],[12777,36606],[12778,36606],[12779,36602],[12780,36575],[12781,36575],[12782,36575],[12783,36594],[12784,36602],[12785,36575],[12786,36575],[12787,36575],[12788,36575],[12789,36602],[12790,36575],[12791,36575],[12792,36575],[12793,36575],[12794,36596],[12795,36602],[12796,36596],[12797,36594],[12798,36575],[12799,36575],[12800,36575],[12801,36575],[12802,36602],[12803,36575],[12804,36575],[12805,36602],[12806,36596],[12807,36602],[12808,36596],[12809,36594],[12810,36575],[12811,36575],[12812,36608],[12813,36608],[12814,36608],[12815,36575],[12816,36596],[12817,36575],[12818,36596],[12819,36602],[12820,36575],[12821,36602],[12822,36602],[12823,36602],[12824,36602],[12825,36602],[12826,36602],[12827,36602],[12828,36575],[12829,36575],[12830,36596],[12831,36575],[12832,36596],[12833,36575],[12834,36594],[12835,36575],[12836,36575],[12837,36575],[12838,36575],[12839,36575],[12840,36575],[12841,36596],[12842,36575],[12843,36596],[12844,36602],[12845,36602],[12846,36602],[12847,36602],[12848,36602],[12849,36602],[12850,36575],[12851,36596],[12852,36575],[12853,36596],[12854,36594],[12855,36575],[12856,36575],[12857,36575],[12858,36575],[12859,36575],[12860,36602],[12861,36602],[12862,36594],[12863,36575],[12864,36602],[12865,36575],[12866,36608],[12867,36610],[12868,36610],[12869,36610],[12870,36610],[12871,36616],[12872,36575],[12873,36575],[12874,36616],[12875,36575],[12876,36575],[12877,36616],[12878,36575],[12879,36575],[12880,36616],[12881,36575],[12882,36575],[12883,36575],[12884,36596],[12885,36575],[12886,36596],[12887,36602],[12888,36602],[12889,36575],[12890,36575],[12891,36602],[12892,36575],[12893,36602],[12894,36575],[12895,36575],[12896,36602],[12897,36575],[12898,36575],[12899,36602],[12900,36575],[12901,36575],[12902,36602],[12903,36575],[12904,36602],[12905,36575],[12906,36602],[12907,36575],[12908,36575],[12909,36602],[12910,36575],[12911,36575],[12912,36602],[12913,36575],[12914,36575],[12915,36602],[12916,36575],[12917,36613],[12918,36613],[12919,36613],[12920,36575],[12921,36596],[12922,36575],[12923,36596],[12924,36575],[12925,36575],[12926,36575],[12927,36575],[12928,36594],[12929,36575],[12930,36575],[12931,36594],[12932,36575],[12933,36575],[12934,36606],[12935,36606],[12936,36614],[12937,36614],[12938,36594],[12939,36594],[12940,36594],[12941,36575],[12942,36575],[12943,36594],[12944,36594],[12945,36575],[12946,36575],[12947,36594],[12948,36575],[12949,36602],[12950,36575],[12951,36594],[12952,36575],[12953,36575],[12954,36594],[12955,36594],[12956,36575],[12957,36575],[12958,36594],[12959,36575],[12960,36602],[12961,36575],[12962,36594],[12963,36575],[12964,36575],[12965,36594],[12966,36575],[12967,36575],[12968,36575],[12969,36575],[12970,36575],[12971,36575],[12972,36575],[12973,36602],[12974,36575],[12975,36602],[12976,36575],[12977,36594],[12978,36594],[12979,36594],[12980,36594],[12981,36575],[12982,36596],[12983,36615],[12984,36575],[12985,36575],[12986,36596],[12987,36596],[12988,36594],[12989,36594],[12990,36594],[12991,36594],[12992,36575],[12993,36575],[12994,36575],[12995,36575],[12996,36594],[12997,36575],[12998,36575],[12999,36615],[13000,36575],[13001,36575],[13002,36575],[13003,36575],[13004,36594],[13005,36575],[13006,36575],[13007,36615],[13008,36575],[13009,36575],[13010,36605],[13011,36617],[13012,36617],[13013,36605],[13014,36596],[13015,36596],[13016,36575],[13017,36575],[13018,36602],[13019,36596],[13020,36602],[13021,36596],[13022,36575],[13023,36575],[13024,36575],[13025,36575],[13026,36575],[13027,36575],[13028,36575],[13029,36575],[13030,36575],[13031,36602],[13032,36575],[13033,36575],[13034,36575],[13035,36602],[13036,36575],[13037,36602],[13038,36575],[13039,36594],[13040,36575],[13041,36575],[13042,36594],[13043,36616],[13044,36616],[13045,36616],[13046,36616],[13047,36616],[13048,36616],[13049,36616],[13050,36616],[13051,36616],[13052,36616],[13053,36616],[13054,36616],[13055,36575],[13056,36594],[13057,36575],[13058,36575],[13059,36575],[13060,36575],[13061,36575],[13062,36575],[13063,36594],[13064,36594],[13065,36594],[13066,36575],[13067,36575],[13068,36594],[13069,36575],[13070,36575],[13071,36594],[13072,36575],[13073,36575],[13074,36575],[13075,36602],[13076,36575],[13077,36594],[13078,36575],[13079,36575],[13080,36594],[13081,36575],[13082,36575],[13083,36594],[13084,36575],[13085,36575],[13086,36594],[13087,36575],[13088,36575],[13089,36594],[13090,36575],[13091,36575],[13092,36594],[13093,36575],[13094,36575],[13095,36594],[13096,36575],[13097,36575],[13098,36594],[13099,36575],[13100,36602],[13101,36575],[13102,36594],[13103,36594],[13104,36594],[13105,36594],[13106,36575],[13107,36575],[13108,36594],[13109,36575],[13110,36575],[13111,36594],[13112,36575],[13113,36575],[13114,36594],[13115,36575],[13116,36575],[13117,36594],[13118,36575],[13119,36575],[13120,36575],[13121,36575],[13122,36596],[13123,36596],[13124,36601],[13125,36601],[13126,36575],[13127,36601],[13128,36601],[13129,36601],[13130,36575],[13131,36601],[13132,36574],[13133,36602],[13134,36574],[13135,36601],[13136,36601],[13137,36575],[13138,36601],[13139,36601],[13140,36601],[13141,36575],[13142,36601],[13143,36574],[13144,36602],[13145,36574],[13146,36575],[13147,36575],[13148,36575],[13149,36575],[13150,36575],[13151,36575],[13152,36575],[13153,36575],[13154,36574],[13155,36574],[13156,36574],[13157,36601],[13158,36574],[13159,36574],[13160,36594],[13161,36596],[13162,36596],[13163,36594],[13164,36594],[13165,36596],[13166,36596],[13167,36594],[13168,36601],[13169,36601],[13170,36601],[13171,36602],[13172,36574],[13173,36602],[13174,36574],[13175,36601],[13176,36601],[13177,36601],[13178,36601],[13179,36601],[13180,36596],[13181,36615],[13182,36575],[13183,36575],[13184,36574],[13185,36574],[13186,36601],[13187,36601],[13188,36601],[13189,36601],[13190,36601],[13191,36574],[13192,36574],[13193,36574],[13194,36601],[13195,36601],[13196,36601],[13197,36574],[13198,36574],[13199,36601],[13200,36601],[13201,36574],[13202,36574],[13203,36594],[13204,36575],[13205,36575],[13206,36615],[13207,36575],[13208,36602],[13209,36575],[13210,36575],[13211,36575],[13212,36594],[13213,36575],[13214,36575],[13215,36615],[13216,36575],[13217,36602],[13218,36575],[13219,36605],[13220,36617],[13221,36617],[13222,36605],[13223,36596],[13224,36596],[13225,36575],[13226,36575],[13227,36602],[13228,36574],[13229,36594],[13230,36594],[13231,36602],[13232,36594],[13233,36594],[13234,36594],[13235,36594],[13236,36594],[13237,36594],[13238,36602],[13239,36594],[13240,36594],[13241,36594],[13242,36594],[13243,36602],[13244,36594],[13245,36594],[13246,36602],[13247,36594],[13248,36594],[13249,36596],[13250,36602],[13251,36596],[13252,36575],[13253,36575],[13254,36575],[13255,36575],[13256,36575],[13257,36575],[13258,36575],[13259,36575],[13260,36574],[13261,36574],[13262,36575],[13263,36602],[13264,36575],[13265,36575],[13266,36575],[13267,36602],[13268,36574],[13269,36601],[13270,36575],[13271,36602],[13272,36575],[13273,36574],[13274,36574],[13275,36574],[13276,36574],[13277,36574],[13278,36602],[13279,36574],[13280,36574],[13281,36574],[13282,36574],[13283,36574],[13284,36574],[13285,36574],[13286,36574],[13287,36574],[13288,36602],[13289,36574],[13290,36574],[13291,36574],[13292,36574],[13293,36574],[13294,36574],[13295,36574],[13296,36574],[13297,36574],[13298,36602],[13299,36574],[13300,36574],[13301,36602],[13302,36574],[13303,36574],[13304,36616],[13305,36616],[13306,36616],[13307,36616],[13308,36616],[13309,36616],[13310,36616],[13311,36616],[13312,36616],[13313,36616],[13314,36616],[13315,36616],[13316,36601],[13317,36601],[13318,36575],[13319,36575],[13320,36575],[13321,36575],[13322,36574],[13323,36574],[13324,36601],[13325,36601],[13326,36601],[13327,36601],[13328,36601],[13329,36601],[13330,36601],[13331,36601],[13332,36601],[13333,36601],[13334,36601],[13335,36601],[13336,36594],[13337,36601],[13338,36601],[13339,36574],[13340,36602],[13341,36574],[13342,36601],[13343,36601],[13344,36575],[13345,36601],[13346,36601],[13347,36575],[13348,36594],[13349,36601],[13350,36575],[13351,36601],[13352,36601],[13353,36601],[13354,36601],[13355,36601],[13356,36601],[13357,36601],[13358,36594],[13359,36601],[13360,36601],[13361,36575],[13362,36575],[13363,36574],[13364,36602],[13365,36574],[13366,36574],[13367,36574],[13368,36574],[13369,36574],[13370,36594],[13371,36575],[13372,36575],[13373,36594],[13374,36574],[13375,36602],[13376,36574],[13377,36574],[13378,36601],[13379,36574],[13380,36574],[13381,36574],[13382,36601],[13383,36601],[13384,36601],[13385,36601],[13386,36574],[13387,36602],[13388,36574],[13389,36601],[13390,36601],[13391,36601],[13392,36601],[13393,36575],[13394,36575],[13395,36594],[13396,36575],[13397,36575],[13398,36594],[13399,36574],[13400,36574],[13401,36574],[13402,36594],[13403,36575],[13404,36575],[13405,36594],[13406,36574],[13407,36574],[13408,36574],[13409,36574],[13410,36574],[13411,36574],[13412,36574],[13413,36602],[13414,36574],[13415,36574],[13416,36601],[13417,36601],[13418,36601],[13419,36601],[13420,36574],[13421,36574],[13422,36601],[13423,36601],[13424,36601],[13425,36601],[13426,36574],[13427,36574],[13428,36575],[13429,36575],[13430,36574],[13431,36574],[13432,36601],[13433,36574],[13434,36574],[13435,36574],[13436,36602],[13437,36574],[13438,36574],[13439,36594],[13440,36575],[13441,36575],[13442,36594],[13443,36575],[13444,36602],[13445,36575],[13446,36594],[13447,36575],[13448,36575],[13449,36594],[13450,36575],[13451,36602],[13452,36575],[13453,36575],[13454,36602],[13455,36575],[13456,36594],[13457,36594],[13458,36594],[13459,36594],[13460,36603],[13461,36603],[13462,36603],[13463,36603],[13464,36575],[13465,36575],[13466,36594],[13467,36575],[13468,36575],[13469,36596],[13470,36596],[13471,36575],[13472,36575],[13473,36575],[13474,36596],[13475,36596],[13476,36575],[13477,36594],[13478,36594],[13479,36605],[13480,36596],[13481,36575],[13482,36596],[13483,36596],[13484,36575],[13485,36596],[13486,36575],[13487,36596],[13488,36596],[13489,36575],[13490,36594],[13491,36575],[13492,36606],[13493,36606],[13494,36575],[13495,36575],[13496,36575],[13497,36594],[13498,36594],[13499,36594],[13500,36575],[13501,36575],[13502,36575],[13503,36575],[13504,36602],[13505,36575],[13506,36575],[13507,36602],[13508,36602],[13509,36602],[13510,36602],[13511,36602],[13512,36602],[13513,36602],[13514,36575],[13515,36575],[13516,36575],[13517,36575],[13518,36575],[13519,36602],[13520,36575],[13521,36575],[13522,36575],[13523,36575],[13524,36602],[13525,36575],[13526,36575],[13527,36575],[13528,36607],[13529,36594],[13530,36575],[13531,36575],[13532,36594],[13533,36594],[13534,36575],[13535,36575],[13536,36594],[13537,36575],[13538,36602],[13539,36575],[13540,36575],[13541,36602],[13542,36575],[13543,36594],[13544,36575],[13545,36575],[13546,36594],[13547,36594],[13548,36575],[13549,36575],[13550,36594],[13551,36575],[13552,36575],[13553,36594],[13554,36575],[13555,36575],[13556,36594],[13557,36594],[13558,36575],[13559,36575],[13560,36594],[13561,36594],[13562,36575],[13563,36575],[13564,36594],[13565,36594],[13566,36575],[13567,36575],[13568,36594],[13569,36594],[13570,36575],[13571,36575],[13572,36594],[13573,36594],[13574,36575],[13575,36575],[13576,36594],[13577,36575],[13578,36575],[13579,36594],[13580,36575],[13581,36575],[13582,36594],[13583,36594],[13584,36575],[13585,36575],[13586,36594],[13587,36575],[13588,36575],[13589,36594],[13590,36575],[13591,36575],[13592,36594],[13593,36594],[13594,36575],[13595,36575],[13596,36594],[13597,36575],[13598,36575],[13599,36575],[13600,36575],[13601,36575],[13602,36575],[13603,36575],[13604,36575],[13605,36575],[13606,36575],[13607,36602],[13608,36602],[13609,36606],[13610,36606],[13611,36602],[13612,36602],[13613,36602],[13614,36575],[13615,36596],[13616,36602],[13617,36596],[13618,36602],[13619,36602],[13620,36575],[13621,36596],[13622,36602],[13623,36596],[13624,36575],[13625,36596],[13626,36575],[13627,36596],[13628,36602],[13629,36575],[13630,36602],[13631,36602],[13632,36602],[13633,36602],[13634,36602],[13635,36602],[13636,36602],[13637,36575],[13638,36575],[13639,36596],[13640,36575],[13641,36596],[13642,36575],[13643,36575],[13644,36575],[13645,36575],[13646,36594],[13647,36602],[13648,36575],[13649,36575],[13650,36575],[13651,36575],[13652,36602],[13653,36575],[13654,36575],[13655,36575],[13656,36575],[13657,36575],[13658,36596],[13659,36602],[13660,36596],[13661,36594],[13662,36575],[13663,36575],[13664,36575],[13665,36575],[13666,36602],[13667,36575],[13668,36575],[13669,36602],[13670,36575],[13671,36575],[13672,36596],[13673,36602],[13674,36596],[13675,36594],[13676,36575],[13677,36575],[13678,36608],[13679,36608],[13680,36608],[13681,36575],[13682,36596],[13683,36575],[13684,36596],[13685,36602],[13686,36575],[13687,36575],[13688,36602],[13689,36602],[13690,36602],[13691,36602],[13692,36602],[13693,36602],[13694,36602],[13695,36575],[13696,36575],[13697,36596],[13698,36575],[13699,36596],[13700,36575],[13701,36575],[13702,36575],[13703,36575],[13704,36594],[13705,36575],[13706,36575],[13707,36575],[13708,36575],[13709,36575],[13710,36602],[13711,36575],[13712,36575],[13713,36575],[13714,36596],[13715,36575],[13716,36596],[13717,36602],[13718,36602],[13719,36602],[13720,36602],[13721,36602],[13722,36602],[13723,36575],[13724,36596],[13725,36575],[13726,36596],[13727,36575],[13728,36596],[13729,36575],[13730,36596],[13731,36602],[13732,36602],[13733,36602],[13734,36602],[13735,36602],[13736,36602],[13737,36575],[13738,36596],[13739,36575],[13740,36596],[13741,36594],[13742,36575],[13743,36575],[13744,36575],[13745,36575],[13746,36575],[13747,36602],[13748,36602],[13749,36602],[13750,36602],[13751,36594],[13752,36575],[13753,36602],[13754,36575],[13755,36575],[13756,36602],[13757,36575],[13758,36608],[13759,36610],[13760,36610],[13761,36610],[13762,36610],[13763,36575],[13764,36596],[13765,36596],[13766,36575],[13767,36575],[13768,36596],[13769,36596],[13770,36575],[13771,36602],[13772,36602],[13773,36602],[13774,36602],[13775,36575],[13776,36575],[13777,36575],[13778,36575],[13779,36602],[13780,36575],[13781,36602],[13782,36575],[13783,36602],[13784,36575],[13785,36602],[13786,36575],[13787,36575],[13788,36602],[13789,36575],[13790,36575],[13791,36602],[13792,36575],[13793,36575],[13794,36602],[13795,36575],[13796,36575],[13797,36602],[13798,36575],[13799,36575],[13800,36602],[13801,36575],[13802,36575],[13803,36602],[13804,36575],[13805,36602],[13806,36602],[13807,36575],[13808,36602],[13809,36575],[13810,36575],[13811,36602],[13812,36575],[13813,36575],[13814,36602],[13815,36575],[13816,36575],[13817,36602],[13818,36575],[13819,36596],[13820,36602],[13821,36596],[13822,36575],[13823,36602],[13824,36575],[13825,36575],[13826,36602],[13827,36575],[13828,36575],[13829,36602],[13830,36575],[13831,36575],[13832,36602],[13833,36575],[13834,36613],[13835,36613],[13836,36613],[13837,36575],[13838,36575],[13839,36575],[13840,36575],[13841,36575],[13842,36575],[13843,36575],[13844,36575],[13845,36575],[13846,36575],[13847,36575],[13848,36575],[13849,36575],[13850,36575],[13851,36575],[13852,36575],[13853,36575],[13854,36575],[13855,36575],[13856,36575],[13857,36575],[13858,36596],[13859,36596],[13860,36575],[13861,36575],[13862,36596],[13863,36596],[13864,36575],[13865,36575],[13866,36575],[13867,36575],[13868,36575],[13869,36575],[13870,36575],[13871,36575],[13872,36575],[13873,36575],[13874,36594],[13875,36594],[13876,36575],[13877,36575],[13878,36575],[13879,36575],[13880,36575],[13881,36602],[13882,36575],[13883,36575],[13884,36594],[13885,36575],[13886,36575],[13887,36594],[13888,36575],[13889,36602],[13890,36575],[13891,36575],[13892,36606],[13893,36606],[13894,36614],[13895,36614],[13896,36594],[13897,36594],[13898,36594],[13899,36575],[13900,36575],[13901,36615],[13902,36575],[13903,36575],[13904,36575],[13905,36602],[13906,36602],[13907,36602],[13908,36575],[13909,36602],[13910,36575],[13911,36602],[13912,36575],[13913,36602],[13914,36575],[13915,36575],[13916,36602],[13917,36575],[13918,36575],[13919,36602],[13920,36575],[13921,36575],[13922,36602],[13923,36575],[13924,36575],[13925,36602],[13926,36575],[13927,36575],[13928,36602],[13929,36575],[13930,36575],[13931,36602],[13932,36575],[13933,36575],[13934,36602],[13935,36575],[13936,36575],[13937,36602],[13938,36575],[13939,36575],[13940,36602],[13941,36575],[13942,36575],[13943,36602],[13944,36575],[13945,36594],[13946,36575],[13947,36575],[13948,36594],[13949,36575],[13950,36575],[13951,36594],[13952,36575],[13953,36575],[13954,36594],[13955,36575],[13956,36602],[13957,36575],[13958,36575],[13959,36602],[13960,36575],[13961,36594],[13962,36594],[13963,36594],[13964,36594],[13965,36575],[13966,36575],[13967,36594],[13968,36575],[13969,36575],[13970,36596],[13971,36596],[13972,36575],[13973,36575],[13974,36596],[13975,36596],[13976,36594],[13977,36594],[13978,36605],[13979,36594],[13980,36575],[13981,36575],[13982,36594],[13983,36575],[13984,36602],[13985,36575],[13986,36596],[13987,36575],[13988,36596],[13989,36596],[13990,36575],[13991,36596],[13992,36575],[13993,36596],[13994,36596],[13995,36575],[13996,36594],[13997,36575],[13998,36575],[13999,36575],[14000,36575],[14001,36594],[14002,36594],[14003,36575],[14004,36575],[14005,36594],[14006,36594],[14007,36575],[14008,36575],[14009,36594],[14010,36575],[14011,36602],[14012,36575],[14013,36575],[14014,36602],[14015,36575],[14016,36594],[14017,36575],[14018,36575],[14019,36594],[14020,36594],[14021,36575],[14022,36575],[14023,36594],[14024,36575],[14025,36575],[14026,36594],[14027,36575],[14028,36575],[14029,36594],[14030,36594],[14031,36575],[14032,36575],[14033,36594],[14034,36594],[14035,36575],[14036,36575],[14037,36594],[14038,36594],[14039,36575],[14040,36575],[14041,36594],[14042,36594],[14043,36575],[14044,36575],[14045,36594],[14046,36594],[14047,36575],[14048,36575],[14049,36594],[14050,36575],[14051,36575],[14052,36594],[14053,36575],[14054,36575],[14055,36594],[14056,36594],[14057,36575],[14058,36575],[14059,36594],[14060,36575],[14061,36575],[14062,36594],[14063,36575],[14064,36575],[14065,36594],[14066,36594],[14067,36575],[14068,36575],[14069,36594],[14070,36575],[14071,36575],[14072,36575],[14073,36575],[14074,36575],[14075,36575],[14076,36575],[14077,36575],[14078,36575],[14079,36575],[14080,36602],[14081,36602],[14082,36616],[14083,36575],[14084,36575],[14085,36616],[14086,36575],[14087,36575],[14088,36616],[14089,36575],[14090,36575],[14091,36616],[14092,36575],[14093,36575],[14094,36606],[14095,36606],[14096,36602],[14097,36602],[14098,36602],[14099,36575],[14100,36596],[14101,36602],[14102,36596],[14103,36602],[14104,36602],[14105,36575],[14106,36596],[14107,36602],[14108,36596],[14109,36575],[14110,36596],[14111,36575],[14112,36596],[14113,36602],[14114,36575],[14115,36602],[14116,36602],[14117,36602],[14118,36602],[14119,36602],[14120,36602],[14121,36602],[14122,36575],[14123,36575],[14124,36596],[14125,36575],[14126,36596],[14127,36575],[14128,36575],[14129,36575],[14130,36575],[14131,36594],[14132,36602],[14133,36594],[14134,36575],[14135,36575],[14136,36575],[14137,36575],[14138,36602],[14139,36575],[14140,36575],[14141,36575],[14142,36575],[14143,36575],[14144,36575],[14145,36575],[14146,36596],[14147,36602],[14148,36596],[14149,36575],[14150,36575],[14151,36575],[14152,36594],[14153,36575],[14154,36575],[14155,36575],[14156,36575],[14157,36602],[14158,36575],[14159,36575],[14160,36602],[14161,36575],[14162,36575],[14163,36596],[14164,36602],[14165,36596],[14166,36594],[14167,36575],[14168,36575],[14169,36608],[14170,36608],[14171,36608],[14172,36575],[14173,36596],[14174,36575],[14175,36596],[14176,36602],[14177,36575],[14178,36575],[14179,36602],[14180,36602],[14181,36602],[14182,36602],[14183,36602],[14184,36602],[14185,36602],[14186,36575],[14187,36575],[14188,36596],[14189,36575],[14190,36596],[14191,36575],[14192,36575],[14193,36575],[14194,36594],[14195,36594],[14196,36575],[14197,36575],[14198,36575],[14199,36575],[14200,36575],[14201,36575],[14202,36575],[14203,36575],[14204,36575],[14205,36575],[14206,36575],[14207,36596],[14208,36575],[14209,36596],[14210,36602],[14211,36602],[14212,36602],[14213,36602],[14214,36602],[14215,36602],[14216,36575],[14217,36596],[14218,36575],[14219,36596],[14220,36575],[14221,36596],[14222,36575],[14223,36596],[14224,36602],[14225,36602],[14226,36602],[14227,36602],[14228,36602],[14229,36602],[14230,36575],[14231,36596],[14232,36575],[14233,36596],[14234,36594],[14235,36594],[14236,36575],[14237,36575],[14238,36575],[14239,36575],[14240,36575],[14241,36575],[14242,36575],[14243,36575],[14244,36575],[14245,36575],[14246,36602],[14247,36602],[14248,36602],[14249,36602],[14250,36594],[14251,36575],[14252,36602],[14253,36575],[14254,36575],[14255,36602],[14256,36575],[14257,36608],[14258,36610],[14259,36610],[14260,36610],[14261,36610],[14262,36616],[14263,36575],[14264,36575],[14265,36616],[14266,36575],[14267,36575],[14268,36616],[14269,36575],[14270,36575],[14271,36616],[14272,36575],[14273,36575],[14274,36575],[14275,36596],[14276,36596],[14277,36575],[14278,36575],[14279,36596],[14280,36596],[14281,36575],[14282,36602],[14283,36602],[14284,36602],[14285,36602],[14286,36575],[14287,36575],[14288,36575],[14289,36575],[14290,36602],[14291,36575],[14292,36602],[14293,36575],[14294,36602],[14295,36575],[14296,36602],[14297,36575],[14298,36575],[14299,36602],[14300,36575],[14301,36575],[14302,36602],[14303,36575],[14304,36575],[14305,36602],[14306,36575],[14307,36575],[14308,36602],[14309,36575],[14310,36575],[14311,36602],[14312,36575],[14313,36575],[14314,36602],[14315,36575],[14316,36602],[14317,36602],[14318,36575],[14319,36602],[14320,36575],[14321,36575],[14322,36602],[14323,36575],[14324,36575],[14325,36602],[14326,36575],[14327,36575],[14328,36602],[14329,36575],[14330,36596],[14331,36602],[14332,36596],[14333,36575],[14334,36602],[14335,36575],[14336,36575],[14337,36602],[14338,36575],[14339,36575],[14340,36602],[14341,36575],[14342,36575],[14343,36602],[14344,36575],[14345,36613],[14346,36613],[14347,36613],[14348,36575],[14349,36575],[14350,36575],[14351,36575],[14352,36575],[14353,36575],[14354,36575],[14355,36575],[14356,36575],[14357,36575],[14358,36575],[14359,36575],[14360,36575],[14361,36575],[14362,36575],[14363,36575],[14364,36575],[14365,36575],[14366,36575],[14367,36575],[14368,36575],[14369,36596],[14370,36596],[14371,36575],[14372,36575],[14373,36596],[14374,36596],[14375,36575],[14376,36575],[14377,36575],[14378,36575],[14379,36575],[14380,36594],[14381,36575],[14382,36575],[14383,36594],[14384,36575],[14385,36575],[14386,36606],[14387,36606],[14388,36614],[14389,36614],[14390,36594],[14391,36594],[14392,36594],[14393,36575],[14394,36575],[14395,36594],[14396,36594],[14397,36575],[14398,36575],[14399,36594],[14400,36575],[14401,36602],[14402,36575],[14403,36575],[14404,36602],[14405,36575],[14406,36594],[14407,36575],[14408,36575],[14409,36594],[14410,36594],[14411,36575],[14412,36575],[14413,36594],[14414,36575],[14415,36602],[14416,36575],[14417,36575],[14418,36602],[14419,36575],[14420,36594],[14421,36575],[14422,36575],[14423,36594],[14424,36575],[14425,36575],[14426,36575],[14427,36575],[14428,36575],[14429,36575],[14430,36575],[14431,36602],[14432,36575],[14433,36602],[14434,36575],[14435,36602],[14436,36575],[14437,36602],[14438,36575],[14439,36594],[14440,36594],[14441,36594],[14442,36594],[14443,36575],[14444,36596],[14445,36575],[14446,36615],[14447,36575],[14448,36575],[14449,36596],[14450,36596],[14451,36594],[14452,36594],[14453,36594],[14454,36594],[14455,36575],[14456,36575],[14457,36575],[14458,36575],[14459,36575],[14460,36594],[14461,36575],[14462,36575],[14463,36615],[14464,36575],[14465,36575],[14466,36575],[14467,36575],[14468,36594],[14469,36575],[14470,36575],[14471,36615],[14472,36575],[14473,36575],[14474,36605],[14475,36617],[14476,36617],[14477,36605],[14478,36596],[14479,36596],[14480,36596],[14481,36596],[14482,36575],[14483,36575],[14484,36602],[14485,36575],[14486,36575],[14487,36575],[14488,36575],[14489,36575],[14490,36575],[14491,36575],[14492,36575],[14493,36575],[14494,36575],[14495,36575],[14496,36575],[14497,36575],[14498,36575],[14499,36575],[14500,36575],[14501,36575],[14502,36575],[14503,36575],[14504,36575],[14505,36575],[14506,36575],[14507,36575],[14508,36575],[14509,36596],[14510,36602],[14511,36596],[14512,36596],[14513,36602],[14514,36596],[14515,36575],[14516,36575],[14517,36575],[14518,36575],[14519,36575],[14520,36575],[14521,36575],[14522,36575],[14523,36575],[14524,36602],[14525,36575],[14526,36575],[14527,36602],[14528,36575],[14529,36575],[14530,36575],[14531,36602],[14532,36575],[14533,36602],[14534,36575],[14535,36575],[14536,36602],[14537,36575],[14538,36594],[14539,36575],[14540,36575],[14541,36594],[14542,36616],[14543,36616],[14544,36616],[14545,36616],[14546,36616],[14547,36616],[14548,36616],[14549,36616],[14550,36616],[14551,36616],[14552,36616],[14553,36616],[14554,36575],[14555,36594],[14556,36575],[14557,36575],[14558,36575],[14559,36575],[14560,36575],[14561,36575],[14562,36594],[14563,36594],[14564,36594],[14565,36575],[14566,36575],[14567,36594],[14568,36575],[14569,36575],[14570,36594],[14571,36575],[14572,36575],[14573,36575],[14574,36602],[14575,36575],[14576,36575],[14577,36602],[14578,36575],[14579,36594],[14580,36575],[14581,36575],[14582,36594],[14583,36575],[14584,36575],[14585,36594],[14586,36575],[14587,36575],[14588,36594],[14589,36575],[14590,36575],[14591,36594],[14592,36575],[14593,36575],[14594,36594],[14595,36575],[14596,36575],[14597,36575],[14598,36575],[14599,36575],[14600,36575],[14601,36594],[14602,36575],[14603,36575],[14604,36594],[14605,36575],[14606,36575],[14607,36594],[14608,36575],[14609,36575],[14610,36594],[14611,36575],[14612,36602],[14613,36575],[14614,36575],[14615,36602],[14616,36575],[14617,36594],[14618,36594],[14619,36594],[14620,36594],[14621,36575],[14622,36575],[14623,36594],[14624,36575],[14625,36575],[14626,36594],[14627,36594],[14628,36575],[14629,36575],[14630,36594],[14631,36594],[14632,36575],[14633,36575],[14634,36594],[14635,36575],[14636,36575],[14637,36594],[14638,36575],[14639,36575],[14640,36594],[14641,36575],[14642,36575],[14643,36575],[14644,36575],[14645,36596],[14646,36596],[14647,36594],[14648,36575],[14649,36575],[14650,36594],[14651,36594],[14652,36575],[14653,36575],[14654,36594],[14655,36575],[14656,36602],[14657,36575],[14658,36575],[14659,36602],[14660,36575],[14661,36594],[14662,36594],[14663,36594],[14664,36594],[14665,36575],[14666,36575],[14667,36594],[14668,36575],[14669,36575],[14670,36596],[14671,36596],[14672,36575],[14673,36575],[14674,36596],[14675,36596],[14676,36594],[14677,36594],[14678,36596],[14679,36575],[14680,36596],[14681,36596],[14682,36575],[14683,36596],[14684,36575],[14685,36596],[14686,36596],[14687,36575],[14688,36594],[14689,36575],[14690,36575],[14691,36575],[14692,36575],[14693,36594],[14694,36602],[14695,36602],[14696,36616],[14697,36575],[14698,36575],[14699,36616],[14700,36575],[14701,36575],[14702,36606],[14703,36606],[14704,36602],[14705,36602],[14706,36602],[14707,36575],[14708,36596],[14709,36602],[14710,36596],[14711,36602],[14712,36602],[14713,36575],[14714,36596],[14715,36602],[14716,36596],[14717,36575],[14718,36596],[14719,36575],[14720,36596],[14721,36602],[14722,36575],[14723,36602],[14724,36602],[14725,36602],[14726,36602],[14727,36602],[14728,36602],[14729,36602],[14730,36575],[14731,36575],[14732,36596],[14733,36575],[14734,36596],[14735,36575],[14736,36575],[14737,36575],[14738,36575],[14739,36594],[14740,36602],[14741,36575],[14742,36575],[14743,36575],[14744,36575],[14745,36602],[14746,36575],[14747,36575],[14748,36575],[14749,36575],[14750,36596],[14751,36602],[14752,36596],[14753,36594],[14754,36575],[14755,36575],[14756,36575],[14757,36575],[14758,36602],[14759,36575],[14760,36575],[14761,36602],[14762,36575],[14763,36596],[14764,36602],[14765,36596],[14766,36594],[14767,36575],[14768,36575],[14769,36608],[14770,36608],[14771,36608],[14772,36575],[14773,36596],[14774,36575],[14775,36596],[14776,36602],[14777,36575],[14778,36602],[14779,36602],[14780,36602],[14781,36602],[14782,36602],[14783,36602],[14784,36602],[14785,36575],[14786,36575],[14787,36596],[14788,36575],[14789,36596],[14790,36575],[14791,36575],[14792,36594],[14793,36575],[14794,36575],[14795,36575],[14796,36575],[14797,36575],[14798,36575],[14799,36596],[14800,36575],[14801,36596],[14802,36602],[14803,36602],[14804,36602],[14805,36602],[14806,36602],[14807,36602],[14808,36575],[14809,36596],[14810,36575],[14811,36596],[14812,36575],[14813,36596],[14814,36575],[14815,36596],[14816,36602],[14817,36602],[14818,36602],[14819,36602],[14820,36602],[14821,36602],[14822,36575],[14823,36596],[14824,36575],[14825,36596],[14826,36594],[14827,36575],[14828,36575],[14829,36575],[14830,36575],[14831,36575],[14832,36602],[14833,36602],[14834,36602],[14835,36602],[14836,36594],[14837,36575],[14838,36602],[14839,36575],[14840,36575],[14841,36602],[14842,36575],[14843,36608],[14844,36610],[14845,36610],[14846,36610],[14847,36610],[14848,36616],[14849,36575],[14850,36575],[14851,36616],[14852,36575],[14853,36575],[14854,36616],[14855,36575],[14856,36575],[14857,36616],[14858,36575],[14859,36575],[14860,36575],[14861,36596],[14862,36596],[14863,36575],[14864,36575],[14865,36596],[14866,36596],[14867,36575],[14868,36602],[14869,36602],[14870,36602],[14871,36602],[14872,36575],[14873,36575],[14874,36575],[14875,36575],[14876,36602],[14877,36575],[14878,36602],[14879,36575],[14880,36602],[14881,36575],[14882,36602],[14883,36575],[14884,36575],[14885,36602],[14886,36575],[14887,36575],[14888,36602],[14889,36575],[14890,36575],[14891,36602],[14892,36575],[14893,36575],[14894,36602],[14895,36575],[14896,36575],[14897,36602],[14898,36575],[14899,36575],[14900,36602],[14901,36575],[14902,36602],[14903,36602],[14904,36575],[14905,36602],[14906,36575],[14907,36575],[14908,36602],[14909,36575],[14910,36575],[14911,36602],[14912,36575],[14913,36575],[14914,36602],[14915,36575],[14916,36575],[14917,36602],[14918,36575],[14919,36575],[14920,36602],[14921,36575],[14922,36575],[14923,36602],[14924,36575],[14925,36575],[14926,36602],[14927,36575],[14928,36613],[14929,36613],[14930,36613],[14931,36575],[14932,36596],[14933,36596],[14934,36575],[14935,36575],[14936,36596],[14937,36596],[14938,36575],[14939,36575],[14940,36575],[14941,36575],[14942,36575],[14943,36594],[14944,36575],[14945,36575],[14946,36594],[14947,36575],[14948,36575],[14949,36606],[14950,36606],[14951,36614],[14952,36614],[14953,36594],[14954,36594],[14955,36594],[14956,36575],[14957,36575],[14958,36594],[14959,36594],[14960,36575],[14961,36575],[14962,36594],[14963,36575],[14964,36602],[14965,36575],[14966,36575],[14967,36602],[14968,36575],[14969,36594],[14970,36575],[14971,36575],[14972,36594],[14973,36594],[14974,36575],[14975,36575],[14976,36594],[14977,36575],[14978,36602],[14979,36575],[14980,36575],[14981,36602],[14982,36575],[14983,36594],[14984,36575],[14985,36575],[14986,36594],[14987,36575],[14988,36575],[14989,36575],[14990,36575],[14991,36575],[14992,36575],[14993,36575],[14994,36602],[14995,36575],[14996,36602],[14997,36575],[14998,36602],[14999,36575],[15000,36602],[15001,36575],[15002,36594],[15003,36594],[15004,36594],[15005,36594],[15006,36575],[15007,36596],[15008,36615],[15009,36575],[15010,36575],[15011,36596],[15012,36596],[15013,36594],[15014,36594],[15015,36594],[15016,36594],[15017,36575],[15018,36575],[15019,36575],[15020,36575],[15021,36594],[15022,36575],[15023,36575],[15024,36615],[15025,36575],[15026,36575],[15027,36575],[15028,36575],[15029,36594],[15030,36575],[15031,36575],[15032,36615],[15033,36575],[15034,36575],[15035,36605],[15036,36617],[15037,36617],[15038,36605],[15039,36596],[15040,36596],[15041,36596],[15042,36596],[15043,36575],[15044,36575],[15045,36602],[15046,36596],[15047,36602],[15048,36596],[15049,36596],[15050,36602],[15051,36596],[15052,36575],[15053,36575],[15054,36575],[15055,36575],[15056,36575],[15057,36575],[15058,36575],[15059,36575],[15060,36575],[15061,36602],[15062,36575],[15063,36575],[15064,36602],[15065,36575],[15066,36575],[15067,36575],[15068,36602],[15069,36575],[15070,36602],[15071,36575],[15072,36575],[15073,36602],[15074,36575],[15075,36594],[15076,36575],[15077,36575],[15078,36594],[15079,36616],[15080,36616],[15081,36616],[15082,36616],[15083,36616],[15084,36616],[15085,36616],[15086,36616],[15087,36616],[15088,36616],[15089,36616],[15090,36616],[15091,36575],[15092,36594],[15093,36575],[15094,36575],[15095,36575],[15096,36575],[15097,36575],[15098,36575],[15099,36594],[15100,36594],[15101,36594],[15102,36575],[15103,36575],[15104,36594],[15105,36575],[15106,36575],[15107,36594],[15108,36575],[15109,36575],[15110,36575],[15111,36602],[15112,36575],[15113,36575],[15114,36602],[15115,36575],[15116,36594],[15117,36575],[15118,36575],[15119,36594],[15120,36575],[15121,36575],[15122,36594],[15123,36575],[15124,36575],[15125,36594],[15126,36575],[15127,36575],[15128,36594],[15129,36575],[15130,36575],[15131,36594],[15132,36575],[15133,36575],[15134,36594],[15135,36575],[15136,36575],[15137,36594],[15138,36575],[15139,36602],[15140,36575],[15141,36575],[15142,36602],[15143,36575],[15144,36594],[15145,36594],[15146,36594],[15147,36594],[15148,36575],[15149,36575],[15150,36594],[15151,36575],[15152,36575],[15153,36594],[15154,36575],[15155,36575],[15156,36594],[15157,36575],[15158,36575],[15159,36594],[15160,36575],[15161,36575],[15162,36575],[15163,36575],[15164,36596],[15165,36596],[15166,36594],[15167,36575],[15168,36575],[15169,36594],[15170,36594],[15171,36575],[15172,36575],[15173,36594],[15174,36575],[15175,36602],[15176,36575],[15177,36575],[15178,36602],[15179,36575],[15180,36594],[15181,36575],[15182,36575],[15183,36594],[15184,36594],[15185,36575],[15186,36575],[15187,36594],[15188,36575],[15189,36602],[15190,36575],[15191,36575],[15192,36602],[15193,36575],[15194,36575],[15195,36575],[15196,36575],[15197,36594],[15198,36596],[15199,36596],[15200,36594],[15201,36594],[15202,36596],[15203,36596],[15204,36594],[15205,36575],[15206,36575],[15207,36602],[15208,36575],[15209,36602],[15210,36575],[15211,36602],[15212,36575],[15213,36602],[15214,36575],[15215,36594],[15216,36594],[15217,36594],[15218,36594],[15219,36575],[15220,36596],[15221,36575],[15222,36615],[15223,36575],[15224,36575],[15225,36596],[15226,36596],[15227,36575],[15228,36594],[15229,36594],[15230,36594],[15231,36594],[15232,36575],[15233,36575],[15234,36575],[15235,36575],[15236,36575],[15237,36594],[15238,36575],[15239,36575],[15240,36615],[15241,36575],[15242,36602],[15243,36575],[15244,36575],[15245,36575],[15246,36594],[15247,36575],[15248,36575],[15249,36615],[15250,36575],[15251,36602],[15252,36575],[15253,36605],[15254,36617],[15255,36617],[15256,36605],[15257,36596],[15258,36596],[15259,36596],[15260,36596],[15261,36575],[15262,36575],[15263,36602],[15264,36575],[15265,36575],[15266,36575],[15267,36602],[15268,36575],[15269,36575],[15270,36575],[15271,36575],[15272,36575],[15273,36575],[15274,36575],[15275,36575],[15276,36602],[15277,36575],[15278,36575],[15279,36575],[15280,36575],[15281,36575],[15282,36575],[15283,36602],[15284,36575],[15285,36575],[15286,36575],[15287,36575],[15288,36602],[15289,36575],[15290,36575],[15291,36575],[15292,36596],[15293,36602],[15294,36596],[15295,36596],[15296,36602],[15297,36596],[15298,36575],[15299,36575],[15300,36575],[15301,36575],[15302,36575],[15303,36575],[15304,36575],[15305,36575],[15306,36575],[15307,36602],[15308,36575],[15309,36575],[15310,36602],[15311,36575],[15312,36575],[15313,36575],[15314,36602],[15315,36594],[15316,36575],[15317,36602],[15318,36575],[15319,36575],[15320,36602],[15321,36575],[15322,36575],[15323,36575],[15324,36575],[15325,36575],[15326,36575],[15327,36602],[15328,36575],[15329,36575],[15330,36575],[15331,36575],[15332,36575],[15333,36575],[15334,36575],[15335,36575],[15336,36575],[15337,36575],[15338,36602],[15339,36575],[15340,36575],[15341,36575],[15342,36575],[15343,36575],[15344,36575],[15345,36575],[15346,36575],[15347,36602],[15348,36575],[15349,36575],[15350,36575],[15351,36575],[15352,36602],[15353,36575],[15354,36575],[15355,36616],[15356,36616],[15357,36616],[15358,36616],[15359,36616],[15360,36616],[15361,36616],[15362,36616],[15363,36616],[15364,36616],[15365,36616],[15366,36616],[15367,36575],[15368,36594],[15369,36575],[15370,36575],[15371,36575],[15372,36575],[15373,36575],[15374,36575],[15375,36594],[15376,36594],[15377,36594],[15378,36575],[15379,36575],[15380,36594],[15381,36575],[15382,36575],[15383,36594],[15384,36575],[15385,36575],[15386,36575],[15387,36602],[15388,36575],[15389,36575],[15390,36602],[15391,36575],[15392,36594],[15393,36575],[15394,36575],[15395,36594],[15396,36575],[15397,36575],[15398,36594],[15399,36575],[15400,36575],[15401,36594],[15402,36575],[15403,36575],[15404,36594],[15405,36575],[15406,36575],[15407,36594],[15408,36575],[15409,36575],[15410,36575],[15411,36575],[15412,36575],[15413,36602],[15414,36575],[15415,36575],[15416,36594],[15417,36575],[15418,36575],[15419,36594],[15420,36575],[15421,36602],[15422,36575],[15423,36575],[15424,36575],[15425,36575],[15426,36575],[15427,36575],[15428,36594],[15429,36575],[15430,36575],[15431,36594],[15432,36575],[15433,36602],[15434,36575],[15435,36575],[15436,36602],[15437,36575],[15438,36594],[15439,36594],[15440,36594],[15441,36594],[15442,36575],[15443,36575],[15444,36594],[15445,36575],[15446,36575],[15447,36594],[15448,36594],[15449,36575],[15450,36575],[15451,36594],[15452,36575],[15453,36575],[15454,36575],[15455,36602],[15456,36575],[15457,36594],[15458,36575],[15459,36575],[15460,36594],[15461,36575],[15462,36575],[15463,36594],[15464,36575],[15465,36575],[15466,36594],[15467,36575],[15468,36575],[15469,36575],[15470,36575],[15471,36596],[15472,36596],[15473,36575],[15474,36575],[15475,36575],[15476,36602],[15477,36602],[15478,36575],[15479,36575],[15480,36575],[15481,36575],[15482,36618],[15483,36618],[15484,36575],[15485,36618],[15486,36602],[15487,36619],[15488,36619],[15489,36619],[15490,36619],[15491,36619],[15492,36602],[15493,36576],[15494,36575],[15495,36602],[15496,36575],[15497,36619],[15498,36602],[15499,36576],[15500,36619],[15501,36619],[15502,36619],[15503,36619],[15504,36620],[15505,36620],[15506,36621],[15507,36621],[15508,36621],[15509,36621],[15510,36621],[15511,36621],[15512,36575],[15513,36575],[15514,36618],[15515,36619],[15516,36576],[15517,36619],[15518,36619],[15519,36576],[15520,36619],[15521,36619],[15522,36619],[15523,36604],[15524,36604],[15525,36605],[15526,36577],[15527,36601],[15528,36577],[15529,36577],[15530,36577],[15531,36577],[15532,36577],[15533,36596],[15534,36574],[15535,36601],[15536,36601],[15537,36606],[15538,36606],[15539,36601],[15540,36601],[15541,36601],[15542,36601],[15543,36601],[15544,36619],[15545,36619],[15546,36602],[15547,36619],[15548,36619],[15549,36602],[15550,36602],[15551,36602],[15552,36619],[15553,36602],[15554,36619],[15555,36619],[15556,36602],[15557,36619],[15558,36577],[15559,36577],[15560,36577],[15561,36577],[15562,36619],[15563,36622],[15564,36594],[15565,36575],[15566,36575],[15567,36594],[15568,36594],[15569,36575],[15570,36575],[15571,36594],[15572,36574],[15573,36575],[15574,36602],[15575,36574],[15576,36575],[15577,36575],[15578,36602],[15579,36575],[15580,36574],[15581,36575],[15582,36602],[15583,36574],[15584,36575],[15585,36619],[15586,36594],[15587,36619],[15588,36575],[15589,36577],[15590,36575],[15591,36619],[15592,36594],[15593,36594],[15594,36575],[15595,36575],[15596,36594],[15597,36619],[15598,36576],[15599,36619],[15600,36576],[15601,36578],[15602,36578],[15603,36578],[15604,36578],[15605,36578],[15606,36578],[15607,36578],[15608,36594],[15609,36575],[15610,36575],[15611,36594],[15612,36594],[15613,36575],[15614,36575],[15615,36594],[15616,36619],[15617,36576],[15618,36619],[15619,36576],[15620,36619],[15621,36594],[15622,36619],[15623,36575],[15624,36578],[15625,36575],[15626,36619],[15627,36594],[15628,36594],[15629,36575],[15630,36575],[15631,36594],[15632,36619],[15633,36576],[15634,36619],[15635,36576],[15636,36578],[15637,36578],[15638,36578],[15639,36578],[15640,36578],[15641,36578],[15642,36578],[15643,36594],[15644,36575],[15645,36575],[15646,36594],[15647,36594],[15648,36575],[15649,36575],[15650,36594],[15651,36619],[15652,36576],[15653,36619],[15654,36576],[15655,36619],[15656,36594],[15657,36619],[15658,36575],[15659,36575],[15660,36619],[15661,36594],[15662,36594],[15663,36575],[15664,36575],[15665,36594],[15666,36619],[15667,36576],[15668,36619],[15669,36576],[15670,36594],[15671,36575],[15672,36575],[15673,36594],[15674,36594],[15675,36575],[15676,36575],[15677,36594],[15678,36619],[15679,36576],[15680,36619],[15681,36576],[15682,36619],[15683,36576],[15684,36619],[15685,36576],[15686,36619],[15687,36576],[15688,36619],[15689,36576],[15690,36619],[15691,36576],[15692,36619],[15693,36576],[15694,36619],[15695,36576],[15696,36619],[15697,36576],[15698,36619],[15699,36576],[15700,36619],[15701,36576],[15702,36619],[15703,36576],[15704,36619],[15705,36576],[15706,36602],[15707,36602],[15708,36602],[15709,36575],[15710,36602],[15711,36575],[15712,36602],[15713,36619],[15714,36602],[15715,36576],[15716,36619],[15717,36602],[15718,36576],[15719,36619],[15720,36602],[15721,36576],[15722,36619],[15723,36602],[15724,36576],[15725,36619],[15726,36602],[15727,36576],[15728,36619],[15729,36602],[15730,36576],[15731,36606],[15732,36606],[15733,36602],[15734,36578],[15735,36578],[15736,36623],[15737,36578],[15738,36602],[15739,36575],[15740,36624],[15741,36625],[15742,36624],[15743,36575],[15744,36624],[15745,36602],[15746,36575],[15747,36624],[15748,36575],[15749,36575],[15750,36624],[15751,36602],[15752,36625],[15753,36602],[15754,36602],[15755,36602],[15756,36625],[15757,36575],[15758,36624],[15759,36624],[15760,36575],[15761,36624],[15762,36575],[15763,36602],[15764,36575],[15765,36624],[15766,36575],[15767,36624],[15768,36602],[15769,36575],[15770,36624],[15771,36625],[15772,36624],[15773,36576],[15774,36576],[15775,36577],[15776,36577],[15777,36594],[15778,36602],[15779,36575],[15780,36577],[15781,36575],[15782,36619],[15783,36602],[15784,36619],[15785,36575],[15786,36575],[15787,36575],[15788,36596],[15789,36602],[15790,36596],[15791,36577],[15792,36577],[15793,36577],[15794,36577],[15795,36577],[15796,36602],[15797,36577],[15798,36575],[15799,36602],[15800,36596],[15801,36602],[15802,36596],[15803,36577],[15804,36577],[15805,36577],[15806,36575],[15807,36602],[15808,36575],[15809,36624],[15810,36625],[15811,36624],[15812,36608],[15813,36604],[15814,36604],[15815,36604],[15816,36604],[15817,36604],[15818,36608],[15819,36608],[15820,36608],[15821,36619],[15822,36596],[15823,36575],[15824,36596],[15825,36602],[15826,36619],[15827,36602],[15828,36602],[15829,36602],[15830,36602],[15831,36602],[15832,36602],[15833,36602],[15834,36609],[15835,36619],[15836,36596],[15837,36575],[15838,36596],[15839,36619],[15840,36609],[15841,36608],[15842,36619],[15843,36575],[15844,36624],[15845,36602],[15846,36619],[15847,36626],[15848,36626],[15849,36619],[15850,36575],[15851,36624],[15852,36594],[15853,36575],[15854,36575],[15855,36575],[15856,36575],[15857,36575],[15858,36602],[15859,36602],[15860,36625],[15861,36602],[15862,36602],[15863,36602],[15864,36625],[15865,36602],[15866,36619],[15867,36626],[15868,36626],[15869,36602],[15870,36619],[15871,36619],[15872,36576],[15873,36626],[15874,36626],[15875,36627],[15876,36626],[15877,36626],[15878,36576],[15879,36575],[15880,36624],[15881,36619],[15882,36602],[15883,36576],[15884,36627],[15885,36575],[15886,36624],[15887,36575],[15888,36624],[15889,36575],[15890,36624],[15891,36575],[15892,36624],[15893,36602],[15894,36625],[15895,36602],[15896,36625],[15897,36575],[15898,36624],[15899,36575],[15900,36624],[15901,36575],[15902,36624],[15903,36576],[15904,36619],[15905,36596],[15906,36575],[15907,36596],[15908,36602],[15909,36602],[15910,36602],[15911,36602],[15912,36602],[15913,36602],[15914,36619],[15915,36596],[15916,36575],[15917,36596],[15918,36575],[15919,36624],[15920,36619],[15921,36626],[15922,36626],[15923,36575],[15924,36624],[15925,36602],[15926,36625],[15927,36602],[15928,36625],[15929,36575],[15930,36624],[15931,36576],[15932,36627],[15933,36575],[15934,36624],[15935,36575],[15936,36602],[15937,36575],[15938,36624],[15939,36625],[15940,36624],[15941,36594],[15942,36575],[15943,36575],[15944,36575],[15945,36575],[15946,36575],[15947,36602],[15948,36602],[15949,36594],[15950,36619],[15951,36602],[15952,36576],[15953,36575],[15954,36602],[15955,36575],[15956,36619],[15957,36602],[15958,36576],[15959,36577],[15960,36577],[15961,36608],[15962,36610],[15963,36610],[15964,36610],[15965,36610],[15966,36610],[15967,36610],[15968,36610],[15969,36610],[15970,36610],[15971,36610],[15972,36610],[15973,36610],[15974,36610],[15975,36610],[15976,36610],[15977,36610],[15978,36610],[15979,36610],[15980,36610],[15981,36610],[15982,36619],[15983,36577],[15984,36628],[15985,36577],[15986,36577],[15987,36629],[15988,36629],[15989,36602],[15990,36602],[15991,36602],[15992,36602],[15993,36602],[15994,36602],[15995,36575],[15996,36575],[15997,36575],[15998,36575],[15999,36575],[16000,36575],[16001,36577],[16002,36577],[16003,36577],[16004,36577],[16005,36602],[16006,36612],[16007,36602],[16008,36612],[16009,36602],[16010,36575],[16011,36602],[16012,36575],[16013,36602],[16014,36612],[16015,36602],[16016,36612],[16017,36612],[16018,36602],[16019,36612],[16020,36612],[16021,36602],[16022,36612],[16023,36575],[16024,36602],[16025,36575],[16026,36612],[16027,36602],[16028,36612],[16029,36612],[16030,36602],[16031,36612],[16032,36602],[16033,36602],[16034,36602],[16035,36612],[16036,36602],[16037,36612],[16038,36575],[16039,36602],[16040,36575],[16041,36612],[16042,36602],[16043,36612],[16044,36612],[16045,36602],[16046,36612],[16047,36575],[16048,36602],[16049,36575],[16050,36612],[16051,36602],[16052,36612],[16053,36596],[16054,36602],[16055,36596],[16056,36596],[16057,36602],[16058,36596],[16059,36576],[16060,36575],[16061,36602],[16062,36575],[16063,36575],[16064,36602],[16065,36575],[16066,36575],[16067,36602],[16068,36575],[16069,36575],[16070,36602],[16071,36575],[16072,36575],[16073,36602],[16074,36575],[16075,36575],[16076,36602],[16077,36575],[16078,36613],[16079,36613],[16080,36613],[16081,36618],[16082,36618],[16083,36620],[16084,36620],[16085,36618],[16086,36618],[16087,36618],[16088,36620],[16089,36620],[16090,36618],[16091,36601],[16092,36601],[16093,36601],[16094,36601],[16095,36575],[16096,36575],[16097,36575],[16098,36575],[16099,36601],[16100,36601],[16101,36601],[16102,36601],[16103,36575],[16104,36575],[16105,36575],[16106,36575],[16107,36619],[16108,36577],[16109,36628],[16110,36577],[16111,36577],[16112,36629],[16113,36629],[16114,36620],[16115,36619],[16116,36619],[16117,36576],[16118,36575],[16119,36575],[16120,36619],[16121,36619],[16122,36602],[16123,36576],[16124,36576],[16125,36619],[16126,36602],[16127,36619],[16128,36576],[16129,36620],[16130,36619],[16131,36619],[16132,36619],[16133,36619],[16134,36576],[16135,36594],[16136,36575],[16137,36575],[16138,36594],[16139,36619],[16140,36602],[16141,36576],[16142,36619],[16143,36619],[16144,36619],[16145,36619],[16146,36606],[16147,36606],[16148,36614],[16149,36614],[16150,36614],[16151,36614],[16152,36619],[16153,36618],[16154,36594],[16155,36575],[16156,36575],[16157,36615],[16158,36575],[16159,36575],[16160,36602],[16161,36602],[16162,36602],[16163,36602],[16164,36575],[16165,36602],[16166,36575],[16167,36602],[16168,36575],[16169,36602],[16170,36575],[16171,36602],[16172,36575],[16173,36602],[16174,36575],[16175,36575],[16176,36602],[16177,36575],[16178,36575],[16179,36602],[16180,36575],[16181,36575],[16182,36602],[16183,36575],[16184,36575],[16185,36602],[16186,36575],[16187,36575],[16188,36602],[16189,36575],[16190,36575],[16191,36602],[16192,36575],[16193,36575],[16194,36602],[16195,36575],[16196,36575],[16197,36602],[16198,36575],[16199,36575],[16200,36602],[16201,36575],[16202,36575],[16203,36602],[16204,36575],[16205,36575],[16206,36602],[16207,36575],[16208,36594],[16209,36575],[16210,36575],[16211,36594],[16212,36594],[16213,36575],[16214,36575],[16215,36594],[16216,36575],[16217,36602],[16218,36575],[16219,36575],[16220,36602],[16221,36575],[16222,36575],[16223,36602],[16224,36575],[16225,36594],[16226,36594],[16227,36594],[16228,36594],[16229,36575],[16230,36575],[16231,36594],[16232,36575],[16233,36575],[16234,36596],[16235,36596],[16236,36575],[16237,36575],[16238,36596],[16239,36596],[16240,36594],[16241,36594],[16242,36605],[16243,36594],[16244,36575],[16245,36575],[16246,36594],[16247,36575],[16248,36602],[16249,36575],[16250,36596],[16251,36594],[16252,36575],[16253,36575],[16254,36575],[16255,36594],[16256,36594],[16257,36575],[16258,36575],[16259,36594],[16260,36594],[16261,36575],[16262,36575],[16263,36594],[16264,36575],[16265,36602],[16266,36575],[16267,36575],[16268,36602],[16269,36575],[16270,36575],[16271,36602],[16272,36575],[16273,36594],[16274,36575],[16275,36575],[16276,36594],[16277,36594],[16278,36575],[16279,36575],[16280,36594],[16281,36594],[16282,36575],[16283,36575],[16284,36594],[16285,36594],[16286,36575],[16287,36575],[16288,36594],[16289,36594],[16290,36575],[16291,36575],[16292,36594],[16293,36594],[16294,36575],[16295,36575],[16296,36594],[16297,36594],[16298,36575],[16299,36575],[16300,36594],[16301,36594],[16302,36575],[16303,36575],[16304,36594],[16305,36594],[16306,36575],[16307,36575],[16308,36594],[16309,36594],[16310,36575],[16311,36575],[16312,36594],[16313,36594],[16314,36575],[16315,36575],[16316,36594],[16317,36594],[16318,36575],[16319,36575],[16320,36594],[16321,36602],[16322,36602],[16323,36602],[16324,36616],[16325,36575],[16326,36575],[16327,36616],[16328,36575],[16329,36575],[16330,36616],[16331,36575],[16332,36575],[16333,36616],[16334,36575],[16335,36575],[16336,36606],[16337,36606],[16338,36602],[16339,36575],[16340,36602],[16341,36575],[16342,36602],[16343,36602],[16344,36575],[16345,36602],[16346,36575],[16347,36575],[16348,36594],[16349,36602],[16350,36594],[16351,36575],[16352,36575],[16353,36575],[16354,36575],[16355,36602],[16356,36575],[16357,36575],[16358,36575],[16359,36575],[16360,36575],[16361,36575],[16362,36596],[16363,36602],[16364,36596],[16365,36575],[16366,36575],[16367,36575],[16368,36594],[16369,36575],[16370,36575],[16371,36575],[16372,36575],[16373,36602],[16374,36575],[16375,36575],[16376,36602],[16377,36596],[16378,36602],[16379,36596],[16380,36594],[16381,36575],[16382,36575],[16383,36608],[16384,36608],[16385,36608],[16386,36575],[16387,36596],[16388,36575],[16389,36596],[16390,36602],[16391,36575],[16392,36602],[16393,36602],[16394,36602],[16395,36602],[16396,36602],[16397,36602],[16398,36602],[16399,36575],[16400,36575],[16401,36596],[16402,36575],[16403,36596],[16404,36575],[16405,36602],[16406,36575],[16407,36594],[16408,36594],[16409,36575],[16410,36575],[16411,36575],[16412,36575],[16413,36575],[16414,36575],[16415,36575],[16416,36575],[16417,36575],[16418,36575],[16419,36602],[16420,36602],[16421,36575],[16422,36602],[16423,36575],[16424,36596],[16425,36575],[16426,36596],[16427,36602],[16428,36602],[16429,36602],[16430,36602],[16431,36602],[16432,36602],[16433,36575],[16434,36596],[16435,36575],[16436,36596],[16437,36594],[16438,36594],[16439,36575],[16440,36575],[16441,36575],[16442,36575],[16443,36575],[16444,36575],[16445,36575],[16446,36575],[16447,36575],[16448,36575],[16449,36602],[16450,36602],[16451,36594],[16452,36575],[16453,36602],[16454,36575],[16455,36575],[16456,36602],[16457,36575],[16458,36575],[16459,36602],[16460,36575],[16461,36608],[16462,36610],[16463,36610],[16464,36610],[16465,36610],[16466,36616],[16467,36575],[16468,36575],[16469,36616],[16470,36575],[16471,36575],[16472,36616],[16473,36575],[16474,36575],[16475,36616],[16476,36575],[16477,36575],[16478,36602],[16479,36602],[16480,36602],[16481,36602],[16482,36602],[16483,36602],[16484,36575],[16485,36575],[16486,36575],[16487,36575],[16488,36575],[16489,36575],[16490,36602],[16491,36575],[16492,36602],[16493,36575],[16494,36602],[16495,36575],[16496,36602],[16497,36575],[16498,36602],[16499,36575],[16500,36602],[16501,36575],[16502,36575],[16503,36602],[16504,36575],[16505,36575],[16506,36602],[16507,36575],[16508,36575],[16509,36602],[16510,36575],[16511,36575],[16512,36602],[16513,36575],[16514,36575],[16515,36602],[16516,36575],[16517,36602],[16518,36602],[16519,36602],[16520,36575],[16521,36602],[16522,36575],[16523,36575],[16524,36602],[16525,36575],[16526,36575],[16527,36602],[16528,36575],[16529,36575],[16530,36602],[16531,36575],[16532,36575],[16533,36602],[16534,36575],[16535,36575],[16536,36602],[16537,36575],[16538,36596],[16539,36602],[16540,36596],[16541,36596],[16542,36602],[16543,36596],[16544,36575],[16545,36602],[16546,36575],[16547,36575],[16548,36602],[16549,36575],[16550,36575],[16551,36602],[16552,36575],[16553,36575],[16554,36602],[16555,36575],[16556,36575],[16557,36602],[16558,36575],[16559,36575],[16560,36602],[16561,36575],[16562,36613],[16563,36613],[16564,36613],[16565,36601],[16566,36601],[16567,36601],[16568,36601],[16569,36575],[16570,36575],[16571,36575],[16572,36575],[16573,36601],[16574,36601],[16575,36601],[16576,36601],[16577,36575],[16578,36575],[16579,36575],[16580,36575],[16581,36575],[16582,36575],[16583,36575],[16584,36575],[16585,36575],[16586,36602],[16587,36575],[16588,36594],[16589,36575],[16590,36575],[16591,36594],[16592,36575],[16593,36575],[16594,36606],[16595,36606],[16596,36614],[16597,36614],[16598,36594],[16599,36594],[16600,36594],[16601,36575],[16602,36575],[16603,36594],[16604,36594],[16605,36575],[16606,36575],[16607,36594],[16608,36575],[16609,36602],[16610,36575],[16611,36575],[16612,36602],[16613,36575],[16614,36575],[16615,36602],[16616,36575],[16617,36594],[16618,36575],[16619,36575],[16620,36594],[16621,36594],[16622,36575],[16623,36575],[16624,36594],[16625,36575],[16626,36602],[16627,36575],[16628,36575],[16629,36602],[16630,36575],[16631,36575],[16632,36602],[16633,36575],[16634,36594],[16635,36575],[16636,36575],[16637,36594],[16638,36575],[16639,36575],[16640,36575],[16641,36602],[16642,36575],[16643,36575],[16644,36575],[16645,36575],[16646,36575],[16647,36575],[16648,36602],[16649,36575],[16650,36602],[16651,36575],[16652,36602],[16653,36575],[16654,36602],[16655,36575],[16656,36602],[16657,36575],[16658,36602],[16659,36575],[16660,36594],[16661,36594],[16662,36594],[16663,36594],[16664,36575],[16665,36596],[16666,36615],[16667,36575],[16668,36575],[16669,36596],[16670,36596],[16671,36594],[16672,36594],[16673,36594],[16674,36594],[16675,36575],[16676,36575],[16677,36575],[16678,36575],[16679,36594],[16680,36575],[16681,36575],[16682,36615],[16683,36575],[16684,36575],[16685,36594],[16686,36615],[16687,36605],[16688,36617],[16689,36617],[16690,36605],[16691,36596],[16692,36596],[16693,36596],[16694,36596],[16695,36596],[16696,36596],[16697,36575],[16698,36575],[16699,36575],[16700,36575],[16701,36602],[16702,36602],[16703,36594],[16704,36594],[16705,36594],[16706,36594],[16707,36594],[16708,36594],[16709,36594],[16710,36594],[16711,36594],[16712,36594],[16713,36594],[16714,36594],[16715,36594],[16716,36594],[16717,36594],[16718,36594],[16719,36596],[16720,36602],[16721,36596],[16722,36596],[16723,36602],[16724,36596],[16725,36596],[16726,36602],[16727,36596],[16728,36575],[16729,36575],[16730,36575],[16731,36575],[16732,36575],[16733,36575],[16734,36575],[16735,36575],[16736,36575],[16737,36602],[16738,36575],[16739,36575],[16740,36602],[16741,36575],[16742,36575],[16743,36602],[16744,36575],[16745,36575],[16746,36575],[16747,36575],[16748,36575],[16749,36602],[16750,36602],[16751,36575],[16752,36602],[16753,36575],[16754,36575],[16755,36602],[16756,36575],[16757,36575],[16758,36602],[16759,36575],[16760,36594],[16761,36575],[16762,36575],[16763,36594],[16764,36616],[16765,36616],[16766,36616],[16767,36616],[16768,36616],[16769,36616],[16770,36616],[16771,36616],[16772,36616],[16773,36616],[16774,36616],[16775,36616],[16776,36575],[16777,36594],[16778,36575],[16779,36575],[16780,36594],[16781,36594],[16782,36594],[16783,36575],[16784,36575],[16785,36594],[16786,36575],[16787,36575],[16788,36594],[16789,36575],[16790,36575],[16791,36575],[16792,36602],[16793,36575],[16794,36575],[16795,36602],[16796,36575],[16797,36575],[16798,36602],[16799,36575],[16800,36594],[16801,36575],[16802,36575],[16803,36594],[16804,36575],[16805,36575],[16806,36594],[16807,36575],[16808,36575],[16809,36594],[16810,36575],[16811,36575],[16812,36594],[16813,36575],[16814,36575],[16815,36594],[16816,36575],[16817,36575],[16818,36575],[16819,36575],[16820,36575],[16821,36575],[16822,36575],[16823,36602],[16824,36575],[16825,36594],[16826,36575],[16827,36575],[16828,36594],[16829,36575],[16830,36575],[16831,36594],[16832,36575],[16833,36575],[16834,36594],[16835,36575],[16836,36602],[16837,36575],[16838,36575],[16839,36602],[16840,36575],[16841,36575],[16842,36602],[16843,36575],[16844,36594],[16845,36594],[16846,36594],[16847,36594],[16848,36575],[16849,36575],[16850,36594],[16851,36575],[16852,36575],[16853,36594],[16854,36594],[16855,36575],[16856,36575],[16857,36594],[16858,36594],[16859,36575],[16860,36575],[16861,36594],[16862,36575],[16863,36575],[16864,36594],[16865,36575],[16866,36575],[16867,36594],[16868,36575],[16869,36575],[16870,36575],[16871,36575],[16872,36596],[16873,36596],[16874,36601],[16875,36601],[16876,36574],[16877,36574],[16878,36619],[16879,36601],[16880,36601],[16881,36574],[16882,36574],[16883,36594],[16884,36575],[16885,36575],[16886,36594],[16887,36594],[16888,36575],[16889,36575],[16890,36594],[16891,36575],[16892,36602],[16893,36575],[16894,36575],[16895,36602],[16896,36575],[16897,36575],[16898,36602],[16899,36575],[16900,36594],[16901,36594],[16902,36594],[16903,36594],[16904,36575],[16905,36575],[16906,36594],[16907,36575],[16908,36575],[16909,36596],[16910,36596],[16911,36575],[16912,36575],[16913,36596],[16914,36596],[16915,36594],[16916,36594],[16917,36596],[16918,36594],[16919,36575],[16920,36575],[16921,36575],[16922,36594],[16923,36602],[16924,36602],[16925,36602],[16926,36616],[16927,36575],[16928,36575],[16929,36616],[16930,36575],[16931,36575],[16932,36606],[16933,36606],[16934,36602],[16935,36575],[16936,36602],[16937,36575],[16938,36602],[16939,36602],[16940,36575],[16941,36602],[16942,36575],[16943,36575],[16944,36594],[16945,36602],[16946,36575],[16947,36575],[16948,36575],[16949,36575],[16950,36602],[16951,36575],[16952,36575],[16953,36575],[16954,36575],[16955,36596],[16956,36602],[16957,36596],[16958,36594],[16959,36575],[16960,36575],[16961,36575],[16962,36575],[16963,36602],[16964,36575],[16965,36575],[16966,36602],[16967,36596],[16968,36602],[16969,36596],[16970,36594],[16971,36575],[16972,36575],[16973,36608],[16974,36608],[16975,36608],[16976,36575],[16977,36596],[16978,36575],[16979,36596],[16980,36602],[16981,36575],[16982,36602],[16983,36602],[16984,36602],[16985,36602],[16986,36602],[16987,36602],[16988,36602],[16989,36575],[16990,36575],[16991,36596],[16992,36575],[16993,36596],[16994,36575],[16995,36602],[16996,36575],[16997,36594],[16998,36575],[16999,36575],[17000,36575],[17001,36575],[17002,36575],[17003,36602],[17004,36602],[17005,36575],[17006,36602],[17007,36575],[17008,36596],[17009,36575],[17010,36596],[17011,36602],[17012,36602],[17013,36602],[17014,36602],[17015,36602],[17016,36602],[17017,36575],[17018,36596],[17019,36575],[17020,36596],[17021,36594],[17022,36575],[17023,36575],[17024,36575],[17025,36575],[17026,36575],[17027,36602],[17028,36602],[17029,36594],[17030,36575],[17031,36602],[17032,36575],[17033,36575],[17034,36602],[17035,36575],[17036,36575],[17037,36602],[17038,36575],[17039,36608],[17040,36610],[17041,36610],[17042,36610],[17043,36610],[17044,36616],[17045,36575],[17046,36575],[17047,36616],[17048,36575],[17049,36575],[17050,36616],[17051,36575],[17052,36575],[17053,36616],[17054,36575],[17055,36575],[17056,36602],[17057,36602],[17058,36602],[17059,36602],[17060,36602],[17061,36602],[17062,36575],[17063,36575],[17064,36575],[17065,36575],[17066,36575],[17067,36575],[17068,36602],[17069,36575],[17070,36602],[17071,36575],[17072,36602],[17073,36575],[17074,36602],[17075,36575],[17076,36602],[17077,36575],[17078,36602],[17079,36575],[17080,36575],[17081,36602],[17082,36575],[17083,36575],[17084,36602],[17085,36575],[17086,36575],[17087,36602],[17088,36575],[17089,36575],[17090,36602],[17091,36575],[17092,36575],[17093,36602],[17094,36575],[17095,36602],[17096,36602],[17097,36602],[17098,36575],[17099,36602],[17100,36575],[17101,36575],[17102,36602],[17103,36575],[17104,36575],[17105,36602],[17106,36575],[17107,36575],[17108,36602],[17109,36575],[17110,36575],[17111,36602],[17112,36575],[17113,36575],[17114,36602],[17115,36575],[17116,36575],[17117,36602],[17118,36575],[17119,36575],[17120,36602],[17121,36575],[17122,36575],[17123,36602],[17124,36575],[17125,36575],[17126,36602],[17127,36575],[17128,36575],[17129,36602],[17130,36575],[17131,36575],[17132,36602],[17133,36575],[17134,36613],[17135,36613],[17136,36613],[17137,36575],[17138,36575],[17139,36575],[17140,36575],[17141,36575],[17142,36602],[17143,36575],[17144,36594],[17145,36575],[17146,36575],[17147,36594],[17148,36575],[17149,36575],[17150,36606],[17151,36606],[17152,36614],[17153,36614],[17154,36594],[17155,36594],[17156,36594],[17157,36575],[17158,36575],[17159,36594],[17160,36594],[17161,36575],[17162,36575],[17163,36594],[17164,36575],[17165,36602],[17166,36575],[17167,36575],[17168,36602],[17169,36575],[17170,36575],[17171,36602],[17172,36575],[17173,36594],[17174,36575],[17175,36575],[17176,36594],[17177,36594],[17178,36575],[17179,36575],[17180,36594],[17181,36575],[17182,36602],[17183,36575],[17184,36575],[17185,36602],[17186,36575],[17187,36575],[17188,36602],[17189,36575],[17190,36594],[17191,36575],[17192,36575],[17193,36594],[17194,36575],[17195,36575],[17196,36575],[17197,36602],[17198,36575],[17199,36575],[17200,36575],[17201,36575],[17202,36575],[17203,36575],[17204,36602],[17205,36575],[17206,36602],[17207,36575],[17208,36602],[17209,36575],[17210,36602],[17211,36575],[17212,36602],[17213,36575],[17214,36602],[17215,36575],[17216,36594],[17217,36594],[17218,36594],[17219,36594],[17220,36575],[17221,36596],[17222,36615],[17223,36575],[17224,36575],[17225,36596],[17226,36596],[17227,36594],[17228,36594],[17229,36594],[17230,36594],[17231,36575],[17232,36575],[17233,36575],[17234,36575],[17235,36594],[17236,36575],[17237,36575],[17238,36615],[17239,36575],[17240,36575],[17241,36594],[17242,36615],[17243,36605],[17244,36617],[17245,36617],[17246,36605],[17247,36596],[17248,36596],[17249,36596],[17250,36596],[17251,36596],[17252,36596],[17253,36575],[17254,36575],[17255,36575],[17256,36575],[17257,36602],[17258,36602],[17259,36596],[17260,36602],[17261,36596],[17262,36596],[17263,36602],[17264,36596],[17265,36596],[17266,36602],[17267,36596],[17268,36575],[17269,36575],[17270,36575],[17271,36575],[17272,36575],[17273,36575],[17274,36575],[17275,36575],[17276,36575],[17277,36602],[17278,36575],[17279,36575],[17280,36602],[17281,36575],[17282,36575],[17283,36602],[17284,36575],[17285,36575],[17286,36575],[17287,36575],[17288,36575],[17289,36602],[17290,36602],[17291,36575],[17292,36602],[17293,36575],[17294,36575],[17295,36602],[17296,36575],[17297,36575],[17298,36602],[17299,36575],[17300,36594],[17301,36575],[17302,36575],[17303,36594],[17304,36616],[17305,36616],[17306,36616],[17307,36616],[17308,36616],[17309,36616],[17310,36616],[17311,36616],[17312,36616],[17313,36616],[17314,36616],[17315,36616],[17316,36575],[17317,36594],[17318,36575],[17319,36575],[17320,36594],[17321,36594],[17322,36594],[17323,36575],[17324,36575],[17325,36594],[17326,36575],[17327,36575],[17328,36594],[17329,36575],[17330,36575],[17331,36575],[17332,36602],[17333,36575],[17334,36575],[17335,36602],[17336,36575],[17337,36575],[17338,36602],[17339,36575],[17340,36594],[17341,36575],[17342,36575],[17343,36594],[17344,36575],[17345,36575],[17346,36594],[17347,36575],[17348,36575],[17349,36594],[17350,36575],[17351,36575],[17352,36594],[17353,36575],[17354,36575],[17355,36594],[17356,36575],[17357,36575],[17358,36594],[17359,36575],[17360,36575],[17361,36594],[17362,36575],[17363,36602],[17364,36575],[17365,36575],[17366,36602],[17367,36575],[17368,36575],[17369,36602],[17370,36575],[17371,36594],[17372,36594],[17373,36594],[17374,36594],[17375,36575],[17376,36575],[17377,36594],[17378,36575],[17379,36575],[17380,36594],[17381,36575],[17382,36575],[17383,36594],[17384,36575],[17385,36575],[17386,36594],[17387,36575],[17388,36575],[17389,36575],[17390,36575],[17391,36596],[17392,36596],[17393,36619],[17394,36577],[17395,36575],[17396,36577],[17397,36577],[17398,36577],[17399,36575],[17400,36619],[17401,36619],[17402,36602],[17403,36576],[17404,36575],[17405,36602],[17406,36575],[17407,36619],[17408,36602],[17409,36576],[17410,36619],[17411,36619],[17412,36577],[17413,36575],[17414,36577],[17415,36577],[17416,36577],[17417,36575],[17418,36619],[17419,36619],[17420,36602],[17421,36576],[17422,36575],[17423,36602],[17424,36575],[17425,36619],[17426,36602],[17427,36576],[17428,36577],[17429,36575],[17430,36575],[17431,36575],[17432,36575],[17433,36575],[17434,36575],[17435,36575],[17436,36575],[17437,36619],[17438,36619],[17439,36602],[17440,36576],[17441,36620],[17442,36620],[17443,36576],[17444,36620],[17445,36576],[17446,36619],[17447,36619],[17448,36576],[17449,36594],[17450,36596],[17451,36596],[17452,36594],[17453,36594],[17454,36596],[17455,36596],[17456,36594],[17457,36577],[17458,36577],[17459,36619],[17460,36602],[17461,36619],[17462,36602],[17463,36576],[17464,36602],[17465,36575],[17466,36602],[17467,36575],[17468,36602],[17469,36619],[17470,36602],[17471,36576],[17472,36619],[17473,36619],[17474,36618],[17475,36619],[17476,36577],[17477,36596],[17478,36615],[17479,36575],[17480,36575],[17481,36619],[17482,36576],[17483,36619],[17484,36619],[17485,36619],[17486,36619],[17487,36577],[17488,36619],[17489,36574],[17490,36574],[17491,36574],[17492,36574],[17493,36594],[17494,36575],[17495,36575],[17496,36615],[17497,36575],[17498,36602],[17499,36575],[17500,36594],[17501,36615],[17502,36602],[17503,36605],[17504,36617],[17505,36617],[17506,36605],[17507,36576],[17508,36596],[17509,36596],[17510,36596],[17511,36596],[17512,36575],[17513,36575],[17514,36575],[17515,36575],[17516,36602],[17517,36576],[17518,36602],[17519,36576],[17520,36594],[17521,36594],[17522,36602],[17523,36594],[17524,36594],[17525,36594],[17526,36594],[17527,36594],[17528,36594],[17529,36602],[17530,36594],[17531,36594],[17532,36594],[17533,36594],[17534,36602],[17535,36594],[17536,36594],[17537,36602],[17538,36594],[17539,36594],[17540,36596],[17541,36602],[17542,36596],[17543,36596],[17544,36602],[17545,36596],[17546,36596],[17547,36602],[17548,36596],[17549,36575],[17550,36575],[17551,36575],[17552,36575],[17553,36575],[17554,36575],[17555,36575],[17556,36575],[17557,36577],[17558,36577],[17559,36577],[17560,36577],[17561,36575],[17562,36602],[17563,36575],[17564,36575],[17565,36602],[17566,36575],[17567,36575],[17568,36602],[17569,36575],[17570,36575],[17571,36575],[17572,36575],[17573,36575],[17574,36602],[17575,36576],[17576,36602],[17577,36576],[17578,36619],[17579,36575],[17580,36602],[17581,36575],[17582,36575],[17583,36602],[17584,36575],[17585,36575],[17586,36602],[17587,36575],[17588,36619],[17589,36619],[17590,36619],[17591,36619],[17592,36619],[17593,36602],[17594,36576],[17595,36619],[17596,36619],[17597,36619],[17598,36619],[17599,36619],[17600,36619],[17601,36602],[17602,36576],[17603,36576],[17604,36619],[17605,36602],[17606,36576],[17607,36576],[17608,36619],[17609,36619],[17610,36619],[17611,36619],[17612,36602],[17613,36576],[17614,36619],[17615,36602],[17616,36576],[17617,36619],[17618,36576],[17619,36630],[17620,36630],[17621,36630],[17622,36630],[17623,36630],[17624,36630],[17625,36630],[17626,36616],[17627,36616],[17628,36616],[17629,36616],[17630,36616],[17631,36616],[17632,36616],[17633,36616],[17634,36616],[17635,36616],[17636,36616],[17637,36616],[17638,36619],[17639,36618],[17640,36619],[17641,36576],[17642,36619],[17643,36619],[17644,36618],[17645,36618],[17646,36618],[17647,36619],[17648,36619],[17649,36619],[17650,36619],[17651,36619],[17652,36619],[17653,36619],[17654,36594],[17655,36601],[17656,36601],[17657,36619],[17658,36602],[17659,36576],[17660,36575],[17661,36602],[17662,36575],[17663,36619],[17664,36602],[17665,36576],[17666,36619],[17667,36619],[17668,36575],[17669,36619],[17670,36619],[17671,36575],[17672,36594],[17673,36601],[17674,36575],[17675,36619],[17676,36619],[17677,36619],[17678,36619],[17679,36619],[17680,36619],[17681,36619],[17682,36594],[17683,36601],[17684,36601],[17685,36619],[17686,36576],[17687,36575],[17688,36575],[17689,36619],[17690,36619],[17691,36602],[17692,36576],[17693,36576],[17694,36619],[17695,36602],[17696,36619],[17697,36576],[17698,36619],[17699,36619],[17700,36619],[17701,36619],[17702,36576],[17703,36594],[17704,36575],[17705,36575],[17706,36594],[17707,36619],[17708,36602],[17709,36576],[17710,36619],[17711,36619],[17712,36619],[17713,36619],[17714,36577],[17715,36619],[17716,36576],[17717,36629],[17718,36619],[17719,36619],[17720,36626],[17721,36629],[17722,36619],[17723,36619],[17724,36619],[17725,36619],[17726,36619],[17727,36602],[17728,36576],[17729,36575],[17730,36602],[17731,36575],[17732,36619],[17733,36602],[17734,36576],[17735,36619],[17736,36619],[17737,36619],[17738,36619],[17739,36575],[17740,36575],[17741,36577],[17742,36577],[17743,36594],[17744,36575],[17745,36575],[17746,36594],[17747,36577],[17748,36574],[17749,36574],[17750,36577],[17751,36594],[17752,36575],[17753,36575],[17754,36594],[17755,36574],[17756,36574],[17757,36577],[17758,36574],[17759,36574],[17760,36577],[17761,36584],[17762,36585],[17763,36619],[17764,36602],[17765,36576],[17766,36619],[17767,36602],[17768,36576],[17769,36619],[17770,36602],[17771,36576],[17772,36619],[17773,36602],[17774,36576],[17775,36619],[17776,36602],[17777,36576],[17778,36619],[17779,36602],[17780,36576],[17781,36619],[17782,36602],[17783,36576],[17784,36619],[17785,36619],[17786,36619],[17787,36619],[17788,36619],[17789,36619],[17790,36576],[17791,36619],[17792,36619],[17793,36619],[17794,36619],[17795,36619],[17796,36576],[17797,36575],[17798,36575],[17799,36619],[17800,36576],[17801,36619],[17802,36592],[17803,36593],[17804,36592],[17805,36593],[17806,36592],[17807,36593],[17808,36599],[17809,36600],[17810,36631],[17811,36631],[17812,36632],[17813,36631],[17814,36631],[17815,36632],[17816,36581],[17817,36575],[17818,36594],[17819,36594],[17820,36596],[17821,36582],[17822,36583],[17823,36586],[17824,36587],[17825,36633],[17826,36633],[17827,36633],[17828,36633],[17829,36633],[17830,36633],[17831,36633],[17832,36633],[17833,36633],[17834,36633],[17835,36633],[17836,36633],[17837,36633],[17838,36633],[17839,36633],[17840,36584],[17841,36584],[17842,36585],[17843,36586],[17844,36587],[17845,36579],[17846,36579],[17847,36579],[17848,36579],[17849,36580],[17850,36580],[17851,36634],[17852,36580],[17853,36634],[17854,36580],[17855,36634],[17856,36580],[17857,36634],[17858,36580],[17859,36634],[17860,36580],[17861,36634],[17862,36580],[17863,36579],[17864,36395],[17951,36635],[18115,36364],[18116,36447],[18142,36447],[18143,36447],[18144,36447],[18155,36447],[18163,36447],[18171,36449],[18233,36398],[18322,36398],[18361,36571],[18362,36571],[18363,36400],[18364,36399],[18366,36400],[18376,36399],[18388,36450],[18389,36450],[18390,36450],[18426,36346],[18427,36346],[18429,36345],[18432,36345],[18525,36388],[18526,36457],[18737,36462],[18738,36462],[18739,36462],[18740,36464],[18741,36463],[18742,36462],[18743,36462],[18744,36462],[18745,36462],[18746,36462],[18946,36466],[18947,36401],[18948,36401],[18949,36465],[18950,36465],[18951,36465],[18952,36465],[18953,36466],[18954,36465],[18955,36465],[18956,36465],[18957,36465],[18958,36465],[19020,36465],[19059,36465],[19060,36465],[19061,36465],[19155,36344],[19156,36344],[19157,36344],[19161,36343],[19162,36343],[19166,36343],[19167,36343],[19168,36343],[19169,36343],[19170,36343],[19171,36343],[19172,36343],[19173,36343],[19215,36343],[19217,36343],[19218,36343],[19219,36343],[19221,36343],[19222,36343],[19223,36343],[19224,36343],[19225,36343],[19242,36469],[19243,36470],[19244,36467],[19245,36386],[19248,36473],[19249,36472],[19251,36471],[19252,36474],[19253,36474],[19255,36468],[19270,36474],[19298,36474],[19299,36474],[19498,36681],[19499,36681],[19585,36474],[19743,36474],[19758,36467],[19759,36467],[19760,36467],[19761,36467],[19762,36467],[19763,36467],[19764,36467],[19858,36469],[19859,36469],[19860,36469],[19861,36469],[19862,36476],[19863,36469],[19864,36469],[19865,36469],[19866,36469],[19867,36469],[19868,36469],[19869,36469],[19871,36476],[19872,36476],[19873,36469],[19874,36469],[19875,36469],[19877,36476],[19878,36469],[19879,36469],[20173,36470],[20174,36470],[20175,36470],[20176,36470],[20177,36470],[20178,36470],[20179,36470],[20180,36470],[20181,36470],[20182,36470],[20183,36470],[20184,36470],[20185,36469],[20385,36489],[20386,36473],[20387,36473],[20388,36473],[20389,36473],[20390,36473],[20391,36473],[20392,36473],[20393,36473],[20394,36473],[20395,36473],[20398,36473],[20399,36473],[20400,36489],[20401,36473],[20402,36473],[20403,36473],[20404,36473],[20405,36473],[20408,36473],[20409,36473],[20410,36473],[20680,36472],[20681,36472],[20682,36472],[20683,36472],[20684,36472],[20685,36472],[20686,36472],[20687,36472],[20688,36472],[20810,36471],[20811,36471],[20812,36471],[20813,36471],[20814,36471],[20815,36471],[20816,36471],[20930,36475],[20931,36479],[20932,36478],[20933,36477],[20934,36468],[21022,36340],[21023,36340],[21026,36636],[21027,36340],[21028,36340],[21029,36340],[21030,36340],[21031,36340],[21049,36340],[21061,36365],[21062,36365],[21064,36481],[21065,36481],[21066,36481],[21069,36481],[21070,36481],[21071,36481],[21072,36481],[21073,36481],[21074,36481],[21092,36481],[21093,36481],[21094,36481],[21114,36481],[21129,36481],[21139,36481],[21140,36481],[21141,36481],[21147,36481],[21148,36481],[21173,36481],[21174,36481],[21175,36481],[21176,36481],[21177,36682],[21178,36682],[21179,36682],[21180,36682],[21181,36682],[21182,36682],[21183,36682],[21184,36682],[21185,36402],[21186,36482],[21187,36402],[21220,36402],[21221,36402],[21232,36637],[21233,36638],[21234,36638],[21235,36638],[21236,36638],[21237,36638],[21238,36638],[21239,36638],[21240,36638],[21241,36638],[21242,36638],[21243,36638],[21244,36638],[21245,36638],[21246,36638],[21247,36638],[21248,36638],[21249,36638],[21250,36638],[21251,36638],[21252,36638],[21253,36638],[21254,36638],[21255,36638],[21256,36638],[21257,36638],[21258,36639],[21259,36640],[21260,36640],[21261,36640],[21262,36640],[21263,36640],[21264,36640],[21265,36640],[21266,36640],[21267,36640],[21268,36640],[21269,36640],[21270,36640],[21271,36640],[21272,36640],[21273,36640],[21274,36640],[21275,36640],[21276,36640],[21277,36640],[21278,36640],[21279,36640],[21280,36640],[21281,36640],[21282,36640],[21283,36640],[21284,36641],[21285,36641],[21286,36641],[21287,36641],[21288,36641],[21289,36641],[21290,36641],[21291,36641],[21292,36641],[21293,36641],[21294,36641],[21295,36641],[21296,36641],[21297,36641],[21298,36641],[21299,36642],[21300,36642],[21301,36642],[21302,36642],[21303,36642],[21304,36642],[21305,36642],[21306,36642],[21307,36642],[21308,36642],[21309,36642],[21310,36642],[21311,36642],[21312,36642],[21313,36642],[21314,36642],[21315,36642],[21316,36642],[21317,36642],[21318,36642],[21319,36642],[21320,36642],[21321,36642],[21322,36642],[21323,36642],[21324,36643],[21325,36643],[21326,36643],[21327,36643],[21328,36643],[21329,36643],[21330,36643],[21331,36643],[21332,36643],[21333,36643],[21334,36643],[21335,36643],[21336,36643],[21337,36643],[21338,36643],[21339,36644],[21340,36644],[21341,36644],[21342,36644],[21343,36644],[21344,36644],[21345,36644],[21346,36644],[21347,36644],[21348,36644],[21349,36644],[21350,36644],[21351,36644],[21352,36644],[21353,36644],[21354,36644],[21355,36644],[21356,36644],[21357,36644],[21358,36644],[21359,36644],[21360,36644],[21361,36644],[21362,36644],[21363,36644],[21364,36403],[21365,36453],[21366,36403],[21367,36403],[21368,36453],[21369,36453],[21370,36453],[21371,36451],[21372,36451],[21373,36483],[21374,36483],[21418,36485],[21419,36485],[21420,36485],[21421,36485],[21422,36485],[21423,36485],[21424,36485],[21425,36485],[21426,36683],[21427,36485],[21428,36485],[21429,36485],[21430,36485],[21431,36485],[21432,36485],[21621,36683],[21715,36403],[21716,36453],[21717,36403],[21718,36403],[21719,36453],[21720,36453],[21721,36453],[21722,36451],[21723,36451],[21724,36451],[21735,36291],[21736,36291],[21737,36291],[21739,36291],[21740,36559],[21741,36384],[21742,36384],[21743,36384],[21744,36384],[21745,36384],[21746,36291],[21748,36291],[21749,36291],[21750,36384],[21752,36291],[21753,36291],[21754,36291],[21756,36291],[21757,36291],[21759,36291],[21760,36291],[21761,36291],[21844,36566],[21855,36384],[21915,36291],[21924,36486],[21925,36486],[21926,36486],[21927,36486],[21928,36486],[21929,36486],[21930,36486],[21931,36486],[21932,36486],[21960,36486],[21976,36486],[21980,36486],[21981,36486],[21992,36486],[22021,36486],[22052,36486],[22073,36486],[22080,36486],[22081,36486],[22084,36486],[22092,36486],[22093,36486],[22094,36486],[22095,36486],[22103,36486],[22108,36486],[22125,36486],[22163,36486],[22171,36404],[22172,36404],[22174,36359],[22175,36358],[22179,36405],[22180,36406],[22181,36407],[22182,36404],[22184,36404],[22217,36645],[22218,36405],[22224,36406],[22225,36407],[22240,36408],[22241,36408],[22242,36489],[22243,36408],[22244,36646],[22245,36408],[22247,36489],[22248,36490],[22335,36647],[22336,36647],[22337,36647],[22338,36647],[22339,36647],[22340,36648],[22341,36648],[22342,36649],[22343,36649],[22344,36650],[22345,36650],[22346,36651],[22347,36651],[22348,36652],[22349,36652],[22350,36409],[22352,36409],[22353,36409],[22354,36409],[22355,36409],[22356,36409],[22357,36409],[22358,36409],[22359,36409],[22360,36409],[22361,36409],[22362,36409],[22363,36409],[22364,36409],[22365,36409],[22366,36409],[22367,36409],[22368,36409],[22369,36409],[22370,36409],[22371,36409],[22372,36409],[22373,36409],[22374,36409],[22375,36409],[22376,36409],[22377,36409],[22378,36409],[22379,36409],[22380,36409],[22381,36409],[22382,36409],[22383,36409],[22384,36409],[22385,36409],[22386,36409],[22387,36409],[22388,36409],[22389,36409],[22390,36409],[22391,36409],[22392,36409],[22393,36409],[22394,36409],[22395,36409],[22396,36409],[22397,36409],[22398,36409],[22399,36409],[22400,36409],[22401,36409],[22402,36409],[22403,36409],[22404,36409],[22405,36409],[22406,36409],[22407,36409],[22408,36409],[22409,36409],[22410,36409],[22411,36409],[22412,36409],[22413,36409],[22414,36409],[22415,36409],[22416,36409],[22417,36409],[22418,36409],[22419,36409],[22420,36409],[22421,36409],[22422,36409],[22423,36409],[22424,36409],[22425,36409],[22426,36409],[22427,36409],[22428,36409],[22429,36409],[22430,36409],[22431,36409],[22432,36409],[22433,36409],[22434,36409],[22435,36409],[22436,36409],[22437,36409],[22438,36409],[22439,36409],[22440,36409],[22441,36409],[22442,36409],[22443,36409],[22444,36409],[22445,36409],[22446,36409],[22447,36409],[22448,36409],[22449,36409],[22450,36409],[22451,36409],[22452,36409],[22453,36409],[22454,36409],[22455,36409],[22456,36409],[22457,36409],[22458,36409],[22459,36409],[22460,36409],[22461,36409],[22462,36409],[22463,36409],[22464,36409],[22465,36409],[22466,36409],[22467,36409],[22468,36409],[22469,36409],[22470,36409],[22471,36409],[22472,36409],[22473,36409],[22474,36409],[22475,36409],[22476,36409],[22477,36409],[22478,36409],[22479,36409],[22480,36409],[22481,36409],[22482,36409],[22483,36409],[22484,36409],[22485,36409],[22486,36409],[22487,36409],[22488,36409],[22489,36409],[22490,36409],[22491,36409],[22492,36409],[22493,36409],[22494,36409],[22495,36409],[22496,36409],[22497,36409],[22498,36409],[22499,36409],[22500,36409],[22501,36409],[22502,36409],[22503,36409],[22504,36409],[22505,36409],[22506,36409],[22507,36409],[22508,36409],[22509,36409],[22510,36409],[22511,36409],[22512,36409],[22513,36409],[22514,36409],[22515,36409],[22516,36409],[22517,36409],[22518,36409],[22519,36409],[22520,36409],[22521,36409],[22522,36409],[22523,36409],[22524,36409],[22525,36409],[22526,36409],[22527,36409],[22528,36409],[22529,36409],[22530,36409],[22531,36409],[22532,36409],[22533,36409],[22534,36409],[22535,36409],[22536,36409],[22537,36409],[22538,36409],[22539,36409],[22540,36409],[22541,36409],[22542,36409],[22543,36409],[22544,36409],[22545,36409],[22546,36409],[22547,36409],[22548,36409],[22549,36409],[22550,36409],[22551,36409],[22552,36409],[22553,36409],[22554,36409],[22555,36409],[22556,36409],[22557,36409],[22558,36409],[22559,36409],[22560,36409],[22561,36409],[22562,36409],[22563,36409],[22564,36409],[22565,36409],[22566,36409],[22567,36409],[22568,36409],[22569,36409],[22570,36409],[22571,36409],[22572,36409],[22573,36409],[22574,36409],[22575,36409],[22576,36409],[22577,36409],[22578,36409],[22579,36409],[22580,36409],[22581,36409],[22582,36409],[22583,36409],[22584,36409],[22585,36409],[22586,36409],[22587,36409],[22588,36409],[22589,36409],[22590,36409],[22591,36409],[22592,36409],[22593,36409],[22594,36409],[22595,36409],[22596,36409],[22597,36409],[22598,36409],[22599,36409],[22600,36409],[22601,36409],[22602,36409],[22603,36409],[22604,36409],[22605,36409],[22606,36409],[22607,36409],[22608,36409],[22609,36409],[22610,36409],[22611,36409],[22612,36409],[22613,36409],[22614,36409],[22615,36409],[22616,36409],[22617,36409],[22618,36409],[22619,36409],[22620,36409],[22621,36409],[22622,36409],[22623,36409],[22624,36409],[22625,36409],[22626,36409],[22627,36409],[22628,36409],[22629,36409],[22630,36409],[22631,36409],[22632,36409],[22633,36409],[22634,36409],[22635,36409],[22636,36409],[22637,36409],[22638,36409],[22639,36409],[22640,36409],[22641,36409],[22642,36409],[22644,36411],[22645,36411],[22646,36411],[22647,36411],[22648,36411],[22649,36411],[22651,36411],[22652,36411],[22653,36411],[22654,36411],[22655,36411],[22656,36411],[22658,36411],[22659,36411],[22661,36411],[22662,36411],[22663,36411],[22664,36411],[22665,36411],[22666,36411],[22667,36411],[22668,36411],[22669,36411],[22670,36411],[22671,36411],[22672,36411],[22673,36411],[22674,36411],[22675,36411],[22676,36411],[22677,36411],[22678,36411],[22679,36411],[22680,36411],[22681,36411],[22698,36411],[22699,36411],[22712,36653],[22713,36653],[22714,36653],[22715,36653],[22716,36653],[22717,36653],[22718,36653],[22719,36653],[22720,36653],[22721,36653],[22722,36653],[22723,36653],[22724,36653],[22725,36653],[22726,36653],[22727,36653],[22728,36653],[22729,36653],[22730,36653],[22731,36653],[22732,36653],[22733,36653],[22734,36653],[22735,36653],[22736,36653],[22737,36653],[22738,36653],[22739,36653],[22740,36653],[22741,36653],[22742,36653],[22743,36653],[22744,36653],[22745,36653],[22746,36653],[22747,36653],[22748,36653],[22749,36653],[22750,36653],[22751,36653],[22752,36653],[22753,36653],[22754,36653],[22755,36653],[22756,36653],[22757,36653],[22758,36653],[22759,36653],[22760,36653],[22761,36653],[22762,36653],[22763,36653],[22764,36653],[22765,36653],[22766,36653],[22767,36653],[22768,36653],[22769,36653],[22770,36653],[22771,36653],[22772,36653],[22773,36653],[22774,36653],[22775,36653],[22776,36653],[22777,36653],[22778,36653],[22783,36461],[22784,36461],[22786,36456],[22787,36492],[22788,36493],[22789,36456],[22790,36456],[22796,36494],[22799,36495],[22802,36458],[22803,36458],[22810,36496],[22814,36456],[22815,36456],[22817,36491],[22818,36497],[22819,36456],[22830,36458],[22831,36456],[22833,36495],[22835,36458],[22836,36456],[22837,36456],[22838,36495],[22839,36456],[22842,36491],[22843,36491],[22844,36491],[22845,36491],[22846,36491],[22847,36491],[22849,36456],[22855,36456],[22857,36493],[22971,36684],[22983,36495],[23199,36456],[23244,36456],[23264,36495],[23278,36495],[23285,36491],[23286,36491],[23287,36491],[23453,36456],[23454,36456],[23455,36456],[23456,36456],[23490,36654],[23491,36654],[23492,36339],[23493,36498],[23494,36341],[23495,36347],[23496,36348],[23497,36349],[23498,36334],[23499,36413],[23500,36351],[23501,36360],[23502,36342],[23503,36352],[23504,36353],[23505,36354],[23506,36354],[23507,36416],[23508,36342],[23509,36355],[23510,36655],[23511,36356],[23512,36357],[23513,36357],[23515,36342],[23518,36336],[23519,36361],[23520,36362],[23521,36363],[23522,36417],[23523,36418],[23524,36366],[23525,36370],[23526,36419],[23527,36420],[23528,36421],[23529,36371],[23530,36372],[23531,36373],[23532,36374],[23533,36412],[23534,36375],[23535,36422],[23536,36370],[23537,36376],[23538,36377],[23539,36655],[23540,36655],[23541,36379],[23645,36341],[23778,36413],[23895,36414],[23896,36416],[24119,36417],[24120,36418],[24132,36419],[24133,36420],[24134,36421],[24201,36422],[24395,36379],[24397,36337],[24398,36337],[24399,36337],[24400,36337],[24401,36337],[24403,36337],[24404,36337],[24405,36337],[24406,36337],[24407,36337],[24408,36337],[24409,36337],[24410,36337],[24411,36337],[24412,36337],[24413,36337],[24414,36337],[24415,36337],[24416,36337],[24417,36337],[24418,36337],[24455,36424],[24456,36423],[24458,36499],[24459,36448],[24462,36424],[24465,36423],[24466,36423],[24467,36423],[24503,36423],[24508,36423],[24509,36423],[24521,36423],[24522,36423],[24535,36423],[24536,36423],[24537,36423],[24540,36423],[24542,36423],[24544,36423],[24545,36423],[24546,36423],[24554,36423],[24555,36423],[24561,36409],[24563,36423],[24579,36423],[24581,36423],[24583,36423],[24585,36506],[24592,36500],[24594,36500],[24595,36503],[24596,36503],[24597,36503],[24598,36503],[24606,36505],[24608,36501],[24609,36501],[24610,36501],[24611,36500],[24612,36500],[24613,36504],[24616,36502],[25093,36512],[25095,36511],[25171,36335],[25172,36335],[25173,36335],[25174,36335],[25175,36335],[25176,36335],[25177,36335],[25178,36335],[25179,36335],[25180,36335],[25181,36335],[25182,36335],[25183,36335],[25185,36510],[25186,36511],[25188,36508],[25190,36511],[25191,36509],[25194,36335],[28035,36425],[28036,36425],[28037,36426],[28038,36426],[28039,36426],[28040,36427],[28041,36427],[28042,36427],[28043,36427],[28044,36427],[28045,36427],[28046,36386],[28050,36656],[28053,36428],[28054,36415],[28055,36415],[28056,36429],[28057,36429],[28058,36429],[28059,36656],[28060,36425],[28061,36425],[28062,36350],[28064,36338],[28065,36338],[28066,36338],[28067,36378],[28069,36430],[28070,36430],[28071,36425],[28072,36425],[28073,36425],[28074,36427],[28075,36386],[28092,36386],[28093,36386],[28094,36386],[28095,36386],[28096,36386],[28097,36386],[28098,36386],[28099,36425],[28100,36425],[28101,36378],[28104,36427],[28105,36427],[28106,36427],[28107,36427],[28108,36425],[28109,36425],[28111,36378],[28114,36378],[28453,36295],[28454,36295],[28455,36295],[28457,36295],[28583,36685],[28584,36685],[28585,36685],[28586,36685],[28587,36454],[28588,36455],[28589,36454],[28590,36455],[28591,36455],[28592,36454],[28593,36455],[28643,36686],[28644,36686],[28645,36686],[28646,36686],[28647,36519],[28665,36520],[28666,36521],[28667,36523],[28676,36514],[28677,36514],[28678,36514],[28700,36488],[28701,36488],[28707,36687],[28709,36488],[28711,36687],[28712,36488],[28713,36488],[28714,36687],[28731,36488],[28732,36488],[28737,36688],[28738,36688],[28739,36688],[28740,36688],[28741,36688],[28742,36688],[28743,36688],[28744,36688],[28745,36688],[28746,36688],[28747,36688],[28748,36688],[28749,36688],[28750,36688],[28751,36689],[28752,36689],[28753,36689],[28754,36689],[28755,36689],[28756,36689],[28757,36689],[28758,36689],[28759,36524],[28760,36524],[28765,36525],[28766,36525],[28767,36525],[28768,36525],[28769,36525],[28770,36525],[28771,36525],[28772,36525],[28777,36525],[28778,36525],[28783,36525],[28793,36525],[28807,36525],[28812,36454],[28813,36455],[28814,36454],[28815,36455],[28816,36455],[28817,36454],[28818,36455],[28823,36526],[28824,36526],[28825,36518],[28826,36526],[28827,36526],[28829,36526],[28831,36522],[28832,36526],[28833,36526],[28834,36527],[28835,36516],[28836,36518],[28837,36517],[29077,36454],[29078,36455],[29079,36454],[29080,36528],[29081,36525],[29082,36528],[29083,36525],[29084,36525],[29085,36455],[29086,36455],[29087,36529],[29088,36525],[29089,36525],[29090,36524],[29091,36524],[29092,36454],[29093,36525],[29094,36455],[29151,36528],[29152,36528],[29162,36528],[29168,36488],[29169,36488],[29170,36687],[29171,36690],[29172,36488],[29173,36687],[29174,36488],[29175,36488],[29176,36690],[29177,36687],[29178,36488],[29179,36690],[29180,36529],[29181,36529],[29184,36530],[29185,36531],[29187,36410],[29189,36531],[29190,36531],[29191,36530],[29193,36530],[29194,36531],[29206,36531],[29231,36531],[29241,36531],[29247,36531],[29248,36531],[29249,36691],[29251,36691],[29268,36691],[29269,36562],[29270,36452],[29271,36452],[29272,36452],[29276,36452],[29277,36452],[29278,36452],[29279,36452],[29282,36452],[29283,36452],[29284,36452],[29286,36452],[29288,36452],[29293,36452],[29465,36452],[29567,36367],[29568,36367],[29606,36367],[29620,36515],[29621,36515],[29648,36515],[29669,36692],[29670,36692],[29671,36692],[29672,36692],[29673,36692],[29674,36340],[29675,36340],[29676,36388],[29677,36344],[29678,36344],[29679,36337],[29680,36337],[29681,36559],[29682,36365],[29683,36365],[29684,36334],[29685,36350],[29686,36343],[29687,36343],[29689,36360],[29690,36342],[29691,36338],[29692,36338],[29693,36338],[29694,36340],[29695,36646],[29696,36340],[29698,36342],[29701,36336],[29704,36295],[29705,36343],[29706,36343],[29709,36343],[29710,36343],[29711,36343],[29712,36343],[29713,36289],[29714,36337],[29715,36337],[29717,36290],[29718,36337],[29719,36345],[29720,36290],[29721,36337],[29722,36288],[29725,36423],[29726,36423],[29728,36660],[29733,36562],[29734,36660],[29739,36562],[29740,36660],[29741,36660],[29753,36562],[29754,36562],[29755,36562],[29756,36562],[29757,36562],[29762,36660],[29763,36660],[29764,36660],[29765,36423],[29768,36562],[29775,36562],[29784,36562],[29785,36562],[29790,36660],[29793,36562],[29794,36562],[29795,36562],[29810,36562],[29811,36562],[29825,36562],[29833,36562],[29849,36423],[29850,36423],[29854,36562],[29858,36660],[29859,36660],[29862,36562],[29869,36660],[29872,36340],[29873,36340],[29874,36388],[29875,36344],[29876,36344],[29877,36337],[29878,36337],[29879,36559],[29880,36365],[29881,36365],[29882,36334],[29883,36350],[29884,36343],[29885,36343],[29887,36360],[29888,36342],[29889,36338],[29890,36338],[29891,36338],[29892,36340],[29893,36646],[29894,36340],[29896,36342],[29899,36336],[29902,36295],[29903,36343],[29904,36343],[29907,36343],[29908,36343],[29909,36343],[29910,36343],[29911,36289],[29912,36337],[29913,36337],[29915,36290],[29916,36337],[29917,36345],[29918,36290],[29919,36337],[29920,36288],[29923,36423],[29924,36423],[29926,36660],[29931,36562],[29932,36660],[29937,36562],[29938,36660],[29939,36660],[29951,36562],[29952,36562],[29953,36562],[29954,36562],[29955,36562],[29960,36660],[29961,36660],[29962,36660],[29963,36423],[29966,36562],[29973,36562],[29982,36562],[29983,36562],[29988,36660],[29991,36562],[29992,36562],[29993,36562],[30008,36562],[30009,36562],[30023,36562],[30031,36562],[30047,36423],[30048,36423],[30052,36562],[30056,36660],[30057,36660],[30060,36562],[30067,36660],[30070,36340],[30071,36340],[30072,36388],[30073,36344],[30074,36344],[30075,36337],[30076,36337],[30077,36559],[30078,36365],[30079,36365],[30080,36334],[30081,36350],[30082,36343],[30083,36343],[30087,36360],[30088,36342],[30089,36338],[30090,36338],[30091,36338],[30092,36340],[30093,36342],[30094,36646],[30095,36340],[30097,36342],[30100,36336],[30103,36295],[30104,36343],[30105,36343],[30108,36343],[30109,36343],[30110,36343],[30111,36343],[30112,36289],[30113,36337],[30114,36337],[30116,36290],[30117,36337],[30118,36345],[30119,36290],[30120,36340],[30121,36340],[30122,36337],[30123,36288],[30126,36423],[30127,36423],[30129,36660],[30134,36562],[30135,36660],[30140,36562],[30141,36660],[30142,36660],[30154,36562],[30155,36562],[30156,36562],[30157,36562],[30158,36562],[30163,36660],[30164,36660],[30165,36660],[30166,36423],[30169,36562],[30176,36562],[30185,36562],[30186,36562],[30192,36660],[30195,36562],[30196,36562],[30197,36562],[30212,36562],[30213,36562],[30227,36562],[30235,36562],[30251,36423],[30252,36423],[30256,36562],[30260,36660],[30261,36660],[30264,36562],[30273,36660],[30276,36340],[30277,36340],[30278,36388],[30279,36344],[30280,36344],[30281,36337],[30282,36337],[30283,36559],[30284,36365],[30285,36365],[30286,36334],[30287,36350],[30288,36343],[30289,36343],[30293,36360],[30294,36342],[30295,36338],[30296,36338],[30297,36338],[30298,36340],[30299,36342],[30300,36359],[30301,36646],[30302,36340],[30303,36358],[30306,36342],[30309,36336],[30312,36295],[30313,36343],[30314,36343],[30319,36343],[30320,36343],[30321,36343],[30322,36343],[30323,36289],[30324,36337],[30325,36337],[30327,36290],[30328,36337],[30329,36345],[30330,36290],[30331,36340],[30332,36340],[30333,36337],[30334,36288],[30337,36423],[30338,36423],[30340,36660],[30345,36562],[30346,36660],[30351,36562],[30352,36660],[30353,36660],[30365,36562],[30366,36562],[30367,36562],[30368,36562],[30369,36562],[30374,36660],[30375,36660],[30376,36660],[30377,36423],[30380,36562],[30387,36562],[30396,36562],[30397,36562],[30403,36660],[30406,36562],[30407,36562],[30408,36562],[30424,36562],[30425,36562],[30439,36562],[30447,36562],[30464,36423],[30465,36423],[30469,36562],[30473,36660],[30474,36660],[30477,36562],[30486,36660],[30489,36340],[30490,36340],[30491,36388],[30492,36344],[30493,36344],[30494,36337],[30495,36337],[30496,36559],[30497,36365],[30498,36365],[30499,36334],[30500,36350],[30501,36343],[30502,36343],[30504,36360],[30505,36342],[30506,36338],[30507,36338],[30508,36338],[30509,36340],[30510,36646],[30511,36340],[30513,36342],[30516,36336],[30519,36295],[30520,36343],[30521,36343],[30524,36343],[30525,36343],[30526,36343],[30527,36343],[30528,36289],[30529,36337],[30530,36337],[30532,36290],[30533,36337],[30534,36345],[30535,36290],[30536,36337],[30537,36288],[30540,36423],[30541,36423],[30543,36660],[30548,36562],[30549,36660],[30554,36562],[30555,36660],[30556,36660],[30568,36562],[30569,36562],[30570,36562],[30571,36562],[30572,36562],[30577,36660],[30578,36660],[30579,36660],[30580,36423],[30583,36562],[30590,36562],[30599,36562],[30600,36562],[30605,36660],[30608,36562],[30609,36562],[30610,36562],[30625,36562],[30626,36562],[30640,36562],[30648,36562],[30664,36423],[30665,36423],[30669,36562],[30673,36660],[30674,36660],[30677,36562],[30684,36660],[30704,36480],[30705,36480],[30706,36480],[30707,36480],[30708,36480],[30709,36480],[30710,36532],[30711,36480],[30712,36480],[30713,36480],[30715,36480],[30717,36480],[30718,36480],[30719,36480],[30784,36480],[30838,36480],[30959,36513],[30960,36533],[30963,36383],[30964,36533],[30967,36661],[30968,36661],[30969,36661],[31006,36409],[31009,36409],[31012,36661],[31014,36661],[31016,36661],[31018,36661],[31026,36661],[31032,36661],[31033,36533],[31035,36533],[31036,36661],[31038,36661],[31053,36533],[31058,36661],[31059,36661],[31066,36661],[31068,36661],[31070,36661],[31072,36661],[31075,36661],[31077,36661],[31080,36661],[31082,36661],[31099,36661],[31100,36661],[31101,36661],[31102,36661],[31103,36661],[31105,36409],[31107,36661],[31109,36661],[31111,36394],[31112,36394],[31113,36394],[31251,36289],[31252,36289],[31253,36289],[31255,36289],[31372,36662],[31373,36435],[31375,36435],[31376,36434],[31377,36663],[31378,36434],[31379,36535],[31380,36662],[31381,36664],[31382,36436],[31386,36665],[31392,36666],[31393,36666],[31394,36666],[31395,36666],[31396,36666],[31397,36666],[31398,36666],[31399,36666],[31400,36666],[31401,36666],[31402,36666],[31403,36666],[31404,36666],[31405,36666],[31412,36666],[31413,36666],[31414,36666],[31415,36666],[31416,36666],[31417,36666],[31418,36666],[31419,36666],[31420,36666],[31421,36666],[31422,36666],[31423,36666],[31424,36666],[31425,36666],[31426,36666],[31427,36666],[31428,36666],[31429,36666],[31430,36666],[31431,36666],[31432,36666],[31433,36666],[31434,36666],[31435,36666],[31436,36666],[31437,36666],[31438,36666],[31439,36666],[31441,36666],[31442,36666],[31443,36666],[31444,36666],[31445,36666],[31446,36666],[31447,36666],[31452,36666],[31453,36666],[31454,36666],[31455,36666],[31456,36666],[31457,36666],[31458,36666],[31459,36666],[31460,36666],[31461,36666],[31462,36666],[31463,36666],[31464,36666],[31465,36666],[31466,36666],[31467,36666],[31468,36666],[31469,36666],[31470,36666],[31471,36666],[31472,36666],[31473,36666],[31474,36666],[31475,36666],[31476,36666],[31477,36666],[31478,36666],[31479,36666],[31480,36666],[31481,36666],[31482,36666],[31483,36666],[31484,36666],[31485,36666],[31486,36666],[31488,36665],[31489,36665],[31490,36665],[31492,36664],[31504,36666],[31505,36666],[31506,36666],[31507,36666],[31508,36666],[31509,36666],[31510,36666],[31511,36666],[31512,36666],[31513,36666],[31514,36666],[31515,36666],[31516,36666],[31517,36666],[31518,36666],[31519,36666],[31520,36666],[31521,36666],[31522,36666],[31523,36666],[31524,36666],[31525,36666],[31526,36666],[31527,36666],[31528,36666],[31529,36666],[31530,36666],[31531,36666],[31532,36666],[31533,36666],[31534,36666],[31535,36666],[31536,36666],[31537,36666],[31538,36666],[31540,36438],[31541,36439],[31542,36438],[31561,36440],[31562,36441],[31563,36437],[31638,36435],[31648,36434],[31649,36442],[31650,36440],[31651,36441],[31652,36443],[31653,36438],[31654,36439],[31655,36438],[31656,36437],[31821,36666],[31822,36666],[31823,36666],[31824,36666],[31825,36666],[31826,36666],[31827,36666],[31828,36666],[31829,36666],[31830,36666],[31831,36666],[31832,36666],[31833,36666],[31834,36666],[32101,36666],[32102,36666],[32103,36666],[32104,36666],[32105,36666],[32106,36666],[32107,36666],[32108,36666],[32109,36666],[32110,36666],[32111,36666],[32112,36666],[32113,36666],[32114,36666],[32115,36666],[32116,36666],[32117,36666],[32118,36666],[32119,36666],[32120,36666],[32121,36666],[32122,36666],[32123,36666],[32124,36666],[32125,36666],[32126,36666],[32127,36666],[32128,36666],[32171,36666],[32172,36666],[32173,36666],[32174,36666],[32175,36666],[32176,36666],[32177,36666],[32215,36666],[32216,36666],[32217,36666],[32218,36666],[32219,36666],[32220,36666],[32221,36666],[32222,36666],[32223,36666],[32224,36666],[32225,36666],[32226,36666],[32227,36666],[32228,36666],[32229,36666],[32230,36666],[32231,36666],[32232,36666],[32233,36666],[32234,36666],[32235,36666],[32236,36666],[32237,36666],[32238,36666],[32239,36666],[32240,36666],[32241,36666],[32242,36666],[32243,36666],[32244,36666],[32245,36666],[32246,36666],[32247,36666],[32248,36666],[32249,36666],[32787,36664],[33084,36666],[33085,36666],[33086,36666],[33087,36666],[33088,36666],[33089,36666],[33090,36666],[33091,36666],[33092,36666],[33093,36666],[33094,36666],[33095,36666],[33096,36666],[33097,36666],[33098,36666],[33099,36666],[33100,36666],[33101,36666],[33102,36666],[33103,36666],[33104,36666],[33105,36666],[33106,36666],[33107,36666],[33108,36666],[33109,36666],[33110,36666],[33111,36666],[33112,36666],[33113,36666],[33114,36666],[33115,36666],[33116,36666],[33117,36666],[33118,36666],[33153,36442],[33154,36443],[33177,36459],[33178,36459],[33179,36459],[33180,36459],[33181,36459],[33182,36459],[33183,36459],[33184,36459],[33185,36459],[33186,36385],[33187,36537],[33188,36459],[33189,36459],[33190,36385],[33194,36459],[33195,36459],[33196,36459],[33197,36459],[33198,36459],[33199,36459],[33200,36459],[33201,36459],[33202,36387],[33203,36459],[33204,36459],[33205,36459],[33206,36459],[33207,36459],[33208,36459],[33209,36459],[33395,36567],[33396,36567],[33397,36567],[33398,36567],[33399,36567],[33400,36567],[33575,36387],[33676,36387],[33704,36538],[33705,36538],[33706,36538],[33707,36538],[33709,36538],[33710,36538],[33711,36538],[33712,36389],[33713,36538],[33714,36538],[33715,36538],[33716,36538],[33717,36390],[33718,36538],[33719,36538],[33720,36538],[33721,36538],[33722,36538],[33723,36538],[33724,36538],[33725,36538],[33726,36538],[33727,36538],[33728,36538],[33729,36539],[33730,36539],[33731,36390],[33937,36568],[33938,36569],[33939,36569],[33941,36569],[33942,36569],[33943,36569],[33944,36569],[34045,36570],[34184,36391],[34185,36391],[34186,36391],[34187,36391],[34188,36391],[34190,36391],[34192,36391],[34194,36391],[34195,36391],[34196,36391],[34198,36391],[34335,36290],[34336,36290],[34337,36290],[34338,36290],[34339,36290],[34340,36290],[34507,36393],[34508,36549],[34509,36549],[34510,36546],[34513,36540],[34514,36547],[34515,36542],[34516,36543],[34517,36544],[34518,36544],[34519,36543],[34520,36543],[34521,36541],[34524,36541],[34525,36545],[34526,36541],[34527,36542],[34529,36548],[34530,36548],[34531,36544],[34532,36544],[34533,36544],[34534,36542],[34535,36542],[34536,36546],[34537,36393],[34548,36669],[34835,36693],[35004,36397],[35005,36397],[35006,36397],[35009,36397],[35010,36397],[35011,36397],[35012,36397],[35013,36397],[35014,36397],[35015,36397],[35016,36397],[35017,36397],[35018,36397],[35019,36397],[35020,36397],[35021,36397],[35102,36397],[35116,36397],[35370,36397],[35440,36550],[35441,36550],[35442,36550],[35443,36550],[35444,36550],[35445,36550],[35446,36550],[35447,36550],[35449,36550],[35450,36550],[35451,36550],[35474,36550],[35561,36550],[35610,36368],[35611,36368],[35612,36392],[35613,36368],[35615,36369],[35616,36368],[35617,36368],[35619,36392],[35620,36368],[35715,36670],[35754,36552],[35755,36551],[35757,36551],[35758,36552],[35760,36551],[35761,36553],[35762,36553],[35763,36551],[35764,36551],[35767,36551],[35793,36551],[35832,36551],[35833,36551],[35834,36551],[35835,36551],[35838,36553],[35841,36551],[35842,36551],[35843,36551],[35844,36551],[35887,36551],[35888,36507],[35889,36487],[35895,36487],[35896,36487],[35897,36507],[35898,36487],[36051,36671],[36052,36671],[36053,36672],[36054,36672],[36055,36673],[36056,36673],[36057,36674],[36058,36674],[36059,36675],[36060,36675],[36061,36679],[36062,36679],[36063,36554],[36064,36555],[36065,36460],[36066,36556],[36067,36288],[36261,0],[36262,36557],[36263,36557]],"b":[[25,"impl-Display-for-DecodeError"],[26,"impl-Debug-for-DecodeError"],[51,"impl-Display-for-DecodeError"],[52,"impl-Debug-for-DecodeError"],[8951,"impl-Debug-for-PanicMessage%3C\'_%3E"],[8952,"impl-Display-for-PanicMessage%3C\'_%3E"],[8953,"impl-Display-for-PanicInfo%3C\'_%3E"],[8954,"impl-Debug-for-PanicInfo%3C\'a%3E"],[10096,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[10097,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[10098,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[10099,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[10100,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[10101,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[10123,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[10124,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[10125,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[10126,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[10127,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[10128,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[10129,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[10130,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[10131,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[10132,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[10133,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[10134,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[10135,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[10136,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[10137,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[10138,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[10139,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[10140,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[10141,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[10142,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[10143,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[10144,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[10145,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[10146,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[10150,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[10151,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[10152,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[10153,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[10154,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[10155,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[10156,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[10157,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[10158,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[10159,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[10160,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[10161,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[10208,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[10209,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[10210,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[10211,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[10212,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[10213,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[10796,"impl-Display-for-GetManyMutError%3CN%3E"],[10797,"impl-Debug-for-GetManyMutError%3CN%3E"],[11126,"impl-Display-for-LayoutError"],[11127,"impl-Debug-for-LayoutError"],[11128,"impl-Debug-for-AllocError"],[11129,"impl-Display-for-AllocError"],[11196,"impl-dyn+Any"],[11197,"impl-dyn+Any+%2B+Send+%2B+Sync"],[11198,"impl-dyn+Any+%2B+Send"],[11199,"impl-dyn+Any+%2B+Send+%2B+Sync"],[11200,"impl-dyn+Any+%2B+Send"],[11201,"impl-dyn+Any"],[11202,"impl-dyn+Any"],[11203,"impl-dyn+Any+%2B+Send+%2B+Sync"],[11204,"impl-dyn+Any+%2B+Send"],[11205,"impl-dyn+Any"],[11206,"impl-dyn+Any+%2B+Send+%2B+Sync"],[11207,"impl-dyn+Any+%2B+Send"],[11209,"impl-Debug-for-dyn+Any+%2B+Send"],[11210,"impl-Debug-for-dyn+Any"],[11211,"impl-Debug-for-dyn+Any+%2B+Send+%2B+Sync"],[11216,"impl-dyn+Any"],[11217,"impl-dyn+Any+%2B+Send+%2B+Sync"],[11218,"impl-dyn+Any+%2B+Send"],[17974,"impl-From%3CSimd%3Cusize,+2%3E%3E-for-__m128i"],[17975,"impl-From%3CSimd%3Cu8,+16%3E%3E-for-__m128i"],[17976,"impl-From%3CSimd%3Cisize,+2%3E%3E-for-__m128i"],[17977,"impl-From%3CSimd%3Ci32,+4%3E%3E-for-__m128i"],[17978,"impl-From%3CSimd%3Cu64,+2%3E%3E-for-__m128i"],[17979,"impl-From%3CSimd%3Ci64,+2%3E%3E-for-__m128i"],[17980,"impl-From%3CSimd%3Cu32,+4%3E%3E-for-__m128i"],[17982,"impl-From%3CSimd%3Ci16,+8%3E%3E-for-__m128i"],[17983,"impl-From%3CSimd%3Cu16,+8%3E%3E-for-__m128i"],[17984,"impl-From%3CSimd%3Ci8,+16%3E%3E-for-__m128i"],[17989,"impl-From%3CSimd%3Cu64,+4%3E%3E-for-__m256i"],[17990,"impl-From%3CSimd%3Ci32,+8%3E%3E-for-__m256i"],[17992,"impl-From%3CSimd%3Cisize,+4%3E%3E-for-__m256i"],[17993,"impl-From%3CSimd%3Cu32,+8%3E%3E-for-__m256i"],[17994,"impl-From%3CSimd%3Ci64,+4%3E%3E-for-__m256i"],[17995,"impl-From%3CSimd%3Ci16,+16%3E%3E-for-__m256i"],[17996,"impl-From%3CSimd%3Cusize,+4%3E%3E-for-__m256i"],[17997,"impl-From%3CSimd%3Cu16,+16%3E%3E-for-__m256i"],[17998,"impl-From%3CSimd%3Ci8,+32%3E%3E-for-__m256i"],[17999,"impl-From%3CSimd%3Cu8,+32%3E%3E-for-__m256i"],[18004,"impl-From%3CSimd%3Cu8,+64%3E%3E-for-__m512i"],[18005,"impl-From%3CSimd%3Cusize,+8%3E%3E-for-__m512i"],[18006,"impl-From%3CSimd%3Ci32,+16%3E%3E-for-__m512i"],[18007,"impl-From%3CSimd%3Cu64,+8%3E%3E-for-__m512i"],[18009,"impl-From%3CSimd%3Cu16,+32%3E%3E-for-__m512i"],[18010,"impl-From%3CSimd%3Ci8,+64%3E%3E-for-__m512i"],[18011,"impl-From%3CSimd%3Ci64,+8%3E%3E-for-__m512i"],[18012,"impl-From%3CSimd%3Cisize,+8%3E%3E-for-__m512i"],[18013,"impl-From%3CSimd%3Cu32,+16%3E%3E-for-__m512i"],[18014,"impl-From%3CSimd%3Ci16,+32%3E%3E-for-__m512i"],[18136,"impl-Debug-for-TryFromSliceError"],[18137,"impl-Display-for-TryFromSliceError"],[18323,"impl-Debug-for-Char"],[18324,"impl-Display-for-Char"],[18325,"impl-Debug-for-EscapeDefault"],[18326,"impl-Display-for-EscapeDefault"],[18403,"impl-Display-for-Backtrace"],[18404,"impl-Debug-for-Backtrace"],[18433,"impl-Add-for-Cow%3C\'a,+str%3E"],[18434,"impl-Add%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18435,"impl-AddAssign%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18436,"impl-AddAssign-for-Cow%3C\'a,+str%3E"],[18437,"impl-AsRef%3CT%3E-for-Cow%3C\'_,+T%3E"],[18438,"impl-AsRef%3CPath%3E-for-Cow%3C\'_,+OsStr%3E"],[18452,"impl-PartialEq%3CPathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18453,"impl-PartialEq%3C%26Path%3E-for-Cow%3C\'b,+OsStr%3E"],[18454,"impl-PartialEq%3CVec%3CU,+A%3E%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18455,"impl-PartialEq%3C%26%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18456,"impl-PartialEq%3CPathBuf%3E-for-Cow%3C\'a,+OsStr%3E"],[18457,"impl-PartialEq%3COsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18458,"impl-PartialEq%3C%26Path%3E-for-Cow%3C\'a,+Path%3E"],[18459,"impl-PartialEq%3C%26OsStr%3E-for-Cow%3C\'a,+Path%3E"],[18460,"impl-PartialEq%3CString%3E-for-Cow%3C\'a,+str%3E"],[18461,"impl-PartialEq%3C%26OsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18462,"impl-PartialEq%3CPath%3E-for-Cow%3C\'a,+Path%3E"],[18463,"impl-PartialEq%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18464,"impl-PartialEq%3Cstr%3E-for-Cow%3C\'a,+str%3E"],[18465,"impl-PartialEq%3COsStr%3E-for-Cow%3C\'a,+Path%3E"],[18466,"impl-PartialEq%3CPath%3E-for-Cow%3C\'a,+OsStr%3E"],[18467,"impl-PartialEq%3COsString%3E-for-Cow%3C\'a,+Path%3E"],[18468,"impl-PartialEq%3COsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18469,"impl-PartialEq%3CCow%3C\'b,+C%3E%3E-for-Cow%3C\'a,+B%3E"],[18470,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18471,"impl-Debug-for-Cow%3C\'_,+B%3E"],[18472,"impl-Display-for-Cow%3C\'_,+B%3E"],[18473,"impl-From%3CCString%3E-for-Cow%3C\'a,+CStr%3E"],[18474,"impl-From%3C%26CStr%3E-for-Cow%3C\'a,+CStr%3E"],[18475,"impl-From%3CPathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18476,"impl-From%3C%26PathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18477,"impl-From%3C%26Vec%3CT%3E%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18478,"impl-From%3CVec%3CT%3E%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18479,"impl-From%3C%26%5BT;+N%5D%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18480,"impl-From%3CString%3E-for-Cow%3C\'a,+str%3E"],[18481,"impl-From%3C%26String%3E-for-Cow%3C\'a,+str%3E"],[18482,"impl-From%3C%26OsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18483,"impl-From%3C%26OsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18484,"impl-From%3C%26Path%3E-for-Cow%3C\'a,+Path%3E"],[18485,"impl-From%3C%26%5BT%5D%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18486,"impl-From%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18487,"impl-From%3COsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18488,"impl-From%3C%26CString%3E-for-Cow%3C\'a,+CStr%3E"],[18490,"impl-FromIterator%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18491,"impl-FromIterator%3Cchar%3E-for-Cow%3C\'a,+str%3E"],[18492,"impl-FromIterator%3CT%3E-for-Cow%3C\'a,+%5BT%5D%3E"],[18493,"impl-FromIterator%3CString%3E-for-Cow%3C\'a,+str%3E"],[18499,"impl-PartialEq%3CString%3E-for-Cow%3C\'a,+str%3E"],[18500,"impl-PartialEq%3C%26str%3E-for-Cow%3C\'a,+str%3E"],[18501,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18502,"impl-PartialEq%3C%26%5BU%5D%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18503,"impl-PartialEq%3CVec%3CU,+A%3E%3E-for-Cow%3C\'_,+%5BT%5D%3E"],[18504,"impl-PartialEq%3Cstr%3E-for-Cow%3C\'a,+str%3E"],[18505,"impl-PartialOrd%3COsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18506,"impl-PartialOrd%3CPath%3E-for-Cow%3C\'a,+OsStr%3E"],[18507,"impl-PartialOrd%3C%26Path%3E-for-Cow%3C\'a,+Path%3E"],[18508,"impl-PartialOrd%3COsStr%3E-for-Cow%3C\'a,+Path%3E"],[18509,"impl-PartialOrd%3COsString%3E-for-Cow%3C\'a,+Path%3E"],[18510,"impl-PartialOrd%3C%26Path%3E-for-Cow%3C\'b,+OsStr%3E"],[18511,"impl-PartialOrd%3CPath%3E-for-Cow%3C\'a,+Path%3E"],[18512,"impl-PartialOrd%3COsString%3E-for-Cow%3C\'a,+OsStr%3E"],[18513,"impl-PartialOrd%3C%26OsStr%3E-for-Cow%3C\'a,+OsStr%3E"],[18514,"impl-PartialOrd-for-Cow%3C\'a,+B%3E"],[18515,"impl-PartialOrd%3CPathBuf%3E-for-Cow%3C\'a,+Path%3E"],[18516,"impl-PartialOrd%3C%26OsStr%3E-for-Cow%3C\'a,+Path%3E"],[18517,"impl-PartialOrd%3CPathBuf%3E-for-Cow%3C\'a,+OsStr%3E"],[18534,"impl-Box%3C%5BMaybeUninit%3CT%3E%5D,+A%3E"],[18535,"impl-Box%3CMaybeUninit%3CT%3E,+A%3E"],[18549,"impl-Clone-for-Box%3CT,+A%3E"],[18550,"impl-Clone-for-Box%3CPath%3E"],[18551,"impl-Clone-for-Box%3Cstr%3E"],[18552,"impl-Clone-for-Box%3CCStr%3E"],[18553,"impl-Clone-for-Box%3COsStr%3E"],[18554,"impl-Clone-for-Box%3C%5BT%5D,+A%3E"],[18555,"impl-Clone-for-Box%3C%5BT%5D,+A%3E"],[18556,"impl-Clone-for-Box%3CT,+A%3E"],[18561,"impl-Default-for-Box%3C%5BT%5D%3E"],[18562,"impl-Default-for-Box%3CCStr%3E"],[18563,"impl-Default-for-Box%3COsStr%3E"],[18564,"impl-Default-for-Box%3Cstr%3E"],[18565,"impl-Default-for-Box%3CT%3E"],[18571,"impl-Box%3Cdyn+Any+%2B+Send+%2B+Sync,+A%3E"],[18572,"impl-Box%3Cdyn+Any,+A%3E"],[18573,"impl-Box%3Cdyn+Any+%2B+Send,+A%3E"],[18574,"impl-Box%3Cdyn+Any,+A%3E"],[18575,"impl-Box%3Cdyn+Any+%2B+Send,+A%3E"],[18576,"impl-Box%3Cdyn+Any+%2B+Send+%2B+Sync,+A%3E"],[18583,"impl-Display-for-ThinBox%3CT%3E"],[18584,"impl-Debug-for-ThinBox%3CT%3E"],[18585,"impl-Display-for-Box%3CT,+A%3E"],[18586,"impl-Pointer-for-Box%3CT,+A%3E"],[18587,"impl-Debug-for-Box%3CT,+A%3E"],[18589,"impl-From%3C%26str%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18590,"impl-From%3CCString%3E-for-Box%3CCStr%3E"],[18591,"impl-From%3CCow%3C\'_,+OsStr%3E%3E-for-Box%3COsStr%3E"],[18592,"impl-From%3COsString%3E-for-Box%3COsStr%3E"],[18593,"impl-From%3C%26Path%3E-for-Box%3CPath%3E"],[18594,"impl-From%3CT%3E-for-Box%3CT%3E"],[18595,"impl-From%3C%26%5BT%5D%3E-for-Box%3C%5BT%5D%3E"],[18597,"impl-From%3CCow%3C\'_,+%5BT%5D%3E%3E-for-Box%3C%5BT%5D%3E"],[18599,"impl-From%3CCow%3C\'_,+Path%3E%3E-for-Box%3CPath%3E"],[18600,"impl-From%3CPathBuf%3E-for-Box%3CPath%3E"],[18601,"impl-From%3C%26str%3E-for-Box%3Cstr%3E"],[18602,"impl-From%3CVec%3CT,+A%3E%3E-for-Box%3C%5BT%5D,+A%3E"],[18603,"impl-From%3CCow%3C\'_,+str%3E%3E-for-Box%3Cstr%3E"],[18604,"impl-From%3CBox%3Cstr,+A%3E%3E-for-Box%3C%5Bu8%5D,+A%3E"],[18605,"impl-From%3CString%3E-for-Box%3Cstr%3E"],[18606,"impl-From%3C%5BT;+N%5D%3E-for-Box%3C%5BT%5D%3E"],[18607,"impl-From%3CE%3E-for-Box%3Cdyn+Error%3E"],[18608,"impl-From%3CE%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18609,"impl-From%3CString%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18610,"impl-From%3CString%3E-for-Box%3Cdyn+Error%3E"],[18611,"impl-From%3C%26str%3E-for-Box%3Cdyn+Error%3E"],[18612,"impl-From%3CCow%3C\'b,+str%3E%3E-for-Box%3Cdyn+Error+%2B+Send+%2B+Sync%3E"],[18613,"impl-From%3CCow%3C\'b,+str%3E%3E-for-Box%3Cdyn+Error%3E"],[18614,"impl-From%3C%26CStr%3E-for-Box%3CCStr%3E"],[18615,"impl-From%3CCow%3C\'_,+CStr%3E%3E-for-Box%3CCStr%3E"],[18616,"impl-From%3C%26OsStr%3E-for-Box%3COsStr%3E"],[18617,"impl-FromIterator%3CI%3E-for-Box%3C%5BI%5D%3E"],[18618,"impl-FromIterator%3Cchar%3E-for-Box%3Cstr%3E"],[18619,"impl-FromIterator%3C%26char%3E-for-Box%3Cstr%3E"],[18620,"impl-FromIterator%3C%26str%3E-for-Box%3Cstr%3E"],[18621,"impl-FromIterator%3CString%3E-for-Box%3Cstr%3E"],[18622,"impl-FromIterator%3CBox%3Cstr,+A%3E%3E-for-Box%3Cstr%3E"],[18623,"impl-FromIterator%3CCow%3C\'a,+str%3E%3E-for-Box%3Cstr%3E"],[18635,"impl-IntoIterator-for-%26Box%3C%5BI%5D,+A%3E"],[18636,"impl-IntoIterator-for-%26mut+Box%3C%5BI%5D,+A%3E"],[18637,"impl-IntoIterator-for-Box%3C%5BI%5D,+A%3E"],[18688,"impl-AsyncIterator-for-Box%3CS%3E"],[18689,"impl-Iterator-for-Box%3CI,+A%3E"],[18700,"impl-TryFrom%3CVec%3CT%3E%3E-for-Box%3C%5BT;+N%5D%3E"],[18701,"impl-TryFrom%3CBox%3C%5BT%5D%3E%3E-for-Box%3C%5BT;+N%5D%3E"],[18717,"impl-Hasher-for-Box%3CT,+A%3E"],[18718,"impl-Box%3CMaybeUninit%3CT%3E,+A%3E"],[18719,"impl-Write-for-Box%3CW%3E"],[18807,"impl-Debug-for-BorrowError"],[18808,"impl-Display-for-BorrowError"],[18809,"impl-Display-for-BorrowMutError"],[18810,"impl-Debug-for-BorrowMutError"],[18811,"impl-Debug-for-Ref%3C\'_,+T%3E"],[18812,"impl-Display-for-Ref%3C\'_,+T%3E"],[18813,"impl-Debug-for-RefMut%3C\'_,+T%3E"],[18814,"impl-Display-for-RefMut%3C\'_,+T%3E"],[19028,"impl-Display-for-ParseCharError"],[19029,"impl-Debug-for-ParseCharError"],[19030,"impl-Display-for-CharTryFromError"],[19031,"impl-Debug-for-CharTryFromError"],[19033,"impl-Display-for-DecodeUtf16Error"],[19034,"impl-Debug-for-DecodeUtf16Error"],[19035,"impl-Debug-for-EscapeUnicode"],[19036,"impl-Display-for-EscapeUnicode"],[19037,"impl-Display-for-EscapeDefault"],[19038,"impl-Debug-for-EscapeDefault"],[19039,"impl-Display-for-EscapeDebug"],[19040,"impl-Debug-for-EscapeDebug"],[19041,"impl-Display-for-ToLowercase"],[19042,"impl-Debug-for-ToLowercase"],[19043,"impl-Debug-for-ToUppercase"],[19044,"impl-Display-for-ToUppercase"],[19045,"impl-Display-for-TryFromCharError"],[19046,"impl-Debug-for-TryFromCharError"],[19383,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-VecDeque%3CT,+A%3E"],[19384,"impl-PartialEq%3C%26%5BU%5D%3E-for-VecDeque%3CT,+A%3E"],[19385,"impl-PartialEq%3C%26mut+%5BU;+N%5D%3E-for-VecDeque%3CT,+A%3E"],[19386,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-VecDeque%3CT,+A%3E"],[19387,"impl-PartialEq%3C%5BU;+N%5D%3E-for-VecDeque%3CT,+A%3E"],[19388,"impl-PartialEq-for-VecDeque%3CT,+A%3E"],[19389,"impl-PartialEq%3CVec%3CU,+A%3E%3E-for-VecDeque%3CT,+A%3E"],[19392,"impl-Extend%3C(K,+V)%3E-for-HashMap%3CK,+V,+S%3E"],[19393,"impl-Extend%3C(%26K,+%26V)%3E-for-HashMap%3CK,+V,+S%3E"],[19394,"impl-Extend%3C%26T%3E-for-BinaryHeap%3CT,+A%3E"],[19395,"impl-Extend%3CT%3E-for-BinaryHeap%3CT,+A%3E"],[19396,"impl-Extend%3C(K,+V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19397,"impl-Extend%3C(%26K,+%26V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19398,"impl-Extend%3C%26T%3E-for-HashSet%3CT,+S%3E"],[19399,"impl-Extend%3CT%3E-for-HashSet%3CT,+S%3E"],[19400,"impl-Extend%3C%26T%3E-for-BTreeSet%3CT,+A%3E"],[19401,"impl-Extend%3CT%3E-for-BTreeSet%3CT,+A%3E"],[19402,"impl-Extend%3CT%3E-for-LinkedList%3CT,+A%3E"],[19403,"impl-Extend%3C%26T%3E-for-LinkedList%3CT,+A%3E"],[19404,"impl-Extend%3CT%3E-for-VecDeque%3CT,+A%3E"],[19405,"impl-Extend%3C%26T%3E-for-VecDeque%3CT,+A%3E"],[19406,"impl-Extend%3C(%26K,+%26V)%3E-for-HashMap%3CK,+V,+S%3E"],[19407,"impl-Extend%3C(K,+V)%3E-for-HashMap%3CK,+V,+S%3E"],[19408,"impl-Extend%3C%26T%3E-for-BinaryHeap%3CT,+A%3E"],[19409,"impl-Extend%3CT%3E-for-BinaryHeap%3CT,+A%3E"],[19410,"impl-Extend%3C(%26K,+%26V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19411,"impl-Extend%3C(K,+V)%3E-for-BTreeMap%3CK,+V,+A%3E"],[19412,"impl-Extend%3CT%3E-for-HashSet%3CT,+S%3E"],[19413,"impl-Extend%3C%26T%3E-for-HashSet%3CT,+S%3E"],[19414,"impl-Extend%3C%26T%3E-for-BTreeSet%3CT,+A%3E"],[19415,"impl-Extend%3CT%3E-for-BTreeSet%3CT,+A%3E"],[19416,"impl-Extend%3C%26T%3E-for-LinkedList%3CT,+A%3E"],[19417,"impl-Extend%3CT%3E-for-LinkedList%3CT,+A%3E"],[19418,"impl-Extend%3C%26T%3E-for-VecDeque%3CT,+A%3E"],[19419,"impl-Extend%3CT%3E-for-VecDeque%3CT,+A%3E"],[19420,"impl-Extend%3C(K,+V)%3E-for-HashMap%3CK,+V,+S%3E"],[19421,"impl-Extend%3C(%26K,+%26V)%3E-for-HashMap%3CK,+V,+S%3E"],[19422,"impl-Extend%3C%26T%3E-for-BinaryHeap%3CT,+A%3E"],[19423,"impl-Extend%3CT%3E-for-BinaryHeap%3CT,+A%3E"],[19424,"impl-Extend%3C%26T%3E-for-HashSet%3CT,+S%3E"],[19425,"impl-Extend%3CT%3E-for-HashSet%3CT,+S%3E"],[19426,"impl-Extend%3CT%3E-for-VecDeque%3CT,+A%3E"],[19427,"impl-Extend%3C%26T%3E-for-VecDeque%3CT,+A%3E"],[19445,"impl-Display-for-TryReserveError"],[19446,"impl-Debug-for-TryReserveError"],[19450,"impl-From%3CVec%3CT,+A%3E%3E-for-BinaryHeap%3CT,+A%3E"],[19451,"impl-From%3C%5BT;+N%5D%3E-for-BinaryHeap%3CT%3E"],[19461,"impl-From%3C%5BT;+N%5D%3E-for-VecDeque%3CT%3E"],[19462,"impl-From%3CVec%3CT,+A%3E%3E-for-VecDeque%3CT,+A%3E"],[19522,"impl-IntoIterator-for-%26mut+HashMap%3CK,+V,+S%3E"],[19523,"impl-IntoIterator-for-%26HashMap%3CK,+V,+S%3E"],[19524,"impl-IntoIterator-for-HashMap%3CK,+V,+S%3E"],[19525,"impl-IntoIterator-for-%26BinaryHeap%3CT,+A%3E"],[19526,"impl-IntoIterator-for-BinaryHeap%3CT,+A%3E"],[19527,"impl-IntoIterator-for-%26BTreeMap%3CK,+V,+A%3E"],[19528,"impl-IntoIterator-for-BTreeMap%3CK,+V,+A%3E"],[19529,"impl-IntoIterator-for-%26mut+BTreeMap%3CK,+V,+A%3E"],[19530,"impl-IntoIterator-for-%26HashSet%3CT,+S%3E"],[19531,"impl-IntoIterator-for-HashSet%3CT,+S%3E"],[19532,"impl-IntoIterator-for-%26BTreeSet%3CT,+A%3E"],[19533,"impl-IntoIterator-for-BTreeSet%3CT,+A%3E"],[19534,"impl-IntoIterator-for-%26mut+LinkedList%3CT,+A%3E"],[19535,"impl-IntoIterator-for-%26LinkedList%3CT,+A%3E"],[19536,"impl-IntoIterator-for-LinkedList%3CT,+A%3E"],[19537,"impl-IntoIterator-for-%26mut+VecDeque%3CT,+A%3E"],[19538,"impl-IntoIterator-for-%26VecDeque%3CT,+A%3E"],[19539,"impl-IntoIterator-for-VecDeque%3CT,+A%3E"],[19950,"impl-Display-for-OccupiedError%3C\'a,+K,+V,+A%3E"],[19951,"impl-Debug-for-OccupiedError%3C\'_,+K,+V,+A%3E"],[20248,"impl-Debug-for-UnorderedKeyError"],[20249,"impl-Display-for-UnorderedKeyError"],[20488,"impl-Display-for-OccupiedError%3C\'a,+K,+V%3E"],[20489,"impl-Debug-for-OccupiedError%3C\'_,+K,+V%3E"],[21042,"impl-Display-for-Infallible"],[21043,"impl-Debug-for-Infallible"],[21103,"impl-Debug-for-VarError"],[21104,"impl-Display-for-VarError"],[21105,"impl-Debug-for-JoinPathsError"],[21106,"impl-Display-for-JoinPathsError"],[21194,"impl-dyn+Error"],[21195,"impl-dyn+Error+%2B+Send+%2B+Sync"],[21196,"impl-dyn+Error+%2B+Send"],[21197,"impl-dyn+Error+%2B+Send+%2B+Sync"],[21198,"impl-dyn+Error+%2B+Send"],[21199,"impl-dyn+Error"],[21200,"impl-dyn+Error"],[21201,"impl-dyn+Error+%2B+Send"],[21202,"impl-dyn+Error+%2B+Send+%2B+Sync"],[21203,"impl-Debug-for-Report%3CE%3E"],[21204,"impl-Display-for-Report%3CE%3E"],[21210,"impl-dyn+Error+%2B+Send+%2B+Sync"],[21211,"impl-dyn+Error+%2B+Send"],[21212,"impl-dyn+Error"],[21384,"impl-AsRef%3COsStr%3E-for-OsString"],[21385,"impl-AsRef%3CPath%3E-for-OsString"],[21386,"impl-AsRef%3COsStr%3E-for-OsStr"],[21387,"impl-AsRef%3CPath%3E-for-OsStr"],[21484,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21485,"impl-PartialEq%3COsStr%3E-for-OsString"],[21486,"impl-PartialEq-for-OsString"],[21487,"impl-PartialEq%3C%26OsStr%3E-for-OsString"],[21488,"impl-PartialEq%3Cstr%3E-for-OsString"],[21489,"impl-PartialEq%3C%26str%3E-for-OsString"],[21490,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-OsString"],[21491,"impl-PartialEq%3C%26Path%3E-for-OsString"],[21492,"impl-PartialEq%3CPath%3E-for-OsString"],[21493,"impl-PartialEq%3CPathBuf%3E-for-OsString"],[21494,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-OsStr"],[21495,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-%26OsStr"],[21496,"impl-PartialEq%3COsString%3E-for-%26OsStr"],[21497,"impl-PartialEq%3Cstr%3E-for-OsStr"],[21498,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-%26OsStr"],[21499,"impl-PartialEq%3COsString%3E-for-OsStr"],[21500,"impl-PartialEq%3CPath%3E-for-OsStr"],[21501,"impl-PartialEq%3CPath%3E-for-%26OsStr"],[21502,"impl-PartialEq%3CPathBuf%3E-for-%26OsStr"],[21503,"impl-PartialEq%3C%26Path%3E-for-OsStr"],[21504,"impl-PartialEq-for-OsStr"],[21505,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-OsStr"],[21506,"impl-PartialEq%3CPathBuf%3E-for-OsStr"],[21515,"impl-Extend%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21516,"impl-Extend%3C%26OsStr%3E-for-OsString"],[21517,"impl-Extend%3COsString%3E-for-OsString"],[21522,"impl-Debug-for-NulError"],[21523,"impl-Display-for-NulError"],[21524,"impl-Debug-for-FromVecWithNulError"],[21525,"impl-Display-for-FromVecWithNulError"],[21526,"impl-Display-for-IntoStringError"],[21527,"impl-Debug-for-IntoStringError"],[21529,"impl-Display-for-FromBytesWithNulError"],[21530,"impl-Debug-for-FromBytesWithNulError"],[21531,"impl-Debug-for-FromBytesUntilNulError"],[21532,"impl-Display-for-FromBytesUntilNulError"],[21536,"impl-From%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21537,"impl-From%3CBox%3COsStr%3E%3E-for-OsString"],[21538,"impl-From%3C%26T%3E-for-OsString"],[21539,"impl-From%3CString%3E-for-OsString"],[21540,"impl-From%3CPathBuf%3E-for-OsString"],[21542,"impl-From%3C%26CStr%3E-for-CString"],[21543,"impl-From%3CBox%3CCStr%3E%3E-for-CString"],[21545,"impl-From%3CVec%3CNonZero%3Cu8%3E%3E%3E-for-CString"],[21546,"impl-From%3CCow%3C\'a,+CStr%3E%3E-for-CString"],[21560,"impl-FromIterator%3C%26OsStr%3E-for-OsString"],[21561,"impl-FromIterator%3COsString%3E-for-OsString"],[21562,"impl-FromIterator%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21622,"impl-PartialOrd-for-OsString"],[21623,"impl-PartialOrd%3C%26OsStr%3E-for-OsString"],[21624,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-OsString"],[21625,"impl-PartialOrd%3CPathBuf%3E-for-OsString"],[21626,"impl-PartialOrd%3Cstr%3E-for-OsString"],[21627,"impl-PartialOrd%3CPath%3E-for-OsString"],[21628,"impl-PartialOrd%3C%26Path%3E-for-OsString"],[21629,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-OsString"],[21630,"impl-PartialOrd%3COsStr%3E-for-OsString"],[21631,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-OsStr"],[21632,"impl-PartialOrd%3CPathBuf%3E-for-OsStr"],[21633,"impl-PartialOrd%3Cstr%3E-for-OsStr"],[21634,"impl-PartialOrd-for-OsStr"],[21635,"impl-PartialOrd%3CPath%3E-for-OsStr"],[21636,"impl-PartialOrd%3C%26Path%3E-for-OsStr"],[21637,"impl-PartialOrd%3COsString%3E-for-%26OsStr"],[21638,"impl-PartialOrd%3CPathBuf%3E-for-%26OsStr"],[21639,"impl-PartialOrd%3COsString%3E-for-OsStr"],[21640,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-%26OsStr"],[21641,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-OsStr"],[21642,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-%26OsStr"],[21643,"impl-PartialOrd%3CPath%3E-for-%26OsStr"],[21727,"impl-Display-for-Display%3C\'_%3E"],[21728,"impl-Debug-for-Display%3C\'_%3E"],[21837,"impl-Debug-for-FromFn%3CF%3E"],[21838,"impl-Display-for-FromFn%3CF%3E"],[21840,"impl-Display-for-Error"],[21841,"impl-Debug-for-Error"],[21842,"impl-Debug-for-Arguments%3C\'_%3E"],[21843,"impl-Display-for-Arguments%3C\'_%3E"],[21919,"impl-Formatter%3C\'a%3E"],[21920,"impl-Write-for-Formatter%3C\'_%3E"],[21922,"impl-Write-for-Formatter%3C\'_%3E"],[21923,"impl-Formatter%3C\'a%3E"],[21997,"impl-Write-for-File"],[21998,"impl-Write-for-%26File"],[22043,"impl-Read-for-File"],[22044,"impl-Read-for-%26File"],[22049,"impl-Write-for-%26File"],[22050,"impl-Write-for-File"],[22074,"impl-Read-for-File"],[22075,"impl-Read-for-%26File"],[22078,"impl-Read-for-%26File"],[22079,"impl-Read-for-File"],[22082,"impl-Read-for-%26File"],[22083,"impl-Read-for-File"],[22085,"impl-Read-for-%26File"],[22086,"impl-Read-for-File"],[22087,"impl-Read-for-File"],[22088,"impl-Read-for-%26File"],[22096,"impl-Seek-for-File"],[22097,"impl-Seek-for-%26File"],[22164,"impl-Write-for-%26File"],[22165,"impl-Write-for-File"],[22168,"impl-Write-for-%26File"],[22169,"impl-Write-for-File"],[23001,"impl-Write-for-Stdout"],[23002,"impl-Write-for-%26Stdout"],[23004,"impl-Write-for-Stderr"],[23005,"impl-Write-for-%26Stderr"],[23007,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[23008,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[23009,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[23010,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[23011,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[23012,"impl-Write-for-Empty"],[23013,"impl-Write-for-%26Empty"],[23014,"impl-Write-for-Sink"],[23015,"impl-Write-for-%26Sink"],[23019,"impl-Debug-for-WriterPanicked"],[23020,"impl-Display-for-WriterPanicked"],[23022,"impl-Display-for-Error"],[23023,"impl-Debug-for-Error"],[23033,"impl-Display-for-IntoInnerError%3CW%3E"],[23034,"impl-Debug-for-IntoInnerError%3CW%3E"],[23036,"impl-Debug-for-ErrorKind"],[23037,"impl-Display-for-ErrorKind"],[23052,"impl-From%3CIntoInnerError%3CW%3E%3E-for-Error"],[23053,"impl-From%3CNulError%3E-for-Error"],[23055,"impl-From%3CTryReserveError%3E-for-Error"],[23056,"impl-From%3CErrorKind%3E-for-Error"],[23065,"impl-From%3C%26mut+%5BMaybeUninit%3Cu8%3E%5D%3E-for-BorrowedBuf%3C\'data%3E"],[23067,"impl-From%3C%26mut+%5Bu8%5D%3E-for-BorrowedBuf%3C\'data%3E"],[23144,"impl-Read-for-Stdin"],[23145,"impl-Read-for-%26Stdin"],[23160,"impl-Write-for-Stdout"],[23161,"impl-Write-for-%26Stdout"],[23163,"impl-Write-for-%26Stderr"],[23164,"impl-Write-for-Stderr"],[23167,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[23168,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[23169,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[23170,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[23171,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[23172,"impl-Write-for-Empty"],[23173,"impl-Write-for-%26Empty"],[23174,"impl-Write-for-Sink"],[23175,"impl-Write-for-%26Sink"],[23203,"impl-Read-for-%26Stdin"],[23204,"impl-Read-for-Stdin"],[23212,"impl-Read-for-%26Stdin"],[23213,"impl-Read-for-Stdin"],[23222,"impl-Read-for-%26Stdin"],[23223,"impl-Read-for-Stdin"],[23228,"impl-Read-for-%26Stdin"],[23229,"impl-Read-for-Stdin"],[23237,"impl-Read-for-%26Stdin"],[23238,"impl-Read-for-Stdin"],[23246,"impl-Read-for-%26Stdin"],[23247,"impl-Read-for-Stdin"],[23256,"impl-Read-for-%26Stdin"],[23257,"impl-Read-for-Stdin"],[23271,"impl-BufReader%3CR%3E"],[23272,"impl-Seek-for-BufReader%3CR%3E"],[23395,"impl-Write-for-%26Stdout"],[23396,"impl-Write-for-Stdout"],[23398,"impl-Write-for-%26Stderr"],[23399,"impl-Write-for-Stderr"],[23401,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[23402,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[23403,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[23404,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[23405,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[23406,"impl-Write-for-%26Empty"],[23407,"impl-Write-for-Empty"],[23408,"impl-Write-for-%26Sink"],[23409,"impl-Write-for-Sink"],[23413,"impl-Write-for-%26Stdout"],[23414,"impl-Write-for-Stdout"],[23416,"impl-Write-for-%26Stderr"],[23417,"impl-Write-for-Stderr"],[23421,"impl-Write-for-Stdout"],[23422,"impl-Write-for-%26Stdout"],[23424,"impl-Write-for-Stderr"],[23425,"impl-Write-for-%26Stderr"],[23429,"impl-Write-for-%26Stdout"],[23430,"impl-Write-for-Stdout"],[23431,"impl-Write-for-%26Stderr"],[23432,"impl-Write-for-Stderr"],[23436,"impl-Write-for-Stdout"],[23437,"impl-Write-for-%26Stdout"],[23439,"impl-Write-for-Stderr"],[23440,"impl-Write-for-%26Stderr"],[23443,"impl-Write-for-Cursor%3C%26mut+Vec%3Cu8,+A%3E%3E"],[23444,"impl-Write-for-Cursor%3CBox%3C%5Bu8%5D,+A%3E%3E"],[23445,"impl-Write-for-Cursor%3C%26mut+%5Bu8%5D%3E"],[23446,"impl-Write-for-Cursor%3C%5Bu8;+N%5D%3E"],[23447,"impl-Write-for-Cursor%3CVec%3Cu8,+A%3E%3E"],[23448,"impl-Write-for-Empty"],[23449,"impl-Write-for-%26Empty"],[23450,"impl-Write-for-%26Sink"],[23451,"impl-Write-for-Sink"],[23551,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[23552,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[24010,"impl-ExactSizeIterator-for-Take%3CRepeatWith%3CF%3E%3E"],[24011,"impl-ExactSizeIterator-for-Take%3CRepeat%3CT%3E%3E"],[24081,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[24082,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[24115,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[24116,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[24158,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[24159,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[24357,"impl-DoubleEndedIterator-for-Take%3CRepeat%3CT%3E%3E"],[24358,"impl-DoubleEndedIterator-for-Take%3CI%3E"],[24635,"impl-BitAnd%3C%26Ipv4Addr%3E-for-%26Ipv4Addr"],[24636,"impl-BitAnd%3CIpv4Addr%3E-for-%26Ipv4Addr"],[24637,"impl-BitAnd%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24638,"impl-BitAnd-for-Ipv4Addr"],[24639,"impl-BitAnd-for-Ipv6Addr"],[24640,"impl-BitAnd%3C%26Ipv6Addr%3E-for-%26Ipv6Addr"],[24641,"impl-BitAnd%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24642,"impl-BitAnd%3CIpv6Addr%3E-for-%26Ipv6Addr"],[24643,"impl-BitAndAssign-for-Ipv4Addr"],[24644,"impl-BitAndAssign%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24645,"impl-BitAndAssign-for-Ipv6Addr"],[24646,"impl-BitAndAssign%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24647,"impl-BitOr%3C%26Ipv4Addr%3E-for-%26Ipv4Addr"],[24648,"impl-BitOr-for-Ipv4Addr"],[24649,"impl-BitOr%3CIpv4Addr%3E-for-%26Ipv4Addr"],[24650,"impl-BitOr%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24651,"impl-BitOr%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24652,"impl-BitOr%3CIpv6Addr%3E-for-%26Ipv6Addr"],[24653,"impl-BitOr%3C%26Ipv6Addr%3E-for-%26Ipv6Addr"],[24654,"impl-BitOr-for-Ipv6Addr"],[24655,"impl-BitOrAssign-for-Ipv4Addr"],[24656,"impl-BitOrAssign%3C%26Ipv4Addr%3E-for-Ipv4Addr"],[24657,"impl-BitOrAssign-for-Ipv6Addr"],[24658,"impl-BitOrAssign%3C%26Ipv6Addr%3E-for-Ipv6Addr"],[24727,"impl-PartialEq-for-IpAddr"],[24728,"impl-PartialEq%3CIpv4Addr%3E-for-IpAddr"],[24729,"impl-PartialEq%3CIpv6Addr%3E-for-IpAddr"],[24730,"impl-PartialEq%3CIpAddr%3E-for-Ipv4Addr"],[24731,"impl-PartialEq-for-Ipv4Addr"],[24732,"impl-PartialEq%3CIpAddr%3E-for-Ipv6Addr"],[24733,"impl-PartialEq-for-Ipv6Addr"],[24740,"impl-Write-for-%26TcpStream"],[24741,"impl-Write-for-TcpStream"],[24748,"impl-Debug-for-IpAddr"],[24749,"impl-Display-for-IpAddr"],[24750,"impl-Debug-for-Ipv4Addr"],[24751,"impl-Display-for-Ipv4Addr"],[24752,"impl-Display-for-Ipv6Addr"],[24753,"impl-Debug-for-Ipv6Addr"],[24755,"impl-Debug-for-AddrParseError"],[24756,"impl-Display-for-AddrParseError"],[24757,"impl-Debug-for-SocketAddr"],[24758,"impl-Display-for-SocketAddr"],[24759,"impl-Debug-for-SocketAddrV4"],[24760,"impl-Display-for-SocketAddrV4"],[24761,"impl-Debug-for-SocketAddrV6"],[24762,"impl-Display-for-SocketAddrV6"],[24776,"impl-From%3CIpv4Addr%3E-for-IpAddr"],[24777,"impl-From%3C%5Bu8;+4%5D%3E-for-IpAddr"],[24778,"impl-From%3CIpv6Addr%3E-for-IpAddr"],[24779,"impl-From%3C%5Bu8;+16%5D%3E-for-IpAddr"],[24780,"impl-From%3C%5Bu16;+8%5D%3E-for-IpAddr"],[24782,"impl-From%3Cu32%3E-for-Ipv4Addr"],[24783,"impl-From%3C%5Bu8;+4%5D%3E-for-Ipv4Addr"],[24785,"impl-From%3C%5Bu16;+8%5D%3E-for-Ipv6Addr"],[24787,"impl-From%3Cu128%3E-for-Ipv6Addr"],[24788,"impl-From%3C%5Bu8;+16%5D%3E-for-Ipv6Addr"],[24791,"impl-From%3C(I,+u16)%3E-for-SocketAddr"],[24792,"impl-From%3CSocketAddrV6%3E-for-SocketAddr"],[24793,"impl-From%3CSocketAddrV4%3E-for-SocketAddr"],[24862,"impl-Read-for-TcpStream"],[24863,"impl-Read-for-%26TcpStream"],[24873,"impl-Write-for-%26TcpStream"],[24874,"impl-Write-for-TcpStream"],[24895,"impl-Not-for-%26Ipv4Addr"],[24896,"impl-Not-for-Ipv4Addr"],[24897,"impl-Not-for-Ipv6Addr"],[24898,"impl-Not-for-%26Ipv6Addr"],[24908,"impl-PartialOrd%3CIpv6Addr%3E-for-IpAddr"],[24909,"impl-PartialOrd-for-IpAddr"],[24910,"impl-PartialOrd%3CIpv4Addr%3E-for-IpAddr"],[24911,"impl-PartialOrd%3CIpAddr%3E-for-Ipv4Addr"],[24912,"impl-PartialOrd-for-Ipv4Addr"],[24913,"impl-PartialOrd-for-Ipv6Addr"],[24914,"impl-PartialOrd%3CIpAddr%3E-for-Ipv6Addr"],[24927,"impl-Read-for-%26TcpStream"],[24928,"impl-Read-for-TcpStream"],[24929,"impl-Read-for-TcpStream"],[24930,"impl-Read-for-%26TcpStream"],[24933,"impl-Read-for-TcpStream"],[24934,"impl-Read-for-%26TcpStream"],[25050,"impl-Write-for-TcpStream"],[25051,"impl-Write-for-%26TcpStream"],[25054,"impl-Write-for-%26TcpStream"],[25055,"impl-Write-for-TcpStream"],[25056,"impl-NonZero%3Ci64%3E"],[25057,"impl-NonZero%3Ci32%3E"],[25058,"impl-NonZero%3Cu64%3E"],[25059,"impl-NonZero%3Ci128%3E"],[25060,"impl-NonZero%3Cu16%3E"],[25061,"impl-NonZero%3Cu8%3E"],[25062,"impl-NonZero%3Ci16%3E"],[25063,"impl-NonZero%3Ci8%3E"],[25064,"impl-NonZero%3Cisize%3E"],[25065,"impl-NonZero%3Cusize%3E"],[25066,"impl-NonZero%3Cu128%3E"],[25067,"impl-NonZero%3Cu32%3E"],[25068,"impl-Saturating%3Cisize%3E"],[25069,"impl-Saturating%3Cu128%3E"],[25070,"impl-Saturating%3Cu8%3E"],[25071,"impl-Saturating%3Cu16%3E"],[25072,"impl-Saturating%3Ci8%3E"],[25073,"impl-Saturating%3Cu32%3E"],[25074,"impl-Saturating%3Ci64%3E"],[25075,"impl-Saturating%3Ci32%3E"],[25076,"impl-Saturating%3Ci128%3E"],[25077,"impl-Saturating%3Cu64%3E"],[25078,"impl-Saturating%3Ci16%3E"],[25079,"impl-Saturating%3Cusize%3E"],[25080,"impl-Wrapping%3Cusize%3E"],[25081,"impl-Wrapping%3Cu8%3E"],[25082,"impl-Wrapping%3Cu16%3E"],[25083,"impl-Wrapping%3Ci16%3E"],[25084,"impl-Wrapping%3Ci128%3E"],[25085,"impl-Wrapping%3Ci32%3E"],[25086,"impl-Wrapping%3Ci8%3E"],[25087,"impl-Wrapping%3Cu32%3E"],[25088,"impl-Wrapping%3Cisize%3E"],[25089,"impl-Wrapping%3Cu128%3E"],[25090,"impl-Wrapping%3Ci64%3E"],[25091,"impl-Wrapping%3Cu64%3E"],[25097,"impl-NonZero%3Ci64%3E"],[25098,"impl-NonZero%3Cu128%3E"],[25099,"impl-NonZero%3Cu32%3E"],[25100,"impl-NonZero%3Cu16%3E"],[25101,"impl-NonZero%3Cusize%3E"],[25102,"impl-NonZero%3Ci8%3E"],[25103,"impl-NonZero%3Cu8%3E"],[25104,"impl-NonZero%3Cu64%3E"],[25105,"impl-NonZero%3Ci16%3E"],[25106,"impl-NonZero%3Cisize%3E"],[25107,"impl-NonZero%3Ci128%3E"],[25108,"impl-NonZero%3Ci32%3E"],[25109,"impl-Saturating%3Ci32%3E"],[25110,"impl-Saturating%3Cu8%3E"],[25111,"impl-Saturating%3Ci16%3E"],[25112,"impl-Saturating%3Cisize%3E"],[25113,"impl-Saturating%3Cu128%3E"],[25114,"impl-Saturating%3Ci64%3E"],[25115,"impl-Saturating%3Cu64%3E"],[25116,"impl-Saturating%3Ci128%3E"],[25117,"impl-Saturating%3Ci8%3E"],[25118,"impl-Saturating%3Cu32%3E"],[25119,"impl-Saturating%3Cu16%3E"],[25120,"impl-Saturating%3Cusize%3E"],[25121,"impl-Wrapping%3Cusize%3E"],[25122,"impl-Wrapping%3Ci128%3E"],[25123,"impl-Wrapping%3Cu128%3E"],[25124,"impl-Wrapping%3Cisize%3E"],[25125,"impl-Wrapping%3Ci8%3E"],[25126,"impl-Wrapping%3Cu8%3E"],[25127,"impl-Wrapping%3Ci16%3E"],[25128,"impl-Wrapping%3Cu16%3E"],[25129,"impl-Wrapping%3Ci32%3E"],[25130,"impl-Wrapping%3Cu32%3E"],[25131,"impl-Wrapping%3Ci64%3E"],[25132,"impl-Wrapping%3Cu64%3E"],[25133,"impl-NonZero%3Cu32%3E"],[25134,"impl-NonZero%3Cisize%3E"],[25135,"impl-NonZero%3Ci8%3E"],[25136,"impl-NonZero%3Ci32%3E"],[25137,"impl-NonZero%3Cusize%3E"],[25138,"impl-NonZero%3Ci64%3E"],[25139,"impl-NonZero%3Cu64%3E"],[25140,"impl-NonZero%3Cu16%3E"],[25141,"impl-NonZero%3Ci128%3E"],[25142,"impl-NonZero%3Cu128%3E"],[25143,"impl-NonZero%3Cu8%3E"],[25144,"impl-NonZero%3Ci16%3E"],[25145,"impl-Saturating%3Ci8%3E"],[25146,"impl-Saturating%3Cu32%3E"],[25147,"impl-Saturating%3Cisize%3E"],[25148,"impl-Saturating%3Ci16%3E"],[25149,"impl-Saturating%3Ci64%3E"],[25150,"impl-Saturating%3Ci128%3E"],[25151,"impl-Saturating%3Ci32%3E"],[25152,"impl-Saturating%3Cu128%3E"],[25153,"impl-Saturating%3Cusize%3E"],[25154,"impl-Saturating%3Cu8%3E"],[25155,"impl-Saturating%3Cu16%3E"],[25156,"impl-Saturating%3Cu64%3E"],[25157,"impl-Wrapping%3Ci8%3E"],[25158,"impl-Wrapping%3Ci16%3E"],[25159,"impl-Wrapping%3Cusize%3E"],[25160,"impl-Wrapping%3Cu8%3E"],[25161,"impl-Wrapping%3Cu32%3E"],[25162,"impl-Wrapping%3Cu16%3E"],[25163,"impl-Wrapping%3Ci128%3E"],[25164,"impl-Wrapping%3Cu128%3E"],[25165,"impl-Wrapping%3Ci64%3E"],[25166,"impl-Wrapping%3Cisize%3E"],[25167,"impl-Wrapping%3Ci32%3E"],[25168,"impl-Wrapping%3Cu64%3E"],[25195,"impl-NonZero%3Ci64%3E"],[25196,"impl-NonZero%3Ci128%3E"],[25197,"impl-NonZero%3Ci16%3E"],[25198,"impl-NonZero%3Ci32%3E"],[25199,"impl-NonZero%3Ci8%3E"],[25200,"impl-NonZero%3Cisize%3E"],[25201,"impl-Saturating%3Cisize%3E"],[25202,"impl-Saturating%3Ci8%3E"],[25203,"impl-Saturating%3Ci16%3E"],[25204,"impl-Saturating%3Ci32%3E"],[25205,"impl-Saturating%3Ci64%3E"],[25206,"impl-Saturating%3Ci128%3E"],[25207,"impl-Wrapping%3Ci128%3E"],[25208,"impl-Wrapping%3Ci64%3E"],[25209,"impl-Wrapping%3Cisize%3E"],[25210,"impl-Wrapping%3Ci8%3E"],[25211,"impl-Wrapping%3Ci16%3E"],[25212,"impl-Wrapping%3Ci32%3E"],[25213,"impl-Add%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25214,"impl-Add%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25215,"impl-Add%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25216,"impl-Add%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25217,"impl-Add-for-Saturating%3Cu64%3E"],[25218,"impl-Add%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25219,"impl-Add%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25220,"impl-Add%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25221,"impl-Add-for-Saturating%3Cu128%3E"],[25222,"impl-Add%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25223,"impl-Add%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25224,"impl-Add%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25225,"impl-Add-for-Saturating%3Cisize%3E"],[25226,"impl-Add%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25227,"impl-Add%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25228,"impl-Add%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25229,"impl-Add-for-Saturating%3Ci8%3E"],[25230,"impl-Add-for-Saturating%3Cusize%3E"],[25231,"impl-Add-for-Saturating%3Cu16%3E"],[25232,"impl-Add-for-Saturating%3Cu32%3E"],[25233,"impl-Add%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25234,"impl-Add%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25235,"impl-Add%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25236,"impl-Add%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25237,"impl-Add%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25238,"impl-Add-for-Saturating%3Cu8%3E"],[25239,"impl-Add%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25240,"impl-Add%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25241,"impl-Add%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25242,"impl-Add%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25243,"impl-Add%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25244,"impl-Add-for-Saturating%3Ci16%3E"],[25245,"impl-Add%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25246,"impl-Add%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25247,"impl-Add%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25248,"impl-Add-for-Saturating%3Ci32%3E"],[25249,"impl-Add%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25250,"impl-Add%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25251,"impl-Add%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25252,"impl-Add-for-Saturating%3Ci64%3E"],[25253,"impl-Add%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25254,"impl-Add%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25255,"impl-Add%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25256,"impl-Add%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25257,"impl-Add-for-Saturating%3Ci128%3E"],[25258,"impl-Add%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25259,"impl-Add%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25260,"impl-Add%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25261,"impl-Add%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25262,"impl-Add%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25263,"impl-Add%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25264,"impl-Add-for-Wrapping%3Cu32%3E"],[25265,"impl-Add%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25266,"impl-Add%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25267,"impl-Add%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25268,"impl-Add-for-Wrapping%3Cu16%3E"],[25269,"impl-Add%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25270,"impl-Add%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25271,"impl-Add%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25272,"impl-Add-for-Wrapping%3Cu8%3E"],[25273,"impl-Add%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25274,"impl-Add%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25275,"impl-Add%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25276,"impl-Add%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25277,"impl-Add-for-Wrapping%3Cusize%3E"],[25278,"impl-Add%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25279,"impl-Add%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25280,"impl-Add-for-Wrapping%3Ci128%3E"],[25281,"impl-Add%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25282,"impl-Add%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25283,"impl-Add%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25284,"impl-Add%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25285,"impl-Add-for-Wrapping%3Ci64%3E"],[25286,"impl-Add%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25287,"impl-Add%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25288,"impl-Add%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25289,"impl-Add-for-Wrapping%3Ci32%3E"],[25290,"impl-Add%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25291,"impl-Add%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25292,"impl-Add%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25293,"impl-Add-for-Wrapping%3Ci16%3E"],[25294,"impl-Add%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25295,"impl-Add%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25296,"impl-Add%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25297,"impl-Add-for-Wrapping%3Ci8%3E"],[25298,"impl-Add%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25299,"impl-Add-for-Wrapping%3Cu64%3E"],[25300,"impl-Add%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25301,"impl-Add%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25302,"impl-Add%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25303,"impl-Add-for-Wrapping%3Cu128%3E"],[25304,"impl-Add%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25305,"impl-Add%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25306,"impl-Add%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25307,"impl-Add-for-Wrapping%3Cisize%3E"],[25308,"impl-Add%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25309,"impl-AddAssign-for-Saturating%3Cu8%3E"],[25310,"impl-AddAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25311,"impl-AddAssign-for-Saturating%3Cusize%3E"],[25312,"impl-AddAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25313,"impl-AddAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25314,"impl-AddAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25315,"impl-AddAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25316,"impl-AddAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25317,"impl-AddAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25318,"impl-AddAssign-for-Saturating%3Cu16%3E"],[25319,"impl-AddAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25320,"impl-AddAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25321,"impl-AddAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25322,"impl-AddAssign-for-Saturating%3Cu32%3E"],[25323,"impl-AddAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25324,"impl-AddAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25325,"impl-AddAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25326,"impl-AddAssign-for-Saturating%3Cu64%3E"],[25327,"impl-AddAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25328,"impl-AddAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25329,"impl-AddAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25330,"impl-AddAssign-for-Saturating%3Cu128%3E"],[25331,"impl-AddAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25332,"impl-AddAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25333,"impl-AddAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25334,"impl-AddAssign-for-Saturating%3Cisize%3E"],[25335,"impl-AddAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25336,"impl-AddAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25337,"impl-AddAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25338,"impl-AddAssign-for-Saturating%3Ci8%3E"],[25339,"impl-AddAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25340,"impl-AddAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25341,"impl-AddAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25342,"impl-AddAssign-for-Saturating%3Ci16%3E"],[25343,"impl-AddAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25344,"impl-AddAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25345,"impl-AddAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25346,"impl-AddAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25347,"impl-AddAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25348,"impl-AddAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25349,"impl-AddAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25350,"impl-AddAssign-for-Saturating%3Ci128%3E"],[25351,"impl-AddAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25352,"impl-AddAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25353,"impl-AddAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25354,"impl-AddAssign-for-Saturating%3Ci64%3E"],[25355,"impl-AddAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25356,"impl-AddAssign-for-Saturating%3Ci32%3E"],[25357,"impl-AddAssign-for-Wrapping%3Ci32%3E"],[25358,"impl-AddAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25359,"impl-AddAssign-for-Wrapping%3Cusize%3E"],[25360,"impl-AddAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25361,"impl-AddAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25362,"impl-AddAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25363,"impl-AddAssign-for-Wrapping%3Cu8%3E"],[25364,"impl-AddAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25365,"impl-AddAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25366,"impl-AddAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25367,"impl-AddAssign-for-Wrapping%3Cu16%3E"],[25368,"impl-AddAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25369,"impl-AddAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25370,"impl-AddAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25371,"impl-AddAssign-for-Wrapping%3Cu32%3E"],[25372,"impl-AddAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25373,"impl-AddAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25374,"impl-AddAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25375,"impl-AddAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25376,"impl-AddAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25377,"impl-AddAssign-for-Wrapping%3Ci16%3E"],[25378,"impl-AddAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25379,"impl-AddAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25380,"impl-AddAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25381,"impl-AddAssign-for-Wrapping%3Cisize%3E"],[25382,"impl-AddAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25383,"impl-AddAssign-for-Wrapping%3Ci128%3E"],[25384,"impl-AddAssign-for-Wrapping%3Cu64%3E"],[25385,"impl-AddAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25386,"impl-AddAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25387,"impl-AddAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25388,"impl-AddAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25389,"impl-AddAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25390,"impl-AddAssign-for-Wrapping%3Cu128%3E"],[25391,"impl-AddAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25392,"impl-AddAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25393,"impl-AddAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25394,"impl-AddAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25395,"impl-AddAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25396,"impl-AddAssign-for-Wrapping%3Ci8%3E"],[25397,"impl-AddAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25398,"impl-AddAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25399,"impl-AddAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25400,"impl-AddAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25401,"impl-AddAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25402,"impl-AddAssign-for-Wrapping%3Ci64%3E"],[25403,"impl-AddAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25404,"impl-AddAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25405,"impl-BitAnd%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25406,"impl-BitAnd-for-Saturating%3Cu128%3E"],[25407,"impl-BitAnd-for-Saturating%3Cusize%3E"],[25408,"impl-BitAnd%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25409,"impl-BitAnd%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25410,"impl-BitAnd%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25411,"impl-BitAnd%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25412,"impl-BitAnd%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25413,"impl-BitAnd%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25414,"impl-BitAnd-for-Saturating%3Cu8%3E"],[25415,"impl-BitAnd%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25416,"impl-BitAnd-for-Saturating%3Ci64%3E"],[25417,"impl-BitAnd%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25418,"impl-BitAnd%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25419,"impl-BitAnd-for-Saturating%3Cu16%3E"],[25420,"impl-BitAnd%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25421,"impl-BitAnd%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25422,"impl-BitAnd%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25423,"impl-BitAnd%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25424,"impl-BitAnd%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25425,"impl-BitAnd%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25426,"impl-BitAnd-for-Saturating%3Ci128%3E"],[25427,"impl-BitAnd%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25428,"impl-BitAnd%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25429,"impl-BitAnd%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25430,"impl-BitAnd%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25431,"impl-BitAnd-for-Saturating%3Ci16%3E"],[25432,"impl-BitAnd%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25433,"impl-BitAnd%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25434,"impl-BitAnd%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25435,"impl-BitAnd-for-Saturating%3Ci8%3E"],[25436,"impl-BitAnd%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25437,"impl-BitAnd%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25438,"impl-BitAnd%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25439,"impl-BitAnd-for-Saturating%3Cisize%3E"],[25440,"impl-BitAnd%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25441,"impl-BitAnd%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25442,"impl-BitAnd%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25443,"impl-BitAnd-for-Saturating%3Cu32%3E"],[25444,"impl-BitAnd%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25445,"impl-BitAnd%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25446,"impl-BitAnd%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25447,"impl-BitAnd-for-Saturating%3Cu64%3E"],[25448,"impl-BitAnd%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25449,"impl-BitAnd%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25450,"impl-BitAnd%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25451,"impl-BitAnd%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25452,"impl-BitAnd-for-Saturating%3Ci32%3E"],[25453,"impl-BitAnd%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25454,"impl-BitAnd%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25455,"impl-BitAnd%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25456,"impl-BitAnd%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25457,"impl-BitAnd%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25458,"impl-BitAnd-for-Wrapping%3Cu64%3E"],[25459,"impl-BitAnd%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25460,"impl-BitAnd%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25461,"impl-BitAnd%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25462,"impl-BitAnd-for-Wrapping%3Cu32%3E"],[25463,"impl-BitAnd%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25464,"impl-BitAnd%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25465,"impl-BitAnd%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25466,"impl-BitAnd%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25467,"impl-BitAnd-for-Wrapping%3Cu16%3E"],[25468,"impl-BitAnd%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25469,"impl-BitAnd%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25470,"impl-BitAnd%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25471,"impl-BitAnd-for-Wrapping%3Cu8%3E"],[25472,"impl-BitAnd%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25473,"impl-BitAnd%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25474,"impl-BitAnd-for-Wrapping%3Cu128%3E"],[25475,"impl-BitAnd-for-Wrapping%3Cusize%3E"],[25476,"impl-BitAnd%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25477,"impl-BitAnd%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25478,"impl-BitAnd-for-Wrapping%3Cisize%3E"],[25479,"impl-BitAnd%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25480,"impl-BitAnd%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25481,"impl-BitAnd%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25482,"impl-BitAnd-for-Wrapping%3Ci8%3E"],[25483,"impl-BitAnd%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25484,"impl-BitAnd%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25485,"impl-BitAnd%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25486,"impl-BitAnd-for-Wrapping%3Ci16%3E"],[25487,"impl-BitAnd%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25488,"impl-BitAnd%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25489,"impl-BitAnd%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25490,"impl-BitAnd-for-Wrapping%3Ci32%3E"],[25491,"impl-BitAnd%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25492,"impl-BitAnd%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25493,"impl-BitAnd%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25494,"impl-BitAnd-for-Wrapping%3Ci64%3E"],[25495,"impl-BitAnd%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25496,"impl-BitAnd%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25497,"impl-BitAnd%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25498,"impl-BitAnd-for-Wrapping%3Ci128%3E"],[25499,"impl-BitAnd%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25500,"impl-BitAnd%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25501,"impl-BitAndAssign-for-Saturating%3Cisize%3E"],[25502,"impl-BitAndAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25503,"impl-BitAndAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25504,"impl-BitAndAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25505,"impl-BitAndAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25506,"impl-BitAndAssign-for-Saturating%3Ci16%3E"],[25507,"impl-BitAndAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25508,"impl-BitAndAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25509,"impl-BitAndAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25510,"impl-BitAndAssign-for-Saturating%3Ci32%3E"],[25511,"impl-BitAndAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25512,"impl-BitAndAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25513,"impl-BitAndAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25514,"impl-BitAndAssign-for-Saturating%3Ci64%3E"],[25515,"impl-BitAndAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25516,"impl-BitAndAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25517,"impl-BitAndAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25518,"impl-BitAndAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25519,"impl-BitAndAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25520,"impl-BitAndAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25521,"impl-BitAndAssign-for-Saturating%3Ci8%3E"],[25522,"impl-BitAndAssign-for-Saturating%3Cusize%3E"],[25523,"impl-BitAndAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25524,"impl-BitAndAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25525,"impl-BitAndAssign-for-Saturating%3Cu128%3E"],[25526,"impl-BitAndAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25527,"impl-BitAndAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25528,"impl-BitAndAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25529,"impl-BitAndAssign-for-Saturating%3Cu64%3E"],[25530,"impl-BitAndAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25531,"impl-BitAndAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25532,"impl-BitAndAssign-for-Saturating%3Ci128%3E"],[25533,"impl-BitAndAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25534,"impl-BitAndAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25535,"impl-BitAndAssign-for-Saturating%3Cu32%3E"],[25536,"impl-BitAndAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25537,"impl-BitAndAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25538,"impl-BitAndAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25539,"impl-BitAndAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25540,"impl-BitAndAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25541,"impl-BitAndAssign-for-Saturating%3Cu16%3E"],[25542,"impl-BitAndAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25543,"impl-BitAndAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25544,"impl-BitAndAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25545,"impl-BitAndAssign-for-Saturating%3Cu8%3E"],[25546,"impl-BitAndAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25547,"impl-BitAndAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25548,"impl-BitAndAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25549,"impl-BitAndAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25550,"impl-BitAndAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25551,"impl-BitAndAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25552,"impl-BitAndAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25553,"impl-BitAndAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25554,"impl-BitAndAssign-for-Wrapping%3Ci64%3E"],[25555,"impl-BitAndAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25556,"impl-BitAndAssign-for-Wrapping%3Cu64%3E"],[25557,"impl-BitAndAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25558,"impl-BitAndAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25559,"impl-BitAndAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25560,"impl-BitAndAssign-for-Wrapping%3Cu32%3E"],[25561,"impl-BitAndAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25562,"impl-BitAndAssign-for-Wrapping%3Ci32%3E"],[25563,"impl-BitAndAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25564,"impl-BitAndAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25565,"impl-BitAndAssign-for-Wrapping%3Ci16%3E"],[25566,"impl-BitAndAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25567,"impl-BitAndAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25568,"impl-BitAndAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25569,"impl-BitAndAssign-for-Wrapping%3Cu16%3E"],[25570,"impl-BitAndAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25571,"impl-BitAndAssign-for-Wrapping%3Ci128%3E"],[25572,"impl-BitAndAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25573,"impl-BitAndAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25574,"impl-BitAndAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25575,"impl-BitAndAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25576,"impl-BitAndAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25577,"impl-BitAndAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25578,"impl-BitAndAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25579,"impl-BitAndAssign-for-Wrapping%3Cu8%3E"],[25580,"impl-BitAndAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25581,"impl-BitAndAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25582,"impl-BitAndAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25583,"impl-BitAndAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25584,"impl-BitAndAssign-for-Wrapping%3Ci8%3E"],[25585,"impl-BitAndAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25586,"impl-BitAndAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25587,"impl-BitAndAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25588,"impl-BitAndAssign-for-Wrapping%3Cisize%3E"],[25589,"impl-BitAndAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25590,"impl-BitAndAssign-for-Wrapping%3Cusize%3E"],[25591,"impl-BitAndAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25592,"impl-BitAndAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25593,"impl-BitAndAssign-for-Wrapping%3Cu128%3E"],[25594,"impl-BitAndAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25595,"impl-BitAndAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25596,"impl-BitAndAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25597,"impl-BitOr%3CT%3E-for-NonZero%3CT%3E"],[25598,"impl-BitOr-for-NonZero%3CT%3E"],[25599,"impl-BitOr%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25600,"impl-BitOr%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25601,"impl-BitOr%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25602,"impl-BitOr%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25603,"impl-BitOr%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25604,"impl-BitOr%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25605,"impl-BitOr%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25606,"impl-BitOr-for-Saturating%3Ci64%3E"],[25607,"impl-BitOr-for-Saturating%3Cu32%3E"],[25608,"impl-BitOr%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25609,"impl-BitOr%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25610,"impl-BitOr%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25611,"impl-BitOr-for-Saturating%3Ci32%3E"],[25612,"impl-BitOr%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25613,"impl-BitOr%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25614,"impl-BitOr%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25615,"impl-BitOr%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25616,"impl-BitOr%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25617,"impl-BitOr-for-Saturating%3Ci16%3E"],[25618,"impl-BitOr%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25619,"impl-BitOr-for-Saturating%3Cu16%3E"],[25620,"impl-BitOr-for-Saturating%3Ci128%3E"],[25621,"impl-BitOr%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25622,"impl-BitOr%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25623,"impl-BitOr%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25624,"impl-BitOr%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25625,"impl-BitOr-for-Saturating%3Cu8%3E"],[25626,"impl-BitOr%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25627,"impl-BitOr%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25628,"impl-BitOr%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25629,"impl-BitOr-for-Saturating%3Cusize%3E"],[25630,"impl-BitOr%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25631,"impl-BitOr%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25632,"impl-BitOr%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25633,"impl-BitOr-for-Saturating%3Ci8%3E"],[25634,"impl-BitOr%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25635,"impl-BitOr%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25636,"impl-BitOr%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25637,"impl-BitOr-for-Saturating%3Cisize%3E"],[25638,"impl-BitOr%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25639,"impl-BitOr%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25640,"impl-BitOr%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25641,"impl-BitOr-for-Saturating%3Cu128%3E"],[25642,"impl-BitOr%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25643,"impl-BitOr%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25644,"impl-BitOr%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25645,"impl-BitOr-for-Saturating%3Cu64%3E"],[25646,"impl-BitOr%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25647,"impl-BitOr%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25648,"impl-BitOr%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25649,"impl-BitOr%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25650,"impl-BitOr%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25651,"impl-BitOr%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25652,"impl-BitOr-for-Wrapping%3Cu8%3E"],[25653,"impl-BitOr%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25654,"impl-BitOr%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25655,"impl-BitOr%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25656,"impl-BitOr-for-Wrapping%3Cu16%3E"],[25657,"impl-BitOr%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25658,"impl-BitOr%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25659,"impl-BitOr%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25660,"impl-BitOr-for-Wrapping%3Cu32%3E"],[25661,"impl-BitOr%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25662,"impl-BitOr%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25663,"impl-BitOr%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25664,"impl-BitOr-for-Wrapping%3Cu64%3E"],[25665,"impl-BitOr%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25666,"impl-BitOr%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25667,"impl-BitOr-for-Wrapping%3Cu128%3E"],[25668,"impl-BitOr%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25669,"impl-BitOr%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25670,"impl-BitOr%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25671,"impl-BitOr-for-Wrapping%3Cisize%3E"],[25672,"impl-BitOr%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25673,"impl-BitOr%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25674,"impl-BitOr%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25675,"impl-BitOr-for-Wrapping%3Ci8%3E"],[25676,"impl-BitOr%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25677,"impl-BitOr%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25678,"impl-BitOr%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25679,"impl-BitOr-for-Wrapping%3Ci16%3E"],[25680,"impl-BitOr%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25681,"impl-BitOr%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25682,"impl-BitOr%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25683,"impl-BitOr-for-Wrapping%3Cusize%3E"],[25684,"impl-BitOr-for-Wrapping%3Ci32%3E"],[25685,"impl-BitOr%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25686,"impl-BitOr%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25687,"impl-BitOr%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25688,"impl-BitOr-for-Wrapping%3Ci64%3E"],[25689,"impl-BitOr%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25690,"impl-BitOr%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25691,"impl-BitOr%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25692,"impl-BitOr-for-Wrapping%3Ci128%3E"],[25693,"impl-BitOr%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25694,"impl-BitOr%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25695,"impl-BitOrAssign%3CT%3E-for-NonZero%3CT%3E"],[25696,"impl-BitOrAssign-for-NonZero%3CT%3E"],[25697,"impl-BitOrAssign-for-Saturating%3Ci64%3E"],[25698,"impl-BitOrAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25699,"impl-BitOrAssign-for-Saturating%3Ci8%3E"],[25700,"impl-BitOrAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25701,"impl-BitOrAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25702,"impl-BitOrAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25703,"impl-BitOrAssign-for-Saturating%3Cisize%3E"],[25704,"impl-BitOrAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25705,"impl-BitOrAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25706,"impl-BitOrAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25707,"impl-BitOrAssign-for-Saturating%3Cu128%3E"],[25708,"impl-BitOrAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25709,"impl-BitOrAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25710,"impl-BitOrAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25711,"impl-BitOrAssign-for-Saturating%3Cu64%3E"],[25712,"impl-BitOrAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25713,"impl-BitOrAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25714,"impl-BitOrAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25715,"impl-BitOrAssign-for-Saturating%3Cu32%3E"],[25716,"impl-BitOrAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25717,"impl-BitOrAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25718,"impl-BitOrAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25719,"impl-BitOrAssign-for-Saturating%3Cu16%3E"],[25720,"impl-BitOrAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25721,"impl-BitOrAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25722,"impl-BitOrAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25723,"impl-BitOrAssign-for-Saturating%3Cu8%3E"],[25724,"impl-BitOrAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25725,"impl-BitOrAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25726,"impl-BitOrAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25727,"impl-BitOrAssign-for-Saturating%3Cusize%3E"],[25728,"impl-BitOrAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25729,"impl-BitOrAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25730,"impl-BitOrAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25731,"impl-BitOrAssign-for-Saturating%3Ci16%3E"],[25732,"impl-BitOrAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25733,"impl-BitOrAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25734,"impl-BitOrAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25735,"impl-BitOrAssign-for-Saturating%3Ci32%3E"],[25736,"impl-BitOrAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25737,"impl-BitOrAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25738,"impl-BitOrAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25739,"impl-BitOrAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25740,"impl-BitOrAssign-for-Saturating%3Ci128%3E"],[25741,"impl-BitOrAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25742,"impl-BitOrAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25743,"impl-BitOrAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25744,"impl-BitOrAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25745,"impl-BitOrAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25746,"impl-BitOrAssign-for-Wrapping%3Ci128%3E"],[25747,"impl-BitOrAssign-for-Wrapping%3Cusize%3E"],[25748,"impl-BitOrAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25749,"impl-BitOrAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25750,"impl-BitOrAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25751,"impl-BitOrAssign-for-Wrapping%3Cu8%3E"],[25752,"impl-BitOrAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25753,"impl-BitOrAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[25754,"impl-BitOrAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25755,"impl-BitOrAssign-for-Wrapping%3Cisize%3E"],[25756,"impl-BitOrAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25757,"impl-BitOrAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25758,"impl-BitOrAssign-for-Wrapping%3Cu128%3E"],[25759,"impl-BitOrAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25760,"impl-BitOrAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25761,"impl-BitOrAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25762,"impl-BitOrAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25763,"impl-BitOrAssign-for-Wrapping%3Cu64%3E"],[25764,"impl-BitOrAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25765,"impl-BitOrAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25766,"impl-BitOrAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25767,"impl-BitOrAssign-for-Wrapping%3Cu32%3E"],[25768,"impl-BitOrAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25769,"impl-BitOrAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25770,"impl-BitOrAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25771,"impl-BitOrAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25772,"impl-BitOrAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25773,"impl-BitOrAssign-for-Wrapping%3Cu16%3E"],[25774,"impl-BitOrAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25775,"impl-BitOrAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25776,"impl-BitOrAssign-for-Wrapping%3Ci32%3E"],[25777,"impl-BitOrAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25778,"impl-BitOrAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25779,"impl-BitOrAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25780,"impl-BitOrAssign-for-Wrapping%3Ci16%3E"],[25781,"impl-BitOrAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25782,"impl-BitOrAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25783,"impl-BitOrAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25784,"impl-BitOrAssign-for-Wrapping%3Ci64%3E"],[25785,"impl-BitOrAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25786,"impl-BitOrAssign-for-Wrapping%3Ci8%3E"],[25787,"impl-BitOrAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25788,"impl-BitOrAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25789,"impl-BitOrAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25790,"impl-BitOrAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25791,"impl-BitOrAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25792,"impl-BitOrAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25793,"impl-BitXor%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25794,"impl-BitXor%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25795,"impl-BitXor%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25796,"impl-BitXor%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25797,"impl-BitXor%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[25798,"impl-BitXor-for-Saturating%3Cusize%3E"],[25799,"impl-BitXor-for-Saturating%3Cu8%3E"],[25800,"impl-BitXor%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25801,"impl-BitXor%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25802,"impl-BitXor%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[25803,"impl-BitXor-for-Saturating%3Cu16%3E"],[25804,"impl-BitXor%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25805,"impl-BitXor%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25806,"impl-BitXor%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[25807,"impl-BitXor-for-Saturating%3Cu32%3E"],[25808,"impl-BitXor%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25809,"impl-BitXor%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[25810,"impl-BitXor-for-Saturating%3Cu64%3E"],[25811,"impl-BitXor%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25812,"impl-BitXor%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25813,"impl-BitXor%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[25814,"impl-BitXor%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25815,"impl-BitXor%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25816,"impl-BitXor%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25817,"impl-BitXor%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[25818,"impl-BitXor-for-Saturating%3Cisize%3E"],[25819,"impl-BitXor%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25820,"impl-BitXor%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25821,"impl-BitXor%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[25822,"impl-BitXor-for-Saturating%3Ci8%3E"],[25823,"impl-BitXor%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25824,"impl-BitXor%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25825,"impl-BitXor%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[25826,"impl-BitXor-for-Saturating%3Ci16%3E"],[25827,"impl-BitXor%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25828,"impl-BitXor%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25829,"impl-BitXor%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[25830,"impl-BitXor-for-Saturating%3Ci32%3E"],[25831,"impl-BitXor%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25832,"impl-BitXor%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25833,"impl-BitXor%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[25834,"impl-BitXor-for-Saturating%3Ci64%3E"],[25835,"impl-BitXor%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25836,"impl-BitXor%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25837,"impl-BitXor%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[25838,"impl-BitXor-for-Saturating%3Ci128%3E"],[25839,"impl-BitXor%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[25840,"impl-BitXor-for-Saturating%3Cu128%3E"],[25841,"impl-BitXor%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25842,"impl-BitXor%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25843,"impl-BitXor-for-Wrapping%3Cu32%3E"],[25844,"impl-BitXor%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25845,"impl-BitXor-for-Wrapping%3Ci16%3E"],[25846,"impl-BitXor%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25847,"impl-BitXor%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25848,"impl-BitXor%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25849,"impl-BitXor%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[25850,"impl-BitXor-for-Wrapping%3Ci32%3E"],[25851,"impl-BitXor%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[25852,"impl-BitXor%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25853,"impl-BitXor%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25854,"impl-BitXor-for-Wrapping%3Ci8%3E"],[25855,"impl-BitXor-for-Wrapping%3Cu16%3E"],[25856,"impl-BitXor%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25857,"impl-BitXor%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25858,"impl-BitXor%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[25859,"impl-BitXor-for-Wrapping%3Cu8%3E"],[25860,"impl-BitXor%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25861,"impl-BitXor%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25862,"impl-BitXor%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[25863,"impl-BitXor-for-Wrapping%3Cusize%3E"],[25864,"impl-BitXor%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25865,"impl-BitXor%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[25866,"impl-BitXor-for-Wrapping%3Ci64%3E"],[25867,"impl-BitXor%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[25868,"impl-BitXor%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25869,"impl-BitXor%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25870,"impl-BitXor%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[25871,"impl-BitXor-for-Wrapping%3Ci128%3E"],[25872,"impl-BitXor%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25873,"impl-BitXor%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[25874,"impl-BitXor%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25875,"impl-BitXor%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25876,"impl-BitXor%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[25877,"impl-BitXor-for-Wrapping%3Cisize%3E"],[25878,"impl-BitXor%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25879,"impl-BitXor%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25880,"impl-BitXor%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[25881,"impl-BitXor-for-Wrapping%3Cu128%3E"],[25882,"impl-BitXor%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25883,"impl-BitXor%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25884,"impl-BitXor%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[25885,"impl-BitXor%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25886,"impl-BitXor%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[25887,"impl-BitXor-for-Wrapping%3Cu64%3E"],[25888,"impl-BitXor%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25889,"impl-BitXorAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[25890,"impl-BitXorAssign-for-Saturating%3Cusize%3E"],[25891,"impl-BitXorAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[25892,"impl-BitXorAssign-for-Saturating%3Ci8%3E"],[25893,"impl-BitXorAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[25894,"impl-BitXorAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[25895,"impl-BitXorAssign-for-Saturating%3Ci16%3E"],[25896,"impl-BitXorAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[25897,"impl-BitXorAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[25898,"impl-BitXorAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[25899,"impl-BitXorAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[25900,"impl-BitXorAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[25901,"impl-BitXorAssign-for-Saturating%3Cu64%3E"],[25902,"impl-BitXorAssign-for-Saturating%3Ci32%3E"],[25903,"impl-BitXorAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[25904,"impl-BitXorAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[25905,"impl-BitXorAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[25906,"impl-BitXorAssign-for-Saturating%3Ci64%3E"],[25907,"impl-BitXorAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[25908,"impl-BitXorAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[25909,"impl-BitXorAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[25910,"impl-BitXorAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[25911,"impl-BitXorAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[25912,"impl-BitXorAssign-for-Saturating%3Ci128%3E"],[25913,"impl-BitXorAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[25914,"impl-BitXorAssign-for-Saturating%3Cu16%3E"],[25915,"impl-BitXorAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[25916,"impl-BitXorAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[25917,"impl-BitXorAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[25918,"impl-BitXorAssign-for-Saturating%3Cu8%3E"],[25919,"impl-BitXorAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[25920,"impl-BitXorAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[25921,"impl-BitXorAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[25922,"impl-BitXorAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[25923,"impl-BitXorAssign-for-Saturating%3Cu32%3E"],[25924,"impl-BitXorAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[25925,"impl-BitXorAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[25926,"impl-BitXorAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[25927,"impl-BitXorAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[25928,"impl-BitXorAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[25929,"impl-BitXorAssign-for-Saturating%3Cu128%3E"],[25930,"impl-BitXorAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[25931,"impl-BitXorAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[25932,"impl-BitXorAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[25933,"impl-BitXorAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[25934,"impl-BitXorAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[25935,"impl-BitXorAssign-for-Saturating%3Cisize%3E"],[25936,"impl-BitXorAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[25937,"impl-BitXorAssign-for-Wrapping%3Ci16%3E"],[25938,"impl-BitXorAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[25939,"impl-BitXorAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[25940,"impl-BitXorAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[25941,"impl-BitXorAssign-for-Wrapping%3Cu16%3E"],[25942,"impl-BitXorAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[25943,"impl-BitXorAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[25944,"impl-BitXorAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[25945,"impl-BitXorAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[25946,"impl-BitXorAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[25947,"impl-BitXorAssign-for-Wrapping%3Cu32%3E"],[25948,"impl-BitXorAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[25949,"impl-BitXorAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[25950,"impl-BitXorAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[25951,"impl-BitXorAssign-for-Wrapping%3Cu64%3E"],[25952,"impl-BitXorAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[25953,"impl-BitXorAssign-for-Wrapping%3Ci128%3E"],[25954,"impl-BitXorAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[25955,"impl-BitXorAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[25956,"impl-BitXorAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[25957,"impl-BitXorAssign-for-Wrapping%3Cu128%3E"],[25958,"impl-BitXorAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[25959,"impl-BitXorAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[25960,"impl-BitXorAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[25961,"impl-BitXorAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[25962,"impl-BitXorAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[25963,"impl-BitXorAssign-for-Wrapping%3Cisize%3E"],[25964,"impl-BitXorAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[25965,"impl-BitXorAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[25966,"impl-BitXorAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[25967,"impl-BitXorAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[25968,"impl-BitXorAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[25969,"impl-BitXorAssign-for-Wrapping%3Ci8%3E"],[25970,"impl-BitXorAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[25971,"impl-BitXorAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[25972,"impl-BitXorAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[25973,"impl-BitXorAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[25974,"impl-BitXorAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[25975,"impl-BitXorAssign-for-Wrapping%3Cu8%3E"],[25976,"impl-BitXorAssign-for-Wrapping%3Ci64%3E"],[25977,"impl-BitXorAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[25978,"impl-BitXorAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[25979,"impl-BitXorAssign-for-Wrapping%3Ci32%3E"],[25980,"impl-BitXorAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[25981,"impl-BitXorAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[25982,"impl-BitXorAssign-for-Wrapping%3Cusize%3E"],[25983,"impl-BitXorAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[25984,"impl-BitXorAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[26001,"impl-NonZero%3Ci64%3E"],[26002,"impl-NonZero%3Ci32%3E"],[26003,"impl-NonZero%3Ci128%3E"],[26004,"impl-NonZero%3Cisize%3E"],[26005,"impl-NonZero%3Ci8%3E"],[26006,"impl-NonZero%3Ci16%3E"],[26007,"impl-NonZero%3Cu16%3E"],[26008,"impl-NonZero%3Cu64%3E"],[26009,"impl-NonZero%3Cu128%3E"],[26010,"impl-NonZero%3Cu32%3E"],[26011,"impl-NonZero%3Cusize%3E"],[26012,"impl-NonZero%3Cu8%3E"],[26013,"impl-NonZero%3Ci128%3E"],[26014,"impl-NonZero%3Cu32%3E"],[26015,"impl-NonZero%3Ci32%3E"],[26016,"impl-NonZero%3Cusize%3E"],[26017,"impl-NonZero%3Cu8%3E"],[26018,"impl-NonZero%3Cu128%3E"],[26019,"impl-NonZero%3Cu64%3E"],[26020,"impl-NonZero%3Ci64%3E"],[26021,"impl-NonZero%3Ci16%3E"],[26022,"impl-NonZero%3Cu16%3E"],[26023,"impl-NonZero%3Cisize%3E"],[26024,"impl-NonZero%3Ci8%3E"],[26025,"impl-NonZero%3Ci32%3E"],[26026,"impl-NonZero%3Ci16%3E"],[26027,"impl-NonZero%3Ci128%3E"],[26028,"impl-NonZero%3Ci8%3E"],[26029,"impl-NonZero%3Ci64%3E"],[26030,"impl-NonZero%3Cisize%3E"],[26031,"impl-NonZero%3Cusize%3E"],[26032,"impl-NonZero%3Cu8%3E"],[26033,"impl-NonZero%3Cu16%3E"],[26034,"impl-NonZero%3Cu128%3E"],[26035,"impl-NonZero%3Cu64%3E"],[26036,"impl-NonZero%3Cu32%3E"],[26037,"impl-NonZero%3Ci64%3E"],[26038,"impl-NonZero%3Ci128%3E"],[26039,"impl-NonZero%3Cu8%3E"],[26040,"impl-NonZero%3Cisize%3E"],[26041,"impl-NonZero%3Cu64%3E"],[26042,"impl-NonZero%3Cusize%3E"],[26043,"impl-NonZero%3Cu32%3E"],[26044,"impl-NonZero%3Cu128%3E"],[26045,"impl-NonZero%3Ci8%3E"],[26046,"impl-NonZero%3Cu16%3E"],[26047,"impl-NonZero%3Ci32%3E"],[26048,"impl-NonZero%3Ci16%3E"],[26077,"impl-NonZero%3Cusize%3E"],[26078,"impl-NonZero%3Ci32%3E"],[26079,"impl-NonZero%3Cu128%3E"],[26080,"impl-NonZero%3Cisize%3E"],[26081,"impl-NonZero%3Cu8%3E"],[26082,"impl-NonZero%3Cu64%3E"],[26083,"impl-NonZero%3Ci16%3E"],[26084,"impl-NonZero%3Cu16%3E"],[26085,"impl-NonZero%3Cu32%3E"],[26086,"impl-NonZero%3Ci128%3E"],[26087,"impl-NonZero%3Ci8%3E"],[26088,"impl-NonZero%3Ci64%3E"],[26089,"impl-Saturating%3Cu32%3E"],[26090,"impl-Saturating%3Ci16%3E"],[26091,"impl-Saturating%3Cu64%3E"],[26092,"impl-Saturating%3Ci64%3E"],[26093,"impl-Saturating%3Ci128%3E"],[26094,"impl-Saturating%3Ci8%3E"],[26095,"impl-Saturating%3Cu128%3E"],[26096,"impl-Saturating%3Cu8%3E"],[26097,"impl-Saturating%3Ci32%3E"],[26098,"impl-Saturating%3Cusize%3E"],[26099,"impl-Saturating%3Cu16%3E"],[26100,"impl-Saturating%3Cisize%3E"],[26101,"impl-Wrapping%3Cusize%3E"],[26102,"impl-Wrapping%3Ci32%3E"],[26103,"impl-Wrapping%3Ci16%3E"],[26104,"impl-Wrapping%3Cisize%3E"],[26105,"impl-Wrapping%3Cu16%3E"],[26106,"impl-Wrapping%3Ci64%3E"],[26107,"impl-Wrapping%3Cu8%3E"],[26108,"impl-Wrapping%3Cu32%3E"],[26109,"impl-Wrapping%3Cu64%3E"],[26110,"impl-Wrapping%3Ci8%3E"],[26111,"impl-Wrapping%3Cu128%3E"],[26112,"impl-Wrapping%3Ci128%3E"],[26113,"impl-Saturating%3Cu64%3E"],[26114,"impl-Saturating%3Ci32%3E"],[26115,"impl-Saturating%3Cu16%3E"],[26116,"impl-Saturating%3Ci128%3E"],[26117,"impl-Saturating%3Cu32%3E"],[26118,"impl-Saturating%3Ci64%3E"],[26119,"impl-Saturating%3Cisize%3E"],[26120,"impl-Saturating%3Cu128%3E"],[26121,"impl-Saturating%3Cusize%3E"],[26122,"impl-Saturating%3Cu8%3E"],[26123,"impl-Saturating%3Ci8%3E"],[26124,"impl-Saturating%3Ci16%3E"],[26125,"impl-Wrapping%3Cisize%3E"],[26126,"impl-Wrapping%3Cu16%3E"],[26127,"impl-Wrapping%3Ci64%3E"],[26128,"impl-Wrapping%3Cusize%3E"],[26129,"impl-Wrapping%3Cu64%3E"],[26130,"impl-Wrapping%3Ci8%3E"],[26131,"impl-Wrapping%3Ci32%3E"],[26132,"impl-Wrapping%3Cu8%3E"],[26133,"impl-Wrapping%3Cu128%3E"],[26134,"impl-Wrapping%3Ci16%3E"],[26135,"impl-Wrapping%3Cu32%3E"],[26136,"impl-Wrapping%3Ci128%3E"],[26142,"impl-Div%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26143,"impl-Div%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26144,"impl-Div%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26145,"impl-Div%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26146,"impl-Div-for-Saturating%3Ci8%3E"],[26147,"impl-Div%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26148,"impl-Div%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26149,"impl-Div%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26150,"impl-Div-for-Saturating%3Cisize%3E"],[26151,"impl-Div-for-Saturating%3Ci16%3E"],[26152,"impl-Div%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26153,"impl-Div%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26154,"impl-Div%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26155,"impl-Div%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26156,"impl-Div%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26157,"impl-Div%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26158,"impl-Div-for-Saturating%3Cu128%3E"],[26159,"impl-Div%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26160,"impl-Div%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26161,"impl-Div-for-Saturating%3Ci32%3E"],[26162,"impl-Div%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26163,"impl-Div-for-Saturating%3Cusize%3E"],[26164,"impl-Div%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26165,"impl-Div%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26166,"impl-Div-for-Saturating%3Ci64%3E"],[26167,"impl-Div%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26168,"impl-Div-for-Saturating%3Cu64%3E"],[26169,"impl-Div%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26170,"impl-Div%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26171,"impl-Div%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26172,"impl-Div-for-Saturating%3Cu32%3E"],[26173,"impl-Div%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26174,"impl-Div%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26175,"impl-Div%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26176,"impl-Div-for-Saturating%3Ci128%3E"],[26177,"impl-Div%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26178,"impl-Div%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26179,"impl-Div%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26180,"impl-Div%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26181,"impl-Div%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26182,"impl-Div-for-Saturating%3Cu16%3E"],[26183,"impl-Div%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26184,"impl-Div%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26185,"impl-Div%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26186,"impl-Div-for-Saturating%3Cu8%3E"],[26187,"impl-Div%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26188,"impl-Div%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26189,"impl-Div%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26190,"impl-Div%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26191,"impl-Div%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26192,"impl-Div%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26193,"impl-Div-for-Wrapping%3Cu128%3E"],[26194,"impl-Div%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26195,"impl-Div%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26196,"impl-Div-for-Wrapping%3Cisize%3E"],[26197,"impl-Div%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26198,"impl-Div%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26199,"impl-Div%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26200,"impl-Div-for-Wrapping%3Cu64%3E"],[26201,"impl-Div%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26202,"impl-Div%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26203,"impl-Div-for-Wrapping%3Ci8%3E"],[26204,"impl-Div%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26205,"impl-Div%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26206,"impl-Div%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26207,"impl-Div%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26208,"impl-Div-for-Wrapping%3Cu32%3E"],[26209,"impl-Div%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26210,"impl-Div%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26211,"impl-Div%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26212,"impl-Div%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26213,"impl-Div-for-Wrapping%3Ci16%3E"],[26214,"impl-Div%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26215,"impl-Div-for-Wrapping%3Cu16%3E"],[26216,"impl-Div%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26217,"impl-Div%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26218,"impl-Div%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26219,"impl-Div%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26220,"impl-Div%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26221,"impl-Div-for-Wrapping%3Ci32%3E"],[26222,"impl-Div-for-Wrapping%3Cu8%3E"],[26223,"impl-Div%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26224,"impl-Div%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26225,"impl-Div%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26226,"impl-Div%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26227,"impl-Div-for-Wrapping%3Ci64%3E"],[26228,"impl-Div%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26229,"impl-Div-for-Wrapping%3Cusize%3E"],[26230,"impl-Div%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26231,"impl-Div%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26232,"impl-Div-for-Wrapping%3Ci128%3E"],[26233,"impl-Div%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26234,"impl-Div%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26235,"impl-Div%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26236,"impl-Div%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26237,"impl-Div%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26238,"impl-DivAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[26239,"impl-DivAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[26240,"impl-DivAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26241,"impl-DivAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[26242,"impl-DivAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[26243,"impl-DivAssign-for-Saturating%3Cu8%3E"],[26244,"impl-DivAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26245,"impl-DivAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[26246,"impl-DivAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[26247,"impl-DivAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[26248,"impl-DivAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[26249,"impl-DivAssign-for-Saturating%3Cisize%3E"],[26250,"impl-DivAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26251,"impl-DivAssign-for-Saturating%3Cu16%3E"],[26252,"impl-DivAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[26253,"impl-DivAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[26254,"impl-DivAssign-for-Saturating%3Ci8%3E"],[26255,"impl-DivAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26256,"impl-DivAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[26257,"impl-DivAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[26258,"impl-DivAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26259,"impl-DivAssign-for-Saturating%3Cusize%3E"],[26260,"impl-DivAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26261,"impl-DivAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[26262,"impl-DivAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[26263,"impl-DivAssign-for-Saturating%3Ci32%3E"],[26264,"impl-DivAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26265,"impl-DivAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[26266,"impl-DivAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[26267,"impl-DivAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[26268,"impl-DivAssign-for-Saturating%3Cu32%3E"],[26269,"impl-DivAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[26270,"impl-DivAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[26271,"impl-DivAssign-for-Saturating%3Ci64%3E"],[26272,"impl-DivAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26273,"impl-DivAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26274,"impl-DivAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[26275,"impl-DivAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[26276,"impl-DivAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[26277,"impl-DivAssign-for-Saturating%3Cu64%3E"],[26278,"impl-DivAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[26279,"impl-DivAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[26280,"impl-DivAssign-for-Saturating%3Ci128%3E"],[26281,"impl-DivAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26282,"impl-DivAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26283,"impl-DivAssign-for-Saturating%3Cu128%3E"],[26284,"impl-DivAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26285,"impl-DivAssign-for-Saturating%3Ci16%3E"],[26286,"impl-DivAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[26287,"impl-DivAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[26288,"impl-DivAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[26289,"impl-DivAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26290,"impl-DivAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[26291,"impl-DivAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[26292,"impl-DivAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26293,"impl-DivAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26294,"impl-DivAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[26295,"impl-DivAssign-for-Wrapping%3Ci32%3E"],[26296,"impl-DivAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[26297,"impl-DivAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[26298,"impl-DivAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[26299,"impl-DivAssign-for-Wrapping%3Ci128%3E"],[26300,"impl-DivAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[26301,"impl-DivAssign-for-Wrapping%3Cu32%3E"],[26302,"impl-DivAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[26303,"impl-DivAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26304,"impl-DivAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[26305,"impl-DivAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[26306,"impl-DivAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26307,"impl-DivAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[26308,"impl-DivAssign-for-Wrapping%3Cu8%3E"],[26309,"impl-DivAssign-for-Wrapping%3Cusize%3E"],[26310,"impl-DivAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26311,"impl-DivAssign-for-Wrapping%3Cu64%3E"],[26312,"impl-DivAssign-for-Wrapping%3Ci16%3E"],[26313,"impl-DivAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[26314,"impl-DivAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26315,"impl-DivAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26316,"impl-DivAssign-for-Wrapping%3Ci64%3E"],[26317,"impl-DivAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[26318,"impl-DivAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[26319,"impl-DivAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26320,"impl-DivAssign-for-Wrapping%3Ci8%3E"],[26321,"impl-DivAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[26322,"impl-DivAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[26323,"impl-DivAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26324,"impl-DivAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[26325,"impl-DivAssign-for-Wrapping%3Cisize%3E"],[26326,"impl-DivAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[26327,"impl-DivAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26328,"impl-DivAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[26329,"impl-DivAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[26330,"impl-DivAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[26331,"impl-DivAssign-for-Wrapping%3Cu16%3E"],[26332,"impl-DivAssign-for-Wrapping%3Cu128%3E"],[26333,"impl-DivAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26342,"impl-UpperHex-for-NonZero%3CT%3E"],[26343,"impl-Display-for-NonZero%3CT%3E"],[26344,"impl-Debug-for-NonZero%3CT%3E"],[26345,"impl-Octal-for-NonZero%3CT%3E"],[26346,"impl-Binary-for-NonZero%3CT%3E"],[26347,"impl-LowerHex-for-NonZero%3CT%3E"],[26348,"impl-Display-for-ParseFloatError"],[26349,"impl-Debug-for-ParseFloatError"],[26350,"impl-Display-for-TryFromIntError"],[26351,"impl-Debug-for-TryFromIntError"],[26352,"impl-Display-for-ParseIntError"],[26353,"impl-Debug-for-ParseIntError"],[26355,"impl-Debug-for-Saturating%3CT%3E"],[26356,"impl-Binary-for-Saturating%3CT%3E"],[26357,"impl-Octal-for-Saturating%3CT%3E"],[26358,"impl-LowerHex-for-Saturating%3CT%3E"],[26359,"impl-UpperHex-for-Saturating%3CT%3E"],[26360,"impl-Display-for-Saturating%3CT%3E"],[26361,"impl-Octal-for-Wrapping%3CT%3E"],[26362,"impl-Debug-for-Wrapping%3CT%3E"],[26363,"impl-UpperHex-for-Wrapping%3CT%3E"],[26364,"impl-Display-for-Wrapping%3CT%3E"],[26365,"impl-Binary-for-Wrapping%3CT%3E"],[26366,"impl-LowerHex-for-Wrapping%3CT%3E"],[26368,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci32%3E"],[26369,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu128%3E"],[26370,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci128%3E"],[26371,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci64%3E"],[26372,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci128%3E"],[26373,"impl-From%3CAlignment%3E-for-NonZero%3Cusize%3E"],[26374,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci64%3E"],[26375,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu16%3E"],[26376,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu32%3E"],[26377,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu64%3E"],[26378,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cu128%3E"],[26379,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cusize%3E"],[26380,"impl-From%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci128%3E"],[26381,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Cisize%3E"],[26382,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci128%3E"],[26383,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci64%3E"],[26385,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu32%3E"],[26386,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci32%3E"],[26387,"impl-From%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci16%3E"],[26388,"impl-From%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci128%3E"],[26389,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu64%3E"],[26390,"impl-From%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci64%3E"],[26391,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cisize%3E"],[26392,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci128%3E"],[26393,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci64%3E"],[26394,"impl-From%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci32%3E"],[26395,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cisize%3E"],[26396,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci128%3E"],[26397,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci64%3E"],[26398,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci32%3E"],[26399,"impl-From%3CNonZero%3Ci8%3E%3E-for-NonZero%3Ci16%3E"],[26400,"impl-From%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu128%3E"],[26401,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu128%3E"],[26402,"impl-From%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu64%3E"],[26403,"impl-From%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cusize%3E"],[26404,"impl-From%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci128%3E"],[26408,"impl-From%3C!%3E-for-TryFromIntError"],[26409,"impl-From%3CInfallible%3E-for-TryFromIntError"],[26415,"impl-NonZero%3Cu32%3E"],[26416,"impl-NonZero%3Ci128%3E"],[26417,"impl-NonZero%3Cu8%3E"],[26418,"impl-NonZero%3Ci8%3E"],[26419,"impl-NonZero%3Ci32%3E"],[26420,"impl-NonZero%3Cusize%3E"],[26421,"impl-NonZero%3Ci64%3E"],[26422,"impl-NonZero%3Ci16%3E"],[26423,"impl-NonZero%3Cu16%3E"],[26424,"impl-NonZero%3Cu128%3E"],[26425,"impl-NonZero%3Cu64%3E"],[26426,"impl-NonZero%3Cisize%3E"],[26427,"impl-Saturating%3Cusize%3E"],[26428,"impl-Saturating%3Cu16%3E"],[26429,"impl-Saturating%3Cu64%3E"],[26430,"impl-Saturating%3Ci64%3E"],[26431,"impl-Saturating%3Ci16%3E"],[26432,"impl-Saturating%3Cu32%3E"],[26433,"impl-Saturating%3Ci8%3E"],[26434,"impl-Saturating%3Ci32%3E"],[26435,"impl-Saturating%3Cisize%3E"],[26436,"impl-Saturating%3Ci128%3E"],[26437,"impl-Saturating%3Cu8%3E"],[26438,"impl-Saturating%3Cu128%3E"],[26439,"impl-Wrapping%3Cisize%3E"],[26440,"impl-Wrapping%3Cusize%3E"],[26441,"impl-Wrapping%3Cu64%3E"],[26442,"impl-Wrapping%3Cu32%3E"],[26443,"impl-Wrapping%3Cu128%3E"],[26444,"impl-Wrapping%3Ci8%3E"],[26445,"impl-Wrapping%3Cu16%3E"],[26446,"impl-Wrapping%3Ci16%3E"],[26447,"impl-Wrapping%3Ci128%3E"],[26448,"impl-Wrapping%3Cu8%3E"],[26449,"impl-Wrapping%3Ci64%3E"],[26450,"impl-Wrapping%3Ci32%3E"],[26451,"impl-NonZero%3Ci64%3E"],[26452,"impl-NonZero%3Cu32%3E"],[26453,"impl-NonZero%3Cu64%3E"],[26454,"impl-NonZero%3Cisize%3E"],[26455,"impl-NonZero%3Cu16%3E"],[26456,"impl-NonZero%3Ci8%3E"],[26457,"impl-NonZero%3Cusize%3E"],[26458,"impl-NonZero%3Ci128%3E"],[26459,"impl-NonZero%3Ci16%3E"],[26460,"impl-NonZero%3Cu8%3E"],[26461,"impl-NonZero%3Cu128%3E"],[26462,"impl-NonZero%3Ci32%3E"],[26463,"impl-Saturating%3Ci32%3E"],[26464,"impl-Saturating%3Ci8%3E"],[26465,"impl-Saturating%3Cu16%3E"],[26466,"impl-Saturating%3Cu32%3E"],[26467,"impl-Saturating%3Cu128%3E"],[26468,"impl-Saturating%3Ci16%3E"],[26469,"impl-Saturating%3Cu8%3E"],[26470,"impl-Saturating%3Ci128%3E"],[26471,"impl-Saturating%3Cu64%3E"],[26472,"impl-Saturating%3Cusize%3E"],[26473,"impl-Saturating%3Cisize%3E"],[26474,"impl-Saturating%3Ci64%3E"],[26475,"impl-Wrapping%3Cisize%3E"],[26476,"impl-Wrapping%3Ci64%3E"],[26477,"impl-Wrapping%3Cu8%3E"],[26478,"impl-Wrapping%3Cusize%3E"],[26479,"impl-Wrapping%3Ci128%3E"],[26480,"impl-Wrapping%3Ci32%3E"],[26481,"impl-Wrapping%3Ci16%3E"],[26482,"impl-Wrapping%3Cu128%3E"],[26483,"impl-Wrapping%3Ci8%3E"],[26484,"impl-Wrapping%3Cu16%3E"],[26485,"impl-Wrapping%3Cu32%3E"],[26486,"impl-Wrapping%3Cu64%3E"],[26489,"impl-FromStr-for-NonZero%3Ci32%3E"],[26490,"impl-FromStr-for-NonZero%3Cu32%3E"],[26491,"impl-FromStr-for-NonZero%3Ci8%3E"],[26492,"impl-FromStr-for-NonZero%3Cu128%3E"],[26493,"impl-FromStr-for-NonZero%3Cu8%3E"],[26494,"impl-FromStr-for-NonZero%3Cusize%3E"],[26495,"impl-FromStr-for-NonZero%3Cu64%3E"],[26496,"impl-FromStr-for-NonZero%3Ci16%3E"],[26497,"impl-FromStr-for-NonZero%3Cisize%3E"],[26498,"impl-FromStr-for-NonZero%3Ci64%3E"],[26499,"impl-FromStr-for-NonZero%3Ci128%3E"],[26500,"impl-FromStr-for-NonZero%3Cu16%3E"],[26507,"impl-NonZero%3Cusize%3E"],[26508,"impl-NonZero%3Cu16%3E"],[26509,"impl-NonZero%3Cu128%3E"],[26510,"impl-NonZero%3Cu64%3E"],[26511,"impl-NonZero%3Cu32%3E"],[26512,"impl-NonZero%3Cu8%3E"],[26513,"impl-NonZero%3Cu128%3E"],[26514,"impl-NonZero%3Cu16%3E"],[26515,"impl-NonZero%3Cu64%3E"],[26516,"impl-NonZero%3Cu32%3E"],[26517,"impl-NonZero%3Cu8%3E"],[26518,"impl-NonZero%3Cusize%3E"],[26527,"impl-NonZero%3Cisize%3E"],[26528,"impl-NonZero%3Ci64%3E"],[26529,"impl-NonZero%3Ci128%3E"],[26530,"impl-NonZero%3Ci16%3E"],[26531,"impl-NonZero%3Ci8%3E"],[26532,"impl-NonZero%3Ci32%3E"],[26533,"impl-Saturating%3Ci8%3E"],[26534,"impl-Saturating%3Cisize%3E"],[26535,"impl-Saturating%3Ci16%3E"],[26536,"impl-Saturating%3Ci64%3E"],[26537,"impl-Saturating%3Ci128%3E"],[26538,"impl-Saturating%3Ci32%3E"],[26539,"impl-Wrapping%3Ci32%3E"],[26540,"impl-Wrapping%3Ci128%3E"],[26541,"impl-Wrapping%3Ci64%3E"],[26542,"impl-Wrapping%3Cisize%3E"],[26543,"impl-Wrapping%3Ci16%3E"],[26544,"impl-Wrapping%3Ci8%3E"],[26545,"impl-NonZero%3Cisize%3E"],[26546,"impl-NonZero%3Ci8%3E"],[26547,"impl-NonZero%3Ci16%3E"],[26548,"impl-NonZero%3Ci64%3E"],[26549,"impl-NonZero%3Ci32%3E"],[26550,"impl-NonZero%3Ci128%3E"],[26551,"impl-Saturating%3Ci128%3E"],[26552,"impl-Saturating%3Ci16%3E"],[26553,"impl-Saturating%3Ci8%3E"],[26554,"impl-Saturating%3Cisize%3E"],[26555,"impl-Saturating%3Ci32%3E"],[26556,"impl-Saturating%3Ci64%3E"],[26557,"impl-Wrapping%3Ci128%3E"],[26558,"impl-Wrapping%3Ci8%3E"],[26559,"impl-Wrapping%3Ci16%3E"],[26560,"impl-Wrapping%3Cisize%3E"],[26561,"impl-Wrapping%3Ci32%3E"],[26562,"impl-Wrapping%3Ci64%3E"],[26563,"impl-NonZero%3Cu8%3E"],[26564,"impl-NonZero%3Cu32%3E"],[26565,"impl-NonZero%3Cusize%3E"],[26566,"impl-NonZero%3Cu128%3E"],[26567,"impl-NonZero%3Cu16%3E"],[26568,"impl-NonZero%3Cu64%3E"],[26569,"impl-Saturating%3Cu16%3E"],[26570,"impl-Saturating%3Cu8%3E"],[26571,"impl-Saturating%3Cu32%3E"],[26572,"impl-Saturating%3Cu64%3E"],[26573,"impl-Saturating%3Cusize%3E"],[26574,"impl-Saturating%3Cu128%3E"],[26575,"impl-Wrapping%3Cu16%3E"],[26576,"impl-Wrapping%3Cu128%3E"],[26577,"impl-Wrapping%3Cu8%3E"],[26578,"impl-Wrapping%3Cusize%3E"],[26579,"impl-Wrapping%3Cu32%3E"],[26580,"impl-Wrapping%3Cu64%3E"],[26581,"impl-NonZero%3Cu128%3E"],[26582,"impl-NonZero%3Cu16%3E"],[26583,"impl-NonZero%3Cusize%3E"],[26584,"impl-NonZero%3Cu8%3E"],[26585,"impl-NonZero%3Cu64%3E"],[26586,"impl-NonZero%3Cu32%3E"],[26589,"impl-NonZero%3Cu32%3E"],[26590,"impl-NonZero%3Cu8%3E"],[26591,"impl-NonZero%3Cu64%3E"],[26592,"impl-NonZero%3Cu128%3E"],[26593,"impl-NonZero%3Ci8%3E"],[26594,"impl-NonZero%3Ci32%3E"],[26595,"impl-NonZero%3Ci64%3E"],[26596,"impl-NonZero%3Cusize%3E"],[26597,"impl-NonZero%3Ci128%3E"],[26598,"impl-NonZero%3Cisize%3E"],[26599,"impl-NonZero%3Ci16%3E"],[26600,"impl-NonZero%3Cu16%3E"],[26601,"impl-Saturating%3Ci128%3E"],[26602,"impl-Saturating%3Ci16%3E"],[26603,"impl-Saturating%3Cu128%3E"],[26604,"impl-Saturating%3Cusize%3E"],[26605,"impl-Saturating%3Ci8%3E"],[26606,"impl-Saturating%3Cu16%3E"],[26607,"impl-Saturating%3Cisize%3E"],[26608,"impl-Saturating%3Cu8%3E"],[26609,"impl-Saturating%3Ci32%3E"],[26610,"impl-Saturating%3Cu64%3E"],[26611,"impl-Saturating%3Ci64%3E"],[26612,"impl-Saturating%3Cu32%3E"],[26613,"impl-Wrapping%3Cu32%3E"],[26614,"impl-Wrapping%3Cu8%3E"],[26615,"impl-Wrapping%3Ci64%3E"],[26616,"impl-Wrapping%3Cu128%3E"],[26617,"impl-Wrapping%3Ci128%3E"],[26618,"impl-Wrapping%3Ci16%3E"],[26619,"impl-Wrapping%3Cu64%3E"],[26620,"impl-Wrapping%3Cu16%3E"],[26621,"impl-Wrapping%3Ci8%3E"],[26622,"impl-Wrapping%3Cusize%3E"],[26623,"impl-Wrapping%3Ci32%3E"],[26624,"impl-Wrapping%3Cisize%3E"],[26627,"impl-NonZero%3Cu16%3E"],[26628,"impl-NonZero%3Cusize%3E"],[26629,"impl-NonZero%3Cu64%3E"],[26630,"impl-NonZero%3Cu8%3E"],[26631,"impl-NonZero%3Cu128%3E"],[26632,"impl-NonZero%3Cu32%3E"],[26634,"impl-Mul%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26635,"impl-Mul%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26636,"impl-Mul%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26637,"impl-Mul%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26638,"impl-Mul-for-Saturating%3Ci16%3E"],[26639,"impl-Mul-for-Saturating%3Ci8%3E"],[26640,"impl-Mul%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26641,"impl-Mul%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26642,"impl-Mul%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26643,"impl-Mul%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26644,"impl-Mul-for-Saturating%3Cu8%3E"],[26645,"impl-Mul%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26646,"impl-Mul%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26647,"impl-Mul%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26648,"impl-Mul-for-Saturating%3Cu16%3E"],[26649,"impl-Mul%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26650,"impl-Mul%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26651,"impl-Mul%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26652,"impl-Mul-for-Saturating%3Cu32%3E"],[26653,"impl-Mul%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26654,"impl-Mul%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26655,"impl-Mul%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26656,"impl-Mul-for-Saturating%3Cu64%3E"],[26657,"impl-Mul%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26658,"impl-Mul%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26659,"impl-Mul%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[26660,"impl-Mul-for-Saturating%3Cu128%3E"],[26661,"impl-Mul%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26662,"impl-Mul%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26663,"impl-Mul%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26664,"impl-Mul%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26665,"impl-Mul%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[26666,"impl-Mul-for-Saturating%3Cisize%3E"],[26667,"impl-Mul%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[26668,"impl-Mul%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26669,"impl-Mul%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26670,"impl-Mul-for-Saturating%3Ci32%3E"],[26671,"impl-Mul-for-Saturating%3Ci128%3E"],[26672,"impl-Mul%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26673,"impl-Mul%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[26674,"impl-Mul-for-Saturating%3Ci64%3E"],[26675,"impl-Mul%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[26676,"impl-Mul%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26677,"impl-Mul%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[26678,"impl-Mul%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26679,"impl-Mul-for-Saturating%3Cusize%3E"],[26680,"impl-Mul%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[26681,"impl-Mul%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[26682,"impl-Mul-for-Wrapping%3Ci64%3E"],[26683,"impl-Mul%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26684,"impl-Mul%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26685,"impl-Mul%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26686,"impl-Mul-for-Wrapping%3Ci128%3E"],[26687,"impl-Mul%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26688,"impl-Mul%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26689,"impl-Mul-for-Wrapping%3Ci16%3E"],[26690,"impl-Mul%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26691,"impl-Mul%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26692,"impl-Mul%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26693,"impl-Mul%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[26694,"impl-Mul%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26695,"impl-Mul%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26696,"impl-Mul-for-Wrapping%3Cu16%3E"],[26697,"impl-Mul%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[26698,"impl-Mul%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26699,"impl-Mul%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26700,"impl-Mul-for-Wrapping%3Cusize%3E"],[26701,"impl-Mul%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26702,"impl-Mul%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26703,"impl-Mul-for-Wrapping%3Ci32%3E"],[26704,"impl-Mul%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[26705,"impl-Mul%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26706,"impl-Mul-for-Wrapping%3Cu32%3E"],[26707,"impl-Mul%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[26708,"impl-Mul-for-Wrapping%3Ci8%3E"],[26709,"impl-Mul%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[26710,"impl-Mul%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[26711,"impl-Mul%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26712,"impl-Mul%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26713,"impl-Mul%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[26714,"impl-Mul%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26715,"impl-Mul%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[26716,"impl-Mul%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26717,"impl-Mul-for-Wrapping%3Cu64%3E"],[26718,"impl-Mul-for-Wrapping%3Cisize%3E"],[26719,"impl-Mul%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26720,"impl-Mul%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[26721,"impl-Mul%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26722,"impl-Mul%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[26723,"impl-Mul%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[26724,"impl-Mul-for-Wrapping%3Cu128%3E"],[26725,"impl-Mul%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26726,"impl-Mul%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26727,"impl-Mul%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[26728,"impl-Mul-for-Wrapping%3Cu8%3E"],[26729,"impl-Mul%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26730,"impl-MulAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[26731,"impl-MulAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[26732,"impl-MulAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[26733,"impl-MulAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[26734,"impl-MulAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[26735,"impl-MulAssign-for-Saturating%3Ci128%3E"],[26736,"impl-MulAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[26737,"impl-MulAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[26738,"impl-MulAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[26739,"impl-MulAssign-for-Saturating%3Ci64%3E"],[26740,"impl-MulAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[26741,"impl-MulAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[26742,"impl-MulAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[26743,"impl-MulAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[26744,"impl-MulAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[26745,"impl-MulAssign-for-Saturating%3Cu64%3E"],[26746,"impl-MulAssign-for-Saturating%3Cu128%3E"],[26747,"impl-MulAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[26748,"impl-MulAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[26749,"impl-MulAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[26750,"impl-MulAssign-for-Saturating%3Cisize%3E"],[26751,"impl-MulAssign-for-Saturating%3Cusize%3E"],[26752,"impl-MulAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[26753,"impl-MulAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[26754,"impl-MulAssign-for-Saturating%3Ci8%3E"],[26755,"impl-MulAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[26756,"impl-MulAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[26757,"impl-MulAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[26758,"impl-MulAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[26759,"impl-MulAssign-for-Saturating%3Ci16%3E"],[26760,"impl-MulAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[26761,"impl-MulAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[26762,"impl-MulAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[26763,"impl-MulAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[26764,"impl-MulAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[26765,"impl-MulAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[26766,"impl-MulAssign-for-Saturating%3Ci32%3E"],[26767,"impl-MulAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[26768,"impl-MulAssign-for-Saturating%3Cu16%3E"],[26769,"impl-MulAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[26770,"impl-MulAssign-for-Saturating%3Cu32%3E"],[26771,"impl-MulAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[26772,"impl-MulAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[26773,"impl-MulAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[26774,"impl-MulAssign-for-Saturating%3Cu8%3E"],[26775,"impl-MulAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[26776,"impl-MulAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[26777,"impl-MulAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[26778,"impl-MulAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[26779,"impl-MulAssign-for-Wrapping%3Cu64%3E"],[26780,"impl-MulAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[26781,"impl-MulAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[26782,"impl-MulAssign-for-Wrapping%3Cu32%3E"],[26783,"impl-MulAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[26784,"impl-MulAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[26785,"impl-MulAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[26786,"impl-MulAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[26787,"impl-MulAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26788,"impl-MulAssign-for-Wrapping%3Cu16%3E"],[26789,"impl-MulAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[26790,"impl-MulAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[26791,"impl-MulAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26792,"impl-MulAssign-for-Wrapping%3Cu8%3E"],[26793,"impl-MulAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26794,"impl-MulAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[26795,"impl-MulAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26796,"impl-MulAssign-for-Wrapping%3Cusize%3E"],[26797,"impl-MulAssign-for-Wrapping%3Ci128%3E"],[26798,"impl-MulAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[26799,"impl-MulAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[26800,"impl-MulAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26801,"impl-MulAssign-for-Wrapping%3Ci64%3E"],[26802,"impl-MulAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[26803,"impl-MulAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[26804,"impl-MulAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26805,"impl-MulAssign-for-Wrapping%3Ci32%3E"],[26806,"impl-MulAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26807,"impl-MulAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[26808,"impl-MulAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[26809,"impl-MulAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26810,"impl-MulAssign-for-Wrapping%3Ci16%3E"],[26811,"impl-MulAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[26812,"impl-MulAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[26813,"impl-MulAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26814,"impl-MulAssign-for-Wrapping%3Ci8%3E"],[26815,"impl-MulAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[26816,"impl-MulAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[26817,"impl-MulAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26818,"impl-MulAssign-for-Wrapping%3Cisize%3E"],[26819,"impl-MulAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[26820,"impl-MulAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26821,"impl-MulAssign-for-Wrapping%3Cu128%3E"],[26822,"impl-MulAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[26823,"impl-MulAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[26824,"impl-MulAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26825,"impl-MulAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[26827,"impl-Neg-for-NonZero%3Ci8%3E"],[26828,"impl-Neg-for-NonZero%3Ci32%3E"],[26829,"impl-Neg-for-%26NonZero%3Ci128%3E"],[26830,"impl-Neg-for-NonZero%3Cisize%3E"],[26831,"impl-Neg-for-NonZero%3Ci16%3E"],[26832,"impl-Neg-for-%26NonZero%3Cisize%3E"],[26833,"impl-Neg-for-%26NonZero%3Ci16%3E"],[26834,"impl-Neg-for-NonZero%3Ci128%3E"],[26835,"impl-Neg-for-%26NonZero%3Ci64%3E"],[26836,"impl-Neg-for-NonZero%3Ci64%3E"],[26837,"impl-Neg-for-%26NonZero%3Ci32%3E"],[26838,"impl-Neg-for-%26NonZero%3Ci8%3E"],[26839,"impl-Neg-for-Saturating%3Ci16%3E"],[26840,"impl-Neg-for-Saturating%3Ci8%3E"],[26841,"impl-Neg-for-%26Saturating%3Ci32%3E"],[26842,"impl-Neg-for-%26Saturating%3Ci64%3E"],[26843,"impl-Neg-for-%26Saturating%3Ci8%3E"],[26844,"impl-Neg-for-Saturating%3Ci64%3E"],[26845,"impl-Neg-for-%26Saturating%3Cisize%3E"],[26846,"impl-Neg-for-%26Saturating%3Ci16%3E"],[26847,"impl-Neg-for-Saturating%3Cisize%3E"],[26848,"impl-Neg-for-Saturating%3Ci32%3E"],[26849,"impl-Neg-for-%26Saturating%3Ci128%3E"],[26850,"impl-Neg-for-Saturating%3Ci128%3E"],[26851,"impl-Neg-for-%26Wrapping%3Cu64%3E"],[26852,"impl-Neg-for-%26Wrapping%3Cu16%3E"],[26853,"impl-Neg-for-%26Wrapping%3Ci128%3E"],[26854,"impl-Neg-for-Wrapping%3Ci32%3E"],[26855,"impl-Neg-for-%26Wrapping%3Ci16%3E"],[26856,"impl-Neg-for-Wrapping%3Ci16%3E"],[26857,"impl-Neg-for-%26Wrapping%3Ci8%3E"],[26858,"impl-Neg-for-Wrapping%3Ci8%3E"],[26859,"impl-Neg-for-%26Wrapping%3Cisize%3E"],[26860,"impl-Neg-for-%26Wrapping%3Ci32%3E"],[26861,"impl-Neg-for-Wrapping%3Cu16%3E"],[26862,"impl-Neg-for-%26Wrapping%3Cu8%3E"],[26863,"impl-Neg-for-Wrapping%3Cu8%3E"],[26864,"impl-Neg-for-Wrapping%3Ci64%3E"],[26865,"impl-Neg-for-%26Wrapping%3Cusize%3E"],[26866,"impl-Neg-for-%26Wrapping%3Cu128%3E"],[26867,"impl-Neg-for-Wrapping%3Cu128%3E"],[26868,"impl-Neg-for-Wrapping%3Cu32%3E"],[26869,"impl-Neg-for-Wrapping%3Cu64%3E"],[26870,"impl-Neg-for-%26Wrapping%3Ci64%3E"],[26871,"impl-Neg-for-Wrapping%3Cusize%3E"],[26872,"impl-Neg-for-Wrapping%3Ci128%3E"],[26873,"impl-Neg-for-%26Wrapping%3Cu32%3E"],[26874,"impl-Neg-for-Wrapping%3Cisize%3E"],[26877,"impl-Wrapping%3Cu8%3E"],[26878,"impl-Wrapping%3Cu16%3E"],[26879,"impl-Wrapping%3Cu128%3E"],[26880,"impl-Wrapping%3Cu32%3E"],[26881,"impl-Wrapping%3Cu64%3E"],[26882,"impl-Wrapping%3Cusize%3E"],[26883,"impl-Not-for-%26Saturating%3Ci8%3E"],[26884,"impl-Not-for-Saturating%3Cusize%3E"],[26885,"impl-Not-for-Saturating%3Ci8%3E"],[26886,"impl-Not-for-%26Saturating%3Cu32%3E"],[26887,"impl-Not-for-Saturating%3Cu32%3E"],[26888,"impl-Not-for-%26Saturating%3Cu64%3E"],[26889,"impl-Not-for-%26Saturating%3Cu16%3E"],[26890,"impl-Not-for-Saturating%3Cu16%3E"],[26891,"impl-Not-for-Saturating%3Ci16%3E"],[26892,"impl-Not-for-%26Saturating%3Cisize%3E"],[26893,"impl-Not-for-Saturating%3Ci32%3E"],[26894,"impl-Not-for-%26Saturating%3Cu8%3E"],[26895,"impl-Not-for-%26Saturating%3Ci32%3E"],[26896,"impl-Not-for-Saturating%3Ci64%3E"],[26897,"impl-Not-for-%26Saturating%3Ci64%3E"],[26898,"impl-Not-for-Saturating%3Ci128%3E"],[26899,"impl-Not-for-%26Saturating%3Ci128%3E"],[26900,"impl-Not-for-%26Saturating%3Cusize%3E"],[26901,"impl-Not-for-Saturating%3Cu64%3E"],[26902,"impl-Not-for-Saturating%3Cisize%3E"],[26903,"impl-Not-for-%26Saturating%3Cu128%3E"],[26904,"impl-Not-for-Saturating%3Cu8%3E"],[26905,"impl-Not-for-Saturating%3Cu128%3E"],[26906,"impl-Not-for-%26Saturating%3Ci16%3E"],[26907,"impl-Not-for-%26Wrapping%3Ci8%3E"],[26908,"impl-Not-for-Wrapping%3Ci16%3E"],[26909,"impl-Not-for-%26Wrapping%3Cisize%3E"],[26910,"impl-Not-for-Wrapping%3Cu32%3E"],[26911,"impl-Not-for-Wrapping%3Cu16%3E"],[26912,"impl-Not-for-%26Wrapping%3Ci64%3E"],[26913,"impl-Not-for-%26Wrapping%3Cu8%3E"],[26914,"impl-Not-for-Wrapping%3Cu8%3E"],[26915,"impl-Not-for-%26Wrapping%3Cusize%3E"],[26916,"impl-Not-for-Wrapping%3Cusize%3E"],[26917,"impl-Not-for-Wrapping%3Ci128%3E"],[26918,"impl-Not-for-%26Wrapping%3Ci128%3E"],[26919,"impl-Not-for-%26Wrapping%3Cu32%3E"],[26920,"impl-Not-for-Wrapping%3Cisize%3E"],[26921,"impl-Not-for-%26Wrapping%3Cu128%3E"],[26922,"impl-Not-for-Wrapping%3Ci64%3E"],[26923,"impl-Not-for-Wrapping%3Ci8%3E"],[26924,"impl-Not-for-Wrapping%3Cu128%3E"],[26925,"impl-Not-for-%26Wrapping%3Ci32%3E"],[26926,"impl-Not-for-Wrapping%3Ci32%3E"],[26927,"impl-Not-for-%26Wrapping%3Cu64%3E"],[26928,"impl-Not-for-Wrapping%3Cu64%3E"],[26929,"impl-Not-for-%26Wrapping%3Ci16%3E"],[26930,"impl-Not-for-%26Wrapping%3Cu16%3E"],[26931,"impl-NonZero%3Ci64%3E"],[26932,"impl-NonZero%3Ci128%3E"],[26933,"impl-NonZero%3Ci16%3E"],[26934,"impl-NonZero%3Ci32%3E"],[26935,"impl-NonZero%3Cisize%3E"],[26936,"impl-NonZero%3Ci8%3E"],[26937,"impl-NonZero%3Ci8%3E"],[26938,"impl-NonZero%3Ci16%3E"],[26939,"impl-NonZero%3Ci128%3E"],[26940,"impl-NonZero%3Ci64%3E"],[26941,"impl-NonZero%3Ci32%3E"],[26942,"impl-NonZero%3Cisize%3E"],[26946,"impl-Saturating%3Cusize%3E"],[26947,"impl-Saturating%3Cu8%3E"],[26948,"impl-Saturating%3Cu16%3E"],[26949,"impl-Saturating%3Ci32%3E"],[26950,"impl-Saturating%3Ci16%3E"],[26951,"impl-Saturating%3Ci8%3E"],[26952,"impl-Saturating%3Cu32%3E"],[26953,"impl-Saturating%3Cisize%3E"],[26954,"impl-Saturating%3Cu128%3E"],[26955,"impl-Saturating%3Ci64%3E"],[26956,"impl-Saturating%3Ci128%3E"],[26957,"impl-Saturating%3Cu64%3E"],[26958,"impl-Wrapping%3Cisize%3E"],[26959,"impl-Wrapping%3Cu128%3E"],[26960,"impl-Wrapping%3Ci128%3E"],[26961,"impl-Wrapping%3Cu64%3E"],[26962,"impl-Wrapping%3Ci64%3E"],[26963,"impl-Wrapping%3Cusize%3E"],[26964,"impl-Wrapping%3Cu8%3E"],[26965,"impl-Wrapping%3Cu32%3E"],[26966,"impl-Wrapping%3Ci8%3E"],[26967,"impl-Wrapping%3Ci16%3E"],[26968,"impl-Wrapping%3Ci32%3E"],[26969,"impl-Wrapping%3Cu16%3E"],[26970,"impl-Product%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[26971,"impl-Product%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[26972,"impl-Product-for-Wrapping%3Ci64%3E"],[26973,"impl-Product%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[26974,"impl-Product-for-Wrapping%3Ci128%3E"],[26975,"impl-Product%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[26976,"impl-Product-for-Wrapping%3Cisize%3E"],[26977,"impl-Product%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[26978,"impl-Product-for-Wrapping%3Cu8%3E"],[26979,"impl-Product%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[26980,"impl-Product-for-Wrapping%3Cu16%3E"],[26981,"impl-Product%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[26982,"impl-Product-for-Wrapping%3Cu32%3E"],[26983,"impl-Product%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[26984,"impl-Product-for-Wrapping%3Cu64%3E"],[26985,"impl-Product%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[26986,"impl-Product-for-Wrapping%3Cu128%3E"],[26987,"impl-Product-for-Wrapping%3Ci8%3E"],[26988,"impl-Product-for-Wrapping%3Cusize%3E"],[26989,"impl-Product%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[26990,"impl-Product-for-Wrapping%3Ci32%3E"],[26991,"impl-Product%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[26992,"impl-Product-for-Wrapping%3Ci16%3E"],[26993,"impl-Product%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[26994,"impl-Rem%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[26995,"impl-Rem%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[26996,"impl-Rem%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[26997,"impl-Rem-for-Saturating%3Cu16%3E"],[26998,"impl-Rem%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[26999,"impl-Rem%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[27000,"impl-Rem%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[27001,"impl-Rem-for-Saturating%3Cu8%3E"],[27002,"impl-Rem%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[27003,"impl-Rem%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[27004,"impl-Rem-for-Saturating%3Ci128%3E"],[27005,"impl-Rem%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[27006,"impl-Rem%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[27007,"impl-Rem%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[27008,"impl-Rem-for-Saturating%3Ci64%3E"],[27009,"impl-Rem%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[27010,"impl-Rem-for-Saturating%3Cusize%3E"],[27011,"impl-Rem%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[27012,"impl-Rem%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[27013,"impl-Rem%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[27014,"impl-Rem%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[27015,"impl-Rem%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[27016,"impl-Rem%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[27017,"impl-Rem-for-Saturating%3Ci32%3E"],[27018,"impl-Rem%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[27019,"impl-Rem%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[27020,"impl-Rem%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[27021,"impl-Rem-for-Saturating%3Ci16%3E"],[27022,"impl-Rem%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[27023,"impl-Rem%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[27024,"impl-Rem%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[27025,"impl-Rem-for-Saturating%3Ci8%3E"],[27026,"impl-Rem%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[27027,"impl-Rem%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[27028,"impl-Rem%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[27029,"impl-Rem-for-Saturating%3Cisize%3E"],[27030,"impl-Rem%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[27031,"impl-Rem%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[27032,"impl-Rem%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[27033,"impl-Rem-for-Saturating%3Cu128%3E"],[27034,"impl-Rem%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[27035,"impl-Rem%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[27036,"impl-Rem%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[27037,"impl-Rem-for-Saturating%3Cu64%3E"],[27038,"impl-Rem-for-Saturating%3Cu32%3E"],[27039,"impl-Rem%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[27040,"impl-Rem%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[27041,"impl-Rem%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[27042,"impl-Rem%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[27043,"impl-Rem%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[27044,"impl-Rem%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[27045,"impl-Rem%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[27046,"impl-Rem-for-Wrapping%3Cu8%3E"],[27047,"impl-Rem-for-Wrapping%3Cisize%3E"],[27048,"impl-Rem%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[27049,"impl-Rem%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27050,"impl-Rem%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27051,"impl-Rem%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[27052,"impl-Rem-for-Wrapping%3Ci8%3E"],[27053,"impl-Rem%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[27054,"impl-Rem%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[27055,"impl-Rem%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27056,"impl-Rem%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[27057,"impl-Rem-for-Wrapping%3Ci16%3E"],[27058,"impl-Rem-for-Wrapping%3Ci128%3E"],[27059,"impl-Rem%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[27060,"impl-Rem%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27061,"impl-Rem%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[27062,"impl-Rem%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27063,"impl-Rem%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27064,"impl-Rem%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[27065,"impl-Rem%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27066,"impl-Rem-for-Wrapping%3Cusize%3E"],[27067,"impl-Rem%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[27068,"impl-Rem-for-Wrapping%3Cu16%3E"],[27069,"impl-Rem%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[27070,"impl-Rem-for-Wrapping%3Ci64%3E"],[27071,"impl-Rem%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[27072,"impl-Rem%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[27073,"impl-Rem%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27074,"impl-Rem%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[27075,"impl-Rem%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27076,"impl-Rem-for-Wrapping%3Cu128%3E"],[27077,"impl-Rem%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[27078,"impl-Rem%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27079,"impl-Rem%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[27080,"impl-Rem-for-Wrapping%3Cu64%3E"],[27081,"impl-Rem%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[27082,"impl-Rem%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27083,"impl-Rem%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[27084,"impl-Rem-for-Wrapping%3Cu32%3E"],[27085,"impl-Rem%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[27086,"impl-Rem%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[27087,"impl-Rem%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27088,"impl-Rem%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[27089,"impl-Rem-for-Wrapping%3Ci32%3E"],[27090,"impl-RemAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[27091,"impl-RemAssign-for-Saturating%3Cu64%3E"],[27092,"impl-RemAssign-for-Saturating%3Cu8%3E"],[27093,"impl-RemAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[27094,"impl-RemAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[27095,"impl-RemAssign-for-Saturating%3Ci8%3E"],[27096,"impl-RemAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[27097,"impl-RemAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[27098,"impl-RemAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[27099,"impl-RemAssign-for-Saturating%3Ci16%3E"],[27100,"impl-RemAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[27101,"impl-RemAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[27102,"impl-RemAssign-for-Saturating%3Cusize%3E"],[27103,"impl-RemAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[27104,"impl-RemAssign-for-Saturating%3Ci32%3E"],[27105,"impl-RemAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[27106,"impl-RemAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[27107,"impl-RemAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[27108,"impl-RemAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[27109,"impl-RemAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[27110,"impl-RemAssign-for-Saturating%3Ci64%3E"],[27111,"impl-RemAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[27112,"impl-RemAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[27113,"impl-RemAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[27114,"impl-RemAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[27115,"impl-RemAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[27116,"impl-RemAssign-for-Saturating%3Cisize%3E"],[27117,"impl-RemAssign-for-Saturating%3Cu16%3E"],[27118,"impl-RemAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[27119,"impl-RemAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[27120,"impl-RemAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[27121,"impl-RemAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[27122,"impl-RemAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[27123,"impl-RemAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[27124,"impl-RemAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[27125,"impl-RemAssign-for-Saturating%3Ci128%3E"],[27126,"impl-RemAssign-for-Saturating%3Cu128%3E"],[27127,"impl-RemAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[27128,"impl-RemAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[27129,"impl-RemAssign-for-Saturating%3Cu32%3E"],[27130,"impl-RemAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[27131,"impl-RemAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[27132,"impl-RemAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[27133,"impl-RemAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[27134,"impl-RemAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[27135,"impl-RemAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[27136,"impl-RemAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[27137,"impl-RemAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[27138,"impl-RemAssign-for-Wrapping%3Ci64%3E"],[27139,"impl-RemAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[27140,"impl-RemAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[27141,"impl-RemAssign-for-Wrapping%3Cisize%3E"],[27142,"impl-RemAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[27143,"impl-RemAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[27144,"impl-RemAssign-for-Wrapping%3Ci128%3E"],[27145,"impl-RemAssign-for-Wrapping%3Ci16%3E"],[27146,"impl-RemAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27147,"impl-RemAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[27148,"impl-RemAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[27149,"impl-RemAssign-for-Wrapping%3Cusize%3E"],[27150,"impl-RemAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[27151,"impl-RemAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27152,"impl-RemAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27153,"impl-RemAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27154,"impl-RemAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27155,"impl-RemAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27156,"impl-RemAssign-for-Wrapping%3Cu8%3E"],[27157,"impl-RemAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27158,"impl-RemAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[27159,"impl-RemAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[27160,"impl-RemAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[27161,"impl-RemAssign-for-Wrapping%3Cu128%3E"],[27162,"impl-RemAssign-for-Wrapping%3Cu16%3E"],[27163,"impl-RemAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[27164,"impl-RemAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27165,"impl-RemAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27166,"impl-RemAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[27167,"impl-RemAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[27168,"impl-RemAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[27169,"impl-RemAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27170,"impl-RemAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[27171,"impl-RemAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27172,"impl-RemAssign-for-Wrapping%3Ci8%3E"],[27173,"impl-RemAssign-for-Wrapping%3Cu64%3E"],[27174,"impl-RemAssign-for-Wrapping%3Cu32%3E"],[27175,"impl-RemAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[27176,"impl-RemAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27177,"impl-RemAssign-for-Wrapping%3Ci32%3E"],[27178,"impl-RemAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27179,"impl-RemAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27180,"impl-RemAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[27181,"impl-RemAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[27182,"impl-RemAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[27183,"impl-RemAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[27184,"impl-RemAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[27185,"impl-RemAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[27186,"impl-NonZero%3Cusize%3E"],[27187,"impl-NonZero%3Cu8%3E"],[27188,"impl-NonZero%3Cisize%3E"],[27189,"impl-NonZero%3Ci32%3E"],[27190,"impl-NonZero%3Cu16%3E"],[27191,"impl-NonZero%3Ci16%3E"],[27192,"impl-NonZero%3Ci128%3E"],[27193,"impl-NonZero%3Cu128%3E"],[27194,"impl-NonZero%3Ci8%3E"],[27195,"impl-NonZero%3Cu32%3E"],[27196,"impl-NonZero%3Cu64%3E"],[27197,"impl-NonZero%3Ci64%3E"],[27198,"impl-Saturating%3Ci8%3E"],[27199,"impl-Saturating%3Cu32%3E"],[27200,"impl-Saturating%3Cusize%3E"],[27201,"impl-Saturating%3Cu16%3E"],[27202,"impl-Saturating%3Ci128%3E"],[27203,"impl-Saturating%3Ci32%3E"],[27204,"impl-Saturating%3Cu128%3E"],[27205,"impl-Saturating%3Cu64%3E"],[27206,"impl-Saturating%3Cisize%3E"],[27207,"impl-Saturating%3Cu8%3E"],[27208,"impl-Saturating%3Ci16%3E"],[27209,"impl-Saturating%3Ci64%3E"],[27210,"impl-Wrapping%3Cisize%3E"],[27211,"impl-Wrapping%3Cusize%3E"],[27212,"impl-Wrapping%3Ci8%3E"],[27213,"impl-Wrapping%3Cu128%3E"],[27214,"impl-Wrapping%3Ci64%3E"],[27215,"impl-Wrapping%3Ci16%3E"],[27216,"impl-Wrapping%3Cu8%3E"],[27217,"impl-Wrapping%3Cu64%3E"],[27218,"impl-Wrapping%3Cu32%3E"],[27219,"impl-Wrapping%3Cu16%3E"],[27220,"impl-Wrapping%3Ci128%3E"],[27221,"impl-Wrapping%3Ci32%3E"],[27222,"impl-NonZero%3Ci32%3E"],[27223,"impl-NonZero%3Cu32%3E"],[27224,"impl-NonZero%3Cu64%3E"],[27225,"impl-NonZero%3Ci8%3E"],[27226,"impl-NonZero%3Cu128%3E"],[27227,"impl-NonZero%3Cu16%3E"],[27228,"impl-NonZero%3Ci16%3E"],[27229,"impl-NonZero%3Ci128%3E"],[27230,"impl-NonZero%3Cusize%3E"],[27231,"impl-NonZero%3Cu8%3E"],[27232,"impl-NonZero%3Ci64%3E"],[27233,"impl-NonZero%3Cisize%3E"],[27234,"impl-Saturating%3Ci16%3E"],[27235,"impl-Saturating%3Cisize%3E"],[27236,"impl-Saturating%3Cu32%3E"],[27237,"impl-Saturating%3Cu64%3E"],[27238,"impl-Saturating%3Ci128%3E"],[27239,"impl-Saturating%3Ci64%3E"],[27240,"impl-Saturating%3Cu8%3E"],[27241,"impl-Saturating%3Cu128%3E"],[27242,"impl-Saturating%3Cusize%3E"],[27243,"impl-Saturating%3Cu16%3E"],[27244,"impl-Saturating%3Ci32%3E"],[27245,"impl-Saturating%3Ci8%3E"],[27246,"impl-Wrapping%3Ci16%3E"],[27247,"impl-Wrapping%3Ci8%3E"],[27248,"impl-Wrapping%3Ci128%3E"],[27249,"impl-Wrapping%3Cu64%3E"],[27250,"impl-Wrapping%3Cusize%3E"],[27251,"impl-Wrapping%3Cu32%3E"],[27252,"impl-Wrapping%3Cu8%3E"],[27253,"impl-Wrapping%3Cisize%3E"],[27254,"impl-Wrapping%3Ci64%3E"],[27255,"impl-Wrapping%3Ci32%3E"],[27256,"impl-Wrapping%3Cu16%3E"],[27257,"impl-Wrapping%3Cu128%3E"],[27258,"impl-NonZero%3Cu16%3E"],[27259,"impl-NonZero%3Ci64%3E"],[27260,"impl-NonZero%3Cu8%3E"],[27261,"impl-NonZero%3Ci16%3E"],[27262,"impl-NonZero%3Cusize%3E"],[27263,"impl-NonZero%3Ci32%3E"],[27264,"impl-NonZero%3Cu64%3E"],[27265,"impl-NonZero%3Ci128%3E"],[27266,"impl-NonZero%3Cisize%3E"],[27267,"impl-NonZero%3Cu128%3E"],[27268,"impl-NonZero%3Ci8%3E"],[27269,"impl-NonZero%3Cu32%3E"],[27270,"impl-Saturating%3Cu128%3E"],[27271,"impl-Saturating%3Cu32%3E"],[27272,"impl-Saturating%3Cu8%3E"],[27273,"impl-Saturating%3Ci128%3E"],[27274,"impl-Saturating%3Cu16%3E"],[27275,"impl-Saturating%3Cisize%3E"],[27276,"impl-Saturating%3Ci64%3E"],[27277,"impl-Saturating%3Cu64%3E"],[27278,"impl-Saturating%3Ci16%3E"],[27279,"impl-Saturating%3Cusize%3E"],[27280,"impl-Saturating%3Ci32%3E"],[27281,"impl-Saturating%3Ci8%3E"],[27282,"impl-Wrapping%3Ci16%3E"],[27283,"impl-Wrapping%3Ci8%3E"],[27284,"impl-Wrapping%3Cusize%3E"],[27285,"impl-Wrapping%3Cu32%3E"],[27286,"impl-Wrapping%3Ci128%3E"],[27287,"impl-Wrapping%3Cu8%3E"],[27288,"impl-Wrapping%3Cu16%3E"],[27289,"impl-Wrapping%3Cu128%3E"],[27290,"impl-Wrapping%3Cu64%3E"],[27291,"impl-Wrapping%3Ci64%3E"],[27292,"impl-Wrapping%3Ci32%3E"],[27293,"impl-Wrapping%3Cisize%3E"],[27294,"impl-NonZero%3Ci16%3E"],[27295,"impl-NonZero%3Ci128%3E"],[27296,"impl-NonZero%3Ci64%3E"],[27297,"impl-NonZero%3Cisize%3E"],[27298,"impl-NonZero%3Ci8%3E"],[27299,"impl-NonZero%3Ci32%3E"],[27300,"impl-NonZero%3Cusize%3E"],[27301,"impl-NonZero%3Cu16%3E"],[27302,"impl-NonZero%3Cu64%3E"],[27303,"impl-NonZero%3Cu8%3E"],[27304,"impl-NonZero%3Cu128%3E"],[27305,"impl-NonZero%3Cu32%3E"],[27306,"impl-NonZero%3Cusize%3E"],[27307,"impl-NonZero%3Cu64%3E"],[27308,"impl-NonZero%3Cu8%3E"],[27309,"impl-NonZero%3Cisize%3E"],[27310,"impl-NonZero%3Cu16%3E"],[27311,"impl-NonZero%3Cu32%3E"],[27312,"impl-NonZero%3Ci8%3E"],[27313,"impl-NonZero%3Ci64%3E"],[27314,"impl-NonZero%3Cu128%3E"],[27315,"impl-NonZero%3Ci128%3E"],[27316,"impl-NonZero%3Ci16%3E"],[27317,"impl-NonZero%3Ci32%3E"],[27318,"impl-NonZero%3Ci32%3E"],[27319,"impl-NonZero%3Cisize%3E"],[27320,"impl-NonZero%3Ci128%3E"],[27321,"impl-NonZero%3Ci8%3E"],[27322,"impl-NonZero%3Ci64%3E"],[27323,"impl-NonZero%3Ci16%3E"],[27324,"impl-NonZero%3Ci128%3E"],[27325,"impl-NonZero%3Cu8%3E"],[27326,"impl-NonZero%3Cu16%3E"],[27327,"impl-NonZero%3Ci32%3E"],[27328,"impl-NonZero%3Cisize%3E"],[27329,"impl-NonZero%3Ci16%3E"],[27330,"impl-NonZero%3Cu64%3E"],[27331,"impl-NonZero%3Cu32%3E"],[27332,"impl-NonZero%3Ci64%3E"],[27333,"impl-NonZero%3Ci8%3E"],[27334,"impl-NonZero%3Cusize%3E"],[27335,"impl-NonZero%3Cu128%3E"],[27336,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci16%3E"],[27337,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci64%3E"],[27338,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27339,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27340,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27341,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cusize%3E"],[27342,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci8%3E"],[27343,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27344,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cusize%3E"],[27345,"impl-Shl%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27346,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu128%3E"],[27347,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27348,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27349,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu8%3E"],[27350,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27351,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu128%3E"],[27352,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27353,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu64%3E"],[27354,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27355,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27356,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci16%3E"],[27357,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27358,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu8%3E"],[27359,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu64%3E"],[27360,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci32%3E"],[27361,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27362,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu16%3E"],[27363,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27364,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27365,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu32%3E"],[27366,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cu16%3E"],[27367,"impl-Shl%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27368,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27369,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci8%3E"],[27370,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27371,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cu32%3E"],[27372,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Cisize%3E"],[27373,"impl-Shl%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27374,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci128%3E"],[27375,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci32%3E"],[27376,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27377,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27378,"impl-Shl%3Cusize%3E-for-%26Wrapping%3Ci128%3E"],[27379,"impl-Shl%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27380,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Ci64%3E"],[27381,"impl-Shl%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27382,"impl-Shl%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27383,"impl-Shl%3C%26usize%3E-for-%26Wrapping%3Cisize%3E"],[27384,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27385,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27386,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27387,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27388,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27389,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27390,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27391,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27392,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27393,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27394,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27395,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27396,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27397,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27398,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27399,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27400,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27401,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27402,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27403,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27404,"impl-ShlAssign%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27405,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27406,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27407,"impl-ShlAssign%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27408,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27409,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27410,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27411,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu16%3E"],[27412,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27413,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu16%3E"],[27414,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27415,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu32%3E"],[27416,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27417,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu32%3E"],[27418,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27419,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu64%3E"],[27420,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27421,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu64%3E"],[27422,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27423,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu128%3E"],[27424,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27425,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu128%3E"],[27426,"impl-Shr%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27427,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cusize%3E"],[27428,"impl-Shr%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27429,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cisize%3E"],[27430,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27431,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci8%3E"],[27432,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27433,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci8%3E"],[27434,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27435,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cu8%3E"],[27436,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci16%3E"],[27437,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cu8%3E"],[27438,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27439,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci16%3E"],[27440,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27441,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci32%3E"],[27442,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27443,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci32%3E"],[27444,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27445,"impl-Shr%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27446,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci64%3E"],[27447,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27448,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci64%3E"],[27449,"impl-Shr%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27450,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Ci128%3E"],[27451,"impl-Shr%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27452,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Ci128%3E"],[27453,"impl-Shr%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27454,"impl-Shr%3Cusize%3E-for-%26Wrapping%3Cisize%3E"],[27455,"impl-Shr%3C%26usize%3E-for-%26Wrapping%3Cusize%3E"],[27456,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci32%3E"],[27457,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu16%3E"],[27458,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci16%3E"],[27459,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci8%3E"],[27460,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci32%3E"],[27461,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu8%3E"],[27462,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci8%3E"],[27463,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu8%3E"],[27464,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci16%3E"],[27465,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27466,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu16%3E"],[27467,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27468,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu128%3E"],[27469,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu128%3E"],[27470,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci64%3E"],[27471,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci128%3E"],[27472,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Ci64%3E"],[27473,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Ci128%3E"],[27474,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cisize%3E"],[27475,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cisize%3E"],[27476,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu64%3E"],[27477,"impl-ShrAssign%3C%26usize%3E-for-Wrapping%3Cu32%3E"],[27478,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu32%3E"],[27479,"impl-ShrAssign%3Cusize%3E-for-Wrapping%3Cu64%3E"],[27480,"impl-Saturating%3Cisize%3E"],[27481,"impl-Saturating%3Ci64%3E"],[27482,"impl-Saturating%3Ci32%3E"],[27483,"impl-Saturating%3Ci128%3E"],[27484,"impl-Saturating%3Ci16%3E"],[27485,"impl-Saturating%3Ci8%3E"],[27486,"impl-Wrapping%3Ci128%3E"],[27487,"impl-Wrapping%3Ci16%3E"],[27488,"impl-Wrapping%3Ci64%3E"],[27489,"impl-Wrapping%3Cisize%3E"],[27490,"impl-Wrapping%3Ci8%3E"],[27491,"impl-Wrapping%3Ci32%3E"],[27492,"impl-Sub-for-Saturating%3Cusize%3E"],[27493,"impl-Sub%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[27494,"impl-Sub-for-Saturating%3Cu64%3E"],[27495,"impl-Sub%3C%26Saturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[27496,"impl-Sub%3CSaturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[27497,"impl-Sub-for-Saturating%3Cu128%3E"],[27498,"impl-Sub%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[27499,"impl-Sub%3C%26Saturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[27500,"impl-Sub%3C%26Saturating%3Cu64%3E%3E-for-%26Saturating%3Cu64%3E"],[27501,"impl-Sub%3CSaturating%3Cu32%3E%3E-for-%26Saturating%3Cu32%3E"],[27502,"impl-Sub%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[27503,"impl-Sub%3CSaturating%3Ci128%3E%3E-for-%26Saturating%3Ci128%3E"],[27504,"impl-Sub-for-Saturating%3Ci128%3E"],[27505,"impl-Sub-for-Saturating%3Cu32%3E"],[27506,"impl-Sub%3C%26Saturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[27507,"impl-Sub%3C%26Saturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[27508,"impl-Sub%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[27509,"impl-Sub%3CSaturating%3Ci64%3E%3E-for-%26Saturating%3Ci64%3E"],[27510,"impl-Sub%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[27511,"impl-Sub-for-Saturating%3Ci64%3E"],[27512,"impl-Sub%3C%26Saturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[27513,"impl-Sub%3CSaturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[27514,"impl-Sub%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[27515,"impl-Sub%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[27516,"impl-Sub-for-Saturating%3Cu16%3E"],[27517,"impl-Sub%3CSaturating%3Ci32%3E%3E-for-%26Saturating%3Ci32%3E"],[27518,"impl-Sub%3C%26Saturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[27519,"impl-Sub%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[27520,"impl-Sub-for-Saturating%3Ci32%3E"],[27521,"impl-Sub%3CSaturating%3Cu8%3E%3E-for-%26Saturating%3Cu8%3E"],[27522,"impl-Sub-for-Saturating%3Cu8%3E"],[27523,"impl-Sub%3C%26Saturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[27524,"impl-Sub%3C%26Saturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[27525,"impl-Sub%3C%26Saturating%3Cu128%3E%3E-for-%26Saturating%3Cu128%3E"],[27526,"impl-Sub-for-Saturating%3Cisize%3E"],[27527,"impl-Sub%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[27528,"impl-Sub%3CSaturating%3Cusize%3E%3E-for-%26Saturating%3Cusize%3E"],[27529,"impl-Sub%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[27530,"impl-Sub%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[27531,"impl-Sub%3CSaturating%3Ci16%3E%3E-for-%26Saturating%3Ci16%3E"],[27532,"impl-Sub-for-Saturating%3Ci16%3E"],[27533,"impl-Sub%3C%26Saturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[27534,"impl-Sub%3CSaturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[27535,"impl-Sub%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[27536,"impl-Sub%3CSaturating%3Ci8%3E%3E-for-%26Saturating%3Ci8%3E"],[27537,"impl-Sub-for-Saturating%3Ci8%3E"],[27538,"impl-Sub%3C%26Saturating%3Cisize%3E%3E-for-%26Saturating%3Cisize%3E"],[27539,"impl-Sub%3CSaturating%3Cu16%3E%3E-for-%26Saturating%3Cu16%3E"],[27540,"impl-Sub%3C%26Wrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[27541,"impl-Sub%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27542,"impl-Sub%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27543,"impl-Sub%3C%26Wrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[27544,"impl-Sub%3CWrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[27545,"impl-Sub-for-Wrapping%3Cusize%3E"],[27546,"impl-Sub%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27547,"impl-Sub-for-Wrapping%3Ci128%3E"],[27548,"impl-Sub%3C%26Wrapping%3Cusize%3E%3E-for-%26Wrapping%3Cusize%3E"],[27549,"impl-Sub-for-Wrapping%3Cu8%3E"],[27550,"impl-Sub%3CWrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[27551,"impl-Sub%3CWrapping%3Ci64%3E%3E-for-%26Wrapping%3Ci64%3E"],[27552,"impl-Sub-for-Wrapping%3Ci64%3E"],[27553,"impl-Sub%3C%26Wrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[27554,"impl-Sub%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27555,"impl-Sub%3CWrapping%3Ci32%3E%3E-for-%26Wrapping%3Ci32%3E"],[27556,"impl-Sub%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27557,"impl-Sub-for-Wrapping%3Ci32%3E"],[27558,"impl-Sub%3C%26Wrapping%3Cu8%3E%3E-for-%26Wrapping%3Cu8%3E"],[27559,"impl-Sub-for-Wrapping%3Cu16%3E"],[27560,"impl-Sub%3CWrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[27561,"impl-Sub%3C%26Wrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[27562,"impl-Sub%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27563,"impl-Sub%3C%26Wrapping%3Cu16%3E%3E-for-%26Wrapping%3Cu16%3E"],[27564,"impl-Sub%3CWrapping%3Ci16%3E%3E-for-%26Wrapping%3Ci16%3E"],[27565,"impl-Sub-for-Wrapping%3Cu32%3E"],[27566,"impl-Sub-for-Wrapping%3Ci16%3E"],[27567,"impl-Sub%3C%26Wrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[27568,"impl-Sub%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27569,"impl-Sub%3CWrapping%3Ci8%3E%3E-for-%26Wrapping%3Ci8%3E"],[27570,"impl-Sub-for-Wrapping%3Ci8%3E"],[27571,"impl-Sub%3CWrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[27572,"impl-Sub%3C%26Wrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[27573,"impl-Sub%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27574,"impl-Sub%3CWrapping%3Cisize%3E%3E-for-%26Wrapping%3Cisize%3E"],[27575,"impl-Sub%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27576,"impl-Sub-for-Wrapping%3Cisize%3E"],[27577,"impl-Sub%3C%26Wrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[27578,"impl-Sub%3C%26Wrapping%3Cu32%3E%3E-for-%26Wrapping%3Cu32%3E"],[27579,"impl-Sub-for-Wrapping%3Cu64%3E"],[27580,"impl-Sub%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27581,"impl-Sub%3CWrapping%3Cu128%3E%3E-for-%26Wrapping%3Cu128%3E"],[27582,"impl-Sub-for-Wrapping%3Cu128%3E"],[27583,"impl-Sub%3C%26Wrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[27584,"impl-Sub%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27585,"impl-Sub%3CWrapping%3Cu64%3E%3E-for-%26Wrapping%3Cu64%3E"],[27586,"impl-Sub%3CWrapping%3Ci128%3E%3E-for-%26Wrapping%3Ci128%3E"],[27587,"impl-Sub%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27588,"impl-SubAssign%3Ci32%3E-for-Saturating%3Ci32%3E"],[27589,"impl-SubAssign-for-Saturating%3Cusize%3E"],[27590,"impl-SubAssign%3C%26Saturating%3Ci32%3E%3E-for-Saturating%3Ci32%3E"],[27591,"impl-SubAssign-for-Saturating%3Ci32%3E"],[27592,"impl-SubAssign%3C%26Saturating%3Ci64%3E%3E-for-Saturating%3Ci64%3E"],[27593,"impl-SubAssign%3C%26i16%3E-for-Saturating%3Ci16%3E"],[27594,"impl-SubAssign%3C%26u8%3E-for-Saturating%3Cu8%3E"],[27595,"impl-SubAssign%3Ci16%3E-for-Saturating%3Ci16%3E"],[27596,"impl-SubAssign%3Cu8%3E-for-Saturating%3Cu8%3E"],[27597,"impl-SubAssign-for-Saturating%3Cu16%3E"],[27598,"impl-SubAssign-for-Saturating%3Cu128%3E"],[27599,"impl-SubAssign%3C%26u64%3E-for-Saturating%3Cu64%3E"],[27600,"impl-SubAssign%3Cu64%3E-for-Saturating%3Cu64%3E"],[27601,"impl-SubAssign%3C%26Saturating%3Cu64%3E%3E-for-Saturating%3Cu64%3E"],[27602,"impl-SubAssign%3C%26Saturating%3Cu16%3E%3E-for-Saturating%3Cu16%3E"],[27603,"impl-SubAssign-for-Saturating%3Cu64%3E"],[27604,"impl-SubAssign%3Cu16%3E-for-Saturating%3Cu16%3E"],[27605,"impl-SubAssign%3C%26u32%3E-for-Saturating%3Cu32%3E"],[27606,"impl-SubAssign%3Cu128%3E-for-Saturating%3Cu128%3E"],[27607,"impl-SubAssign%3C%26u16%3E-for-Saturating%3Cu16%3E"],[27608,"impl-SubAssign-for-Saturating%3Cu32%3E"],[27609,"impl-SubAssign%3C%26u128%3E-for-Saturating%3Cu128%3E"],[27610,"impl-SubAssign-for-Saturating%3Ci16%3E"],[27611,"impl-SubAssign%3C%26i8%3E-for-Saturating%3Ci8%3E"],[27612,"impl-SubAssign%3Ci8%3E-for-Saturating%3Ci8%3E"],[27613,"impl-SubAssign%3Cu32%3E-for-Saturating%3Cu32%3E"],[27614,"impl-SubAssign%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E"],[27615,"impl-SubAssign%3C%26i128%3E-for-Saturating%3Ci128%3E"],[27616,"impl-SubAssign%3Ci64%3E-for-Saturating%3Ci64%3E"],[27617,"impl-SubAssign%3C%26Saturating%3Ci8%3E%3E-for-Saturating%3Ci8%3E"],[27618,"impl-SubAssign%3C%26i64%3E-for-Saturating%3Ci64%3E"],[27619,"impl-SubAssign-for-Saturating%3Ci128%3E"],[27620,"impl-SubAssign%3C%26Saturating%3Cu8%3E%3E-for-Saturating%3Cu8%3E"],[27621,"impl-SubAssign%3C%26i32%3E-for-Saturating%3Ci32%3E"],[27622,"impl-SubAssign-for-Saturating%3Ci64%3E"],[27623,"impl-SubAssign-for-Saturating%3Cu8%3E"],[27624,"impl-SubAssign%3C%26usize%3E-for-Saturating%3Cusize%3E"],[27625,"impl-SubAssign-for-Saturating%3Ci8%3E"],[27626,"impl-SubAssign%3C%26isize%3E-for-Saturating%3Cisize%3E"],[27627,"impl-SubAssign%3Cisize%3E-for-Saturating%3Cisize%3E"],[27628,"impl-SubAssign%3C%26Saturating%3Cu128%3E%3E-for-Saturating%3Cu128%3E"],[27629,"impl-SubAssign%3Cusize%3E-for-Saturating%3Cusize%3E"],[27630,"impl-SubAssign%3C%26Saturating%3Cisize%3E%3E-for-Saturating%3Cisize%3E"],[27631,"impl-SubAssign-for-Saturating%3Cisize%3E"],[27632,"impl-SubAssign%3C%26Saturating%3Ci128%3E%3E-for-Saturating%3Ci128%3E"],[27633,"impl-SubAssign%3Ci128%3E-for-Saturating%3Ci128%3E"],[27634,"impl-SubAssign%3C%26Saturating%3Cusize%3E%3E-for-Saturating%3Cusize%3E"],[27635,"impl-SubAssign%3C%26Saturating%3Ci16%3E%3E-for-Saturating%3Ci16%3E"],[27636,"impl-SubAssign%3Ci16%3E-for-Wrapping%3Ci16%3E"],[27637,"impl-SubAssign-for-Wrapping%3Cisize%3E"],[27638,"impl-SubAssign-for-Wrapping%3Cusize%3E"],[27639,"impl-SubAssign-for-Wrapping%3Ci16%3E"],[27640,"impl-SubAssign%3C%26i128%3E-for-Wrapping%3Ci128%3E"],[27641,"impl-SubAssign%3Ci128%3E-for-Wrapping%3Ci128%3E"],[27642,"impl-SubAssign-for-Wrapping%3Ci32%3E"],[27643,"impl-SubAssign%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27644,"impl-SubAssign%3Ci32%3E-for-Wrapping%3Ci32%3E"],[27645,"impl-SubAssign%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27646,"impl-SubAssign-for-Wrapping%3Ci64%3E"],[27647,"impl-SubAssign%3C%26u32%3E-for-Wrapping%3Cu32%3E"],[27648,"impl-SubAssign%3Cu32%3E-for-Wrapping%3Cu32%3E"],[27649,"impl-SubAssign%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27650,"impl-SubAssign-for-Wrapping%3Ci128%3E"],[27651,"impl-SubAssign%3Ci64%3E-for-Wrapping%3Ci64%3E"],[27652,"impl-SubAssign%3C%26i64%3E-for-Wrapping%3Ci64%3E"],[27653,"impl-SubAssign%3C%26i16%3E-for-Wrapping%3Ci16%3E"],[27654,"impl-SubAssign%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27655,"impl-SubAssign-for-Wrapping%3Cu32%3E"],[27656,"impl-SubAssign%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27657,"impl-SubAssign%3Cusize%3E-for-Wrapping%3Cusize%3E"],[27658,"impl-SubAssign%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27659,"impl-SubAssign%3C%26i8%3E-for-Wrapping%3Ci8%3E"],[27660,"impl-SubAssign-for-Wrapping%3Cu64%3E"],[27661,"impl-SubAssign%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27662,"impl-SubAssign%3Ci8%3E-for-Wrapping%3Ci8%3E"],[27663,"impl-SubAssign%3C%26u16%3E-for-Wrapping%3Cu16%3E"],[27664,"impl-SubAssign%3C%26usize%3E-for-Wrapping%3Cusize%3E"],[27665,"impl-SubAssign%3Cu64%3E-for-Wrapping%3Cu64%3E"],[27666,"impl-SubAssign-for-Wrapping%3Cu8%3E"],[27667,"impl-SubAssign%3Cu16%3E-for-Wrapping%3Cu16%3E"],[27668,"impl-SubAssign%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27669,"impl-SubAssign%3Cu8%3E-for-Wrapping%3Cu8%3E"],[27670,"impl-SubAssign%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27671,"impl-SubAssign%3C%26u8%3E-for-Wrapping%3Cu8%3E"],[27672,"impl-SubAssign-for-Wrapping%3Ci8%3E"],[27673,"impl-SubAssign%3C%26isize%3E-for-Wrapping%3Cisize%3E"],[27674,"impl-SubAssign%3Cisize%3E-for-Wrapping%3Cisize%3E"],[27675,"impl-SubAssign%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27676,"impl-SubAssign%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27677,"impl-SubAssign-for-Wrapping%3Cu16%3E"],[27678,"impl-SubAssign%3C%26u64%3E-for-Wrapping%3Cu64%3E"],[27679,"impl-SubAssign-for-Wrapping%3Cu128%3E"],[27680,"impl-SubAssign%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27681,"impl-SubAssign%3Cu128%3E-for-Wrapping%3Cu128%3E"],[27682,"impl-SubAssign%3C%26u128%3E-for-Wrapping%3Cu128%3E"],[27683,"impl-SubAssign%3C%26i32%3E-for-Wrapping%3Ci32%3E"],[27684,"impl-Sum-for-Wrapping%3Cu8%3E"],[27685,"impl-Sum-for-Wrapping%3Ci32%3E"],[27686,"impl-Sum-for-Wrapping%3Cusize%3E"],[27687,"impl-Sum%3C%26Wrapping%3Cu128%3E%3E-for-Wrapping%3Cu128%3E"],[27688,"impl-Sum-for-Wrapping%3Cu128%3E"],[27689,"impl-Sum%3C%26Wrapping%3Cu64%3E%3E-for-Wrapping%3Cu64%3E"],[27690,"impl-Sum-for-Wrapping%3Cu64%3E"],[27691,"impl-Sum%3C%26Wrapping%3Cu32%3E%3E-for-Wrapping%3Cu32%3E"],[27692,"impl-Sum-for-Wrapping%3Cu32%3E"],[27693,"impl-Sum%3C%26Wrapping%3Cusize%3E%3E-for-Wrapping%3Cusize%3E"],[27694,"impl-Sum-for-Wrapping%3Cu16%3E"],[27695,"impl-Sum%3C%26Wrapping%3Cu8%3E%3E-for-Wrapping%3Cu8%3E"],[27696,"impl-Sum%3C%26Wrapping%3Ci16%3E%3E-for-Wrapping%3Ci16%3E"],[27697,"impl-Sum%3C%26Wrapping%3Cisize%3E%3E-for-Wrapping%3Cisize%3E"],[27698,"impl-Sum-for-Wrapping%3Cisize%3E"],[27699,"impl-Sum%3C%26Wrapping%3Ci128%3E%3E-for-Wrapping%3Ci128%3E"],[27700,"impl-Sum-for-Wrapping%3Ci128%3E"],[27701,"impl-Sum%3C%26Wrapping%3Ci64%3E%3E-for-Wrapping%3Ci64%3E"],[27702,"impl-Sum%3C%26Wrapping%3Ci8%3E%3E-for-Wrapping%3Ci8%3E"],[27703,"impl-Sum-for-Wrapping%3Ci16%3E"],[27704,"impl-Sum-for-Wrapping%3Ci64%3E"],[27705,"impl-Sum-for-Wrapping%3Ci8%3E"],[27706,"impl-Sum%3C%26Wrapping%3Ci32%3E%3E-for-Wrapping%3Ci32%3E"],[27707,"impl-Sum%3C%26Wrapping%3Cu16%3E%3E-for-Wrapping%3Cu16%3E"],[27708,"impl-NonZero%3Cisize%3E"],[27709,"impl-NonZero%3Ci16%3E"],[27710,"impl-NonZero%3Ci8%3E"],[27711,"impl-NonZero%3Cu32%3E"],[27712,"impl-NonZero%3Ci32%3E"],[27713,"impl-NonZero%3Ci128%3E"],[27714,"impl-NonZero%3Cu64%3E"],[27715,"impl-NonZero%3Cu8%3E"],[27716,"impl-NonZero%3Ci64%3E"],[27717,"impl-NonZero%3Cu128%3E"],[27718,"impl-NonZero%3Cusize%3E"],[27719,"impl-NonZero%3Cu16%3E"],[27720,"impl-Saturating%3Cu32%3E"],[27721,"impl-Saturating%3Cu16%3E"],[27722,"impl-Saturating%3Cu64%3E"],[27723,"impl-Saturating%3Ci128%3E"],[27724,"impl-Saturating%3Cusize%3E"],[27725,"impl-Saturating%3Cu8%3E"],[27726,"impl-Saturating%3Ci32%3E"],[27727,"impl-Saturating%3Ci16%3E"],[27728,"impl-Saturating%3Cisize%3E"],[27729,"impl-Saturating%3Ci64%3E"],[27730,"impl-Saturating%3Cu128%3E"],[27731,"impl-Saturating%3Ci8%3E"],[27732,"impl-Wrapping%3Ci8%3E"],[27733,"impl-Wrapping%3Cisize%3E"],[27734,"impl-Wrapping%3Cu64%3E"],[27735,"impl-Wrapping%3Cu128%3E"],[27736,"impl-Wrapping%3Ci64%3E"],[27737,"impl-Wrapping%3Cusize%3E"],[27738,"impl-Wrapping%3Cu16%3E"],[27739,"impl-Wrapping%3Ci16%3E"],[27740,"impl-Wrapping%3Cu32%3E"],[27741,"impl-Wrapping%3Ci128%3E"],[27742,"impl-Wrapping%3Cu8%3E"],[27743,"impl-Wrapping%3Ci32%3E"],[27744,"impl-NonZero%3Cu64%3E"],[27745,"impl-NonZero%3Ci32%3E"],[27746,"impl-NonZero%3Cusize%3E"],[27747,"impl-NonZero%3Ci8%3E"],[27748,"impl-NonZero%3Cu128%3E"],[27749,"impl-NonZero%3Cu32%3E"],[27750,"impl-NonZero%3Ci64%3E"],[27751,"impl-NonZero%3Cisize%3E"],[27752,"impl-NonZero%3Ci16%3E"],[27753,"impl-NonZero%3Ci128%3E"],[27754,"impl-NonZero%3Cu8%3E"],[27755,"impl-NonZero%3Cu16%3E"],[27756,"impl-Saturating%3Cusize%3E"],[27757,"impl-Saturating%3Cu128%3E"],[27758,"impl-Saturating%3Ci32%3E"],[27759,"impl-Saturating%3Cu16%3E"],[27760,"impl-Saturating%3Ci64%3E"],[27761,"impl-Saturating%3Cu32%3E"],[27762,"impl-Saturating%3Cisize%3E"],[27763,"impl-Saturating%3Ci16%3E"],[27764,"impl-Saturating%3Ci128%3E"],[27765,"impl-Saturating%3Cu8%3E"],[27766,"impl-Saturating%3Cu64%3E"],[27767,"impl-Saturating%3Ci8%3E"],[27768,"impl-Wrapping%3Cusize%3E"],[27769,"impl-Wrapping%3Cu32%3E"],[27770,"impl-Wrapping%3Ci32%3E"],[27771,"impl-Wrapping%3Ci64%3E"],[27772,"impl-Wrapping%3Cu64%3E"],[27773,"impl-Wrapping%3Cisize%3E"],[27774,"impl-Wrapping%3Ci8%3E"],[27775,"impl-Wrapping%3Cu8%3E"],[27776,"impl-Wrapping%3Cu16%3E"],[27777,"impl-Wrapping%3Cu128%3E"],[27778,"impl-Wrapping%3Ci16%3E"],[27779,"impl-Wrapping%3Ci128%3E"],[27780,"impl-NonZero%3Ci8%3E"],[27781,"impl-NonZero%3Cu8%3E"],[27782,"impl-NonZero%3Ci128%3E"],[27783,"impl-NonZero%3Cu64%3E"],[27784,"impl-NonZero%3Ci32%3E"],[27785,"impl-NonZero%3Cisize%3E"],[27786,"impl-NonZero%3Cu16%3E"],[27787,"impl-NonZero%3Cu128%3E"],[27788,"impl-NonZero%3Ci64%3E"],[27789,"impl-NonZero%3Ci16%3E"],[27790,"impl-NonZero%3Cu32%3E"],[27791,"impl-NonZero%3Cusize%3E"],[27792,"impl-Saturating%3Cu64%3E"],[27793,"impl-Saturating%3Ci64%3E"],[27794,"impl-Saturating%3Cu8%3E"],[27795,"impl-Saturating%3Cu32%3E"],[27796,"impl-Saturating%3Ci32%3E"],[27797,"impl-Saturating%3Ci128%3E"],[27798,"impl-Saturating%3Cu128%3E"],[27799,"impl-Saturating%3Ci8%3E"],[27800,"impl-Saturating%3Cu16%3E"],[27801,"impl-Saturating%3Cusize%3E"],[27802,"impl-Saturating%3Cisize%3E"],[27803,"impl-Saturating%3Ci16%3E"],[27804,"impl-Wrapping%3Ci32%3E"],[27805,"impl-Wrapping%3Cu64%3E"],[27806,"impl-Wrapping%3Cu32%3E"],[27807,"impl-Wrapping%3Ci16%3E"],[27808,"impl-Wrapping%3Cisize%3E"],[27809,"impl-Wrapping%3Ci8%3E"],[27810,"impl-Wrapping%3Cusize%3E"],[27811,"impl-Wrapping%3Ci128%3E"],[27812,"impl-Wrapping%3Ci64%3E"],[27813,"impl-Wrapping%3Cu16%3E"],[27814,"impl-Wrapping%3Cu8%3E"],[27815,"impl-Wrapping%3Cu128%3E"],[27830,"impl-NonZero%3Cu128%3E"],[27831,"impl-NonZero%3Cisize%3E"],[27832,"impl-NonZero%3Ci64%3E"],[27833,"impl-NonZero%3Cusize%3E"],[27834,"impl-NonZero%3Ci128%3E"],[27835,"impl-NonZero%3Ci32%3E"],[27836,"impl-NonZero%3Ci8%3E"],[27837,"impl-NonZero%3Ci16%3E"],[27838,"impl-NonZero%3Cu16%3E"],[27839,"impl-NonZero%3Cu8%3E"],[27840,"impl-NonZero%3Cu64%3E"],[27841,"impl-NonZero%3Cu32%3E"],[27842,"impl-Saturating%3Ci64%3E"],[27843,"impl-Saturating%3Ci32%3E"],[27844,"impl-Saturating%3Cu128%3E"],[27845,"impl-Saturating%3Cusize%3E"],[27846,"impl-Saturating%3Ci128%3E"],[27847,"impl-Saturating%3Ci8%3E"],[27848,"impl-Saturating%3Cu8%3E"],[27849,"impl-Saturating%3Cu32%3E"],[27850,"impl-Saturating%3Cu64%3E"],[27851,"impl-Saturating%3Cisize%3E"],[27852,"impl-Saturating%3Ci16%3E"],[27853,"impl-Saturating%3Cu16%3E"],[27854,"impl-Wrapping%3Ci64%3E"],[27855,"impl-Wrapping%3Cu32%3E"],[27856,"impl-Wrapping%3Ci128%3E"],[27857,"impl-Wrapping%3Ci8%3E"],[27858,"impl-Wrapping%3Ci32%3E"],[27859,"impl-Wrapping%3Cu16%3E"],[27860,"impl-Wrapping%3Cu64%3E"],[27861,"impl-Wrapping%3Ci16%3E"],[27862,"impl-Wrapping%3Cisize%3E"],[27863,"impl-Wrapping%3Cusize%3E"],[27864,"impl-Wrapping%3Cu128%3E"],[27865,"impl-Wrapping%3Cu8%3E"],[27866,"impl-TryFrom%3CNonZero%3Cu8%3E%3E-for-NonZero%3Ci8%3E"],[27867,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci16%3E"],[27868,"impl-TryFrom%3Ci32%3E-for-NonZero%3Ci32%3E"],[27869,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci8%3E"],[27870,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci16%3E"],[27871,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci32%3E"],[27872,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Ci64%3E"],[27873,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cusize%3E"],[27874,"impl-TryFrom%3Ci64%3E-for-NonZero%3Ci64%3E"],[27875,"impl-TryFrom%3Ci128%3E-for-NonZero%3Ci128%3E"],[27876,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu128%3E"],[27877,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci16%3E"],[27878,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Ci8%3E"],[27879,"impl-TryFrom%3Cisize%3E-for-NonZero%3Cisize%3E"],[27880,"impl-TryFrom%3Ci8%3E-for-NonZero%3Ci8%3E"],[27881,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Ci8%3E"],[27882,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cu8%3E"],[27883,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu64%3E"],[27884,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu8%3E"],[27885,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu128%3E"],[27886,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cu16%3E"],[27887,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu32%3E"],[27888,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu16%3E"],[27889,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Cu8%3E"],[27890,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cusize%3E"],[27891,"impl-TryFrom%3Cusize%3E-for-NonZero%3Cusize%3E"],[27892,"impl-TryFrom%3Cu128%3E-for-NonZero%3Cu128%3E"],[27893,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu128%3E"],[27894,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu64%3E"],[27895,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu32%3E"],[27896,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu16%3E"],[27897,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cu8%3E"],[27898,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cusize%3E"],[27899,"impl-TryFrom%3Cu64%3E-for-NonZero%3Cu64%3E"],[27900,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu64%3E"],[27901,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu128%3E"],[27902,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu64%3E"],[27903,"impl-TryFrom%3Cu32%3E-for-NonZero%3Cu32%3E"],[27904,"impl-TryFrom%3Cu16%3E-for-NonZero%3Cu16%3E"],[27905,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu32%3E"],[27906,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cisize%3E"],[27907,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci32%3E"],[27908,"impl-TryFrom%3Cu8%3E-for-NonZero%3Cu8%3E"],[27909,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci16%3E"],[27910,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu16%3E"],[27911,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cu8%3E"],[27912,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Ci8%3E"],[27913,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Cisize%3E"],[27914,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cusize%3E"],[27915,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu128%3E"],[27916,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu64%3E"],[27917,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci16%3E"],[27918,"impl-TryFrom%3CNonZero%3Cu16%3E%3E-for-NonZero%3Ci8%3E"],[27919,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu32%3E"],[27920,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu16%3E"],[27921,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cu8%3E"],[27922,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu32%3E"],[27923,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci128%3E"],[27924,"impl-TryFrom%3CNonZero%3Cu32%3E%3E-for-NonZero%3Cusize%3E"],[27925,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci64%3E"],[27926,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu8%3E"],[27927,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu16%3E"],[27928,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci32%3E"],[27929,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci16%3E"],[27930,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cu32%3E"],[27931,"impl-TryFrom%3CNonZero%3Ci32%3E%3E-for-NonZero%3Cisize%3E"],[27932,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cusize%3E"],[27933,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cusize%3E"],[27934,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Cisize%3E"],[27935,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu8%3E"],[27936,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu16%3E"],[27937,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu128%3E"],[27938,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu32%3E"],[27939,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci64%3E"],[27940,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu64%3E"],[27941,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci32%3E"],[27942,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu32%3E"],[27943,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu16%3E"],[27944,"impl-TryFrom%3CNonZero%3Ci16%3E%3E-for-NonZero%3Cu8%3E"],[27945,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cusize%3E"],[27946,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci16%3E"],[27947,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu128%3E"],[27948,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu64%3E"],[27949,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu16%3E"],[27950,"impl-TryFrom%3CNonZero%3Ci128%3E%3E-for-NonZero%3Ci8%3E"],[27951,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cu8%3E"],[27952,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cu64%3E"],[27953,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Cisize%3E"],[27954,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cusize%3E"],[27955,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu32%3E"],[27956,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu16%3E"],[27957,"impl-TryFrom%3CNonZero%3Ci8%3E%3E-for-NonZero%3Cu8%3E"],[27958,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Cisize%3E"],[27959,"impl-TryFrom%3CNonZero%3Cu64%3E%3E-for-NonZero%3Cisize%3E"],[27960,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci32%3E"],[27962,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci128%3E"],[27963,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci64%3E"],[27964,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci32%3E"],[27965,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci16%3E"],[27966,"impl-TryFrom%3Ci16%3E-for-NonZero%3Ci16%3E"],[27967,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci16%3E"],[27968,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-NonZero%3Ci8%3E"],[27969,"impl-TryFrom%3CNonZero%3Ci64%3E%3E-for-NonZero%3Ci8%3E"],[27970,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Cisize%3E"],[27971,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci8%3E"],[27972,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci128%3E"],[27973,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci64%3E"],[27974,"impl-TryFrom%3CNonZero%3Cu128%3E%3E-for-NonZero%3Ci32%3E"],[27975,"impl-TryFrom%3CNonZero%3Cisize%3E%3E-for-NonZero%3Ci8%3E"],[27999,"impl-NonZero%3Cusize%3E"],[28000,"impl-NonZero%3Cu64%3E"],[28001,"impl-NonZero%3Cu8%3E"],[28002,"impl-NonZero%3Cu128%3E"],[28003,"impl-NonZero%3Cu32%3E"],[28004,"impl-NonZero%3Cu16%3E"],[28005,"impl-NonZero%3Cu8%3E"],[28006,"impl-NonZero%3Ci8%3E"],[28007,"impl-NonZero%3Cu16%3E"],[28008,"impl-NonZero%3Cu128%3E"],[28009,"impl-NonZero%3Cisize%3E"],[28010,"impl-NonZero%3Ci128%3E"],[28011,"impl-NonZero%3Cusize%3E"],[28012,"impl-NonZero%3Cu32%3E"],[28013,"impl-NonZero%3Ci16%3E"],[28014,"impl-NonZero%3Ci32%3E"],[28015,"impl-NonZero%3Cu64%3E"],[28016,"impl-NonZero%3Ci64%3E"],[28017,"impl-NonZero%3Ci8%3E"],[28018,"impl-NonZero%3Ci32%3E"],[28019,"impl-NonZero%3Ci16%3E"],[28020,"impl-NonZero%3Ci64%3E"],[28021,"impl-NonZero%3Cisize%3E"],[28022,"impl-NonZero%3Ci128%3E"],[28023,"impl-NonZero%3Ci16%3E"],[28024,"impl-NonZero%3Ci8%3E"],[28025,"impl-NonZero%3Ci32%3E"],[28026,"impl-NonZero%3Ci128%3E"],[28027,"impl-NonZero%3Cisize%3E"],[28028,"impl-NonZero%3Ci64%3E"],[28029,"impl-NonZero%3Ci128%3E"],[28030,"impl-NonZero%3Ci8%3E"],[28031,"impl-NonZero%3Cisize%3E"],[28032,"impl-NonZero%3Ci32%3E"],[28033,"impl-NonZero%3Ci16%3E"],[28034,"impl-NonZero%3Ci64%3E"],[28209,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[28210,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[28211,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[28212,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[28213,"impl-RangeBounds%3CT%3E-for-RangeTo%3CT%3E"],[28214,"impl-RangeBounds%3CT%3E-for-RangeTo%3C%26T%3E"],[28215,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[28216,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[28217,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3C%26T%3E"],[28218,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3CT%3E"],[28256,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[28257,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[28258,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[28259,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[28260,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[28261,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[28262,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[28263,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[28264,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[28265,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[28266,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[28267,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[28268,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[28269,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[28270,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[28271,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[28272,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[28273,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[28274,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[28275,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[28276,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[28277,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[28278,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[28279,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[28280,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[28281,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[28282,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[28283,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[28284,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[28285,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[28286,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[28287,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[28288,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[28289,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[28290,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[28291,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[28292,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[28293,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[28294,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[28295,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[28296,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[28297,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[28298,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[28299,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[28300,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[28301,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[28302,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[28303,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[28314,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[28315,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[28316,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[28317,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[28318,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[28319,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[28320,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[28321,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[28322,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[28323,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[28324,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[28325,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[28327,"impl-SliceIndex%3Cstr%3E-for-RangeFull"],[28328,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFull"],[28329,"impl-SliceIndex%3C%5BT%5D%3E-for-Range%3Cusize%3E"],[28330,"impl-SliceIndex%3Cstr%3E-for-Range%3Cusize%3E"],[28331,"impl-SliceIndex%3Cstr%3E-for-RangeFrom%3Cusize%3E"],[28332,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeFrom%3Cusize%3E"],[28333,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeTo%3Cusize%3E"],[28334,"impl-SliceIndex%3Cstr%3E-for-RangeTo%3Cusize%3E"],[28335,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeInclusive%3Cusize%3E"],[28336,"impl-SliceIndex%3Cstr%3E-for-RangeInclusive%3Cusize%3E"],[28337,"impl-SliceIndex%3C%5BT%5D%3E-for-RangeToInclusive%3Cusize%3E"],[28338,"impl-SliceIndex%3Cstr%3E-for-RangeToInclusive%3Cusize%3E"],[28400,"impl-RangeBounds%3CT%3E-for-Range%3C%26T%3E"],[28401,"impl-RangeBounds%3CT%3E-for-Range%3CT%3E"],[28402,"impl-RangeBounds%3CT%3E-for-RangeFrom%3C%26T%3E"],[28403,"impl-RangeBounds%3CT%3E-for-RangeFrom%3CT%3E"],[28404,"impl-RangeBounds%3CT%3E-for-RangeTo%3CT%3E"],[28405,"impl-RangeBounds%3CT%3E-for-RangeTo%3C%26T%3E"],[28406,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3C%26T%3E"],[28407,"impl-RangeBounds%3CT%3E-for-RangeInclusive%3CT%3E"],[28408,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3C%26T%3E"],[28409,"impl-RangeBounds%3CT%3E-for-RangeToInclusive%3CT%3E"],[28488,"impl-Option%3C%26T%3E"],[28489,"impl-Option%3C%26mut+T%3E"],[28491,"impl-Option%3C%26mut+T%3E"],[28492,"impl-Option%3C%26T%3E"],[28503,"impl-From%3CT%3E-for-Option%3CT%3E"],[28504,"impl-From%3C%26Option%3CT%3E%3E-for-Option%3C%26T%3E"],[28506,"impl-From%3C%26mut+Option%3CT%3E%3E-for-Option%3C%26mut+T%3E"],[28512,"impl-FromResidual%3CYeet%3C()%3E%3E-for-Option%3CT%3E"],[28513,"impl-FromResidual%3COption%3CInfallible%3E%3E-for-Option%3CT%3E"],[28524,"impl-IntoIterator-for-%26mut+Option%3CT%3E"],[28525,"impl-IntoIterator-for-%26Option%3CT%3E"],[28526,"impl-IntoIterator-for-Option%3CT%3E"],[28611,"impl-From%3CChildStderr%3E-for-OwnedFd"],[28612,"impl-From%3CTcpStream%3E-for-OwnedFd"],[28613,"impl-From%3CPidFd%3E-for-OwnedFd"],[28614,"impl-From%3CChildStdout%3E-for-OwnedFd"],[28616,"impl-From%3CUdpSocket%3E-for-OwnedFd"],[28617,"impl-From%3CPipeWriter%3E-for-OwnedFd"],[28618,"impl-From%3CFile%3E-for-OwnedFd"],[28619,"impl-From%3CChildStdin%3E-for-OwnedFd"],[28620,"impl-From%3CUnixDatagram%3E-for-OwnedFd"],[28621,"impl-From%3CPipeReader%3E-for-OwnedFd"],[28622,"impl-From%3CUnixStream%3E-for-OwnedFd"],[28623,"impl-From%3CUnixListener%3E-for-OwnedFd"],[28624,"impl-From%3CTcpListener%3E-for-OwnedFd"],[28896,"impl-Write-for-%26UnixStream"],[28897,"impl-Write-for-UnixStream"],[28955,"impl-Read-for-%26UnixStream"],[28956,"impl-Read-for-UnixStream"],[28958,"impl-Write-for-%26UnixStream"],[28959,"impl-Write-for-UnixStream"],[28982,"impl-Read-for-%26UnixStream"],[28983,"impl-Read-for-UnixStream"],[28984,"impl-Read-for-%26UnixStream"],[28985,"impl-Read-for-UnixStream"],[28988,"impl-Read-for-UnixStream"],[28989,"impl-Read-for-%26UnixStream"],[29069,"impl-Write-for-%26UnixStream"],[29070,"impl-Write-for-UnixStream"],[29073,"impl-Write-for-%26UnixStream"],[29074,"impl-Write-for-UnixStream"],[29221,"impl-Debug-for-PanicHookInfo%3C\'a%3E"],[29222,"impl-Display-for-PanicHookInfo%3C\'_%3E"],[29225,"impl-Display-for-Location%3C\'_%3E"],[29226,"impl-Debug-for-Location%3C\'a%3E"],[29304,"impl-AsRef%3COsStr%3E-for-PathBuf"],[29305,"impl-AsRef%3CPath%3E-for-PathBuf"],[29306,"impl-AsRef%3COsStr%3E-for-Path"],[29307,"impl-AsRef%3CPath%3E-for-Path"],[29308,"impl-AsRef%3CPath%3E-for-Component%3C\'_%3E"],[29309,"impl-AsRef%3COsStr%3E-for-Component%3C\'_%3E"],[29310,"impl-AsRef%3COsStr%3E-for-Components%3C\'_%3E"],[29311,"impl-AsRef%3CPath%3E-for-Components%3C\'_%3E"],[29312,"impl-AsRef%3COsStr%3E-for-Iter%3C\'_%3E"],[29313,"impl-AsRef%3CPath%3E-for-Iter%3C\'_%3E"],[29378,"impl-PartialEq%3CPath%3E-for-PathBuf"],[29379,"impl-PartialEq%3COsStr%3E-for-PathBuf"],[29380,"impl-PartialEq%3C%26Path%3E-for-PathBuf"],[29381,"impl-PartialEq%3COsString%3E-for-PathBuf"],[29382,"impl-PartialEq-for-PathBuf"],[29383,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-PathBuf"],[29384,"impl-PartialEq%3C%26OsStr%3E-for-PathBuf"],[29385,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-PathBuf"],[29386,"impl-PartialEq%3COsString%3E-for-%26Path"],[29387,"impl-PartialEq%3COsString%3E-for-Path"],[29388,"impl-PartialEq%3C%26OsStr%3E-for-Path"],[29389,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-%26Path"],[29390,"impl-PartialEq%3CCow%3C\'a,+Path%3E%3E-for-Path"],[29391,"impl-PartialEq%3CPathBuf%3E-for-Path"],[29392,"impl-PartialEq%3COsStr%3E-for-Path"],[29393,"impl-PartialEq-for-Path"],[29394,"impl-PartialEq%3COsStr%3E-for-%26Path"],[29395,"impl-PartialEq%3CCow%3C\'a,+OsStr%3E%3E-for-Path"],[29396,"impl-PartialEq%3CPathBuf%3E-for-%26Path"],[29397,"impl-PartialEq%3CCow%3C\'b,+OsStr%3E%3E-for-%26Path"],[29412,"impl-Display-for-Display%3C\'_%3E"],[29413,"impl-Debug-for-Display%3C\'_%3E"],[29420,"impl-Debug-for-StripPrefixError"],[29421,"impl-Display-for-StripPrefixError"],[29422,"impl-From%3CString%3E-for-PathBuf"],[29423,"impl-From%3COsString%3E-for-PathBuf"],[29424,"impl-From%3CBox%3CPath%3E%3E-for-PathBuf"],[29425,"impl-From%3C%26T%3E-for-PathBuf"],[29427,"impl-From%3CCow%3C\'a,+Path%3E%3E-for-PathBuf"],[29481,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-PathBuf"],[29482,"impl-PartialOrd%3CPath%3E-for-PathBuf"],[29483,"impl-PartialOrd%3C%26Path%3E-for-PathBuf"],[29484,"impl-PartialOrd%3COsString%3E-for-PathBuf"],[29485,"impl-PartialOrd-for-PathBuf"],[29486,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-PathBuf"],[29487,"impl-PartialOrd%3C%26OsStr%3E-for-PathBuf"],[29488,"impl-PartialOrd%3COsStr%3E-for-PathBuf"],[29489,"impl-PartialOrd%3CPathBuf%3E-for-%26Path"],[29490,"impl-PartialOrd%3C%26OsStr%3E-for-Path"],[29491,"impl-PartialOrd-for-Path"],[29492,"impl-PartialOrd%3CPathBuf%3E-for-Path"],[29493,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-Path"],[29494,"impl-PartialOrd%3COsString%3E-for-%26Path"],[29495,"impl-PartialOrd%3CCow%3C\'a,+Path%3E%3E-for-%26Path"],[29496,"impl-PartialOrd%3CCow%3C\'b,+OsStr%3E%3E-for-%26Path"],[29497,"impl-PartialOrd%3COsStr%3E-for-%26Path"],[29498,"impl-PartialOrd%3CCow%3C\'a,+OsStr%3E%3E-for-Path"],[29499,"impl-PartialOrd%3COsStr%3E-for-Path"],[29500,"impl-PartialOrd%3COsString%3E-for-Path"],[29581,"impl-Display-for-Pin%3CPtr%3E"],[29582,"impl-Pointer-for-Pin%3CPtr%3E"],[29583,"impl-Debug-for-Pin%3CPtr%3E"],[29609,"impl-Coroutine%3CR%3E-for-Pin%3C%26mut+G%3E"],[29610,"impl-Coroutine%3CR%3E-for-Pin%3CBox%3CG,+A%3E%3E"],[29630,"impl-Write-for-%26PipeWriter"],[29631,"impl-Write-for-PipeWriter"],[29644,"impl-Read-for-PipeReader"],[29645,"impl-Read-for-%26PipeReader"],[29646,"impl-Write-for-%26PipeWriter"],[29647,"impl-Write-for-PipeWriter"],[29649,"impl-Read-for-%26PipeReader"],[29650,"impl-Read-for-PipeReader"],[29651,"impl-Read-for-%26PipeReader"],[29652,"impl-Read-for-PipeReader"],[29653,"impl-Read-for-PipeReader"],[29654,"impl-Read-for-%26PipeReader"],[29655,"impl-Read-for-%26PipeReader"],[29656,"impl-Read-for-PipeReader"],[29665,"impl-Write-for-PipeWriter"],[29666,"impl-Write-for-%26PipeWriter"],[29667,"impl-Write-for-PipeWriter"],[29668,"impl-Write-for-%26PipeWriter"],[30787,"impl-Write-for-ChildStdin"],[30788,"impl-Write-for-%26ChildStdin"],[30797,"impl-Display-for-ExitStatus"],[30798,"impl-Debug-for-ExitStatus"],[30799,"impl-Display-for-ExitStatusError"],[30800,"impl-Debug-for-ExitStatusError"],[30811,"impl-From%3CStderr%3E-for-Stdio"],[30812,"impl-From%3CStdout%3E-for-Stdio"],[30813,"impl-From%3CChildStdin%3E-for-Stdio"],[30814,"impl-From%3CFile%3E-for-Stdio"],[30815,"impl-From%3CPipeWriter%3E-for-Stdio"],[30816,"impl-From%3CPipeReader%3E-for-Stdio"],[30817,"impl-From%3CChildStdout%3E-for-Stdio"],[30818,"impl-From%3COwnedFd%3E-for-Stdio"],[30820,"impl-From%3CChildStderr%3E-for-Stdio"],[30866,"impl-Write-for-ChildStdin"],[30867,"impl-Write-for-%26ChildStdin"],[30955,"impl-Write-for-ChildStdin"],[30956,"impl-Write-for-%26ChildStdin"],[30957,"impl-Write-for-ChildStdin"],[30958,"impl-Write-for-%26ChildStdin"],[31023,"impl-Debug-for-NonNull%3CT%3E"],[31024,"impl-Pointer-for-NonNull%3CT%3E"],[31029,"impl-From%3C%26mut+T%3E-for-NonNull%3CT%3E"],[31030,"impl-From%3C%26T%3E-for-NonNull%3CT%3E"],[31089,"impl-TryFrom%3CNonZero%3Cusize%3E%3E-for-Alignment"],[31090,"impl-TryFrom%3Cusize%3E-for-Alignment"],[31121,"impl-Rc%3C%5BMaybeUninit%3CT%3E%5D,+A%3E"],[31122,"impl-Rc%3CMaybeUninit%3CT%3E,+A%3E"],[31139,"impl-Default-for-Rc%3C%5BT%5D%3E"],[31140,"impl-Default-for-Rc%3CCStr%3E"],[31141,"impl-Default-for-Rc%3CT%3E"],[31142,"impl-Default-for-Rc%3Cstr%3E"],[31155,"impl-Pointer-for-Rc%3CT,+A%3E"],[31156,"impl-Debug-for-Rc%3CT,+A%3E"],[31157,"impl-Display-for-Rc%3CT,+A%3E"],[31160,"impl-From%3CRc%3Cstr%3E%3E-for-Rc%3C%5Bu8%5D%3E"],[31162,"impl-From%3CString%3E-for-Rc%3Cstr%3E"],[31163,"impl-From%3C%26%5BT%5D%3E-for-Rc%3C%5BT%5D%3E"],[31164,"impl-From%3C%26Path%3E-for-Rc%3CPath%3E"],[31165,"impl-From%3CBox%3CT,+A%3E%3E-for-Rc%3CT,+A%3E"],[31166,"impl-From%3C%5BT;+N%5D%3E-for-Rc%3C%5BT%5D%3E"],[31167,"impl-From%3CPathBuf%3E-for-Rc%3CPath%3E"],[31168,"impl-From%3CT%3E-for-Rc%3CT%3E"],[31169,"impl-From%3C%26CStr%3E-for-Rc%3CCStr%3E"],[31170,"impl-From%3CCow%3C\'a,+B%3E%3E-for-Rc%3CB%3E"],[31171,"impl-From%3CCString%3E-for-Rc%3CCStr%3E"],[31172,"impl-From%3CVec%3CT,+A%3E%3E-for-Rc%3C%5BT%5D,+A%3E"],[31173,"impl-From%3C%26OsStr%3E-for-Rc%3COsStr%3E"],[31174,"impl-From%3COsString%3E-for-Rc%3COsStr%3E"],[31175,"impl-From%3C%26str%3E-for-Rc%3Cstr%3E"],[31281,"impl-Result%3C%26mut+T,+E%3E"],[31282,"impl-Result%3C%26T,+E%3E"],[31284,"impl-Result%3C%26T,+E%3E"],[31285,"impl-Result%3C%26mut+T,+E%3E"],[31295,"impl-From%3C%26StreamResult%3E-for-Result%3CMZStatus,+MZError%3E"],[31296,"impl-From%3CStreamResult%3E-for-Result%3CMZStatus,+MZError%3E"],[31303,"impl-FromResidual%3CResult%3CInfallible,+E%3E%3E-for-Result%3CT,+F%3E"],[31304,"impl-FromResidual%3CYeet%3CE%3E%3E-for-Result%3CT,+F%3E"],[31313,"impl-IntoIterator-for-Result%3CT,+E%3E"],[31314,"impl-IntoIterator-for-%26Result%3CT,+E%3E"],[31315,"impl-IntoIterator-for-%26mut+Result%3CT,+E%3E"],[31662,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31663,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31664,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31665,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31666,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31667,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31668,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31669,"impl-Add-for-Simd%3Cu64,+N%3E"],[31670,"impl-Add-for-Simd%3Cu8,+N%3E"],[31671,"impl-Add%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31672,"impl-Add%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31673,"impl-Add%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31674,"impl-Add-for-Simd%3Cusize,+N%3E"],[31675,"impl-Add-for-Simd%3Cu32,+N%3E"],[31676,"impl-Add-for-Simd%3Ci8,+N%3E"],[31677,"impl-Add-for-Simd%3Ci16,+N%3E"],[31678,"impl-Add-for-Simd%3Cf32,+N%3E"],[31679,"impl-Add-for-Simd%3Ci32,+N%3E"],[31680,"impl-Add-for-Simd%3Ci64,+N%3E"],[31681,"impl-Add-for-Simd%3Cisize,+N%3E"],[31682,"impl-Add-for-Simd%3Cf64,+N%3E"],[31683,"impl-Add-for-Simd%3Cu16,+N%3E"],[31687,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[31688,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[31692,"impl-AsMut%3C%5BT%5D%3E-for-Simd%3CT,+N%3E"],[31693,"impl-AsMut%3C%5BT;+N%5D%3E-for-Simd%3CT,+N%3E"],[31695,"impl-AsRef%3C%5BT;+N%5D%3E-for-Simd%3CT,+N%3E"],[31696,"impl-AsRef%3C%5BT%5D%3E-for-Simd%3CT,+N%3E"],[31697,"impl-BitAnd-for-Mask%3CT,+N%3E"],[31698,"impl-BitAnd%3Cbool%3E-for-Mask%3CT,+N%3E"],[31699,"impl-BitAnd-for-Simd%3Cisize,+N%3E"],[31700,"impl-BitAnd%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31701,"impl-BitAnd-for-Simd%3Cu16,+N%3E"],[31702,"impl-BitAnd-for-Simd%3Cusize,+N%3E"],[31703,"impl-BitAnd-for-Simd%3Cu8,+N%3E"],[31704,"impl-BitAnd-for-Simd%3Cu32,+N%3E"],[31705,"impl-BitAnd-for-Simd%3Ci16,+N%3E"],[31706,"impl-BitAnd-for-Simd%3Ci32,+N%3E"],[31707,"impl-BitAnd%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31708,"impl-BitAnd-for-Simd%3Ci8,+N%3E"],[31709,"impl-BitAnd-for-Simd%3Cu64,+N%3E"],[31710,"impl-BitAnd%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31711,"impl-BitAnd-for-Simd%3Ci64,+N%3E"],[31712,"impl-BitAndAssign-for-Mask%3CT,+N%3E"],[31713,"impl-BitAndAssign%3Cbool%3E-for-Mask%3CT,+N%3E"],[31715,"impl-BitOr%3Cbool%3E-for-Mask%3CT,+N%3E"],[31716,"impl-BitOr-for-Mask%3CT,+N%3E"],[31717,"impl-BitOr-for-Simd%3Ci16,+N%3E"],[31718,"impl-BitOr-for-Simd%3Cu16,+N%3E"],[31719,"impl-BitOr-for-Simd%3Ci64,+N%3E"],[31720,"impl-BitOr-for-Simd%3Ci32,+N%3E"],[31721,"impl-BitOr-for-Simd%3Cu32,+N%3E"],[31722,"impl-BitOr-for-Simd%3Cisize,+N%3E"],[31723,"impl-BitOr%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31724,"impl-BitOr-for-Simd%3Cusize,+N%3E"],[31725,"impl-BitOr-for-Simd%3Cu8,+N%3E"],[31726,"impl-BitOr-for-Simd%3Cu64,+N%3E"],[31727,"impl-BitOr-for-Simd%3Ci8,+N%3E"],[31728,"impl-BitOr%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31729,"impl-BitOr%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31730,"impl-BitOrAssign-for-Mask%3CT,+N%3E"],[31731,"impl-BitOrAssign%3Cbool%3E-for-Mask%3CT,+N%3E"],[31733,"impl-BitXor%3Cbool%3E-for-Mask%3CT,+N%3E"],[31734,"impl-BitXor-for-Mask%3CT,+N%3E"],[31735,"impl-BitXor-for-Simd%3Cu8,+N%3E"],[31736,"impl-BitXor%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31737,"impl-BitXor-for-Simd%3Ci16,+N%3E"],[31738,"impl-BitXor-for-Simd%3Cu16,+N%3E"],[31739,"impl-BitXor-for-Simd%3Cu32,+N%3E"],[31740,"impl-BitXor-for-Simd%3Cusize,+N%3E"],[31741,"impl-BitXor-for-Simd%3Ci8,+N%3E"],[31742,"impl-BitXor%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31743,"impl-BitXor%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31744,"impl-BitXor-for-Simd%3Cu64,+N%3E"],[31745,"impl-BitXor-for-Simd%3Ci64,+N%3E"],[31746,"impl-BitXor-for-Simd%3Cisize,+N%3E"],[31747,"impl-BitXor-for-Simd%3Ci32,+N%3E"],[31748,"impl-BitXorAssign%3Cbool%3E-for-Mask%3CT,+N%3E"],[31749,"impl-BitXorAssign-for-Mask%3CT,+N%3E"],[31761,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[31762,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[31763,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[31764,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31765,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[31766,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[31767,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[31768,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[31769,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[31770,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31771,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[31772,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[31773,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[31774,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[31788,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31789,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31790,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31791,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31795,"impl-Div-for-Simd%3Ci32,+N%3E"],[31796,"impl-Div-for-Simd%3Cu8,+N%3E"],[31797,"impl-Div%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31798,"impl-Div%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31799,"impl-Div-for-Simd%3Cf64,+N%3E"],[31800,"impl-Div%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[31801,"impl-Div-for-Simd%3Cf32,+N%3E"],[31802,"impl-Div-for-Simd%3Ci8,+N%3E"],[31803,"impl-Div-for-Simd%3Cusize,+N%3E"],[31804,"impl-Div-for-Simd%3Ci16,+N%3E"],[31805,"impl-Div-for-Simd%3Cu64,+N%3E"],[31806,"impl-Div-for-Simd%3Ci64,+N%3E"],[31807,"impl-Div-for-Simd%3Cu32,+N%3E"],[31808,"impl-Div-for-Simd%3Cisize,+N%3E"],[31809,"impl-Div-for-Simd%3Cu16,+N%3E"],[31813,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31814,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31815,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31816,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31819,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[31820,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[31838,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[31839,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[31840,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31841,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31842,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31843,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31845,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31846,"impl-From%3CMask%3Cisize,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31847,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31848,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31849,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31850,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31851,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31852,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31853,"impl-From%3CMask%3Ci64,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31854,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Ci16,+N%3E"],[31855,"impl-From%3CMask%3Ci8,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31856,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Ci32,+N%3E"],[31857,"impl-From%3CMask%3Ci16,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31858,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Ci8,+N%3E"],[31859,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Cisize,+N%3E"],[31860,"impl-From%3CMask%3Ci32,+N%3E%3E-for-Mask%3Ci64,+N%3E"],[31861,"impl-From%3C%5Bbool;+N%5D%3E-for-Mask%3CT,+N%3E"],[31862,"impl-From%3C__m512i%3E-for-Simd%3Cu64,+8%3E"],[31863,"impl-From%3C__m128i%3E-for-Simd%3Cu16,+8%3E"],[31864,"impl-From%3C__m128i%3E-for-Simd%3Ci32,+4%3E"],[31865,"impl-From%3C__m256i%3E-for-Simd%3Ci32,+8%3E"],[31866,"impl-From%3C__m512i%3E-for-Simd%3Ci32,+16%3E"],[31867,"impl-From%3C__m128%3E-for-Simd%3Cf32,+4%3E"],[31868,"impl-From%3C__m256%3E-for-Simd%3Cf32,+8%3E"],[31869,"impl-From%3C__m512%3E-for-Simd%3Cf32,+16%3E"],[31870,"impl-From%3C__m128i%3E-for-Simd%3Cu64,+2%3E"],[31871,"impl-From%3C__m256i%3E-for-Simd%3Cu64,+4%3E"],[31872,"impl-From%3C__m128i%3E-for-Simd%3Ci64,+2%3E"],[31873,"impl-From%3C__m256i%3E-for-Simd%3Ci64,+4%3E"],[31874,"impl-From%3C__m512i%3E-for-Simd%3Ci64,+8%3E"],[31875,"impl-From%3C__m128d%3E-for-Simd%3Cf64,+2%3E"],[31876,"impl-From%3C__m512i%3E-for-Simd%3Cu32,+16%3E"],[31877,"impl-From%3C__m256i%3E-for-Simd%3Cu32,+8%3E"],[31878,"impl-From%3C__m128i%3E-for-Simd%3Cu32,+4%3E"],[31879,"impl-From%3C__m256d%3E-for-Simd%3Cf64,+4%3E"],[31880,"impl-From%3C__m512d%3E-for-Simd%3Cf64,+8%3E"],[31881,"impl-From%3C__m128i%3E-for-Simd%3Cusize,+2%3E"],[31882,"impl-From%3C__m512i%3E-for-Simd%3Ci16,+32%3E"],[31883,"impl-From%3C__m128i%3E-for-Simd%3Ci8,+16%3E"],[31884,"impl-From%3C__m512i%3E-for-Simd%3Cusize,+8%3E"],[31885,"impl-From%3C__m256i%3E-for-Simd%3Ci16,+16%3E"],[31886,"impl-From%3C__m128i%3E-for-Simd%3Cisize,+2%3E"],[31887,"impl-From%3C__m128i%3E-for-Simd%3Ci16,+8%3E"],[31888,"impl-From%3C__m256i%3E-for-Simd%3Cisize,+4%3E"],[31889,"impl-From%3C__m512i%3E-for-Simd%3Cisize,+8%3E"],[31890,"impl-From%3C__m256i%3E-for-Simd%3Ci8,+32%3E"],[31891,"impl-From%3CMask%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[31893,"impl-From%3C%5BT;+N%5D%3E-for-Simd%3CT,+N%3E"],[31894,"impl-From%3C__m512i%3E-for-Simd%3Cu16,+32%3E"],[31895,"impl-From%3C__m512i%3E-for-Simd%3Ci8,+64%3E"],[31896,"impl-From%3C__m256i%3E-for-Simd%3Cu16,+16%3E"],[31897,"impl-From%3C__m128i%3E-for-Simd%3Cu8,+16%3E"],[31898,"impl-From%3C__m256i%3E-for-Simd%3Cu8,+32%3E"],[31899,"impl-From%3C__m512i%3E-for-Simd%3Cu8,+64%3E"],[31900,"impl-From%3C__m256i%3E-for-Simd%3Cusize,+4%3E"],[31903,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[31904,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[31905,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[31906,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[31907,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[31908,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[31909,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[31910,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[31911,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[31912,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[31913,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[31914,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[31915,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[31916,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[31917,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[31918,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[31919,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[31920,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[31921,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[31922,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[31923,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[31924,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[31925,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[31926,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[31927,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[31928,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[31929,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[31930,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[31931,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[31932,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[31933,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[31934,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[31935,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[31936,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[31937,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[31938,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[31939,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[31940,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[31941,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[31942,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[31943,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[31944,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[31945,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[31946,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[31947,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[31948,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[31949,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[31950,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[31951,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[31952,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[31953,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[31954,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[31955,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[31956,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[31957,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[31958,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[31959,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[31960,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[31961,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[31962,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[31963,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[31967,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[31968,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[31971,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[31972,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[31973,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[31974,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[31975,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[31976,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[31977,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[31978,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[31979,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[31980,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[31981,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[31982,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[31983,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[31984,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[31985,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[31986,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[31987,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[31988,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[31989,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[31990,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[31991,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[31992,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[31993,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[31994,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[31995,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[31996,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[31997,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[31998,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[31999,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32000,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[32001,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[32002,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[32003,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32004,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[32005,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[32006,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32007,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[32008,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[32009,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[32010,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[32011,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[32012,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32013,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[32014,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[32015,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32016,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[32017,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[32018,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[32019,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[32020,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[32021,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32022,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[32023,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[32024,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32025,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[32026,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[32027,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32028,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[32029,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[32030,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[32031,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[32032,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[32033,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[32034,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[32035,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[32036,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[32037,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[32038,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[32039,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[32040,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[32041,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[32042,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[32043,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[32044,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[32045,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[32046,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[32047,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32048,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[32049,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[32050,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[32051,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[32052,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[32053,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[32054,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32055,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[32056,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[32057,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[32058,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[32059,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[32060,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[32061,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[32062,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32063,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[32064,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32065,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[32066,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[32067,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[32068,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32069,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[32070,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[32071,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32072,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[32073,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[32074,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[32075,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[32076,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[32077,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[32078,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[32079,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[32080,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32081,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[32082,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[32083,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[32084,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[32085,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[32086,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32087,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[32088,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[32089,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[32090,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[32091,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[32092,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[32135,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32136,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32138,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32139,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32141,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32142,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32144,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32145,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32146,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32147,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32148,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32150,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32151,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32154,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[32155,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[32157,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32158,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32159,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32160,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32161,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32163,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32164,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32166,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32167,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32169,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32170,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32180,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32181,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32182,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32183,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32184,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32185,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32186,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32187,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32188,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32189,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32192,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32193,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32194,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32195,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32196,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32197,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32198,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32199,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32200,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32201,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32203,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[32204,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[32211,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[32212,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[32213,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[32214,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[32250,"impl-Mul%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32251,"impl-Mul%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32252,"impl-Mul-for-Simd%3Cu64,+N%3E"],[32253,"impl-Mul%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32254,"impl-Mul-for-Simd%3Ci8,+N%3E"],[32255,"impl-Mul-for-Simd%3Ci16,+N%3E"],[32256,"impl-Mul-for-Simd%3Ci32,+N%3E"],[32257,"impl-Mul-for-Simd%3Ci64,+N%3E"],[32258,"impl-Mul-for-Simd%3Cisize,+N%3E"],[32259,"impl-Mul-for-Simd%3Cu8,+N%3E"],[32260,"impl-Mul-for-Simd%3Cu16,+N%3E"],[32261,"impl-Mul-for-Simd%3Cu32,+N%3E"],[32262,"impl-Mul-for-Simd%3Cf64,+N%3E"],[32263,"impl-Mul-for-Simd%3Cf32,+N%3E"],[32264,"impl-Mul-for-Simd%3Cusize,+N%3E"],[32267,"impl-Neg-for-Simd%3Ci64,+N%3E"],[32268,"impl-Neg-for-Simd%3Cisize,+N%3E"],[32269,"impl-Neg-for-Simd%3Ci8,+N%3E"],[32270,"impl-Neg-for-Simd%3Ci16,+N%3E"],[32271,"impl-Neg-for-Simd%3Cf64,+N%3E"],[32272,"impl-Neg-for-Simd%3Ci32,+N%3E"],[32273,"impl-Neg-for-Simd%3Cf32,+N%3E"],[32275,"impl-Not-for-Simd%3Ci32,+N%3E"],[32276,"impl-Not-for-Simd%3Cu8,+N%3E"],[32277,"impl-Not-for-Simd%3Cusize,+N%3E"],[32278,"impl-Not-for-Simd%3Cu16,+N%3E"],[32279,"impl-Not-for-Simd%3Cu32,+N%3E"],[32280,"impl-Not-for-Simd%3Cisize,+N%3E"],[32281,"impl-Not-for-Simd%3Ci64,+N%3E"],[32282,"impl-Not-for-Simd%3Cu64,+N%3E"],[32283,"impl-Not-for-Simd%3Ci16,+N%3E"],[32284,"impl-Not-for-Simd%3Ci8,+N%3E"],[32287,"impl-Product-for-Simd%3Ci16,+N%3E"],[32288,"impl-Product-for-Simd%3Cf32,+N%3E"],[32289,"impl-Product-for-Simd%3Cf64,+N%3E"],[32290,"impl-Product-for-Simd%3Cisize,+N%3E"],[32291,"impl-Product-for-Simd%3Cu8,+N%3E"],[32292,"impl-Product%3C%26Simd%3Cf64,+N%3E%3E-for-Simd%3Cf64,+N%3E"],[32293,"impl-Product%3C%26Simd%3Cisize,+N%3E%3E-for-Simd%3Cisize,+N%3E"],[32294,"impl-Product-for-Simd%3Cu16,+N%3E"],[32295,"impl-Product%3C%26Simd%3Cu16,+N%3E%3E-for-Simd%3Cu16,+N%3E"],[32296,"impl-Product-for-Simd%3Ci8,+N%3E"],[32297,"impl-Product-for-Simd%3Cu64,+N%3E"],[32298,"impl-Product%3C%26Simd%3Cu8,+N%3E%3E-for-Simd%3Cu8,+N%3E"],[32299,"impl-Product%3C%26Simd%3Cf32,+N%3E%3E-for-Simd%3Cf32,+N%3E"],[32300,"impl-Product%3C%26Simd%3Cu64,+N%3E%3E-for-Simd%3Cu64,+N%3E"],[32301,"impl-Product-for-Simd%3Cu32,+N%3E"],[32302,"impl-Product%3C%26Simd%3Cu32,+N%3E%3E-for-Simd%3Cu32,+N%3E"],[32303,"impl-Product%3C%26Simd%3Ci8,+N%3E%3E-for-Simd%3Ci8,+N%3E"],[32304,"impl-Product-for-Simd%3Ci32,+N%3E"],[32305,"impl-Product%3C%26Simd%3Ci32,+N%3E%3E-for-Simd%3Ci32,+N%3E"],[32306,"impl-Product%3C%26Simd%3Cusize,+N%3E%3E-for-Simd%3Cusize,+N%3E"],[32307,"impl-Product-for-Simd%3Cusize,+N%3E"],[32308,"impl-Product-for-Simd%3Ci64,+N%3E"],[32309,"impl-Product%3C%26Simd%3Ci64,+N%3E%3E-for-Simd%3Ci64,+N%3E"],[32310,"impl-Product%3C%26Simd%3Ci16,+N%3E%3E-for-Simd%3Ci16,+N%3E"],[32312,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32313,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32316,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32317,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32318,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32319,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32320,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32321,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32322,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32323,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32324,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32325,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32329,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32330,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32331,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32332,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32333,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32334,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32335,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32336,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32337,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32338,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32339,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32340,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32344,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32345,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32346,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32347,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32348,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32349,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32350,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32351,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32352,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32353,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32354,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32355,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32358,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32359,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32360,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32361,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32362,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32363,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32364,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32365,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32366,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32367,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32371,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32372,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32373,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32374,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32375,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32376,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32377,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32378,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32379,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32380,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32381,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32382,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32386,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32387,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32388,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32389,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32390,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32391,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32392,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32393,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32394,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32395,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32396,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32397,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32400,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32401,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32402,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32403,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32404,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32405,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32406,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32407,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32408,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32409,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32410,"impl-Rem-for-Simd%3Ci8,+N%3E"],[32411,"impl-Rem-for-Simd%3Cf32,+N%3E"],[32412,"impl-Rem-for-Simd%3Cu8,+N%3E"],[32413,"impl-Rem-for-Simd%3Cu32,+N%3E"],[32414,"impl-Rem-for-Simd%3Cisize,+N%3E"],[32415,"impl-Rem%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32416,"impl-Rem%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32417,"impl-Rem%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32418,"impl-Rem-for-Simd%3Cu16,+N%3E"],[32419,"impl-Rem-for-Simd%3Ci64,+N%3E"],[32420,"impl-Rem-for-Simd%3Cu64,+N%3E"],[32421,"impl-Rem-for-Simd%3Cusize,+N%3E"],[32422,"impl-Rem-for-Simd%3Cf64,+N%3E"],[32423,"impl-Rem-for-Simd%3Ci32,+N%3E"],[32424,"impl-Rem-for-Simd%3Ci16,+N%3E"],[32430,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32431,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32432,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32433,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32434,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32435,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32436,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32437,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32438,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32439,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32443,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32444,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32445,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32446,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32447,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32450,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32451,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32452,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32453,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32454,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32455,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32456,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32457,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32458,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32459,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32461,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32462,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32463,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32464,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32465,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32468,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32469,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32470,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32471,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32472,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32473,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32474,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32475,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32476,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32477,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32487,"impl-Shl%3C%26u32%3E-for-Simd%3Cu32,+N%3E"],[32488,"impl-Shl%3Ci32%3E-for-Simd%3Ci32,+N%3E"],[32489,"impl-Shl%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32490,"impl-Shl%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32491,"impl-Shl%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32492,"impl-Shl%3C%26i16%3E-for-%26Simd%3Ci16,+N%3E"],[32493,"impl-Shl-for-Simd%3Cusize,+N%3E"],[32494,"impl-Shl%3Ci8%3E-for-Simd%3Ci8,+N%3E"],[32495,"impl-Shl-for-Simd%3Cu64,+N%3E"],[32496,"impl-Shl-for-Simd%3Cu32,+N%3E"],[32497,"impl-Shl%3Cisize%3E-for-Simd%3Cisize,+N%3E"],[32498,"impl-Shl%3C%26isize%3E-for-Simd%3Cisize,+N%3E"],[32499,"impl-Shl%3Cisize%3E-for-%26Simd%3Cisize,+N%3E"],[32500,"impl-Shl%3C%26isize%3E-for-%26Simd%3Cisize,+N%3E"],[32501,"impl-Shl%3Cu8%3E-for-Simd%3Cu8,+N%3E"],[32502,"impl-Shl%3C%26u8%3E-for-Simd%3Cu8,+N%3E"],[32503,"impl-Shl%3Cu8%3E-for-%26Simd%3Cu8,+N%3E"],[32504,"impl-Shl%3C%26u8%3E-for-%26Simd%3Cu8,+N%3E"],[32505,"impl-Shl%3Cu16%3E-for-Simd%3Cu16,+N%3E"],[32506,"impl-Shl%3C%26u16%3E-for-Simd%3Cu16,+N%3E"],[32507,"impl-Shl-for-Simd%3Cu16,+N%3E"],[32508,"impl-Shl%3Cu16%3E-for-%26Simd%3Cu16,+N%3E"],[32509,"impl-Shl%3C%26u16%3E-for-%26Simd%3Cu16,+N%3E"],[32510,"impl-Shl%3Cu32%3E-for-Simd%3Cu32,+N%3E"],[32511,"impl-Shl%3Ci64%3E-for-%26Simd%3Ci64,+N%3E"],[32512,"impl-Shl%3Ci16%3E-for-%26Simd%3Ci16,+N%3E"],[32513,"impl-Shl%3C%26i8%3E-for-Simd%3Ci8,+N%3E"],[32514,"impl-Shl-for-Simd%3Cu8,+N%3E"],[32515,"impl-Shl-for-Simd%3Cisize,+N%3E"],[32516,"impl-Shl-for-Simd%3Ci64,+N%3E"],[32517,"impl-Shl-for-Simd%3Ci32,+N%3E"],[32518,"impl-Shl-for-Simd%3Ci16,+N%3E"],[32519,"impl-Shl-for-Simd%3Ci8,+N%3E"],[32520,"impl-Shl%3C%26usize%3E-for-%26Simd%3Cusize,+N%3E"],[32521,"impl-Shl%3Ci64%3E-for-Simd%3Ci64,+N%3E"],[32522,"impl-Shl%3Cu32%3E-for-%26Simd%3Cu32,+N%3E"],[32523,"impl-Shl%3C%26i64%3E-for-%26Simd%3Ci64,+N%3E"],[32524,"impl-Shl%3Ci8%3E-for-%26Simd%3Ci8,+N%3E"],[32525,"impl-Shl%3C%26i8%3E-for-%26Simd%3Ci8,+N%3E"],[32526,"impl-Shl%3C%26u32%3E-for-%26Simd%3Cu32,+N%3E"],[32527,"impl-Shl%3Cu64%3E-for-Simd%3Cu64,+N%3E"],[32528,"impl-Shl%3C%26i32%3E-for-%26Simd%3Ci32,+N%3E"],[32529,"impl-Shl%3Ci32%3E-for-%26Simd%3Ci32,+N%3E"],[32530,"impl-Shl%3C%26i32%3E-for-Simd%3Ci32,+N%3E"],[32531,"impl-Shl%3C%26u64%3E-for-Simd%3Cu64,+N%3E"],[32532,"impl-Shl%3Ci16%3E-for-Simd%3Ci16,+N%3E"],[32533,"impl-Shl%3Cu64%3E-for-%26Simd%3Cu64,+N%3E"],[32534,"impl-Shl%3C%26u64%3E-for-%26Simd%3Cu64,+N%3E"],[32535,"impl-Shl%3Cusize%3E-for-Simd%3Cusize,+N%3E"],[32536,"impl-Shl%3C%26i16%3E-for-Simd%3Ci16,+N%3E"],[32537,"impl-Shl%3C%26usize%3E-for-Simd%3Cusize,+N%3E"],[32538,"impl-Shl%3Cusize%3E-for-%26Simd%3Cusize,+N%3E"],[32539,"impl-Shl%3C%26i64%3E-for-Simd%3Ci64,+N%3E"],[32541,"impl-Shr%3Ci64%3E-for-%26Simd%3Ci64,+N%3E"],[32542,"impl-Shr%3Cisize%3E-for-Simd%3Cisize,+N%3E"],[32543,"impl-Shr%3C%26u16%3E-for-Simd%3Cu16,+N%3E"],[32544,"impl-Shr%3Cu16%3E-for-Simd%3Cu16,+N%3E"],[32545,"impl-Shr%3C%26u8%3E-for-%26Simd%3Cu8,+N%3E"],[32546,"impl-Shr%3Cu8%3E-for-%26Simd%3Cu8,+N%3E"],[32547,"impl-Shr%3C%26u8%3E-for-Simd%3Cu8,+N%3E"],[32548,"impl-Shr%3C%26u64%3E-for-%26Simd%3Cu64,+N%3E"],[32549,"impl-Shr%3Cusize%3E-for-Simd%3Cusize,+N%3E"],[32550,"impl-Shr%3C%26usize%3E-for-Simd%3Cusize,+N%3E"],[32551,"impl-Shr%3Cu8%3E-for-Simd%3Cu8,+N%3E"],[32552,"impl-Shr%3Cusize%3E-for-%26Simd%3Cusize,+N%3E"],[32553,"impl-Shr%3C%26usize%3E-for-%26Simd%3Cusize,+N%3E"],[32554,"impl-Shr-for-Simd%3Ci8,+N%3E"],[32555,"impl-Shr-for-Simd%3Ci16,+N%3E"],[32556,"impl-Shr-for-Simd%3Ci32,+N%3E"],[32557,"impl-Shr%3C%26isize%3E-for-%26Simd%3Cisize,+N%3E"],[32558,"impl-Shr%3Cu64%3E-for-%26Simd%3Cu64,+N%3E"],[32559,"impl-Shr%3C%26u64%3E-for-Simd%3Cu64,+N%3E"],[32560,"impl-Shr%3Cu64%3E-for-Simd%3Cu64,+N%3E"],[32561,"impl-Shr%3C%26u32%3E-for-%26Simd%3Cu32,+N%3E"],[32562,"impl-Shr%3Cu32%3E-for-%26Simd%3Cu32,+N%3E"],[32563,"impl-Shr%3C%26u32%3E-for-Simd%3Cu32,+N%3E"],[32564,"impl-Shr%3Cu32%3E-for-Simd%3Cu32,+N%3E"],[32565,"impl-Shr%3C%26u16%3E-for-%26Simd%3Cu16,+N%3E"],[32566,"impl-Shr-for-Simd%3Ci64,+N%3E"],[32567,"impl-Shr-for-Simd%3Cisize,+N%3E"],[32568,"impl-Shr-for-Simd%3Cu8,+N%3E"],[32569,"impl-Shr-for-Simd%3Cu16,+N%3E"],[32570,"impl-Shr-for-Simd%3Cu32,+N%3E"],[32571,"impl-Shr-for-Simd%3Cu64,+N%3E"],[32572,"impl-Shr-for-Simd%3Cusize,+N%3E"],[32573,"impl-Shr%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32574,"impl-Shr%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32575,"impl-Shr%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32576,"impl-Shr%3Ci8%3E-for-Simd%3Ci8,+N%3E"],[32577,"impl-Shr%3C%26i8%3E-for-Simd%3Ci8,+N%3E"],[32578,"impl-Shr%3Cisize%3E-for-%26Simd%3Cisize,+N%3E"],[32579,"impl-Shr%3C%26i8%3E-for-%26Simd%3Ci8,+N%3E"],[32580,"impl-Shr%3Ci16%3E-for-Simd%3Ci16,+N%3E"],[32581,"impl-Shr%3C%26i16%3E-for-Simd%3Ci16,+N%3E"],[32582,"impl-Shr%3Ci16%3E-for-%26Simd%3Ci16,+N%3E"],[32583,"impl-Shr%3C%26i16%3E-for-%26Simd%3Ci16,+N%3E"],[32584,"impl-Shr%3Ci32%3E-for-Simd%3Ci32,+N%3E"],[32585,"impl-Shr%3C%26i32%3E-for-Simd%3Ci32,+N%3E"],[32586,"impl-Shr%3Ci32%3E-for-%26Simd%3Ci32,+N%3E"],[32587,"impl-Shr%3C%26i32%3E-for-%26Simd%3Ci32,+N%3E"],[32588,"impl-Shr%3Ci64%3E-for-Simd%3Ci64,+N%3E"],[32589,"impl-Shr%3C%26i64%3E-for-Simd%3Ci64,+N%3E"],[32590,"impl-Shr%3Cu16%3E-for-%26Simd%3Cu16,+N%3E"],[32591,"impl-Shr%3C%26isize%3E-for-Simd%3Cisize,+N%3E"],[32592,"impl-Shr%3C%26i64%3E-for-%26Simd%3Ci64,+N%3E"],[32593,"impl-Shr%3Ci8%3E-for-%26Simd%3Ci8,+N%3E"],[32597,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32598,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32599,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32600,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32601,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32602,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32603,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32606,"impl-SimdOrd-for-Mask%3Ci8,+N%3E"],[32607,"impl-SimdOrd-for-Mask%3Cisize,+N%3E"],[32608,"impl-SimdOrd-for-Mask%3Ci16,+N%3E"],[32609,"impl-SimdOrd-for-Mask%3Ci64,+N%3E"],[32610,"impl-SimdOrd-for-Mask%3Ci32,+N%3E"],[32611,"impl-SimdOrd-for-Simd%3C*const+T,+N%3E"],[32612,"impl-SimdOrd-for-Simd%3Cu64,+N%3E"],[32613,"impl-SimdOrd-for-Simd%3Cusize,+N%3E"],[32614,"impl-SimdOrd-for-Simd%3Ci8,+N%3E"],[32615,"impl-SimdOrd-for-Simd%3Cu8,+N%3E"],[32616,"impl-SimdOrd-for-Simd%3Ci16,+N%3E"],[32617,"impl-SimdOrd-for-Simd%3Ci32,+N%3E"],[32618,"impl-SimdOrd-for-Simd%3Ci64,+N%3E"],[32619,"impl-SimdOrd-for-Simd%3Cu32,+N%3E"],[32620,"impl-SimdOrd-for-Simd%3Cisize,+N%3E"],[32621,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32622,"impl-SimdOrd-for-Simd%3Cu16,+N%3E"],[32623,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32624,"impl-SimdOrd-for-Simd%3C*mut+T,+N%3E"],[32626,"impl-SimdPartialEq-for-Mask%3Cisize,+N%3E"],[32627,"impl-SimdPartialEq-for-Mask%3Ci8,+N%3E"],[32628,"impl-SimdPartialEq-for-Mask%3Ci32,+N%3E"],[32629,"impl-SimdPartialEq-for-Mask%3Ci64,+N%3E"],[32630,"impl-SimdPartialEq-for-Mask%3Ci16,+N%3E"],[32631,"impl-SimdPartialEq-for-Simd%3Cu32,+N%3E"],[32632,"impl-SimdPartialEq-for-Simd%3Cisize,+N%3E"],[32633,"impl-SimdPartialEq-for-Simd%3Cusize,+N%3E"],[32634,"impl-SimdPartialEq-for-Simd%3Cu64,+N%3E"],[32635,"impl-SimdPartialEq-for-Simd%3C*const+T,+N%3E"],[32636,"impl-SimdPartialEq-for-Simd%3Ci8,+N%3E"],[32637,"impl-SimdPartialEq-for-Simd%3Ci16,+N%3E"],[32638,"impl-SimdPartialEq-for-Simd%3C*mut+T,+N%3E"],[32639,"impl-SimdPartialEq-for-Simd%3Cf64,+N%3E"],[32640,"impl-SimdPartialEq-for-Simd%3Ci32,+N%3E"],[32641,"impl-SimdPartialEq-for-Simd%3Cu16,+N%3E"],[32642,"impl-SimdPartialEq-for-Simd%3Cu8,+N%3E"],[32643,"impl-SimdPartialEq-for-Simd%3Cf32,+N%3E"],[32644,"impl-SimdPartialEq-for-Simd%3Ci64,+N%3E"],[32646,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32647,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32648,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32649,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32650,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32651,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32652,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32653,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32654,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32655,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32656,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32657,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32658,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32659,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32660,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32661,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32662,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32663,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32664,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32666,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32667,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32668,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32669,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32670,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32671,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32672,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32673,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32674,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32675,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32676,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32677,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32678,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32679,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32680,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32681,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32682,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32683,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32684,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32686,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32687,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32688,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32689,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32690,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32691,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32692,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32693,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32694,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32695,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32696,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32697,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32698,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32699,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32700,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32701,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32702,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32703,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32704,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32706,"impl-SimdPartialOrd-for-Mask%3Cisize,+N%3E"],[32707,"impl-SimdPartialOrd-for-Mask%3Ci8,+N%3E"],[32708,"impl-SimdPartialOrd-for-Mask%3Ci16,+N%3E"],[32709,"impl-SimdPartialOrd-for-Mask%3Ci32,+N%3E"],[32710,"impl-SimdPartialOrd-for-Mask%3Ci64,+N%3E"],[32711,"impl-SimdPartialOrd-for-Simd%3Ci8,+N%3E"],[32712,"impl-SimdPartialOrd-for-Simd%3C*mut+T,+N%3E"],[32713,"impl-SimdPartialOrd-for-Simd%3Ci32,+N%3E"],[32714,"impl-SimdPartialOrd-for-Simd%3Ci16,+N%3E"],[32715,"impl-SimdPartialOrd-for-Simd%3Cf64,+N%3E"],[32716,"impl-SimdPartialOrd-for-Simd%3Ci64,+N%3E"],[32717,"impl-SimdPartialOrd-for-Simd%3Cu8,+N%3E"],[32718,"impl-SimdPartialOrd-for-Simd%3Cusize,+N%3E"],[32719,"impl-SimdPartialOrd-for-Simd%3Cu16,+N%3E"],[32720,"impl-SimdPartialOrd-for-Simd%3Cu32,+N%3E"],[32721,"impl-SimdPartialOrd-for-Simd%3C*const+T,+N%3E"],[32722,"impl-SimdPartialOrd-for-Simd%3Cu64,+N%3E"],[32723,"impl-SimdPartialOrd-for-Simd%3Cf32,+N%3E"],[32724,"impl-SimdPartialOrd-for-Simd%3Cisize,+N%3E"],[32727,"impl-SimdOrd-for-Mask%3Ci8,+N%3E"],[32728,"impl-SimdOrd-for-Mask%3Cisize,+N%3E"],[32729,"impl-SimdOrd-for-Mask%3Ci16,+N%3E"],[32730,"impl-SimdOrd-for-Mask%3Ci32,+N%3E"],[32731,"impl-SimdOrd-for-Mask%3Ci64,+N%3E"],[32732,"impl-SimdOrd-for-Simd%3Cu64,+N%3E"],[32733,"impl-SimdOrd-for-Simd%3Ci64,+N%3E"],[32734,"impl-SimdOrd-for-Simd%3C*mut+T,+N%3E"],[32735,"impl-SimdOrd-for-Simd%3Ci32,+N%3E"],[32736,"impl-SimdOrd-for-Simd%3Ci16,+N%3E"],[32737,"impl-SimdOrd-for-Simd%3Ci8,+N%3E"],[32738,"impl-SimdOrd-for-Simd%3Cusize,+N%3E"],[32739,"impl-SimdOrd-for-Simd%3Cisize,+N%3E"],[32740,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32741,"impl-SimdOrd-for-Simd%3Cu32,+N%3E"],[32742,"impl-SimdOrd-for-Simd%3Cu16,+N%3E"],[32743,"impl-SimdOrd-for-Simd%3Cu8,+N%3E"],[32744,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32745,"impl-SimdOrd-for-Simd%3C*const+T,+N%3E"],[32748,"impl-SimdOrd-for-Mask%3Ci32,+N%3E"],[32749,"impl-SimdOrd-for-Mask%3Ci8,+N%3E"],[32750,"impl-SimdOrd-for-Mask%3Cisize,+N%3E"],[32751,"impl-SimdOrd-for-Mask%3Ci64,+N%3E"],[32752,"impl-SimdOrd-for-Mask%3Ci16,+N%3E"],[32753,"impl-SimdOrd-for-Simd%3Ci64,+N%3E"],[32754,"impl-SimdOrd-for-Simd%3Cisize,+N%3E"],[32755,"impl-SimdOrd-for-Simd%3Ci8,+N%3E"],[32756,"impl-SimdOrd-for-Simd%3C*mut+T,+N%3E"],[32757,"impl-SimdOrd-for-Simd%3Cu8,+N%3E"],[32758,"impl-SimdOrd-for-Simd%3Ci32,+N%3E"],[32759,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32760,"impl-SimdOrd-for-Simd%3Cu16,+N%3E"],[32761,"impl-SimdOrd-for-Simd%3Cusize,+N%3E"],[32762,"impl-SimdOrd-for-Simd%3Ci16,+N%3E"],[32763,"impl-SimdOrd-for-Simd%3Cu32,+N%3E"],[32764,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32765,"impl-SimdOrd-for-Simd%3C*const+T,+N%3E"],[32766,"impl-SimdOrd-for-Simd%3Cu64,+N%3E"],[32768,"impl-SimdPartialEq-for-Mask%3Ci16,+N%3E"],[32769,"impl-SimdPartialEq-for-Mask%3Ci8,+N%3E"],[32770,"impl-SimdPartialEq-for-Mask%3Cisize,+N%3E"],[32771,"impl-SimdPartialEq-for-Mask%3Ci64,+N%3E"],[32772,"impl-SimdPartialEq-for-Mask%3Ci32,+N%3E"],[32773,"impl-SimdPartialEq-for-Simd%3Cisize,+N%3E"],[32774,"impl-SimdPartialEq-for-Simd%3Ci8,+N%3E"],[32775,"impl-SimdPartialEq-for-Simd%3Cu16,+N%3E"],[32776,"impl-SimdPartialEq-for-Simd%3C*mut+T,+N%3E"],[32777,"impl-SimdPartialEq-for-Simd%3Ci32,+N%3E"],[32778,"impl-SimdPartialEq-for-Simd%3C*const+T,+N%3E"],[32779,"impl-SimdPartialEq-for-Simd%3Cusize,+N%3E"],[32780,"impl-SimdPartialEq-for-Simd%3Ci64,+N%3E"],[32781,"impl-SimdPartialEq-for-Simd%3Cu8,+N%3E"],[32782,"impl-SimdPartialEq-for-Simd%3Cu64,+N%3E"],[32783,"impl-SimdPartialEq-for-Simd%3Ci16,+N%3E"],[32784,"impl-SimdPartialEq-for-Simd%3Cf64,+N%3E"],[32785,"impl-SimdPartialEq-for-Simd%3Cf32,+N%3E"],[32786,"impl-SimdPartialEq-for-Simd%3Cu32,+N%3E"],[32788,"impl-StdFloat-for-Simd%3Cf32,+N%3E"],[32789,"impl-StdFloat-for-Simd%3Cf64,+N%3E"],[32795,"impl-Sub-for-Simd%3Ci16,+N%3E"],[32796,"impl-Sub%3CSimd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32797,"impl-Sub-for-Simd%3Cu64,+N%3E"],[32798,"impl-Sub%3C%26Simd%3CT,+N%3E%3E-for-Simd%3CT,+N%3E"],[32799,"impl-Sub%3C%26Simd%3CT,+N%3E%3E-for-%26Simd%3CT,+N%3E"],[32800,"impl-Sub-for-Simd%3Ci8,+N%3E"],[32801,"impl-Sub-for-Simd%3Cu32,+N%3E"],[32802,"impl-Sub-for-Simd%3Ci32,+N%3E"],[32803,"impl-Sub-for-Simd%3Cf32,+N%3E"],[32804,"impl-Sub-for-Simd%3Ci64,+N%3E"],[32805,"impl-Sub-for-Simd%3Cisize,+N%3E"],[32806,"impl-Sub-for-Simd%3Cusize,+N%3E"],[32807,"impl-Sub-for-Simd%3Cu8,+N%3E"],[32808,"impl-Sub-for-Simd%3Cf64,+N%3E"],[32809,"impl-Sub-for-Simd%3Cu16,+N%3E"],[32811,"impl-Sum-for-Simd%3Cu32,+N%3E"],[32812,"impl-Sum%3C%26Simd%3Cf32,+N%3E%3E-for-Simd%3Cf32,+N%3E"],[32813,"impl-Sum-for-Simd%3Cisize,+N%3E"],[32814,"impl-Sum%3C%26Simd%3Ci64,+N%3E%3E-for-Simd%3Ci64,+N%3E"],[32815,"impl-Sum-for-Simd%3Ci64,+N%3E"],[32816,"impl-Sum%3C%26Simd%3Ci32,+N%3E%3E-for-Simd%3Ci32,+N%3E"],[32817,"impl-Sum-for-Simd%3Ci32,+N%3E"],[32818,"impl-Sum%3C%26Simd%3Ci16,+N%3E%3E-for-Simd%3Ci16,+N%3E"],[32819,"impl-Sum-for-Simd%3Ci16,+N%3E"],[32820,"impl-Sum%3C%26Simd%3Ci8,+N%3E%3E-for-Simd%3Ci8,+N%3E"],[32821,"impl-Sum-for-Simd%3Ci8,+N%3E"],[32822,"impl-Sum%3C%26Simd%3Cusize,+N%3E%3E-for-Simd%3Cusize,+N%3E"],[32823,"impl-Sum-for-Simd%3Cusize,+N%3E"],[32824,"impl-Sum-for-Simd%3Cf32,+N%3E"],[32825,"impl-Sum-for-Simd%3Cu64,+N%3E"],[32826,"impl-Sum%3C%26Simd%3Cu32,+N%3E%3E-for-Simd%3Cu32,+N%3E"],[32827,"impl-Sum%3C%26Simd%3Cisize,+N%3E%3E-for-Simd%3Cisize,+N%3E"],[32828,"impl-Sum%3C%26Simd%3Cu16,+N%3E%3E-for-Simd%3Cu16,+N%3E"],[32829,"impl-Sum-for-Simd%3Cu16,+N%3E"],[32830,"impl-Sum%3C%26Simd%3Cu8,+N%3E%3E-for-Simd%3Cu8,+N%3E"],[32831,"impl-Sum-for-Simd%3Cu8,+N%3E"],[32832,"impl-Sum%3C%26Simd%3Cf64,+N%3E%3E-for-Simd%3Cf64,+N%3E"],[32833,"impl-Sum-for-Simd%3Cf64,+N%3E"],[32834,"impl-Sum%3C%26Simd%3Cu64,+N%3E%3E-for-Simd%3Cu64,+N%3E"],[32837,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[32838,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[32839,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[32840,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[32841,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[32842,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[32843,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[32844,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[32845,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[32846,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[32852,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[32853,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[32854,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[32855,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[32856,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32857,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32858,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[32859,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[32860,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[32861,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[32862,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[32863,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32864,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32865,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[32866,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[32867,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[32868,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[32869,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[32870,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[32871,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[32872,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[32873,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[32874,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[32875,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[32876,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[32877,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32878,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[32879,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[32880,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[32881,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[32882,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[32883,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[32884,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[32885,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[32886,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[32887,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[32888,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32889,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[32890,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[32891,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[32892,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[32893,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[32894,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[32895,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[32896,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32897,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32898,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[32899,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[32900,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[32901,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[32902,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[32903,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[32904,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[32905,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[32906,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[32907,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[32908,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[32909,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[32910,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[32911,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[32912,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[32916,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32917,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32919,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32920,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32923,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[32924,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[32925,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[32926,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[32927,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32928,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[32929,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32930,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[32931,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[32932,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[32933,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[32934,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[32935,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[32936,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[32937,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[32938,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[32939,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[32940,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[32941,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[32942,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[32943,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[32944,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[32945,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[32946,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[32947,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[32948,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[32949,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[32950,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[32951,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[32952,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32953,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[32954,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[32955,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[32956,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[32957,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[32958,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[32959,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[32960,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[32961,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32962,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[32963,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[32964,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[32965,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[32966,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[32967,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[32968,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[32969,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[32970,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[32971,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[32972,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32973,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[32974,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[32975,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[32976,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[32977,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32978,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[32979,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[32980,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32981,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[32982,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[32983,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[32984,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[32985,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32986,"impl-ToBytes-for-Simd%3Ci64,+4%3E"],[32987,"impl-ToBytes-for-Simd%3Cu8,+32%3E"],[32988,"impl-ToBytes-for-Simd%3Cu64,+2%3E"],[32989,"impl-ToBytes-for-Simd%3Cu64,+4%3E"],[32990,"impl-ToBytes-for-Simd%3Cisize,+4%3E"],[32991,"impl-ToBytes-for-Simd%3Cisize,+2%3E"],[32992,"impl-ToBytes-for-Simd%3Ci32,+4%3E"],[32993,"impl-ToBytes-for-Simd%3Cf64,+1%3E"],[32994,"impl-ToBytes-for-Simd%3Cu32,+16%3E"],[32995,"impl-ToBytes-for-Simd%3Cu64,+8%3E"],[32996,"impl-ToBytes-for-Simd%3Ci64,+2%3E"],[32997,"impl-ToBytes-for-Simd%3Cu32,+8%3E"],[32998,"impl-ToBytes-for-Simd%3Cusize,+1%3E"],[32999,"impl-ToBytes-for-Simd%3Cf32,+16%3E"],[33000,"impl-ToBytes-for-Simd%3Cu32,+4%3E"],[33001,"impl-ToBytes-for-Simd%3Cusize,+2%3E"],[33002,"impl-ToBytes-for-Simd%3Cf32,+8%3E"],[33003,"impl-ToBytes-for-Simd%3Cu32,+2%3E"],[33004,"impl-ToBytes-for-Simd%3Ci32,+2%3E"],[33005,"impl-ToBytes-for-Simd%3Cusize,+4%3E"],[33006,"impl-ToBytes-for-Simd%3Cu32,+1%3E"],[33007,"impl-ToBytes-for-Simd%3Ci64,+1%3E"],[33008,"impl-ToBytes-for-Simd%3Ci32,+8%3E"],[33009,"impl-ToBytes-for-Simd%3Cu16,+32%3E"],[33010,"impl-ToBytes-for-Simd%3Cusize,+8%3E"],[33011,"impl-ToBytes-for-Simd%3Cf32,+4%3E"],[33012,"impl-ToBytes-for-Simd%3Cu16,+16%3E"],[33013,"impl-ToBytes-for-Simd%3Ci8,+1%3E"],[33014,"impl-ToBytes-for-Simd%3Ci16,+8%3E"],[33015,"impl-ToBytes-for-Simd%3Cu16,+8%3E"],[33016,"impl-ToBytes-for-Simd%3Ci32,+1%3E"],[33017,"impl-ToBytes-for-Simd%3Ci64,+8%3E"],[33018,"impl-ToBytes-for-Simd%3Ci8,+2%3E"],[33019,"impl-ToBytes-for-Simd%3Cf64,+8%3E"],[33020,"impl-ToBytes-for-Simd%3Cf32,+2%3E"],[33021,"impl-ToBytes-for-Simd%3Cf64,+4%3E"],[33022,"impl-ToBytes-for-Simd%3Ci16,+4%3E"],[33023,"impl-ToBytes-for-Simd%3Cf32,+1%3E"],[33024,"impl-ToBytes-for-Simd%3Ci16,+2%3E"],[33025,"impl-ToBytes-for-Simd%3Ci32,+16%3E"],[33026,"impl-ToBytes-for-Simd%3Cisize,+8%3E"],[33027,"impl-ToBytes-for-Simd%3Cu8,+1%3E"],[33028,"impl-ToBytes-for-Simd%3Cisize,+1%3E"],[33029,"impl-ToBytes-for-Simd%3Ci16,+1%3E"],[33030,"impl-ToBytes-for-Simd%3Cu8,+2%3E"],[33031,"impl-ToBytes-for-Simd%3Cu8,+4%3E"],[33032,"impl-ToBytes-for-Simd%3Ci8,+64%3E"],[33033,"impl-ToBytes-for-Simd%3Cu8,+8%3E"],[33034,"impl-ToBytes-for-Simd%3Cu16,+4%3E"],[33035,"impl-ToBytes-for-Simd%3Ci8,+4%3E"],[33036,"impl-ToBytes-for-Simd%3Cf64,+2%3E"],[33037,"impl-ToBytes-for-Simd%3Cu16,+2%3E"],[33038,"impl-ToBytes-for-Simd%3Ci16,+32%3E"],[33039,"impl-ToBytes-for-Simd%3Cu8,+16%3E"],[33040,"impl-ToBytes-for-Simd%3Cu16,+1%3E"],[33041,"impl-ToBytes-for-Simd%3Ci8,+8%3E"],[33042,"impl-ToBytes-for-Simd%3Ci8,+16%3E"],[33043,"impl-ToBytes-for-Simd%3Cu8,+64%3E"],[33044,"impl-ToBytes-for-Simd%3Ci16,+16%3E"],[33045,"impl-ToBytes-for-Simd%3Ci8,+32%3E"],[33046,"impl-ToBytes-for-Simd%3Cu64,+1%3E"],[33050,"impl-SimdFloat-for-Simd%3Cf64,+N%3E"],[33051,"impl-SimdFloat-for-Simd%3Cf32,+N%3E"],[33054,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[33055,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[33056,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[33057,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[33058,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[33059,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[33060,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[33061,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[33062,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[33063,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[33066,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[33067,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[33068,"impl-SimdInt-for-Simd%3Ci8,+N%3E"],[33069,"impl-SimdInt-for-Simd%3Ci32,+N%3E"],[33070,"impl-SimdInt-for-Simd%3Ci64,+N%3E"],[33071,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[33072,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[33073,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[33074,"impl-SimdInt-for-Simd%3Cisize,+N%3E"],[33075,"impl-SimdInt-for-Simd%3Ci16,+N%3E"],[33077,"impl-TryFrom%3C%26%5BT%5D%3E-for-Simd%3CT,+N%3E"],[33078,"impl-TryFrom%3C%26mut+%5BT%5D%3E-for-Simd%3CT,+N%3E"],[33121,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[33122,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[33125,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[33126,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[33129,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[33130,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[33132,"impl-SimdUint-for-Simd%3Cu64,+N%3E"],[33133,"impl-SimdUint-for-Simd%3Cu16,+N%3E"],[33134,"impl-SimdUint-for-Simd%3Cusize,+N%3E"],[33135,"impl-SimdUint-for-Simd%3Cu8,+N%3E"],[33136,"impl-SimdUint-for-Simd%3Cu32,+N%3E"],[33139,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[33140,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[33143,"impl-SimdMutPtr-for-Simd%3C*mut+T,+N%3E"],[33144,"impl-SimdConstPtr-for-Simd%3C*const+T,+N%3E"],[33349,"impl-Display-for-EscapeAscii%3C\'a%3E"],[33350,"impl-Debug-for-EscapeAscii%3C\'a%3E"],[33878,"impl-Display-for-Utf8Error"],[33879,"impl-Debug-for-Utf8Error"],[33880,"impl-Debug-for-ParseBoolError"],[33881,"impl-Display-for-ParseBoolError"],[33900,"impl-Display-for-EscapeDebug%3C\'a%3E"],[33901,"impl-Debug-for-EscapeDebug%3C\'a%3E"],[33902,"impl-Display-for-EscapeDefault%3C\'a%3E"],[33903,"impl-Debug-for-EscapeDefault%3C\'a%3E"],[33904,"impl-Display-for-EscapeUnicode%3C\'a%3E"],[33905,"impl-Debug-for-EscapeUnicode%3C\'a%3E"],[34348,"impl-AsRef%3C%5Bu8%5D%3E-for-Drain%3C\'a%3E"],[34349,"impl-AsRef%3Cstr%3E-for-Drain%3C\'a%3E"],[34350,"impl-AsRef%3COsStr%3E-for-String"],[34351,"impl-AsRef%3CPath%3E-for-String"],[34352,"impl-AsRef%3C%5Bu8%5D%3E-for-String"],[34353,"impl-AsRef%3Cstr%3E-for-String"],[34383,"impl-PartialEq%3C%26str%3E-for-String"],[34384,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[34385,"impl-PartialEq%3Cstr%3E-for-String"],[34386,"impl-PartialEq-for-String"],[34388,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[34389,"impl-Extend%3CBox%3Cstr,+A%3E%3E-for-String"],[34390,"impl-Extend%3C%26char%3E-for-String"],[34391,"impl-Extend%3C%26str%3E-for-String"],[34392,"impl-Extend%3CString%3E-for-String"],[34393,"impl-Extend%3Cchar%3E-for-String"],[34395,"impl-Extend%3CString%3E-for-String"],[34396,"impl-Extend%3CCow%3C\'a,+str%3E%3E-for-String"],[34397,"impl-Extend%3C%26str%3E-for-String"],[34398,"impl-Extend%3C%26char%3E-for-String"],[34399,"impl-Extend%3Cchar%3E-for-String"],[34400,"impl-Extend%3C%26char%3E-for-String"],[34401,"impl-Extend%3Cchar%3E-for-String"],[34403,"impl-Display-for-String"],[34404,"impl-Debug-for-String"],[34405,"impl-Debug-for-FromUtf8Error"],[34406,"impl-Display-for-FromUtf8Error"],[34407,"impl-Debug-for-FromUtf16Error"],[34408,"impl-Display-for-FromUtf16Error"],[34410,"impl-From%3CBox%3Cstr%3E%3E-for-String"],[34411,"impl-From%3Cchar%3E-for-String"],[34412,"impl-From%3C%26str%3E-for-String"],[34414,"impl-From%3CCow%3C\'a,+str%3E%3E-for-String"],[34415,"impl-From%3C%26String%3E-for-String"],[34416,"impl-From%3C%26mut+str%3E-for-String"],[34419,"impl-FromIterator%3CString%3E-for-String"],[34420,"impl-FromIterator%3CBox%3Cstr,+A%3E%3E-for-String"],[34421,"impl-FromIterator%3CCow%3C\'a,+str%3E%3E-for-String"],[34422,"impl-FromIterator%3C%26str%3E-for-String"],[34423,"impl-FromIterator%3C%26char%3E-for-String"],[34424,"impl-FromIterator%3Cchar%3E-for-String"],[34458,"impl-PartialEq%3C%26str%3E-for-String"],[34459,"impl-PartialEq%3Cstr%3E-for-String"],[34460,"impl-PartialEq%3CCow%3C\'a,+str%3E%3E-for-String"],[34546,"impl-Arc%3CMaybeUninit%3CT%3E,+A%3E"],[34547,"impl-Arc%3C%5BMaybeUninit%3CT%3E%5D,+A%3E"],[34621,"impl-Default-for-Arc%3C%5BT%5D%3E"],[34622,"impl-Default-for-Arc%3CT%3E"],[34623,"impl-Default-for-Arc%3CCStr%3E"],[34624,"impl-Default-for-Arc%3Cstr%3E"],[34669,"impl-Pointer-for-Arc%3CT,+A%3E"],[34670,"impl-Display-for-Arc%3CT,+A%3E"],[34671,"impl-Debug-for-Arc%3CT,+A%3E"],[34677,"impl-Display-for-PoisonError%3CT%3E"],[34678,"impl-Debug-for-PoisonError%3CT%3E"],[34679,"impl-Debug-for-TryLockError%3CT%3E"],[34680,"impl-Display-for-TryLockError%3CT%3E"],[34682,"impl-Debug-for-ReentrantLockGuard%3C\'_,+T%3E"],[34683,"impl-Display-for-ReentrantLockGuard%3C\'_,+T%3E"],[34686,"impl-Display-for-MutexGuard%3C\'_,+T%3E"],[34687,"impl-Debug-for-MutexGuard%3C\'_,+T%3E"],[34688,"impl-Debug-for-MappedMutexGuard%3C\'_,+T%3E"],[34689,"impl-Display-for-MappedMutexGuard%3C\'_,+T%3E"],[34690,"impl-Display-for-RwLockReadGuard%3C\'_,+T%3E"],[34691,"impl-Debug-for-RwLockReadGuard%3C\'_,+T%3E"],[34692,"impl-Display-for-RwLockWriteGuard%3C\'_,+T%3E"],[34693,"impl-Debug-for-RwLockWriteGuard%3C\'_,+T%3E"],[34694,"impl-Display-for-MappedRwLockReadGuard%3C\'_,+T%3E"],[34695,"impl-Debug-for-MappedRwLockReadGuard%3C\'_,+T%3E"],[34696,"impl-Debug-for-MappedRwLockWriteGuard%3C\'_,+T%3E"],[34697,"impl-Display-for-MappedRwLockWriteGuard%3C\'_,+T%3E"],[34704,"impl-From%3CPathBuf%3E-for-Arc%3CPath%3E"],[34707,"impl-From%3CCow%3C\'a,+B%3E%3E-for-Arc%3CB%3E"],[34708,"impl-From%3C%26CStr%3E-for-Arc%3CCStr%3E"],[34709,"impl-From%3C%5BT;+N%5D%3E-for-Arc%3C%5BT%5D%3E"],[34710,"impl-From%3C%26%5BT%5D%3E-for-Arc%3C%5BT%5D%3E"],[34711,"impl-From%3C%26str%3E-for-Arc%3Cstr%3E"],[34712,"impl-From%3CString%3E-for-Arc%3Cstr%3E"],[34713,"impl-From%3CT%3E-for-Arc%3CT%3E"],[34714,"impl-From%3CVec%3CT,+A%3E%3E-for-Arc%3C%5BT%5D,+A%3E"],[34715,"impl-From%3COsString%3E-for-Arc%3COsStr%3E"],[34716,"impl-From%3CCString%3E-for-Arc%3CCStr%3E"],[34717,"impl-From%3C%26OsStr%3E-for-Arc%3COsStr%3E"],[34718,"impl-From%3CArc%3Cstr%3E%3E-for-Arc%3C%5Bu8%5D%3E"],[34719,"impl-From%3C%26Path%3E-for-Arc%3CPath%3E"],[34720,"impl-From%3CBox%3CT,+A%3E%3E-for-Arc%3CT,+A%3E"],[35222,"impl-Pointer-for-AtomicPtr%3CT%3E"],[35223,"impl-Debug-for-AtomicPtr%3CT%3E"],[35512,"impl-Display-for-SendError%3CT%3E"],[35513,"impl-Debug-for-SendError%3CT%3E"],[35514,"impl-Display-for-RecvError"],[35515,"impl-Debug-for-RecvError"],[35516,"impl-Display-for-TryRecvError"],[35517,"impl-Debug-for-TryRecvError"],[35518,"impl-Display-for-RecvTimeoutError"],[35519,"impl-Debug-for-RecvTimeoutError"],[35520,"impl-Display-for-TrySendError%3CT%3E"],[35521,"impl-Debug-for-TrySendError%3CT%3E"],[35547,"impl-IntoIterator-for-Receiver%3CT%3E"],[35548,"impl-IntoIterator-for-%26Receiver%3CT%3E"],[35638,"impl-Try-for-Poll%3CResult%3CT,+E%3E%3E"],[35639,"impl-Try-for-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35680,"impl-From%3CArc%3CW%3E%3E-for-RawWaker"],[35681,"impl-From%3CRc%3CW%3E%3E-for-RawWaker"],[35685,"impl-Try-for-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35686,"impl-Try-for-Poll%3CResult%3CT,+E%3E%3E"],[35689,"impl-FromResidual%3CResult%3CInfallible,+E%3E%3E-for-Poll%3COption%3CResult%3CT,+F%3E%3E%3E"],[35690,"impl-FromResidual%3CResult%3CInfallible,+E%3E%3E-for-Poll%3CResult%3CT,+F%3E%3E"],[35706,"impl-Poll%3CResult%3CT,+E%3E%3E"],[35707,"impl-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35708,"impl-Poll%3CResult%3CT,+E%3E%3E"],[35709,"impl-Poll%3COption%3CResult%3CT,+E%3E%3E%3E"],[35800,"impl-Display-for-AccessError"],[35801,"impl-Debug-for-AccessError"],[35836,"impl-LocalKey%3CRefCell%3CT%3E%3E"],[35837,"impl-LocalKey%3CCell%3CT%3E%3E"],[35839,"impl-LocalKey%3CRefCell%3CT%3E%3E"],[35840,"impl-LocalKey%3CCell%3CT%3E%3E"],[35850,"impl-LocalKey%3CCell%3CT%3E%3E"],[35851,"impl-LocalKey%3CRefCell%3CT%3E%3E"],[35972,"impl-Debug-for-SystemTimeError"],[35973,"impl-Display-for-SystemTimeError"],[35975,"impl-Display-for-TryFromFloatSecsError"],[35976,"impl-Debug-for-TryFromFloatSecsError"],[36015,"impl-Sub%3CDuration%3E-for-Instant"],[36016,"impl-Sub-for-Instant"],[36025,"impl-Sum%3C%26Duration%3E-for-Duration"],[36026,"impl-Sum-for-Duration"],[36075,"impl-AsMut%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[36076,"impl-AsMut%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[36083,"impl-AsRef%3C%5BT%5D%3E-for-Vec%3CT,+A%3E"],[36084,"impl-AsRef%3CVec%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[36124,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[36125,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[36126,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[36127,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[36128,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[36129,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[36130,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[36131,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[36134,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[36135,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[36136,"impl-Extend%3CT%3E-for-Vec%3CT,+A%3E"],[36137,"impl-Extend%3C%26T%3E-for-Vec%3CT,+A%3E"],[36148,"impl-From%3CCString%3E-for-Vec%3Cu8%3E"],[36149,"impl-From%3C%26mut+%5BT;+N%5D%3E-for-Vec%3CT%3E"],[36150,"impl-From%3CString%3E-for-Vec%3Cu8%3E"],[36152,"impl-From%3CVecDeque%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[36153,"impl-From%3CBinaryHeap%3CT,+A%3E%3E-for-Vec%3CT,+A%3E"],[36154,"impl-From%3C%26%5BT%5D%3E-for-Vec%3CT%3E"],[36155,"impl-From%3C%26mut+%5BT%5D%3E-for-Vec%3CT%3E"],[36156,"impl-From%3C%26str%3E-for-Vec%3Cu8%3E"],[36157,"impl-From%3C%26%5BT;+N%5D%3E-for-Vec%3CT%3E"],[36158,"impl-From%3CCow%3C\'a,+%5BT%5D%3E%3E-for-Vec%3CT%3E"],[36159,"impl-From%3C%5BT;+N%5D%3E-for-Vec%3CT%3E"],[36160,"impl-From%3CBox%3C%5BT%5D,+A%3E%3E-for-Vec%3CT,+A%3E"],[36179,"impl-IntoIterator-for-Vec%3CT,+A%3E"],[36180,"impl-IntoIterator-for-%26mut+Vec%3CT,+A%3E"],[36181,"impl-IntoIterator-for-%26Vec%3CT,+A%3E"],[36193,"impl-PartialEq%3C%5BU%5D%3E-for-Vec%3CT,+A%3E"],[36194,"impl-PartialEq%3C%26%5BU%5D%3E-for-Vec%3CT,+A%3E"],[36195,"impl-PartialEq%3CVec%3CU,+A2%3E%3E-for-Vec%3CT,+A1%3E"],[36196,"impl-PartialEq%3C%26mut+%5BU%5D%3E-for-Vec%3CT,+A%3E"],[36197,"impl-PartialEq%3C%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"],[36198,"impl-PartialEq%3C%26%5BU;+N%5D%3E-for-Vec%3CT,+A%3E"]],"c":"OzAAAAEAAAEBTwAjAgAA+gIAAHADBAB6AwAAmwMFAKUDAACsAwAAAgQDACIFAwCVFgAAoRwAAJ0eAAChHgAA5B4NAAwfDQClHwAAvx8JAFYgAABcIQEAIyIBADEiAAACIwAAUCoAAIoqAgChKgAArioJAMAqAQD1KgQAACsAACgrBQAwKwAAOisAACksAwBJLQMAvD4AAMhEAADoRgAA/EYAAE9HAACSRwAAokcAAKVHAQCsRwEAe1IAAMlSAQAlUw0ATVMNAERVAABdVgAA6VYAABtXAQBFVwkA3FcAAMNbAQDYXwEABGAAAEZhAAB8YQAA528AAOlvAAAbcAMAIXAAACRwAAAmcAAAKHAVAFZwAACvcQAA43EAAPFxCwAHcgAAs4MAANqGAAC1iAAAvYgCAPuICwArigAA/IsAAAOMAADUjAsA","e":"OjAAAAEAAAAAAEsrEAAAAGR/YMwD4DnAHwBQAAAAAAAAAIAAhBTEHyAAAAAAAAAA4OD/H2IGAAEAUAAAAgAAAAAAAAAAAAAAAABAAAAHAAAAAAAACAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAAAAAAAAAAAAAAA8P////////////////////////////////////////8PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4Z/QAAAAAAAAAAAAAAAAAAAAAAAAAAH/+AAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAIDQaP83AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeA/45yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8BAAAAAAAAj////x8O/v+A+v////8Hfsb+fxx+////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeACACwAAAAAAAAAAAAAAAAAA7AAAAAAAAAAAAAAAAAAAAATK87//P/rzB7AJIIz//58fAL7gBQAAAAAAAAAAAAAAAPj/////////////////////////////////////////BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8/////////////+D//7/n/uv9BQAAQP//////////z/x/T/Ds7wEAAAAAAAAAAAAAAAAAAABg/z/yQ5qP9wP8UB/4+QD+B/x29///AwD48P9/Pmb+v8+/D/wfIAAA/Dn1+O8A8Pn//58BcP//AwDvf//4E/7x/xMKKAIAAQBEAAQAf/zv//8BAP/////////f////AwAA/v///////////wcAgPd3jw6gAGD8AwAAAAD+/wcA/5P//z8AAMD5//////8fwP8RAOIPAIAHBgBYrQ0AAAIAAAAB4AEAABwAAAAAAID//ec/4D8AADgI/P9/7geA///+//8HAADw//////9/APb/fwAAAAAAgP+D/////3/8DwCA//////////8PAOD//////x//PwAAAMD////sAOD///////8BAADA////////v////w8AAAAAAADA/wD8/x8A/v//////////APz//////wcA+P///////wcA//8f/QAA+OEPwMP//wf//59/gP//////fwD43+I1APD/H/8PAPj7j8///z8A4AfwAgB8AAAAAAAAAAAAAAAAAAAAAAAAAn7///8DAPDv//8f/vv////3//8AAAjO+H8AACDMgP//fyD4n8////P/CMDzAAAAwP///w8GGAAAwB8AAgDh/////0EKAP////3/AfxJ/wG4A3hSCm8MytkFJtD/Pz7///9PDQD8/w/g4fn/Afz7/7kfAOD/34ACAIABAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAgNNr/DfgH4P8BAAAAAAAAAAAAAAAAAAAAAAAA/P7///////8fQP7/3++/nB//////v/8hABQAAAAEAAAAADjf/n//AQAu+P/9++rZs9/AAAXM/v////////////8P/P//7+/79x8AAAAAAAAAAAAAgP2//4H//////////x////////////////8/sP8JBOD4//////3//wIAAAAAAAAAAADg//////zD/vr/APB///9/////Hf/v/wAAfP//+f7//z+A/////9n//+///////////7f///////8HAADg/3/mfwACAP69/xzHAwNAAMTD/wMAAAAAAP/z/////////v///+P/7////yYAAAD//wAAHwAAgAEMAGBP4H+Az4AAEAEMgP/+x////+P/nwEAAAAAAAAAAAAAAAAAAAAAAADA//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8DAAAAAAD8//8/AAAAAAAAAPz/////////////////////////////////////QQAAAIAGAAAAAAAAAAAA/H8PAAAAAAAAAAAAIAAAAAAM/P//////////////////////////////////////D/D//////w8ABwAA+P//////////////////////////////////BwAAAAAAAAAAAAAAAAAAAAAAAP7//////////////////////wHg//////////////////////////////////8fAAAAAAAAAAAAAAAAAP5/AAAAAAAAAAAAAAAAAAAAAAQA/v//AAAAAAAAAAAAAAAAAAAAA+D//4X///8LeAD+////SEL/////////+3//D4DD4+H7EQ7/5/////8/AMD//4l4BEdgB/BDjvt/AACw309EAM8PAAAAAG/J+l////8DAAAAAAAAAAAAAKCAeIf////5D/8HDegQAPi3Ac+AZwAAA8Th/////888AAAAAAAAAAAAAAD+XwDwH3/fD8LI6P8fAAAAAP7////49///7/n//2/4fwBgH4APAPD9//8DgP/M///8D+D/iY1JL5//1/n98z8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//8BAPT/////P77h8ftPAwPBYQDAv99M//sA2P///+//8wAAAD/4fwDxBwAHAAAHAHD/BwAg8+cBDvQFAAAgAAAAAPgfcACA//+T8IMH+AD40bv/BwAAAwAAAAAAAAAAAAAAAADAAQAAAAAAAAAAAAAAAAAAAAAAAID//z9j/////////w/8//rn9///MwCg3///////3z//////////H/P//////////////////z8gAAAADNu+2bcN4H/+N/AAAAAA+P/////////mf/w//p//8f/4f/7//4f/8fnf538A/////////////////8+f///7/7////v/v///+/8////n///+/2/w/////8//4P////////9j8////////////////////5v/+f8fAAAAAMzsMwMAAAAAAAAA+Df+//////////////f/8/////8BAAAAAAAAAPj//z/87/////////////////D//////////////9////8BAADg/P/////////////////////v/////wAAAAAAAADw///3//////+fAPz//////////////////38AAP//////B/gB4Pf7/d7z////wOTnf/a9//f/A/AL4ADauQOg7/7xDAAAAEDG//////+/hv8BoP7/yL//////DwgACKIRYAAAgAAAAAJA4QEAAAAATL/D/////+///w8AwP//HwAUAAAAwP///wcAAAAA/B8AAAAAAAAAAAAAAADA/w8AAAAAAAAAAAAAAgAAAAAAAAAA8P////8PAOD//+f//////wcAAPAd+P///x//BwD//73/ff4gwEwAAOj//z8AAED+///7P4AAAgAAgP//9w8AAB7gfwD//z+A/wMADgwOffz//A8AYDA8/p/9YP+f9wcAkAPsWfz8BwAe7P/wOXiAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA","a":{"!":[8845,28074],"!=":[309,343,7778,7786,9018,9040,9207,9229,9396,9421,9593,9623,9797,9819,19161,19169,29686,29709,29884,29907,30082,30108,30288,30319,30501,30524],"%":[8870,8871,28099,28100],"%=":[8871,28100],"&":[8811,28040],"&*":[8827,28056],"&=":[8812,28041],"*":[8827,8828,8842,8843,28056,28057,28071,28072],"*=":[8843,28072],"+":[8806,8807,28035,28036],"+=":[8807,28036],"-":[8844,8879,8880,28073,28108,28109],"-=":[8880,28109],"..":[8863,8865,8866,8868,10041,10043,10239,10240,28092,28094,28095,28097],"..=":[8867,8869,10044,10241,28096,28098],"/":[8831,8832,28060,28061],"/=":[8832,28061],"<":[336,345,7783,7788,9037,9042,9226,9231,9418,9423,9618,9625,9816,9821,19166,19171,29705,29711,29903,29909,30104,30110,30313,30321,30520,30526],"<<":[8875,28104],"<<=":[8876,28105],"<=":[336,345,7783,7788,9037,9042,9226,9231,9418,9423,9618,9625,9816,9821,19166,19171,29705,29711,29903,29909,30104,30110,30313,30321,30520,30526],"==":[309,343,7778,7786,9018,9040,9207,9229,9396,9421,9593,9623,9797,9819,19161,19169,29686,29709,29884,29907,30082,30108,30288,30319,30501,30524],">":[336,345,7783,7788,9037,9042,9226,9231,9418,9423,9618,9625,9816,9821,19166,19171,29705,29711,29903,29909,30104,30110,30313,30321,30520,30526],">=":[336,345,7783,7788,9037,9042,9226,9231,9418,9423,9618,9625,9816,9821,19166,19171,29705,29711,29903,29909,30104,30110,30313,30321,30520,30526],">>":[8877,28106],">>=":[8878,28107],"?":[351,922,8713,8882,9046,9235,9427,9629,9825,11047,24410,28111,29715,29913,30114,30325,30530],"?sized":[351,8713,9046,9235,9427,9629,9825,24410,29715,29913,30114,30325,30530],"[":[8840,8841,28069,28070],"[]":[8840,8841,28069,28070],"]":[8840,8841,28069,28070],"^":[8815,28044],"^=":[8816,28045],"assume":[8121,22335],"atime":[21933],"available_concurrency":[35767],"basename":[29407],"birthtime":[21984],"btime":[21984],"chdir":[21140],"chmod":[22103],"compare_and_swap":[35078,35090],"copyfile":[21976],"copyfileex":[21976],"cp":[21976],"createdirectory":[21980],"createhardlink":[22021],"deletefile":[22094],"dirname":[29480],"drop_while":[495,8683,9178,9367,9562,9766,9957,24198,29852,30050,30254,30467,30667],"errno":[23177],"fchmod":[22104],"fclonefileat":[21976],"fcopyfile":[21976],"fdatasync":[22127],"filter_map":[34948,34949,34950,34951,34952,34953],"findfirstfile":[22080],"findnextfile":[22080],"flatmap":[28460],"foldl":[420,8623,9108,9297,9491,9693,9887,23832,29782,29980,30183,30394,30597],"foldr":[485,8678,9171,9360,9555,9759,9950,24142,29845,30043,30247,30460,30660],"frac_1_sqrt_tau":[7860,7886,7926,7966,21237,21263,21303,21343],"fsync":[22126],"ftcreationtime":[21984],"ftlastaccesstime":[21933],"ftlastwritetime":[22059],"futimens":[22106],"futimes":[22106],"getcurrentdirectory":[21093],"getcwd":[21093],"getfinalpathnamebyhandle":[21960],"getlasterror":[23177],"gettemppath":[21148],"gettemppath2":[21148],"hardware_concurrency":[35767],"in6addr_any":[24615],"in6addr_any_init":[24615],"in6addr_loopback":[24601],"in6addr_loopback_init":[24601],"inaddr_any":[24614],"inject":[420,8623,9108,9297,9491,9693,9887,23832,29782,29980,30183,30394,30597],"len":[21468],"linkat":[22021],"ls":[22080],"lstat":[22125],"memcpy":[8262,10001,22476,31009],"memmove":[8261,10000,22475,31006],"memset":[8427,10028,22641,24514,31105,31106],"mkdir":[21980],"movefile":[22095],"movefileex":[22095],"mtime":[22059],"mv":[22095],"num_cpus":[35767],"opendir":[22080],"popcnt":[26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112],"popcount":[26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112],"pwd":[21093],"realpath":[21960],"removedirectory":[22092],"reverse":[483,8676,9169,9358,9553,9757,9948,24135,29843,30041,30245,30458,30658],"rm":[22094],"rmdir":[22092],"setcurrentdirectory":[21140],"setcurrentdirectoryw":[21140],"setfileattributes":[22103],"setfileinformationbyhandle":[22104],"setfiletime":[22106],"stat":[22052],"stream":[7731,18363],"strlen":[21468],"synccell":[10887,34513],"syncwrapper":[10887,34513],"unique":[10887,34513],"unlink":[22094],"{:?}":[304,661,8037,21739],"{}":[306,668,8044,21746],"|":[8813,28042],"|=":[8814,28043]}}],["wiwiwiwiwi",{"t":"","n":[],"q":[],"i":"","f":"","D":"`","p":[],"r":[],"b":[],"c":"OjAAAAAAAAA=","e":"OjAAAAEAAAAAAAAAEAAAAAAA"}]]')); if (typeof exports !== 'undefined') exports.searchIndex = searchIndex; else if (window.initSearch) window.initSearch(searchIndex); -//{"start":39,"fragment_lengths":[1509840,131]} \ No newline at end of file +//{"start":39,"fragment_lengths":[1533677,131]} \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-0-.js b/search.desc/wiwi/wiwi-desc-0-.js index fcdb35f64..123b476f8 100644 --- a/search.desc/wiwi/wiwi-desc-0-.js +++ b/search.desc/wiwi/wiwi-desc-0-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 0, "changelog \nPrelude module, exporting commonly-used items\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nBorrowed data.\nA clone-on-write smart pointer.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nA future represents an asynchronous computation obtained …\nA value-to-value conversion that consumes the input value. …\nConversion into a Future.\nWhich kind of future are we turning this into?\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nThe returned type after the call operator is used.\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nOwned data.\nThe resulting type after obtaining ownership.\nZero-sized type used to mark things that “act like” …\nA marker type which does not implement Unpin.\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other …\nAsserts that two expressions are not equal to each other …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nTakes two iterators and creates a new iterator over both …\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nPrints and returns the value of a given expression for …\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other.\nAsserts that two expressions are not equal to each other.\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nPrints to the standard error.\nPrints to the standard error, with a newline.\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nTakes ownership and “forgets” about the value without …\nCreates a String using interpolation of runtime …\nConstructs parameters for the other string-formatting …\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nDetermines if the elements of this Iterator are …\nDetermines if the elements of this Iterator are …\nThe identity function.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates a future from a value.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nAttempts to resolve the future to a final value, …\nSearches for an element in an iterator, returning its …\nPrints to the standard output.\nPrints to the standard output, with a newline.\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nMoves src into the referenced dest, returning the previous …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nSwaps the values at two mutable locations, without …\nReplaces dest with the default value of T, returning the …\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nReinterprets the bits of a value of one type as another …\nInterprets src as having type &Dst, and then reads src …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nIndicates unreachable code.\nConverts an iterator of pairs into a pair of containers.\nReturns the value of type T represented by the all-zero …\n‘Zips up’ two iterators into a single iterator of …\nMemory allocation APIs\nA module for working with borrowed data.\nThe Box<T> type for heap allocation.\nCollection types.\nUtilities related to FFI bindings.\nUtilities for formatting and printing Strings.\nCreates a String using interpolation of runtime …\nSingle-threaded reference-counting pointers. ‘Rc’ …\nUtilities for the slice primitive type.\nUtilities for the str primitive type.\nA UTF-8–encoded, growable string.\nThread-safe reference-counting pointers.\nTypes and Traits for working with asynchronous tasks.\nA contiguous growable array type with heap-allocated …\nCreates a Vec containing the arguments.\nThe AllocError error indicates an allocation failure that …\nAn implementation of Allocator can allocate, grow, shrink, …\nThe global memory allocator.\nA memory allocator that can be registered as the standard …\nLayout of a block of memory.\nThe parameters given to Layout::from_size_align or some …\nAllocates memory with the global allocator.\nAllocates memory as described by the given layout.\nAllocates zero-initialized memory with the global …\nBehaves like alloc, but also ensures that the contents are …\nAttempts to allocate a block of memory.\nBehaves like allocate, but also ensures that the returned …\nCreates a “by reference” adapter for this instance of …\nDeallocates memory with the global allocator.\nDeallocates the block of memory at the given ptr pointer …\nDeallocates the memory referenced by ptr.\nAttempts to extend the memory block.\nBehaves like grow, but also ensures that the new contents …\nSignals a memory allocation error.\nReallocates memory with the global allocator.\nShrinks or grows a block of memory to the given new_size …\nAttempts to shrink the memory block.\nA trait for borrowing data.\nA trait for mutably borrowing data.\nBorrowed data.\nA clone-on-write smart pointer.\nOwned data.\nThe resulting type after obtaining ownership.\nA generalization of Clone to borrowed data.\nImmutably borrows from an owned value.\nMutably borrows from an owned value.\nUses borrowed data to replace owned data, usually by …\nCreates owned data from borrowed data, usually by cloning.\nA pointer type that uniquely owns a heap allocation of …\nThinBox.\nThe memory allocator returned an error\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nA priority queue implemented with a binary heap.\nError due to the computed capacity exceeding the collection…\nA doubly-linked list with owned nodes.\nThe error type for try_reserve methods.\nDetails of the allocation that caused a TryReserveError\nA double-ended queue implemented with a growable ring …\nA priority queue implemented with a binary heap.\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nA doubly-linked list with owned nodes.\nA double-ended queue (deque) implemented with a growable …\nThe layout of allocation request that failed\nA priority queue implemented with a binary heap.\nA draining iterator over the elements of a BinaryHeap.\nA draining iterator over the elements of a BinaryHeap.\nAn owning iterator over the elements of a BinaryHeap.\nAn iterator over the elements of a BinaryHeap.\nStructure wrapping a mutable reference to the greatest …\nAn ordered map based on a B-Tree.\nA cursor over a BTreeMap.\nA cursor over a BTreeMap with editing operations.\nA cursor over a BTreeMap with editing operations, and …\nA view into a single entry in a map, which may either be …\nAn iterator produced by calling extract_if on BTreeMap.\nAn owning iterator over the entries of a BTreeMap, sorted …\nAn owning iterator over the keys of a BTreeMap.\nAn owning iterator over the values of a BTreeMap.\nAn iterator over the entries of a BTreeMap.\nA mutable iterator over the entries of a BTreeMap.\nAn iterator over the keys of a BTreeMap.\nAn occupied entry.\nA view into an occupied entry in a BTreeMap. It is part of …\nThe error returned by try_insert when the key already …\nAn iterator over a sub-range of entries in a BTreeMap.\nA mutable iterator over a sub-range of entries in a …\nError type returned by CursorMut::insert_before and …\nA vacant entry.\nA view into a vacant entry in a BTreeMap. It is part of …\nAn iterator over the values of a BTreeMap.\nA mutable iterator over the values of a BTreeMap.\nThe entry in the map that was already occupied.\nThe value which was not inserted, because the entry was …\nAn ordered set based on a B-Tree.\nA cursor over a BTreeSet.\nA cursor over a BTreeSet with editing operations.\nA cursor over a BTreeSet with editing operations, and …\nA lazy iterator producing elements in the difference of …\nAn iterator produced by calling extract_if on BTreeSet.\nA lazy iterator producing elements in the intersection of …\nAn owning iterator over the items of a BTreeSet in …\nAn iterator over the items of a BTreeSet.\nAn iterator over a sub-range of items in a BTreeSet.\nA lazy iterator producing elements in the symmetric …\nA lazy iterator producing elements in the union of BTreeSet…\nError type returned by CursorMut::insert_before and …\nA cursor over a LinkedList.\nA cursor over a LinkedList with editing operations.\nAn iterator produced by calling extract_if on LinkedList.\nAn owning iterator over the elements of a LinkedList.\nAn iterator over the elements of a LinkedList.\nA mutable iterator over the elements of a LinkedList.\nA doubly-linked list with owned nodes.\nA draining iterator over the elements of a VecDeque.\nAn owning iterator over the elements of a VecDeque.\nAn iterator over the elements of a VecDeque.\nA mutable iterator over the elements of a VecDeque.\nA double-ended queue implemented with a growable ring …\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nCString and its related types.\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nPossible alignments returned by Formatter::align\nThis structure represents a safely precompiled version of …\nb formatting.\nIndication that contents should be center-aligned.\n? formatting.\nDerive macro generating an impl of the trait Debug.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nFormat trait for an empty format, {}.\nContains the error value\nThe error type which is returned from formatting a message …\nConfiguration for formatting.\nImplements fmt::Debug and fmt::Display using a function.\nIndication that contents should be left-aligned.\ne formatting.\nx formatting.\no formatting.\nContains the success value\np formatting.\nThe type returned by formatter methods.\nIndication that contents should be right-aligned.\nE formatting.\nX formatting.\nA trait for writing or formatting into Unicode-accepting …\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nTakes an Arguments struct and returns the resulting …\nCreates a type whose fmt::Debug and fmt::Display impls are …\nTakes an output stream and an Arguments struct that can be …\nWrites a char into this writer, returning whether the …\nGlue for usage of the write! macro with implementors of …\nWrites a string slice into this writer, returning whether …\nA single-threaded reference-counting pointer. ‘Rc’ …\nA uniquely owned Rc.\nWeak is a version of Rc that holds a non-owning reference …\nAn iterator over a slice in (non-overlapping) chunks (N …\nAn iterator over a slice in (non-overlapping) mutable …\nA windowed iterator over a slice in overlapping chunks (N …\nAn iterator over slice in (non-overlapping) chunks …\nAn iterator over slice in (non-overlapping) mutable chunks …\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nHelper trait for [T]::concat.\nAn iterator over the escaped version of a byte slice.\nImmutable slice iterator\nMutable slice iterator.\nHelper trait for [T]::join\nThe resulting type after concatenation\nThe resulting type after concatenation\nThe output type returned by methods.\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over subslices separated by elements that …\nAn iterator over the subslices of the vector which are …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nA helper trait used for indexing operations.\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over overlapping subslices of length size.\nImplementation of [T]::concat\nConverts a reference to T into a slice of length 1 …\nForms a mutable slice from a pointer range.\nForms a slice from a pointer range.\nForms a slice from a pointer and a length.\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to T into a slice of length 1 …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nReturns a pointer to the output at this location, without …\nReturns a mutable pointer to the output at this location, …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nImplementation of [T]::join\nPerforms bounds checking of a range.\nPerforms bounds checking of a range without panicking.\nAn iterator over the bytes of a string slice.\nAn iterator over the chars of a string slice, and their …\nAn iterator over the chars of a string slice.\nAn iterator of u16 over the string encoded as UTF-16.\nThe associated error which can be returned from parsing.\nThe return type of str::escape_debug.\nThe return type of str::escape_default.\nThe return type of str::escape_unicode.\nParse a value from a string\nAn iterator over the lines of a string, as string slices.\nCreated with the method lines_any.\nCreated with the method match_indices.\nCreated with the method matches.\nAn error returned when parsing a bool using from_str fails\nCreated with the method rmatch_indices.\nCreated with the method rmatches.\nCreated with the method rsplit.\nCreated with the method rsplitn.\nCreated with the method rsplit_terminator.\nCreated with the method split.\nAn iterator over the non-ASCII-whitespace substrings of a …\nAn iterator over the substrings of a string, terminated by …\nCreated with the method splitn.\nCreated with the method split_terminator.\nAn iterator over the non-whitespace substrings of a string,\nAn item returned by the Utf8Chunks iterator.\nAn iterator used to decode a slice of mostly UTF-8 bytes …\nErrors which can occur when attempting to interpret a …\nConverts a boxed slice of bytes to a boxed string slice …\nCreates a &str from a pointer and a length.\nCreates a &mut str from a pointer and a length.\nParses a string s to return a value of this type.\nConverts a slice of bytes to a string slice.\nConverts a mutable slice of bytes to a mutable string …\nConverts a slice of bytes to a string slice without …\nConverts a slice of bytes to a string slice without …\nThe string Pattern API.\nAssociated type for <&[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <F as Pattern>::Searcher<'a>.\nAssociated type for <char as Pattern>::Searcher<'a>.\nAssociated type for <&[char] as Pattern>::Searcher<'a>.\nExpresses that every byte of the haystack has been …\nA marker trait to express that a ReverseSearcher can be …\nExpresses that a match of the pattern has been found at …\nA string pattern.\nExpresses that haystack[a..b] has been rejected as a …\nA reverse searcher for a string pattern.\nResult of calling Searcher::next() or …\nA searcher for a string pattern.\nAssociated searcher for this pattern\nAssociated type for <&str as Pattern>::Searcher<'a>.\nGetter for the underlying string to be searched in\nConstructs the associated searcher from self and the …\nChecks whether the pattern matches anywhere in the haystack\nChecks whether the pattern matches at the front of the …\nChecks whether the pattern matches at the back of the …\nPerforms the next search step starting from the front.\nPerforms the next search step starting from the back.\nFinds the next Match result. See next().\nFinds the next Match result. See next_back().\nFinds the next Reject result. See next() and next_match().\nFinds the next Reject result. See next_back().\nRemoves the pattern from the front of haystack, if it …\nRemoves the pattern from the back of haystack, if it …\nA draining iterator for String.\nA possible error value when converting a String from a …\nA possible error value when converting a String from a …\nA type alias for Infallible.\nA UTF-8–encoded, growable string.\nA trait for converting a value to a String.\nConverts the given value to a String.\nA thread-safe reference-counting pointer. ‘Arc’ stands …\nWeak is a version of Arc that holds a non-owning reference …\nAn analogous trait to Wake but used to construct a …\nThe implementation of waking a task on an executor.\nWake this task.\nWake this task.\nWake this task without consuming the waker.\nWake this task without consuming the local waker.\nA draining iterator for Vec<T>.\nAn iterator which uses a closure to determine if an …\nAn iterator that moves out of a vector.\nA splicing iterator for Vec.\nA contiguous growable array type, written as Vec<T>, short …\nMemory allocation APIs\nUtilities for dynamic typing or type reflection.\nSIMD and vendor intrinsics module.\nUtilities for the array primitive type.\nOperations on ASCII strings and characters.\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other …\nUnstable module containing the unstable assert_matches …\nAsserts that two expressions are not equal to each other …\nChecks that the preconditions of an unsafe function are …\nComposable asynchronous iteration.\nUtilities for working with borrowed data.\nShareable mutable containers.\nEvaluates boolean combinations of configuration flags at …\nA macro for defining #[cfg] match-like statements.\nUtilities for the char primitive type.\nThe Clone trait for types that cannot be ‘implicitly …\nUtilities for comparing and ordering values.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nSame as format_args, but can be used in some const …\nTraits for conversions between types.\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other.\nAsserts that two expressions are not equal to each other.\nThe Default trait for types with a default value.\nInspects an environment variable at compile time.\nInterfaces for working with Errors.\nConstants for the f128 quadruple-precision floating point …\nConstants for the f16 half-precision floating point type.\nConstants for the f32 single-precision floating point type.\nConstants for the f64 double-precision floating point type.\nPlatform-specific types, as defined by C.\nExpands to the file name in which it was invoked.\nUtilities for formatting and printing strings.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nAsynchronous basic functionality.\nGeneric hashing support.\nHints to compiler that affects how code should be emitted …\nRedundant constants module for the i128 primitive type.\nRedundant constants module for the i16 primitive type.\nRedundant constants module for the i32 primitive type.\nRedundant constants module for the i64 primitive type.\nRedundant constants module for the i8 primitive type.\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nCompiler intrinsics.\nTraits, helpers, and type definitions for core I/O …\nRedundant constants module for the isize primitive type.\nComposable external iteration.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nPrimitive traits and types representing basic properties …\nReturns whether the given expression matches the provided …\nBasic functions for dealing with memory.\nExpands to a string that represents the current module …\nNetworking primitives for IP communication.\nNumeric traits and functions for the built-in numeric …\nOverloadable operators.\nOptional values.\nOptionally inspects an environment variable at compile …\nPanic support in the standard library.\nPanics the current thread.\nPanic support for core\nHelper module for exporting the pattern_type macro\nCreates a pattern type.\nTypes that pin data to a location in memory.\nThe core prelude\nThis module reexports the primitive types to allow usage …\nManually manage memory through raw pointers.\nExperimental replacement range types\nError handling with the Result type.\nPortable SIMD module.\nSlice management and manipulation.\nString manipulation.\nStringifies its arguments.\nSynchronization primitives\nTypes and Traits for working with asynchronous tasks.\nTemporal quantification.\nIndicates unfinished code.\nEnables or disables tracing functionality used for …\nUnwraps a result or propagates its error.\nRedundant constants module for the u128 primitive type.\nRedundant constants module for the u16 primitive type.\nRedundant constants module for the u32 primitive type.\nRedundant constants module for the u64 primitive type.\nRedundant constants module for the u8 primitive type.\nProvides the assert_unsafe_precondition macro as well as …\nIndicates unimplemented code by panicking with a message …\nIndicates unreachable code.\nRedundant constants module for the usize primitive type.\nWrites formatted data into a buffer.\nWrites formatted data into a buffer, with a newline …\nThe AllocError error indicates an allocation failure that …\nAn implementation of Allocator can allocate, grow, shrink, …\nA memory allocator that can be registered as the standard …\nLayout of a block of memory.\nThe parameters given to Layout::from_size_align or some …\nAllocates memory as described by the given layout.\nBehaves like alloc, but also ensures that the contents are …\nAttempts to allocate a block of memory.\nBehaves like allocate, but also ensures that the returned …\nCreates a “by reference” adapter for this instance of …\nDeallocates the block of memory at the given ptr pointer …\nDeallocates the memory referenced by ptr.\nAttempts to extend the memory block.\nBehaves like grow, but also ensures that the new contents …\nShrinks or grows a block of memory to the given new_size …\nAttempts to shrink the memory block.\nA trait to emulate dynamic typing.\nA TypeId represents a globally unique identifier for a …\nGets the TypeId of self.\nReturns the name of a type as a string slice.\nReturns the type name of the pointed-to value as a string …\nInline assembly.\nModule-level inline assembly.\nPlatform-specific intrinsics for the x86_64 platform.\nResult of the cpuid instruction.\nEqual (ordered, non-signaling)\nEqual (ordered, signaling)\nEqual (unordered, non-signaling)\nEqual (unordered, signaling)\nFalse (ordered, non-signaling)\nFalse (ordered, signaling)\nGreater-than-or-equal (ordered, non-signaling)\nGreater-than-or-equal (ordered, signaling)\nGreater-than (ordered, non-signaling)\nGreater-than (ordered, signaling)\nLess-than-or-equal (ordered, non-signaling)\nLess-than-or-equal (ordered, signaling)\nLess-than (ordered, non-signaling)\nLess-than (ordered, signaling)\nNot-equal (ordered, non-signaling)\nNot-equal (ordered, signaling)\nNot-equal (unordered, non-signaling)\nNot-equal (unordered, signaling)\nNot-greater-than-or-equal (unordered, non-signaling)\nNot-greater-than-or-equal (unordered, signaling)\nNot-greater-than (unordered, non-signaling)\nNot-greater-than (unordered, signaling)\nNot-less-than-or-equal (unordered, non-signaling)\nNot-less-than-or-equal (unordered, signaling)\nNot-less-than (unordered, non-signaling)\nNot-less-than (unordered, signaling)\nOrdered (non-signaling)\nOrdered (signaling)\nTrue (unordered, non-signaling)\nTrue (unordered, signaling)\nUnordered (non-signaling)\nUnordered (signaling)\nThe _MM_CMPINT_ENUM type used to specify comparison …\nEqual\nFalse\nLess-than-or-equal\nLess-than\nNot-equal\nNot less-than-or-equal\nNot less-than\nTrue\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_STATE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_FLUSH_ZERO_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nround up and do not suppress exceptions\nuse MXCSR.RC; see vendor::_MM_SET_ROUNDING_MODE\nround down and do not suppress exceptions\nuse MXCSR.RC and suppress exceptions; see …\nround to nearest and do not suppress exceptions\nsuppress exceptions\ndo not suppress exceptions\nuse MXCSR.RC and do not suppress exceptions; see …\nround to nearest\nround down\nround up\ntruncate\ntruncate and do not suppress exceptions\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nThe MM_MANTISSA_NORM_ENUM type used to specify mantissa …\nThe MM_MANTISSA_SIGN_ENUM type used to specify mantissa …\ninterval [1, 2)\ninterval [0.5, 1)\ninterval [0.5, 2)\ninterval [0.75, 1.5)\nDEST = NaN if sign(SRC) = 1\nsign = sign(SRC)\nsign = 0\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_MASK\nSee _mm_setcsr\nSee _mm_setcsr\nThe MM_PERM_ENUM type used to specify shuffle operations …\nSee _mm_setcsr\nSee _MM_GET_ROUNDING_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nA utility function for creating masks to use with Intel …\nTranspose the 4x4 matrix formed by 4 rows of __m128 in …\nMask only: return the bit mask\nFor each character in a, find if it is in b (Default)\nThe strings defined by a and b are equal\nSearch for the defined substring in the target\nFor each character in a, determine if …\nIndex only: return the least significant bit (Default)\nNegates results only before the end of the string\nDo not negate results before the end of the string\nIndex only: return the most significant bit\nNegates results\nDo not negate results (Default)\nString contains signed 8-bit characters\nString contains unsigned 16-bit characters\nString contains unsigned 8-bit characters (Default)\nMask only: return the byte mask\nString contains unsigned 16-bit characters\nTransaction abort due to the transaction using too much …\nTransaction abort due to a memory conflict with another …\nTransaction abort due to a debug trap.\nTransaction explicitly aborted with xabort. The parameter …\nTransaction abort in a inner nested transaction.\nTransaction retry is possible.\nTransaction successfully started.\nXFEATURE_ENABLED_MASK for XCR\nSee __cpuid_count.\nReturns the result of the cpuid instruction for a given …\nReturns the highest-supported leaf (EAX) and sub-leaf (ECX…\n128-bit wide set of four f32 types, x86-specific\n128-bit wide set of eight u16 types, x86-specific\n128-bit wide set of two f64 types, x86-specific\n128-bit wide set of 8 f16 types, x86-specific\n128-bit wide integer vector type, x86-specific\n256-bit wide set of eight f32 types, x86-specific\n256-bit wide set of 16 u16 types, x86-specific\n256-bit wide set of four f64 types, x86-specific\n256-bit wide set of 16 f16 types, x86-specific\n256-bit wide integer vector type, x86-specific\n512-bit wide set of sixteen f32 types, x86-specific\n512-bit wide set of 32 u16 types, x86-specific\n512-bit wide set of eight f64 types, x86-specific\n512-bit wide set of 32 f16 types, x86-specific\n512-bit wide integer vector type, x86-specific\nThe __mmask16 type used in AVX-512 intrinsics, a 16-bit …\nThe __mmask32 type used in AVX-512 intrinsics, a 32-bit …\nThe __mmask64 type used in AVX-512 intrinsics, a 64-bit …\nThe __mmask8 type used in AVX-512 intrinsics, a 8-bit …\nReads the current value of the processor’s time-stamp …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nBitwise logical AND of inverted a with b.\nBitwise logical AND of inverted a with b.\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nClears all bits below the least significant zero bit of x.\nClears all bits below the least significant zero bit of x.\nSets all bits of x to 1 except for the least significant …\nSets all bits of x to 1 except for the least significant …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x.\nSets the least significant zero bit of x.\nSets all bits of x below the least significant one.\nSets all bits of x below the least significant one.\nExtracts lowest set isolated bit.\nExtracts lowest set isolated bit.\nClears least significant bit and sets all other bits.\nClears least significant bit and sets all other bits.\nGets mask up to lowest set bit.\nGets mask up to lowest set bit.\nResets the lowest set bit of x.\nResets the lowest set bit of x.\nReturns an integer with the reversed byte order of x\nReturns an integer with the reversed byte order of x\nZeroes higher bits of a >= index.\nZeroes higher bits of a >= index.\nConvert 16-bit mask a into an integer value, and store the …\nConvert 32-bit mask a into an integer value, and store the …\nConvert 64-bit mask a into an integer value, and store the …\nConvert 8-bit mask a to a 32-bit integer value and store …\nConvert 32-bit integer value a to an 16-bit mask and store …\nConvert integer value a into an 32-bit mask, and store the …\nConvert 32-bit integer value a to an 8-bit mask and store …\nConvert integer value a into an 64-bit mask, and store the …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nAdd 16-bit masks a and b, and store the result in dst.\nAdd 32-bit masks in a and b, and store the result in k.\nAdd 64-bit masks in a and b, and store the result in k.\nAdd 8-bit masks a and b, and store the result in dst.\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise AND of 32-bit masks a and b, and store …\nCompute the bitwise AND of 64-bit masks a and b, and store …\nBitwise AND of 8-bit masks a and b, and store the result …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCompute the bitwise NOT of 32-bit masks a and then AND …\nCompute the bitwise NOT of 64-bit masks a and then AND …\nBitwise AND NOT of 8-bit masks a and b, and store the …\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise NOT of 32-bit mask a, and store the …\nCompute the bitwise NOT of 64-bit mask a, and store the …\nBitwise NOT of 8-bit mask a, and store the result in dst.\nCompute the bitwise OR of 16-bit masks a and b, and store …\nCompute the bitwise OR of 32-bit masks a and b, and store …\nCompute the bitwise OR of 64-bit masks a and b, and store …\nBitwise OR of 8-bit masks a and b, and store the result in …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nShift 16-bit mask a left by count bits while shifting in …\nShift the bits of 32-bit mask a left by count while …\nShift the bits of 64-bit mask a left by count while …\nShift 8-bit mask a left by count bits while shifting in …\nShift 16-bit mask a right by count bits while shifting in …\nShift the bits of 32-bit mask a right by count while …\nShift the bits of 64-bit mask a right by count while …\nShift 8-bit mask a right by count bits while shifting in …\nCompute the bitwise AND of 16-bit masks a and b, and if …\nCompute the bitwise AND of 32-bit masks a and b, and if …\nCompute the bitwise AND of 64-bit masks a and b, and if …\nCompute the bitwise AND of 8-bit masks a and b, and if the …\nCompute the bitwise NOT of 16-bit mask a and then AND with …\nCompute the bitwise NOT of 32-bit mask a and then AND with …\nCompute the bitwise NOT of 64-bit mask a and then AND with …\nCompute the bitwise NOT of 8-bit mask a and then AND with …\nCompute the bitwise AND of 16-bit masks a and b, if the …\nCompute the bitwise AND of 32-bit masks a and b, if the …\nCompute the bitwise AND of 64-bit masks a and b, if the …\nCompute the bitwise AND of 8-bit masks a and b, if the …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XNOR of 32-bit masks a and b, and …\nCompute the bitwise XNOR of 64-bit masks a and b, and …\nBitwise XNOR of 8-bit masks a and b, and store the result …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nCompute the bitwise XOR of 32-bit masks a and b, and store …\nCompute the bitwise XOR of 64-bit masks a and b, and store …\nBitwise XOR of 8-bit masks a and b, and store the result …\nLoad 16-bit mask from memory\nLoad 32-bit mask from memory into k.\nLoad 64-bit mask from memory into k.\nLoad 8-bit mask from memory\nCounts the leading most significant zero bits.\nCounts the leading most significant zero bits.\nComputes the absolute values of packed 16-bit integers in a…\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute values of packed 8-bit integers in a.\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds packed single-precision (32-bit) floating-point …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively adds and subtracts packed double-precision …\nAlternatively adds and subtracts packed single-precision …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenates pairs of 16-byte blocks in a and b into a …\nComputes the bitwise AND of a packed double-precision …\nComputes the bitwise AND of packed single-precision …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise NOT of packed double-precision …\nComputes the bitwise NOT of packed single-precision …\nComputes the bitwise NOT of 256 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlends packed 16-bit integers from a and b using control …\nBlends packed 32-bit integers from a and b using control …\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBlends packed 8-bit integers from a and b using mask.\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcasts 128 bits from memory (composed of 2 packed …\nBroadcasts 128 bits from memory (composed of 4 packed …\nBroadcasts a double-precision (64-bit) floating-point …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nCasts vector of type __m128d to type __m256d; the upper …\nCasts vector of type __m256d to type __m128d.\nCast vector of type __m256d to type __m256h. This …\nCast vector of type __m256d to type __m256.\nCasts vector of type __m256d to type __m256i.\nCast vector of type __m128h to type __m256h. The upper 8 …\nCast vector of type __m256h to type __m128h. This …\nCast vector of type __m256h to type __m256d. This …\nCast vector of type __m256h to type __m256. This intrinsic …\nCast vector of type __m256h to type __m256i. This …\nCasts vector of type __m128 to type __m256; the upper 128 …\nCasts vector of type __m256 to type __m128.\nCast vector of type __m256 to type __m256d.\nCast vector of type __m256 to type __m256h. This intrinsic …\nCasts vector of type __m256 to type __m256i.\nCasts vector of type __m128i to type __m256i; the upper …\nCasts vector of type __m256i to type __m256d.\nCast vector of type __m256i to type __m256h. This …\nCasts vector of type __m256i to type __m256.\nCasts vector of type __m256i to type __m128i.\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality.\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nSign-extend 16-bit integers to 32-bit integers.\nSign-extend 16-bit integers to 64-bit integers.\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign-extend 32-bit integers to 64-bit integers.\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts packed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign-extend 8-bit integers to 16-bit integers.\nSign-extend 8-bit integers to 32-bit integers.\nSign-extend 8-bit integers to 64-bit integers.\nZeroes extend packed unsigned 16-bit integers in a to …\nZero-extend the lower four unsigned 16-bit integers in a …\nConvert packed unsigned 16-bit integers in a to packed …\nZero-extend unsigned 32-bit integers in a to 64-bit …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero-extend unsigned 8-bit integers in a to 16-bit …\nZero-extend the lower eight unsigned 8-bit integers in a …\nZero-extend the lower four unsigned 8-bit integers in a to …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 8 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 8 x 32-bit float values in the 256-bit vector …\nReturns the first element of the input vector of …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nReturns the first element of the input vector of [8 x i32].\nReturns the first element of the input vector of …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nComputes the division of each of the 4 packed 64-bit …\nDivide packed half-precision (16-bit) floating-point …\nComputes the division of each of the 8 packed 32-bit …\nConditionally multiplies the packed single-precision …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nExtracts a 16-bit integer from a, selected with INDEX. …\nExtracts a 32-bit integer from a, selected with INDEX.\nExtracts a 64-bit integer from a, selected with INDEX.\nExtracts an 8-bit integer from a, selected with INDEX. …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of integer data) from a, …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (of integer data) from a selected with …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally adds adjacent pairs of 32-bit integers in a …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nHorizontally subtract adjacent pairs of 32-bit integers in …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nScatter 64-bit integers from a into memory using 32-bit …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopies a to result, and inserts the 16-bit integer i into …\nCopies a to result, and inserts the 32-bit integer i into …\nCopies a to result, and insert the 64-bit integer i into …\nCopies a to result, and inserts the 8-bit integer i into …\nCopies a to result, then inserts 128 bits (composed of 2 …\nCopies a to result, then inserts 128 bits (composed of 4 …\nCopies a to result, then inserts 128 bits from b into …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopies a to dst, then insert 128 bits (of integer data) …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nLoads 256-bits of integer data from unaligned memory into …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nLoads two 128-bit values (composed of 4 packed …\nLoads two 128-bit values (composed of 2 packed …\nLoads two 128-bit values (composed of integer data) from …\nLoad 256-bits (composed of 16 packed 16-bit integers) from …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoad 256-bits (composed of 32 packed 8-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies packed signed 16-bit integers in a and b, …\nVertically multiplies each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nLoads 8 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 8 single-precision (32-bit) floating-point elements …\nLoads 4 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nCreates mask from the most significant bit of each 8-bit …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 0, "These docs have been built from commit 00050c57.\nchangelog \nConvenience macro that declares many private submodules, …\nh\nPrelude module, exporting commonly-used items\nErrors that can be encountered on decoding data (encoding …\nInvalid character. Characters are only allowed to be in 0-9…\nInvalid length. Length is expected to be a multiple of two\nLength of encoding table (not actually used in …\nEncoding table of lowercased characters, length 16, …\nEncoding table of uppercased characters, length 16, …\nDecodes a slice of hex bytes into a byte vector. This …\nEncodes a slice of bytes into a String, using lowercase …\nEncodes a slice of bytes into a String, using uppercase …\nReturns the argument unchanged.\nCalls U::from(self).\nOne frame of this many bytes (4) from the binary data …\nErrors that can be encountered on decoding data (encoding …\nVarious details about a slice and it’s encoded output …\nOne frame of data contains characters that are too large …\nInvalid character in input data\nInput data has invalid length\nOne frame of this many bytes (5) from the encoded Z85 data …\nTable of length 256, mapping any u8 to the value it …\nLength of the decoding table\nTable to map a number 0-84 to a Z85 character.\nLength of the encoding table (ie. number of different …\nDecodes a slice of a Z85 string back into the source bytes\nEncodes a slice of bytes into a Z85 string, adding padding …\nCalculates the values\nThe amount of full frames (eg. amount of full chunks of 4 …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nThe amount of capacity required to fit all the encoded …\nThe amount of remainder bytes, strictly less than 4 (frame …\nH\nh\nAlign of this number type in bytes\nAlign of this number type in bytes, type usize\nAddition\nCarrying addition\nChecked addition\nOverflowing addition\nBitwise AND\nArray conversions\nSize of this number in bits\nSize of this number in bits, type usize\nSize of this number type in bytes\nSize of this number type in bytes, type usize\nCommon base for all numbers\nDivision\nFloating point division\nInteger division\nOverflowing division\nLossless conversion from f32\nPotentially lossy conversion from f32\nLossless conversion from f64\nPotentially lossy conversion from f64\nLossless conversion from i128\nPotentially lossy conversion from i128\nLossless conversion from i16\nPotentially lossy conversion from i16\nLossless conversion from i32\nPotentially lossy conversion from i32\nLossless conversion from i64\nPotentially lossy conversion from i64\nLossless conversion from i8\nPotentially lossy conversion from i8\nLossless conversion from isize\nPotentially lossy conversion from isize\nLossless conversion from u128\nPotentially lossy conversion from u128\nLossless conversion from u16\nPotentially lossy conversion from u16\nLossless conversion from u32\nPotentially lossy conversion from u32\nLossless conversion from u64\nPotentially lossy conversion from u64\nLossless conversion from u8\nPotentially lossy conversion from u8\nLossless conversion from usize\nPotentially lossy conversion from usize\nSigned integers with an unsigned variant\nUnsigned integers with a signed variant\nLossless conversion into f32\nPotentially lossy conversion into f32\nLossless conversion into f64\nPotentially lossy conversion into f64\nLossless conversion into i128\nPotentially lossy conversion into i128\nLossless conversion into i16\nPotentially lossy conversion into i16\nLossless conversion into i32\nPotentially lossy conversion into i32\nLossless conversion into i64\nPotentially lossy conversion into i64\nLossless conversion into i8\nPotentially lossy conversion into i8\nLossless conversion into isize\nPotentially lossy conversion into isize\nLossless conversion into u128\nPotentially lossy conversion into u128\nLossless conversion into u16\nPotentially lossy conversion into u16\nLossless conversion into u32\nPotentially lossy conversion into u32\nLossless conversion into u64\nPotentially lossy conversion into u64\nLossless conversion into u8\nPotentially lossy conversion into u8\nLossless conversion into usize\nPotentially lossy conversion into usize\nMax (finite) value of this number type\nMin (finite) value of this number type\nMultiplication\nOverflowing multiplication\nUnchecked multiplication\nWidening multiplication\nNumbers that can be “chopped in half” to two of …\nNegation\nChecked negation\nBitwise NOT\n1\nBitwise OR\nModulo (the remainder operator)\nLeft shift\nChecked left shift\nRight shift\nChecked right shift\nSubtraction\nBorrowing subtraction\nOverflowing subtraction\nNumbers that can be “widened” to another number type …\nBitwise XOR\n0\nPerforms carrying add\nPerforms carrying add\nPerforms overflowing add\nPerforms plain addition\nPerforms plain addition\nPerforms floating point division\nPerforms floating point division\nPerforms integer division\nPerforms integer division\nPerforms overflowing division\nPerforms regular division\nPerforms regular division\nConverts an array of bytes in big endian order to a number\nLosslessly converts the provided f32 into Self\nConverts the provided f32 into Self, potentially lossily\nLosslessly converts the provided f64 into Self\nConverts the provided f64 into Self, potentially lossily\nLosslessly converts the provided i128 into Self\nConverts the provided i128 into Self, potentially lossily\nLosslessly converts the provided i16 into Self\nConverts the provided i16 into Self, potentially lossily\nLosslessly converts the provided i32 into Self\nConverts the provided i32 into Self, potentially lossily\nLosslessly converts the provided i64 into Self\nConverts the provided i64 into Self, potentially lossily\nLosslessly converts the provided i8 into Self\nConverts the provided i8 into Self, potentially lossily\nLosslessly converts the provided isize into Self\nConverts the provided isize into Self, potentially lossily\nConverts an array of bytes in little endian order to a …\nConverts an array of bytes in native endian order to a …\nLosslessly converts the provided u128 into Self\nConverts the provided u128 into Self, potentially lossily\nLosslessly converts the provided u16 into Self\nConverts the provided u16 into Self, potentially lossily\nLosslessly converts the provided u32 into Self\nConverts the provided u32 into Self, potentially lossily\nLosslessly converts the provided u64 into Self\nConverts the provided u64 into Self, potentially lossily\nLosslessly converts the provided u8 into Self\nConverts the provided u8 into Self, potentially lossily\nLosslessly converts the provided usize into Self\nConverts the provided usize into Self, potentially lossily\nConverts this number into a byte array in big endian order\nLosslessly converts self into f32\nconverts self into f32, potentially lossily\nLosslessly converts self into f64\nconverts self into f64, potentially lossily\nLosslessly converts self into i128\nconverts self into i128, potentially lossily\nLosslessly converts self into i16\nconverts self into i16, potentially lossily\nLosslessly converts self into i32\nconverts self into i32, potentially lossily\nLosslessly converts self into i64\nconverts self into i64, potentially lossily\nLosslessly converts self into i8\nconverts self into i8, potentially lossily\nLosslessly converts self into isize\nconverts self into isize, potentially lossily\nConverts this number into a byte array in little endian …\nConverts this number into a byte array in native endian …\nLosslessly converts self into u128\nconverts self into u128, potentially lossily\nLosslessly converts self into u16\nconverts self into u16, potentially lossily\nLosslessly converts self into u32\nconverts self into u32, potentially lossily\nLosslessly converts self into u64\nconverts self into u64, potentially lossily\nLosslessly converts self into u8\nconverts self into u8, potentially lossily\nLosslessly converts self into usize\nconverts self into usize, potentially lossily\nJoins self with an upper value, to give a widened value\nJoin the narrow lower and upper parts together to get Self\nPerforms overflowing multiplication\nPerforms plain multiplication\nPerforms plain multiplication\nPerforms unchecked multiplication\nPerforms widening multiplication, returning the result in …\nSplits the wide integer into its lower and upper Self parts\nSplits self into its lower and upper narrow parts\nPerforms borrowing subtraction\nPerforms borrowing subtraction\nPerforms overflowing subtraction\nPerforms plain subtraction\nPerforms plain subtraction\nExtend self out into the widened type (without changing …\nExtend Narrow out into Self (without changing its value)\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nBorrowed data.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nA clone-on-write smart pointer.\n? formatting.\nDerive macro generating an impl of the trait Debug.\nFormat trait for an empty format, {}.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nA future represents an asynchronous computation obtained …\nA value-to-value conversion that consumes the input value. …\nConversion into a Future.\nWhich kind of future are we turning this into?\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nOwned data.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nZero-sized type used to mark things that “act like” …\nA marker type which does not implement Unpin.\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other …\nAsserts that two expressions are not equal to each other …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nPrints and returns the value of a given expression for …\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other.\nAsserts that two expressions are not equal to each other.\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nPrints to the standard error.\nPrints to the standard error, with a newline.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nTakes ownership and “forgets” about the value without …\nCreates a String using interpolation of runtime …\nConstructs parameters for the other string-formatting …\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nThe identity function.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates a future from a value.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nAttempts to resolve the future to a final value, …\nSearches for an element in an iterator, returning its …\nPrints to the standard output.\nPrints to the standard output, with a newline.\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nMoves src into the referenced dest, returning the previous …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nSwaps the values at two mutable locations, without …\nReplaces dest with the default value of T, returning the …\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nReinterprets the bits of a value of one type as another …\nInterprets src as having type &Dst, and then reads src …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nIndicates unreachable code.\nConverts an iterator of pairs into a pair of containers.\nA contiguous growable array type with heap-allocated …\nCreates a Vec containing the arguments.\nReturns the value of type T represented by the all-zero …\n‘Zips up’ two iterators into a single iterator of …\nA draining iterator for Vec<T>.\nAn iterator which uses a closure to determine if an …\nAn iterator that moves out of a vector.\nA splicing iterator for Vec.\nA contiguous growable array type, written as Vec<T>, short …\nMemory allocation APIs\nA module for working with borrowed data.\nThe Box<T> type for heap allocation.\nCollection types.\nUtilities related to FFI bindings.\nUtilities for formatting and printing Strings.\nCreates a String using interpolation of runtime …\nSingle-threaded reference-counting pointers. ‘Rc’ …\nUtilities for the slice primitive type.\nUtilities for the str primitive type.\nA UTF-8–encoded, growable string.\nThread-safe reference-counting pointers.\nTypes and Traits for working with asynchronous tasks.\nA contiguous growable array type with heap-allocated …\nCreates a Vec containing the arguments.\nThe AllocError error indicates an allocation failure that …\nAn implementation of Allocator can allocate, grow, shrink, …\nThe global memory allocator.\nA memory allocator that can be registered as the standard …\nLayout of a block of memory.\nThe parameters given to Layout::from_size_align or some …\nAllocates memory with the global allocator.\nAllocates memory as described by the given layout.\nAllocates zero-initialized memory with the global …\nBehaves like alloc, but also ensures that the contents are …\nAttempts to allocate a block of memory.\nBehaves like allocate, but also ensures that the returned …\nCreates a “by reference” adapter for this instance of …\nDeallocates memory with the global allocator.\nDeallocates the block of memory at the given ptr pointer …\nDeallocates the memory referenced by ptr.\nAttempts to extend the memory block.\nBehaves like grow, but also ensures that the new contents …\nSignals a memory allocation error.\nReallocates memory with the global allocator.\nShrinks or grows a block of memory to the given new_size …\nAttempts to shrink the memory block.\nA trait for borrowing data.\nA trait for mutably borrowing data.\nBorrowed data.\nA clone-on-write smart pointer.\nOwned data.\nThe resulting type after obtaining ownership.\nA generalization of Clone to borrowed data.\nImmutably borrows from an owned value.\nMutably borrows from an owned value.\nUses borrowed data to replace owned data, usually by …\nCreates owned data from borrowed data, usually by cloning.\nA pointer type that uniquely owns a heap allocation of …\nThinBox.\nThe memory allocator returned an error\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nA priority queue implemented with a binary heap.\nError due to the computed capacity exceeding the collection…\nA doubly-linked list with owned nodes.\nThe error type for try_reserve methods.\nDetails of the allocation that caused a TryReserveError\nA double-ended queue implemented with a growable ring …\nA priority queue implemented with a binary heap.\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nA doubly-linked list with owned nodes.\nA double-ended queue (deque) implemented with a growable …\nThe layout of allocation request that failed\nA priority queue implemented with a binary heap.\nA draining iterator over the elements of a BinaryHeap.\nA draining iterator over the elements of a BinaryHeap.\nAn owning iterator over the elements of a BinaryHeap.\nAn iterator over the elements of a BinaryHeap.\nStructure wrapping a mutable reference to the greatest …\nAn ordered map based on a B-Tree.\nA cursor over a BTreeMap.\nA cursor over a BTreeMap with editing operations.\nA cursor over a BTreeMap with editing operations, and …\nA view into a single entry in a map, which may either be …\nAn iterator produced by calling extract_if on BTreeMap.\nAn owning iterator over the entries of a BTreeMap, sorted …\nAn owning iterator over the keys of a BTreeMap.\nAn owning iterator over the values of a BTreeMap.\nAn iterator over the entries of a BTreeMap.\nA mutable iterator over the entries of a BTreeMap.\nAn iterator over the keys of a BTreeMap.\nAn occupied entry.\nA view into an occupied entry in a BTreeMap. It is part of …\nThe error returned by try_insert when the key already …\nAn iterator over a sub-range of entries in a BTreeMap.\nA mutable iterator over a sub-range of entries in a …\nError type returned by CursorMut::insert_before and …\nA vacant entry.\nA view into a vacant entry in a BTreeMap. It is part of …\nAn iterator over the values of a BTreeMap.\nA mutable iterator over the values of a BTreeMap.\nThe entry in the map that was already occupied.\nThe value which was not inserted, because the entry was …\nAn ordered set based on a B-Tree.\nA cursor over a BTreeSet.\nA cursor over a BTreeSet with editing operations.\nA cursor over a BTreeSet with editing operations, and …\nA lazy iterator producing elements in the difference of …\nAn iterator produced by calling extract_if on BTreeSet.\nA lazy iterator producing elements in the intersection of …\nAn owning iterator over the items of a BTreeSet in …\nAn iterator over the items of a BTreeSet.\nAn iterator over a sub-range of items in a BTreeSet.\nA lazy iterator producing elements in the symmetric …\nA lazy iterator producing elements in the union of BTreeSet…\nError type returned by CursorMut::insert_before and …\nA cursor over a LinkedList.\nA cursor over a LinkedList with editing operations.\nAn iterator produced by calling extract_if on LinkedList.\nAn owning iterator over the elements of a LinkedList.\nAn iterator over the elements of a LinkedList.\nA mutable iterator over the elements of a LinkedList.\nA doubly-linked list with owned nodes.\nA draining iterator over the elements of a VecDeque.\nAn owning iterator over the elements of a VecDeque.\nAn iterator over the elements of a VecDeque.\nA mutable iterator over the elements of a VecDeque.\nA double-ended queue implemented with a growable ring …\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nCString and its related types.\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nPossible alignments returned by Formatter::align\nThis structure represents a safely precompiled version of …\nb formatting.\nIndication that contents should be center-aligned.\n? formatting.\nDerive macro generating an impl of the trait Debug.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nFormat trait for an empty format, {}.\nContains the error value\nThe error type which is returned from formatting a message …\nConfiguration for formatting.\nImplements fmt::Debug and fmt::Display using a function.\nIndication that contents should be left-aligned.\ne formatting.\nx formatting.\no formatting.\nContains the success value\np formatting.\nThe type returned by formatter methods.\nIndication that contents should be right-aligned.\nE formatting.\nX formatting.\nA trait for writing or formatting into Unicode-accepting …\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nTakes an Arguments struct and returns the resulting …\nCreates a type whose fmt::Debug and fmt::Display impls are …\nTakes an output stream and an Arguments struct that can be …\nWrites a char into this writer, returning whether the …\nGlue for usage of the write! macro with implementors of …\nWrites a string slice into this writer, returning whether …\nA single-threaded reference-counting pointer. ‘Rc’ …\nA uniquely owned Rc.\nWeak is a version of Rc that holds a non-owning reference …\nAn iterator over a slice in (non-overlapping) chunks (N …\nAn iterator over a slice in (non-overlapping) mutable …\nA windowed iterator over a slice in overlapping chunks (N …\nAn iterator over slice in (non-overlapping) chunks …\nAn iterator over slice in (non-overlapping) mutable chunks …\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nHelper trait for [T]::concat.\nAn iterator over the escaped version of a byte slice.\nImmutable slice iterator\nMutable slice iterator.\nHelper trait for [T]::join\nThe resulting type after concatenation\nThe resulting type after concatenation\nThe output type returned by methods.\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over subslices separated by elements that …\nAn iterator over the subslices of the vector which are …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nA helper trait used for indexing operations.\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over overlapping subslices of length size.\nImplementation of [T]::concat\nConverts a reference to T into a slice of length 1 …\nForms a mutable slice from a pointer range.\nForms a slice from a pointer range.\nForms a slice from a pointer and a length.\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to T into a slice of length 1 …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nReturns a pointer to the output at this location, without …\nReturns a mutable pointer to the output at this location, …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nImplementation of [T]::join\nPerforms bounds checking of a range.\nPerforms bounds checking of a range without panicking.\nAn iterator over the bytes of a string slice.\nAn iterator over the chars of a string slice, and their …\nAn iterator over the chars of a string slice.\nAn iterator of u16 over the string encoded as UTF-16.\nThe associated error which can be returned from parsing.\nThe return type of str::escape_debug.\nThe return type of str::escape_default.\nThe return type of str::escape_unicode.\nParse a value from a string\nAn iterator over the lines of a string, as string slices.\nCreated with the method lines_any.\nCreated with the method match_indices.\nCreated with the method matches.\nAn error returned when parsing a bool using from_str fails\nCreated with the method rmatch_indices.\nCreated with the method rmatches.\nCreated with the method rsplit.\nCreated with the method rsplitn.\nCreated with the method rsplit_terminator.\nCreated with the method split.\nAn iterator over the non-ASCII-whitespace substrings of a …\nAn iterator over the substrings of a string, terminated by …\nCreated with the method splitn.\nCreated with the method split_terminator.\nAn iterator over the non-whitespace substrings of a string,\nAn item returned by the Utf8Chunks iterator.\nAn iterator used to decode a slice of mostly UTF-8 bytes …\nErrors which can occur when attempting to interpret a …\nConverts a boxed slice of bytes to a boxed string slice …\nCreates a &str from a pointer and a length.\nCreates a &mut str from a pointer and a length.\nParses a string s to return a value of this type.\nConverts a slice of bytes to a string slice.\nConverts a mutable slice of bytes to a mutable string …\nConverts a slice of bytes to a string slice without …\nConverts a slice of bytes to a string slice without …\nThe string Pattern API.\nAssociated type for <&[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <F as Pattern>::Searcher<'a>.\nAssociated type for <char as Pattern>::Searcher<'a>.\nAssociated type for <&[char] as Pattern>::Searcher<'a>.\nExpresses that every byte of the haystack has been …\nA marker trait to express that a ReverseSearcher can be …\nExpresses that a match of the pattern has been found at …\nA string pattern.\nExpresses that haystack[a..b] has been rejected as a …\nA reverse searcher for a string pattern.\nResult of calling Searcher::next() or …\nA searcher for a string pattern.\nAssociated searcher for this pattern\nAssociated type for <&str as Pattern>::Searcher<'a>.\nGetter for the underlying string to be searched in\nConstructs the associated searcher from self and the …\nChecks whether the pattern matches anywhere in the haystack\nChecks whether the pattern matches at the front of the …\nChecks whether the pattern matches at the back of the …\nPerforms the next search step starting from the front.\nPerforms the next search step starting from the back.\nFinds the next Match result. See next().\nFinds the next Match result. See next_back().\nFinds the next Reject result. See next() and next_match().\nFinds the next Reject result. See next_back().\nRemoves the pattern from the front of haystack, if it …\nRemoves the pattern from the back of haystack, if it …\nA draining iterator for String.\nA possible error value when converting a String from a …\nA possible error value when converting a String from a …\nA type alias for Infallible.\nA UTF-8–encoded, growable string.\nA trait for converting a value to a String.\nConverts the given value to a String.\nA thread-safe reference-counting pointer. ‘Arc’ stands …\nWeak is a version of Arc that holds a non-owning reference …\nAn analogous trait to Wake but used to construct a …\nThe implementation of waking a task on an executor.\nWake this task.\nWake this task.\nWake this task without consuming the waker.\nWake this task without consuming the local waker.\nA draining iterator for Vec<T>.\nAn iterator which uses a closure to determine if an …\nAn iterator that moves out of a vector.\nA splicing iterator for Vec.\nA contiguous growable array type, written as Vec<T>, short …\nMemory allocation APIs\nUtilities for dynamic typing or type reflection.\nSIMD and vendor intrinsics module.\nUtilities for the array primitive type.\nOperations on ASCII strings and characters.\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other …\nUnstable module containing the unstable assert_matches …\nAsserts that two expressions are not equal to each other …\nChecks that the preconditions of an unsafe function are …\nComposable asynchronous iteration.\nUtilities for working with borrowed data.\nShareable mutable containers.\nEvaluates boolean combinations of configuration flags at …\nA macro for defining #[cfg] match-like statements.\nUtilities for the char primitive type.\nThe Clone trait for types that cannot be ‘implicitly …\nUtilities for comparing and ordering values.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nSame as format_args, but can be used in some const …\nTraits for conversions between types.\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other.\nAsserts that two expressions are not equal to each other.\nThe Default trait for types with a default value.\nInspects an environment variable at compile time.\nInterfaces for working with Errors.\nConstants for the f128 quadruple-precision floating point …\nConstants for the f16 half-precision floating point type.\nConstants for the f32 single-precision floating point type.\nConstants for the f64 double-precision floating point type.\nPlatform-specific types, as defined by C.\nExpands to the file name in which it was invoked.\nUtilities for formatting and printing strings.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nAsynchronous basic functionality.\nGeneric hashing support.\nHints to compiler that affects how code should be emitted …\nRedundant constants module for the i128 primitive type.\nRedundant constants module for the i16 primitive type.\nRedundant constants module for the i32 primitive type.\nRedundant constants module for the i64 primitive type.\nRedundant constants module for the i8 primitive type.\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nCompiler intrinsics.\nTraits, helpers, and type definitions for core I/O …\nRedundant constants module for the isize primitive type.\nComposable external iteration.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nPrimitive traits and types representing basic properties …\nReturns whether the given expression matches the provided …\nBasic functions for dealing with memory.\nExpands to a string that represents the current module …\nNetworking primitives for IP communication.\nNumeric traits and functions for the built-in numeric …\nOverloadable operators.\nOptional values.\nOptionally inspects an environment variable at compile …\nPanic support in the standard library.\nPanics the current thread.\nPanic support for core\nHelper module for exporting the pattern_type macro\nCreates a pattern type.\nTypes that pin data to a location in memory.\nThe core prelude\nThis module reexports the primitive types to allow usage …\nManually manage memory through raw pointers.\nExperimental replacement range types\nError handling with the Result type.\nPortable SIMD module.\nSlice management and manipulation.\nString manipulation.\nStringifies its arguments.\nSynchronization primitives\nTypes and Traits for working with asynchronous tasks.\nTemporal quantification.\nIndicates unfinished code.\nEnables or disables tracing functionality used for …\nUnwraps a result or propagates its error.\nRedundant constants module for the u128 primitive type.\nRedundant constants module for the u16 primitive type.\nRedundant constants module for the u32 primitive type.\nRedundant constants module for the u64 primitive type.\nRedundant constants module for the u8 primitive type.\nProvides the assert_unsafe_precondition macro as well as …\nIndicates unimplemented code by panicking with a message …\nIndicates unreachable code.\nRedundant constants module for the usize primitive type.\nWrites formatted data into a buffer.\nWrites formatted data into a buffer, with a newline …\nThe AllocError error indicates an allocation failure that …\nAn implementation of Allocator can allocate, grow, shrink, …\nA memory allocator that can be registered as the standard …\nLayout of a block of memory.\nThe parameters given to Layout::from_size_align or some …\nAllocates memory as described by the given layout.\nBehaves like alloc, but also ensures that the contents are …\nAttempts to allocate a block of memory.\nBehaves like allocate, but also ensures that the returned …\nCreates a “by reference” adapter for this instance of …\nDeallocates the block of memory at the given ptr pointer …\nDeallocates the memory referenced by ptr.\nAttempts to extend the memory block.\nBehaves like grow, but also ensures that the new contents …\nShrinks or grows a block of memory to the given new_size …\nAttempts to shrink the memory block.\nA trait to emulate dynamic typing.\nA TypeId represents a globally unique identifier for a …\nGets the TypeId of self.\nReturns the name of a type as a string slice.\nReturns the type name of the pointed-to value as a string …\nInline assembly.\nModule-level inline assembly.\nPlatform-specific intrinsics for the x86_64 platform.\nResult of the cpuid instruction.\nEqual (ordered, non-signaling)\nEqual (ordered, signaling)\nEqual (unordered, non-signaling)\nEqual (unordered, signaling)\nFalse (ordered, non-signaling)\nFalse (ordered, signaling)\nGreater-than-or-equal (ordered, non-signaling)\nGreater-than-or-equal (ordered, signaling)\nGreater-than (ordered, non-signaling)\nGreater-than (ordered, signaling)\nLess-than-or-equal (ordered, non-signaling)\nLess-than-or-equal (ordered, signaling)\nLess-than (ordered, non-signaling)\nLess-than (ordered, signaling)\nNot-equal (ordered, non-signaling)\nNot-equal (ordered, signaling)\nNot-equal (unordered, non-signaling)\nNot-equal (unordered, signaling)\nNot-greater-than-or-equal (unordered, non-signaling)\nNot-greater-than-or-equal (unordered, signaling)\nNot-greater-than (unordered, non-signaling)\nNot-greater-than (unordered, signaling)\nNot-less-than-or-equal (unordered, non-signaling)\nNot-less-than-or-equal (unordered, signaling)\nNot-less-than (unordered, non-signaling)\nNot-less-than (unordered, signaling)\nOrdered (non-signaling)\nOrdered (signaling)\nTrue (unordered, non-signaling)\nTrue (unordered, signaling)\nUnordered (non-signaling)\nUnordered (signaling)\nThe _MM_CMPINT_ENUM type used to specify comparison …\nEqual\nFalse\nLess-than-or-equal\nLess-than\nNot-equal\nNot less-than-or-equal\nNot less-than\nTrue\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_STATE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_FLUSH_ZERO_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nround up and do not suppress exceptions\nuse MXCSR.RC; see vendor::_MM_SET_ROUNDING_MODE\nround down and do not suppress exceptions\nuse MXCSR.RC and suppress exceptions; see …\nround to nearest and do not suppress exceptions\nsuppress exceptions\ndo not suppress exceptions\nuse MXCSR.RC and do not suppress exceptions; see …\nround to nearest\nround down\nround up\ntruncate\ntruncate and do not suppress exceptions\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nThe MM_MANTISSA_NORM_ENUM type used to specify mantissa …\nThe MM_MANTISSA_SIGN_ENUM type used to specify mantissa …\ninterval [1, 2)\ninterval [0.5, 1)\ninterval [0.5, 2)\ninterval [0.75, 1.5)\nDEST = NaN if sign(SRC) = 1\nsign = sign(SRC)\nsign = 0\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_MASK\nSee _mm_setcsr\nSee _mm_setcsr\nThe MM_PERM_ENUM type used to specify shuffle operations …\nSee _mm_setcsr\nSee _MM_GET_ROUNDING_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nA utility function for creating masks to use with Intel …\nTranspose the 4x4 matrix formed by 4 rows of __m128 in …\nMask only: return the bit mask\nFor each character in a, find if it is in b (Default)\nThe strings defined by a and b are equal\nSearch for the defined substring in the target\nFor each character in a, determine if …\nIndex only: return the least significant bit (Default)\nNegates results only before the end of the string\nDo not negate results before the end of the string\nIndex only: return the most significant bit\nNegates results\nDo not negate results (Default)\nString contains signed 8-bit characters\nString contains unsigned 16-bit characters\nString contains unsigned 8-bit characters (Default)\nMask only: return the byte mask\nString contains unsigned 16-bit characters\nTransaction abort due to the transaction using too much …\nTransaction abort due to a memory conflict with another …\nTransaction abort due to a debug trap.\nTransaction explicitly aborted with xabort. The parameter …\nTransaction abort in a inner nested transaction.\nTransaction retry is possible.\nTransaction successfully started.\nXFEATURE_ENABLED_MASK for XCR\nSee __cpuid_count.\nReturns the result of the cpuid instruction for a given …\nReturns the highest-supported leaf (EAX) and sub-leaf (ECX…\n128-bit wide set of four f32 types, x86-specific\n128-bit wide set of eight u16 types, x86-specific\n128-bit wide set of two f64 types, x86-specific\n128-bit wide set of 8 f16 types, x86-specific\n128-bit wide integer vector type, x86-specific\n256-bit wide set of eight f32 types, x86-specific\n256-bit wide set of 16 u16 types, x86-specific\n256-bit wide set of four f64 types, x86-specific\n256-bit wide set of 16 f16 types, x86-specific\n256-bit wide integer vector type, x86-specific\n512-bit wide set of sixteen f32 types, x86-specific\n512-bit wide set of 32 u16 types, x86-specific\n512-bit wide set of eight f64 types, x86-specific\n512-bit wide set of 32 f16 types, x86-specific\n512-bit wide integer vector type, x86-specific\nThe __mmask16 type used in AVX-512 intrinsics, a 16-bit …\nThe __mmask32 type used in AVX-512 intrinsics, a 32-bit …\nThe __mmask64 type used in AVX-512 intrinsics, a 64-bit …\nThe __mmask8 type used in AVX-512 intrinsics, a 8-bit …\nReads the current value of the processor’s time-stamp …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nBitwise logical AND of inverted a with b.\nBitwise logical AND of inverted a with b.\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nClears all bits below the least significant zero bit of x.\nClears all bits below the least significant zero bit of x.\nSets all bits of x to 1 except for the least significant …\nSets all bits of x to 1 except for the least significant …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x.\nSets the least significant zero bit of x.\nSets all bits of x below the least significant one.\nSets all bits of x below the least significant one.\nExtracts lowest set isolated bit.\nExtracts lowest set isolated bit.\nClears least significant bit and sets all other bits.\nClears least significant bit and sets all other bits.\nGets mask up to lowest set bit.\nGets mask up to lowest set bit.\nResets the lowest set bit of x.\nResets the lowest set bit of x.\nReturns an integer with the reversed byte order of x\nReturns an integer with the reversed byte order of x\nZeroes higher bits of a >= index.\nZeroes higher bits of a >= index.\nConvert 16-bit mask a into an integer value, and store the …\nConvert 32-bit mask a into an integer value, and store the …\nConvert 64-bit mask a into an integer value, and store the …\nConvert 8-bit mask a to a 32-bit integer value and store …\nConvert 32-bit integer value a to an 16-bit mask and store …\nConvert integer value a into an 32-bit mask, and store the …\nConvert 32-bit integer value a to an 8-bit mask and store …\nConvert integer value a into an 64-bit mask, and store the …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nAdd 16-bit masks a and b, and store the result in dst.\nAdd 32-bit masks in a and b, and store the result in k.\nAdd 64-bit masks in a and b, and store the result in k.\nAdd 8-bit masks a and b, and store the result in dst.\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise AND of 32-bit masks a and b, and store …\nCompute the bitwise AND of 64-bit masks a and b, and store …\nBitwise AND of 8-bit masks a and b, and store the result …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCompute the bitwise NOT of 32-bit masks a and then AND …\nCompute the bitwise NOT of 64-bit masks a and then AND …\nBitwise AND NOT of 8-bit masks a and b, and store the …\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise NOT of 32-bit mask a, and store the …\nCompute the bitwise NOT of 64-bit mask a, and store the …\nBitwise NOT of 8-bit mask a, and store the result in dst.\nCompute the bitwise OR of 16-bit masks a and b, and store …\nCompute the bitwise OR of 32-bit masks a and b, and store …\nCompute the bitwise OR of 64-bit masks a and b, and store …\nBitwise OR of 8-bit masks a and b, and store the result in …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nShift 16-bit mask a left by count bits while shifting in …\nShift the bits of 32-bit mask a left by count while …\nShift the bits of 64-bit mask a left by count while …\nShift 8-bit mask a left by count bits while shifting in …\nShift 16-bit mask a right by count bits while shifting in …\nShift the bits of 32-bit mask a right by count while …\nShift the bits of 64-bit mask a right by count while …\nShift 8-bit mask a right by count bits while shifting in …\nCompute the bitwise AND of 16-bit masks a and b, and if …\nCompute the bitwise AND of 32-bit masks a and b, and if …\nCompute the bitwise AND of 64-bit masks a and b, and if …\nCompute the bitwise AND of 8-bit masks a and b, and if the …\nCompute the bitwise NOT of 16-bit mask a and then AND with …\nCompute the bitwise NOT of 32-bit mask a and then AND with …\nCompute the bitwise NOT of 64-bit mask a and then AND with …\nCompute the bitwise NOT of 8-bit mask a and then AND with …\nCompute the bitwise AND of 16-bit masks a and b, if the …\nCompute the bitwise AND of 32-bit masks a and b, if the …\nCompute the bitwise AND of 64-bit masks a and b, if the …\nCompute the bitwise AND of 8-bit masks a and b, if the …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XNOR of 32-bit masks a and b, and …\nCompute the bitwise XNOR of 64-bit masks a and b, and …\nBitwise XNOR of 8-bit masks a and b, and store the result …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nCompute the bitwise XOR of 32-bit masks a and b, and store …\nCompute the bitwise XOR of 64-bit masks a and b, and store …\nBitwise XOR of 8-bit masks a and b, and store the result …\nLoad 16-bit mask from memory\nLoad 32-bit mask from memory into k.\nLoad 64-bit mask from memory into k.\nLoad 8-bit mask from memory\nCounts the leading most significant zero bits.\nCounts the leading most significant zero bits.\nComputes the absolute values of packed 16-bit integers in a…\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute values of packed 8-bit integers in a.\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds packed single-precision (32-bit) floating-point …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively adds and subtracts packed double-precision …\nAlternatively adds and subtracts packed single-precision …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenates pairs of 16-byte blocks in a and b into a …\nComputes the bitwise AND of a packed double-precision …\nComputes the bitwise AND of packed single-precision …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise NOT of packed double-precision …\nComputes the bitwise NOT of packed single-precision …\nComputes the bitwise NOT of 256 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlends packed 16-bit integers from a and b using control …\nBlends packed 32-bit integers from a and b using control …\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBlends packed 8-bit integers from a and b using mask.\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcasts 128 bits from memory (composed of 2 packed …\nBroadcasts 128 bits from memory (composed of 4 packed …\nBroadcasts a double-precision (64-bit) floating-point …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nCasts vector of type __m128d to type __m256d; the upper …\nCasts vector of type __m256d to type __m128d.\nCast vector of type __m256d to type __m256h. This …\nCast vector of type __m256d to type __m256.\nCasts vector of type __m256d to type __m256i.\nCast vector of type __m128h to type __m256h. The upper 8 …\nCast vector of type __m256h to type __m128h. This …\nCast vector of type __m256h to type __m256d. This …\nCast vector of type __m256h to type __m256. This intrinsic …\nCast vector of type __m256h to type __m256i. This …\nCasts vector of type __m128 to type __m256; the upper 128 …\nCasts vector of type __m256 to type __m128.\nCast vector of type __m256 to type __m256d.\nCast vector of type __m256 to type __m256h. This intrinsic …\nCasts vector of type __m256 to type __m256i.\nCasts vector of type __m128i to type __m256i; the upper …\nCasts vector of type __m256i to type __m256d.\nCast vector of type __m256i to type __m256h. This …\nCasts vector of type __m256i to type __m256.\nCasts vector of type __m256i to type __m128i.\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality.\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nSign-extend 16-bit integers to 32-bit integers.\nSign-extend 16-bit integers to 64-bit integers.\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign-extend 32-bit integers to 64-bit integers.\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts packed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign-extend 8-bit integers to 16-bit integers.\nSign-extend 8-bit integers to 32-bit integers.\nSign-extend 8-bit integers to 64-bit integers.\nZeroes extend packed unsigned 16-bit integers in a to …\nZero-extend the lower four unsigned 16-bit integers in a …\nConvert packed unsigned 16-bit integers in a to packed …\nZero-extend unsigned 32-bit integers in a to 64-bit …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero-extend unsigned 8-bit integers in a to 16-bit …\nZero-extend the lower eight unsigned 8-bit integers in a …\nZero-extend the lower four unsigned 8-bit integers in a to …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 8 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 8 x 32-bit float values in the 256-bit vector …\nReturns the first element of the input vector of …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nReturns the first element of the input vector of [8 x i32].\nReturns the first element of the input vector of …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nComputes the division of each of the 4 packed 64-bit …\nDivide packed half-precision (16-bit) floating-point …\nComputes the division of each of the 8 packed 32-bit …\nConditionally multiplies the packed single-precision …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nExtracts a 16-bit integer from a, selected with INDEX. …\nExtracts a 32-bit integer from a, selected with INDEX.\nExtracts a 64-bit integer from a, selected with INDEX.\nExtracts an 8-bit integer from a, selected with INDEX. …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of integer data) from a, …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (of integer data) from a selected with …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally adds adjacent pairs of 32-bit integers in a …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nHorizontally subtract adjacent pairs of 32-bit integers in …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nScatter 64-bit integers from a into memory using 32-bit …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopies a to result, and inserts the 16-bit integer i into …\nCopies a to result, and inserts the 32-bit integer i into …\nCopies a to result, and insert the 64-bit integer i into …\nCopies a to result, and inserts the 8-bit integer i into …\nCopies a to result, then inserts 128 bits (composed of 2 …\nCopies a to result, then inserts 128 bits (composed of 4 …\nCopies a to result, then inserts 128 bits from b into …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopies a to dst, then insert 128 bits (of integer data) …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nLoads 256-bits of integer data from unaligned memory into …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nLoads two 128-bit values (composed of 4 packed …\nLoads two 128-bit values (composed of 2 packed …\nLoads two 128-bit values (composed of integer data) from …\nLoad 256-bits (composed of 16 packed 16-bit integers) from …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoad 256-bits (composed of 32 packed 8-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies packed signed 16-bit integers in a and b, …\nVertically multiplies each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-1-.js b/search.desc/wiwi/wiwi-desc-1-.js index 7b8d2ca69..68186e141 100644 --- a/search.desc/wiwi/wiwi-desc-1-.js +++ b/search.desc/wiwi/wiwi-desc-1-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 1, "Sets each bit of the returned mask based on the most …\nSets each bit of the returned mask based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nComputes the sum of absolute differences (SADs) of …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed unsigned 16-bit integers in a and b, …\nMultiplies packed 16-bit integers in a and b, producing …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed 32-bit integers in a and b, producing\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR packed double-precision (64-bit) …\nComputes the bitwise OR packed single-precision (32-bit) …\nComputes the bitwise OR of 256 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nShuffles 256 bits (composed of 4 packed double-precision …\nShuffles 256 bits (composed of 8 packed single-precision …\nShuffles 128-bits (composed of integer data) selected by …\nShuffles 128-bits of integer data selected by imm8 from a …\nPermutes 64-bit integers from a using control mask imm8.\nShuffles 64-bit floating-point elements in a across lanes …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nPermutes packed 32-bit integers from a according to the …\nShuffles eight 32-bit floating-point elements in a across …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nComputes the approximate reciprocal of packed …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nComputes the approximate reciprocal square root of packed …\nComputes the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements of returned …\nBroadcasts 32-bit integer a to all elements of returned …\nBroadcasts 64-bit integer a to all elements of returned …\nBroadcasts 8-bit integer a to all elements of returned …\nBroadcasts double-precision (64-bit) floating-point value a…\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcasts single-precision (32-bit) floating-point value a…\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nReturns vector of type __m256d with all elements set to …\nReturn vector of type __m256h with all elements set to …\nReturns vector of type __m256 with all elements set to …\nReturns vector of type __m256i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in 128-bit lanes of a using the …\nShuffles bytes from a according to the content of b.\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles 16-bit integers in the high 64 bits of 128-bit …\nShuffles 16-bit integers in the low 64 bits of 128-bit …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nStores the high and low 128-bit halves (each composed of 4 …\nStores the high and low 128-bit halves (each composed of 2 …\nStores the high and low 128-bit halves (each composed of …\nStore 256-bits (composed of 16 packed 16-bit integers) …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStore 256-bits (composed of 32 packed 8-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nLoad 256-bits of integer data from memory into dst using a …\nMoves double-precision values from a 256-bit vector of …\nMoves single-precision floating point values from a …\nMoves integer data from a 256-bit integer vector to a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtracts packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nReturns vector of type __m256d with indeterminate elements.\nReturn vector of type __m256h with undefined elements. In …\nReturns vector of type __m256 with indeterminate elements. …\nReturns vector of type __m256i with with indeterminate …\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of packed double-precision …\nComputes the bitwise XOR of packed single-precision …\nComputes the bitwise XOR of 256 bits (representing integer …\nZeroes the contents of all XMM or YMM registers.\nZeroes the upper 128 bits of all YMM registers; the lower …\nConstructs a 256-bit floating-point vector of [4 x double] …\nCast vector of type __m256h to type __m128h. The upper 8 …\nConstructs a 256-bit floating-point vector of [8 x float] …\nConstructs a 256-bit integer vector from a 128-bit integer …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed half-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of 512 bits (composed of packed …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise AND of 512 bits (representing integer …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of 512 bits (composed of packed …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nCompute the bitwise NOT of 512 bits (representing integer …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nShift 128-bit lanes in a left by imm8 bytes while shifting …\nShift 128-bit lanes in a right by imm8 bytes while …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m512d to type __m128d. This …\nCast vector of type __m512d to type __m256d. This …\nCast vector of type __m512d to type __m512h. This …\nCast vector of type __m512d to type __m512. This intrinsic …\nCast vector of type __m512d to type __m512i. This …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m512h to type __m128h. This …\nCast vector of type __m512h to type __m256h. This …\nCast vector of type __m512h to type __m512d. This …\nCast vector of type __m512h to type __m512. This intrinsic …\nCast vector of type __m512h to type __m512i. This …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m512 to type __m128. This intrinsic …\nCast vector of type __m512 to type __m256. This intrinsic …\nCast vector of type __m512 to type __m512d. This intrinsic …\nCast vector of type __m512 to type __m512h. This intrinsic …\nCast vector of type __m512 to type __m512i. This intrinsic …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nCast vector of type __m512i to type __m512d. This …\nCast vector of type __m512i to type __m512h. This …\nCast vector of type __m512i to type __m512. This intrinsic …\nCast vector of type __m512i to type __m128i. This …\nCast vector of type __m512i to type __m256i. This …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nCopy the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nCopy the lower 32-bit integer in a to dst.\nCopy the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nConverts integer mask into bitmask, storing the result in …\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCopy 16-bit mask a to k.\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise OR of 16-bit masks a and b, and store …\nPerforms bitwise OR between k1 and k2, storing the result …\nPerforms bitwise OR between k1 and k2, storing the result …\nUnpack and interleave 8 bits from masks a and b, and store …\nUnpack and interleave 32 bits from masks a and b, and …\nUnpack and interleave 16 bits from masks a and b, and …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoad 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nLoad 512-bits (composed of 32 packed 16-bit integers) from …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 64 packed 8-bit integers) from …\nLoads 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoads 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nVertically multiply each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nConverts bit mask k1 into an integer value, storing the …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition using …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed unsigned 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication …\nReduce the packed 64-bit integers in a by multiplication …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR using …\nReduce the packed 64-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nCompute the bitwise OR of 512 bits (representing integer …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition. …\nReduce the packed 64-bit integers in a by addition. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND. …\nReduce the packed 64-bit integers in a by bitwise AND. …\nReduce the packed signed 32-bit integers in a by maximum. …\nReduce the packed signed 64-bit integers in a by maximum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by minimum. …\nReduce the packed signed 64-bit integers in a by minimum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication. …\nReduce the packed 64-bit integers in a by multiplication. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR. …\nReduce the packed 64-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst.\nBroadcast 64-bit integer a to all elements of dst.\nBroadcast 8-bit integer a to all elements of dst.\nBroadcast 64-bit float a to all elements of dst.\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcast 32-bit float a to all elements of dst.\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSet packed 16-bit integers in dst with the supplied values.\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values.\nSet packed 8-bit integers in dst with the supplied values.\nSet packed double-precision (64-bit) floating-point …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 1, "Compare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nLoads 8 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 8 single-precision (32-bit) floating-point elements …\nLoads 4 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nCreates mask from the most significant bit of each 8-bit …\nSets each bit of the returned mask based on the most …\nSets each bit of the returned mask based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nComputes the sum of absolute differences (SADs) of …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed unsigned 16-bit integers in a and b, …\nMultiplies packed 16-bit integers in a and b, producing …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed 32-bit integers in a and b, producing\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR packed double-precision (64-bit) …\nComputes the bitwise OR packed single-precision (32-bit) …\nComputes the bitwise OR of 256 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nShuffles 256 bits (composed of 4 packed double-precision …\nShuffles 256 bits (composed of 8 packed single-precision …\nShuffles 128-bits (composed of integer data) selected by …\nShuffles 128-bits of integer data selected by imm8 from a …\nPermutes 64-bit integers from a using control mask imm8.\nShuffles 64-bit floating-point elements in a across lanes …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nPermutes packed 32-bit integers from a according to the …\nShuffles eight 32-bit floating-point elements in a across …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nComputes the approximate reciprocal of packed …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nComputes the approximate reciprocal square root of packed …\nComputes the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements of returned …\nBroadcasts 32-bit integer a to all elements of returned …\nBroadcasts 64-bit integer a to all elements of returned …\nBroadcasts 8-bit integer a to all elements of returned …\nBroadcasts double-precision (64-bit) floating-point value a…\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcasts single-precision (32-bit) floating-point value a…\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nReturns vector of type __m256d with all elements set to …\nReturn vector of type __m256h with all elements set to …\nReturns vector of type __m256 with all elements set to …\nReturns vector of type __m256i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in 128-bit lanes of a using the …\nShuffles bytes from a according to the content of b.\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles 16-bit integers in the high 64 bits of 128-bit …\nShuffles 16-bit integers in the low 64 bits of 128-bit …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nStores the high and low 128-bit halves (each composed of 4 …\nStores the high and low 128-bit halves (each composed of 2 …\nStores the high and low 128-bit halves (each composed of …\nStore 256-bits (composed of 16 packed 16-bit integers) …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStore 256-bits (composed of 32 packed 8-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nLoad 256-bits of integer data from memory into dst using a …\nMoves double-precision values from a 256-bit vector of …\nMoves single-precision floating point values from a …\nMoves integer data from a 256-bit integer vector to a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtracts packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nReturns vector of type __m256d with indeterminate elements.\nReturn vector of type __m256h with undefined elements. In …\nReturns vector of type __m256 with indeterminate elements. …\nReturns vector of type __m256i with with indeterminate …\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of packed double-precision …\nComputes the bitwise XOR of packed single-precision …\nComputes the bitwise XOR of 256 bits (representing integer …\nZeroes the contents of all XMM or YMM registers.\nZeroes the upper 128 bits of all YMM registers; the lower …\nConstructs a 256-bit floating-point vector of [4 x double] …\nCast vector of type __m256h to type __m128h. The upper 8 …\nConstructs a 256-bit floating-point vector of [8 x float] …\nConstructs a 256-bit integer vector from a 128-bit integer …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed half-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of 512 bits (composed of packed …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise AND of 512 bits (representing integer …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of 512 bits (composed of packed …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nCompute the bitwise NOT of 512 bits (representing integer …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nShift 128-bit lanes in a left by imm8 bytes while shifting …\nShift 128-bit lanes in a right by imm8 bytes while …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m512d to type __m128d. This …\nCast vector of type __m512d to type __m256d. This …\nCast vector of type __m512d to type __m512h. This …\nCast vector of type __m512d to type __m512. This intrinsic …\nCast vector of type __m512d to type __m512i. This …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m512h to type __m128h. This …\nCast vector of type __m512h to type __m256h. This …\nCast vector of type __m512h to type __m512d. This …\nCast vector of type __m512h to type __m512. This intrinsic …\nCast vector of type __m512h to type __m512i. This …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m512 to type __m128. This intrinsic …\nCast vector of type __m512 to type __m256. This intrinsic …\nCast vector of type __m512 to type __m512d. This intrinsic …\nCast vector of type __m512 to type __m512h. This intrinsic …\nCast vector of type __m512 to type __m512i. This intrinsic …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nCast vector of type __m512i to type __m512d. This …\nCast vector of type __m512i to type __m512h. This …\nCast vector of type __m512i to type __m512. This intrinsic …\nCast vector of type __m512i to type __m128i. This …\nCast vector of type __m512i to type __m256i. This …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nCopy the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nCopy the lower 32-bit integer in a to dst.\nCopy the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nConverts integer mask into bitmask, storing the result in …\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCopy 16-bit mask a to k.\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise OR of 16-bit masks a and b, and store …\nPerforms bitwise OR between k1 and k2, storing the result …\nPerforms bitwise OR between k1 and k2, storing the result …\nUnpack and interleave 8 bits from masks a and b, and store …\nUnpack and interleave 32 bits from masks a and b, and …\nUnpack and interleave 16 bits from masks a and b, and …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoad 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nLoad 512-bits (composed of 32 packed 16-bit integers) from …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 64 packed 8-bit integers) from …\nLoads 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoads 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nVertically multiply each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nConverts bit mask k1 into an integer value, storing the …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition using …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed unsigned 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication …\nReduce the packed 64-bit integers in a by multiplication …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR using …\nReduce the packed 64-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-10-.js b/search.desc/wiwi/wiwi-desc-10-.js index b1a4f48ae..82a877ef9 100644 --- a/search.desc/wiwi/wiwi-desc-10-.js +++ b/search.desc/wiwi/wiwi-desc-10-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 10, "Creates a new NonNull that is dangling, but well-aligned.\nCreates a new pointer that is dangling, but well-aligned.\nExecutes the destructor (if any) of the pointed-to value.\nExecutes the destructor (if any) of the pointed-to value.\nCompares raw pointers for equality.\nCompares the addresses of the two function pointers for …\nReturns the argument unchanged.\nConverts a &T to a NonNull<T>.\nConverts a &mut T to a NonNull<T>.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a mutable reference to a raw pointer.\nForms a (possibly-wide) raw pointer from a data pointer …\nPerforms the same functionality as std::ptr::from_raw_parts…\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to a raw pointer.\nReturns a raw pointer to an element or subslice, without …\nHash a raw pointer.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns whether the pointer is properly aligned for T.\nReturns whether the pointer is aligned to align.\nReturns true if the non-null raw slice has a length of 0.\nReturns the size and alignment together as a Layout\nReturns the length of a non-null raw slice.\nReturns the base-2 logarithm of the alignment.\nCreates a new pointer by mapping self’s address to a new …\nReturns a bit mask that can be used to match this …\nExtracts the metadata component of a pointer.\nCreates a new NonNull if ptr is non-null.\nCreates an Alignment from a usize, or returns None if it’…\nCreates a new NonNull.\nCreates an Alignment from a power-of-two usize.\nCreates a null raw pointer.\nCreates a null mutable raw pointer.\nReturns the alignment for a type.\nAdds an offset to a pointer.\nCalculates the distance between two pointers. The returned …\nReads the value from src without moving it. This leaves the\nReads the value from self without moving it. This leaves …\nReads the value from src without moving it. This leaves the\nReads the value from self without moving it. This leaves …\nPerforms a volatile read of the value from src without …\nPerforms a volatile read of the value from self without …\nMoves src into the pointed dst, returning the previous dst …\nReplaces the value at self with src, returning the old …\nReturns the size of the type associated with this vtable.\nForms a raw slice from a pointer and a length.\nCreates a non-null raw slice from a thin pointer and a …\nForms a raw mutable slice from a pointer and a length.\nSubtracts an offset from a pointer (convenience for …\nCalculates the distance between two pointers, where it’s …\nSwaps the values at two mutable locations of the same …\nSwaps the values at two mutable locations of the same …\nSwaps count * size_of::<T>() bytes between the two regions …\nDecompose a (possibly wide) pointer into its data pointer …\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a mutable pointer, picking up …\nCreates a pointer with the given address and no provenance.\nCreates a pointer with the given address and no provenance.\nOverwrites a memory location with the given value without …\nOverwrites a memory location with the given value without …\nSets count * size_of::<T>() bytes of memory starting at dst…\nInvokes memset on the specified pointer, setting …\nOverwrites a memory location with the given value without …\nOverwrites a memory location with the given value without …\nPerforms a volatile write of a memory location with the …\nPerforms a volatile write of a memory location with the …\nA single-threaded reference-counting pointer. ‘Rc’ …\nA uniquely owned Rc.\nWeak is a version of Rc that holds a non-owning reference …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nProvides a raw pointer to the data.\nReturns a raw pointer to the object T pointed to by this …\nConverts to Rc<T>.\nConverts to Rc<[T]>.\nMakes a clone of the Rc pointer.\nMakes a clone of the Weak pointer that points to the same …\nComparison for two Rcs.\nDecrements the strong reference count on the Rc<T> …\nDecrements the strong reference count on the Rc<T> …\nCreates an empty str inside an Rc\nCreates an empty CStr inside an Rc\nCreates an empty [T] inside an Rc\nCreates a new Rc<T>, with the Default value for T.\nConstructs a new Weak<T>, without allocating any memory. …\nAttempts to downcast the Rc<dyn Any> to a concrete type.\nDowncasts the Rc<dyn Any> to a concrete type.\nCreates a new Weak pointer to this allocation.\nCreates a new weak reference to the UniqueRc.\nDrops the Rc.\nDrops the Weak pointer.\nEquality for two Rcs.\nConverts a &CStr into a Rc<CStr>, by copying the contents …\nConverts an OsString into an Rc<OsStr> by moving the …\nConverts a PathBuf into an Rc<Path> by moving the PathBuf …\nAllocates a reference-counted slice and moves v’s items …\nConverts a Path into an Rc by copying the Path data into a …\nAllocates a reference-counted string slice and copies v …\nAllocates a reference-counted string slice and copies v …\nCreates a reference-counted pointer from a clone-on-write …\nAllocates a reference-counted slice and fills it by …\nConverts a [T; N] into an Rc<[T]>.\nReturns the argument unchanged.\nConverts a generic type T into an Rc<T>\nConverts a reference-counted string slice into a byte …\nMove a boxed object to a new, reference counted, …\nCopies the string into a newly allocated Rc<OsStr>.\nConverts a CString into an Rc<CStr> by moving the CString …\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator and collects it into an …\nConstructs an Rc<T> from a raw pointer.\nConverts a raw pointer previously created by into_raw back …\nConstructs an Rc<T, A> from a raw pointer in the provided …\nConverts a raw pointer previously created by into_raw back …\n‘Greater than or equal to’ comparison for two Rcs.\nReturns a mutable reference into the given Rc, if there are\nReturns a mutable reference into the given Rc, without any …\nGreater-than comparison for two Rcs.\nIncrements the strong reference count on the Rc<T> …\nIncrements the strong reference count on the Rc<T> …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the inner value, if the Rc has exactly one strong …\nConsumes the Rc, returning the wrapped pointer.\nConsumes the Weak<T> and turns it into a raw pointer.\nConsumes the Rc, returning the wrapped pointer and …\nConsumes the Weak<T>, returning the wrapped pointer and …\nConverts the UniqueRc into a regular Rc.\n‘Less than or equal to’ comparison for two Rcs.\nLess-than comparison for two Rcs.\nMakes a mutable reference into the given Rc.\nInequality for two Rcs.\nConstructs a new Rc<T>.\nConstructs a new Weak<T>, without allocating any memory. …\nCreates a new UniqueRc.\nConstructs a new Rc<T> while giving you a Weak<T> to the …\nConstructs a new Rc in the provided allocator.\nConstructs a new Weak<T>, without allocating any memory, …\nCreates a new UniqueRc in the provided allocator.\nConstructs a new Rc with uninitialized contents.\nConstructs a new Rc with uninitialized contents in the …\nConstructs a new reference-counted slice with …\nConstructs a new reference-counted slice with …\nConstructs a new Rc with uninitialized contents, with the …\nConstructs a new Rc with uninitialized contents, with the …\nConstructs a new reference-counted slice with …\nConstructs a new reference-counted slice with …\nPartial comparison for two Rcs.\nConstructs a new Pin<Rc<T>>. If T does not implement Unpin…\nConstructs a new Pin<Rc<T>> in the provided allocator. If T…\nReturns true if the two Rcs point to the same allocation …\nReturns true if the two Weaks point to the same allocation …\nGets the number of strong (Rc) pointers to this allocation.\nGets the number of strong (Rc) pointers pointing to this …\nConstructs a new Rc<T>, returning an error if the …\nConstructs a new Rc<T> in the provided allocator, …\nConstructs a new Rc with uninitialized contents, returning …\nConstructs a new Rc with uninitialized contents, in the …\nConstructs a new Rc with uninitialized contents, with the …\nConstructs a new Rc with uninitialized contents, with the …\nReturns the inner value, if the Rc has exactly one strong …\nIf we have the only reference to T then unwrap it. …\nAttempts to upgrade the Weak pointer to an Rc, delaying …\nGets the number of Weak pointers to this allocation.\nGets the number of Weak pointers pointing to this …\nContains the error value\nAn iterator over the value in a Ok variant of a Result.\nAn iterator over a reference to the Ok variant of a Result.\nAn iterator over a mutable reference to the Ok variant of …\nContains the success value\nResult is a type that represents either success (Ok) or …\nReturns res if the result is Ok, otherwise returns the Err …\nCalls op if the result is Ok, otherwise returns the Err …\nConverts from Result<T, E> (or &Result<T, E>) to …\nConverts from Result<T, E> (or &mut Result<T, E>) to …\nConverts from &mut Result<T, E> to Result<&mut T, &mut E>.\nConverts from &Result<T, E> to Result<&T, &E>.\nMaps a Result<&T, E> to a Result<T, E> by cloning the …\nMaps a Result<&mut T, E> to a Result<T, E> by cloning the …\nMaps a Result<&T, E> to a Result<T, E> by copying the …\nMaps a Result<&mut T, E> to a Result<T, E> by copying the …\nConverts from Result<T, E> to Option<E>.\nReturns the contained Ok value, consuming the self value.\nReturns the contained Err value, consuming the self value.\nConverts from Result<Result<T, E>, E> to Result<T, E>\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator: if it is an Err, no …\nCalls a function with a reference to the contained value …\nCalls a function with a reference to the contained value …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the contained Err value, but never panics.\nReturns a consuming iterator over the possibly contained …\nReturns the contained Ok value, but never panics.\nReturns true if the result is Err.\nReturns true if the result is Err and the value inside of …\nReturns true if the result is Ok.\nReturns true if the result is Ok and the value inside of …\nReturns an iterator over the possibly contained value.\nReturns a mutable iterator over the possibly contained …\nMaps a Result<T, E> to Result<U, E> by applying a function …\nMaps a Result<T, E> to Result<T, F> by applying a function …\nReturns the provided default (if Err), or applies a …\nMaps a Result<T, E> to U by applying fallback function …\nConverts from Result<T, E> to Option<T>.\nReturns res if the result is Err, otherwise returns the Ok …\nCalls op if the result is Err, otherwise returns the Ok …\nTakes each element in the Iterator: if it is an Err, no …\nTakes each element in the Iterator: if it is an Err, no …\nTransposes a Result of an Option into an Option of a Result…\nReturns the contained Ok value, consuming the self value.\nReturns the contained Err value, consuming the self value.\nReturns the contained Err value, consuming the self value, …\nReturns the contained Ok value or a provided default.\nReturns the contained Ok value or a default\nReturns the contained Ok value or computes it from a …\nReturns the contained Ok value, consuming the self value, …\nThe number of bytes in a bitmask with this many lanes.\nThis type, reinterpreted as bytes.\nMap from the elements of the input vector to the output …\nSpecifies the number of lanes in a SIMD vector as a type.\nA SIMD vector mask for N elements of width specified by …\nThe mask element type corresponding to this element type.\nMarker trait for types that may be used as SIMD mask …\nA SIMD vector with the shape of [T; N] but the operations …\nSupporting trait for Simd::cast. Typically doesn’t need …\nMarker trait for types that may be used as SIMD vector …\nThis trait provides a possibly-temporary implementation of …\nStatically guarantees that a lane count is marked as …\nCreates a vector from the elements of another vector.\nConverts SIMD vectors to vectors of bytes\nReturns the smallest integer greater than or equal to each …\nTraits for comparing and ordering vectors.\nCreates a new vector from the elements of first and second.\nCreates a new mask from the elements of first and second.\nProduces a vector where every element has the cosine of …\nProduces a vector where every element has the exponential …\nProduces a vector where every element has the exponential …\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nReturns the largest integer value less than or equal to …\nReturns the floating point’s fractional value, with its …\nReturns the argument unchanged.\nCreates an integer value from its representation as a byte …\nCreates an integer value from its representation as a byte …\nCreates a native endian integer value from its memory …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nCalls U::from(self).\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nProduces a vector where every element has the natural …\nProduces a vector where every element has the logarithm …\nProduces a vector where every element has the base-10 …\nProduces a vector where every element has the base-2 …\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nElementwise fused multiply-add. Computes (self * a) + b …\nTraits for vectors with numeric elements.\nThe portable SIMD prelude.\nTraits for vectors of pointers.\nRounds to the nearest integer value. Ties round toward …\nConstructs a new SIMD vector by copying elements from …\nProduces a vector where every element has the sine of the …\nProduces a vector where every element has the square root …\nCreates a new vector from the elements of vector.\nCreates a new mask from the elements of mask.\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nReturns the floating point’s integer value, with its …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nThe mask type returned by each comparison.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the element-wise maximum with other.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nReturns each element with the magnitude of self and the …\nRaw transmutation from an unsigned integer vector type …\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nReturns the maximum of each element.\nReturns the minimum of each element.\nReverses the byte order of each element.\nReverses the byte order of each element.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nWrapping negation.\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nNumber of elements in this vector.\nA SIMD vector mask for N elements of width specified by …\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nThe mask type returned by each comparison.\nVector of mutable pointers to the same type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nA SIMD vector with the shape of [T; N] but the operations …\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of mutable pointers.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nReturns true if all elements are set, or false otherwise.\nReturns true if any element is set, or false otherwise.\nReturns an array reference containing the entire SIMD …\nReturns a mutable array reference containing the entire …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nConverts the mask to a mask of any other element size.\nChanges constness without changing the type.\nChanges constness without changing the type.\nWrites a SIMD vector to the first N elements of a slice.\nReturns each element with the magnitude of self and the …\nDeinterleave two vectors.\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nFinds the index of the first set element.\nA Simd<T, N> has a debug format like the one for [T]:\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an array of bools to a SIMD mask.\nConverts an array to a SIMD vector.\nCreates a mask from a bitmask.\nCreates a mask from a bitmask vector.\nRaw transmutation from an unsigned integer vector type …\nConverts a vector of integers to a mask, where 0 …\nConverts a vector of integers to a mask, where 0 …\nConverts a slice to a SIMD vector containing slice[..N].\nReads from potentially discontiguous indices in slice to …\nReads from indices in slice to construct a SIMD vector. If …\nReads elementwise from pointers into a SIMD vector.\nReads from indices in slice to construct a SIMD vector. …\nConditionally read elementwise from pointers into a SIMD …\nReads from indices in slice to construct a SIMD vector. …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nInterleave two vectors.\nCalls U::from(self).\nCalls U::from(self).\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each element that is null.\nReturns true for each element that is null.\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of elements in this SIMD vector.\nReads contiguous elements from slice. Elements are read so …\nReads contiguous elements from slice. Elements are read so …\nReads contiguous elements from slice. Each element is read …\nReads contiguous elements from slice. Each element is read …\nReads contiguous elements starting at ptr. Each element is …\nReads contiguous elements from slice. Each element is read …\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nResize a vector.\nReverse the order of the elements in the vector.\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nRotates the vector such that the first OFFSET elements of …\nRotates the vector such that the first self.len() - OFFSET …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nWrites the values in a SIMD vector to potentially …\nWrites pointers elementwise into a SIMD vector.\nWrites values from a SIMD vector to multiple potentially …\nConditionally write pointers elementwise into a SIMD …\nWrites values from a SIMD vector to multiple potentially …\nChoose elements from two vectors.\nChoose elements from two masks.\nSets the value of the specified element.\nSets the value of the specified element.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the maximum of each element.\nReturns the element-wise maximum with other.\nReturns the minimum of each element.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nConstructs a new SIMD vector by copying elements from …\nConstructs a mask by setting all elements to the given …\nConstructs a new SIMD vector with all elements set to the …\nConditionally write contiguous elements to slice. The …\nConditionally write contiguous elements starting from ptr. …\nConditionally write contiguous elements to slice. The …\nReverses the byte order of each element.\nReverses the byte order of each element.\nSwizzle a vector of bytes according to the index vector. …\nTests the value of the specified element.\nTests the value of the specified element.\nConverts a SIMD mask to an array of bools.\nConverts a SIMD vector to an array.\nCreates a bitmask from a mask.\nCreates a bitmask vector from a mask.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nConverts the mask to a vector of integers, where 0 …\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nWrapping negation.\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nVector of mutable pointers to the same type.\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of mutable pointers.\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nChanges constness without changing the type.\nChanges constness without changing the type.\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nReturns true for each element that is null.\nReturns true for each element that is null.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nAn iterator over a slice in (non-overlapping) chunks (N …\nAn iterator over a slice in (non-overlapping) mutable …\nA windowed iterator over a slice in overlapping chunks (N …\nAn iterator over slice in (non-overlapping) chunks …\nAn iterator over slice in (non-overlapping) mutable chunks …\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nHelper trait for [T]::concat.\nAn iterator over the escaped version of a byte slice.\nImmutable slice iterator\nMutable slice iterator.\nHelper trait for [T]::join\nThe resulting type after concatenation\nThe resulting type after concatenation\nThe output type returned by methods.\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over subslices separated by elements that …\nAn iterator over the subslices of the vector which are …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nA helper trait used for indexing operations.\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over overlapping subslices of length size.\nViews the underlying data as a mutable subslice of the …\nViews the underlying data as a subslice of the original …\nViews the underlying data as a subslice of the original …\nReturns a slice which contains items not yet handled by …\nImplementation of [T]::concat\nCreates an empty slice iterator.\nCreates an empty slice iterator.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a reference to T into a slice of length 1 …\nForms a mutable slice from a pointer range.\nForms a slice from a pointer range.\nForms a slice from a pointer and a length.\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to T into a slice of length 1 …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nReturns a pointer to the output at this location, without …\nReturns a mutable pointer to the output at this location, …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nViews the underlying data as a subslice of the original …\nImplementation of [T]::join\nPerforms bounds checking of a range.\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nPerforms bounds checking of a range without panicking.\nAn iterator over the bytes of a string slice.\nAn iterator over the chars of a string slice, and their …\nAn iterator over the chars of a string slice.\nAn iterator of u16 over the string encoded as UTF-16.\nThe associated error which can be returned from parsing.\nThe return type of str::escape_debug.\nThe return type of str::escape_default.\nThe return type of str::escape_unicode.\nParse a value from a string\nAn iterator over the lines of a string, as string slices.\nCreated with the method lines_any.\nCreated with the method match_indices.\nCreated with the method matches.\nAn error returned when parsing a bool using from_str fails\nCreated with the method rmatch_indices.\nCreated with the method rmatches.\nCreated with the method rsplit.\nCreated with the method rsplitn.\nCreated with the method rsplit_terminator.\nCreated with the method split.\nAn iterator over the non-ASCII-whitespace substrings of a …\nAn iterator over the substrings of a string, terminated by …\nCreated with the method splitn.\nCreated with the method split_terminator.\nAn iterator over the non-whitespace substrings of a string,\nAn item returned by the Utf8Chunks iterator.\nAn iterator used to decode a slice of mostly UTF-8 bytes …\nErrors which can occur when attempting to interpret a …\nViews the underlying data as a subslice of the original …\nViews the underlying data as a subslice of the original …\nProvides more information about the failure:\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a boxed slice of bytes to a boxed string slice …\nCreates a &str from a pointer and a length.\nCreates a &mut str from a pointer and a length.\nParses a string s to return a value of this type.\nConverts a slice of bytes to a string slice.\nConverts a mutable slice of bytes to a mutable string …\nConverts a slice of bytes to a string slice without …\nConverts a slice of bytes to a string slice without …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid sequence that caused a failure.\nReturns the byte position of the next character, or the …\nThe string Pattern API.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns the remaining lines of the split string.\nReturns remainder of the split string\nReturns remainder of the split string.\nReturns the next validated UTF-8 substring.\nReturns the index in the given string up to which valid …\nAssociated type for <&[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <F as Pattern>::Searcher<'a>.\nAssociated type for <char as Pattern>::Searcher<'a>.\nAssociated type for <&[char] as Pattern>::Searcher<'a>.\nExpresses that every byte of the haystack has been …\nA marker trait to express that a ReverseSearcher can be …\nExpresses that a match of the pattern has been found at …\nA string pattern.\nExpresses that haystack[a..b] has been rejected as a …\nA reverse searcher for a string pattern.\nResult of calling Searcher::next() or …\nA searcher for a string pattern.\nAssociated searcher for this pattern\nAssociated type for <&str as Pattern>::Searcher<'a>.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nGetter for the underlying string to be searched in\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConstructs the associated searcher from self and the …\nChecks whether the pattern matches anywhere in the haystack\nChecks whether the pattern matches at the front of the …\nChecks whether the pattern matches at the back of the …\nPerforms the next search step starting from the front.\nPerforms the next search step starting from the back.\nFinds the next Match result. See next().\nFinds the next Match result. See next_back().\nFinds the next Reject result. See next() and next_match().\nFinds the next Reject result. See next_back().\nRemoves the pattern from the front of haystack, if it …\nRemoves the pattern from the back of haystack, if it …\nA draining iterator for String.\nA possible error value when converting a String from a …\nA possible error value when converting a String from a …\nA type alias for Infallible.\nA UTF-8–encoded, growable string.\nA trait for converting a value to a String.\nReturns a byte slice of this String’s contents.\nReturns a slice of u8s bytes that were attempted to …\nConverts a String into a mutable string slice.\nReturns a mutable reference to the contents of this String.\nReturns the remaining (sub)string of this iterator as a …\nExtracts a string slice containing the entire String.\nReturns this String’s capacity, in bytes.\nTruncates this String, removing all contents.\nClones the contents of source into self.\nCreates an empty String.\nRemoves the specified range from the string in bulk, …\nCopies elements from src range to the end of the string.\nReturns the argument unchanged.\nConverts a &String into a String.\nReturns the argument unchanged.\nConverts a &mut str into a String.\nConverts a &str into a String.\nAllocates an owned String from a single character.\nConverts the given boxed str slice to a String. It is …\nConverts a clone-on-write string to an owned instance of …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new String from a pointer, a length and a …\nDecode a UTF-16–encoded vector v into a String, …\nDecode a UTF-16–encoded slice v into a String, replacing …\nDecode a UTF-16BE–encoded vector v into a String, …\nDecode a UTF-16BE–encoded slice v into a String, …\nDecode a UTF-16LE–encoded vector v into a String, …\nDecode a UTF-16LE–encoded slice v into a String, …\nConverts a vector of bytes to a String.\nConverts a slice of bytes to a string, including invalid …\nConverts a vector of bytes to a String without checking …\nInserts a character into this String at a byte position.\nInserts a string slice into this String at a byte position.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts this String into a Box<str>.\nConverts a String into a byte vector.\nReturns the bytes that were attempted to convert to a …\nDecomposes a String into its raw components: …\nReturns true if this String has a length of zero, and false…\nConsumes and leaks the String, returning a mutable …\nReturns the length of this String, in bytes, not chars or …\nCreates a new empty String.\nRemoves the last character from the string buffer and …\nAppends the given char to the end of this String.\nAppends a given string slice onto the end of this String.\nRemoves a char from this String at a byte position and …\nRemove all matches of pattern pat in the String.\nRemoves the specified range in the string, and replaces it …\nReserves capacity for at least additional bytes more than …\nReserves the minimum capacity for at least additional …\nRetains only the characters specified by the predicate.\nShrinks the capacity of this String with a lower bound.\nShrinks the capacity of this String to match its length.\nSplits the string into two at the given byte index.\nConverts the given value to a String.\nShortens this String to the specified length.\nTries to reserve capacity for at least additional bytes …\nTries to reserve the minimum capacity for at least …\nCreates a new empty String with at least the specified …\nFetch a Utf8Error to get more details about the conversion …\nCreates a new empty String with at least the specified …\nA thread-safe reference-counting pointer. ‘Arc’ stands …\nA barrier enables multiple threads to synchronize the …\nA BarrierWaitResult is returned by Barrier::wait() when …\nA Condition Variable\nContains the error value\nContains the error value\nExclusive provides only mutable access, also referred to …\nA value which is initialized on the first access.\nA type alias for the result of a lock method which can be …\nAn RAII mutex guard returned by MutexGuard::map, which can …\nRAII structure used to release the shared read access of a …\nRAII structure used to release the exclusive write access …\nA mutual exclusion primitive useful for protecting shared …\nAn RAII implementation of a “scoped lock” of a mutex. …\nInitialization value for static Once values.\nContains the success value\nContains the success value\nA low-level synchronization primitive for one-time global …\nA synchronization primitive which can nominally be written …\nState yielded to Once::call_once_force()’s closure …\nA type of error which can be returned whenever a lock is …\nThe lock could not be acquired because another thread …\nA re-entrant mutual exclusion lock\nAn RAII implementation of a “scoped lock” of a …\nA reader-writer lock\nRAII structure used to release the shared read access of a …\nRAII structure used to release the exclusive write access …\nAn enumeration of possible errors associated with a …\nA type alias for the result of a nonblocking locking …\nA type indicating whether a timed wait on a condition …\nWeak is a version of Arc that holds a non-owning reference …\nThe lock could not be acquired at this time because the …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nProvides a raw pointer to the data.\nReturns a raw pointer to the object T pointed to by this …\nConverts to Arc<[T]>.\nConverts to Arc<T>.\nAtomic types\nPerforms an initialization routine once and only once. The …\nPerforms the same function as call_once() except ignores …\nClear the poisoned state from a mutex.\nClear the poisoned state from a lock.\nMakes a clone of the Arc pointer.\nMakes a clone of the Weak pointer that points to the same …\nComparison for two Arcs.\nDecrements the strong reference count on the Arc<T> …\nDecrements the strong reference count on the Arc<T> …\nCreates a Condvar which is ready to be waited on and …\nCreates a new lazy value using Default as the initializing …\nCreates an empty [T] inside an Arc\nCreates a new Arc<T>, with the Default value for T.\nCreates an empty CStr inside an Arc\nCreates an empty str inside an Arc\nConstructs a new Weak<T>, without allocating memory. …\nCreates a Mutex<T>, with the Default value for T.\nCreates a new empty cell.\nCreates a new RwLock<T>, with the Default value for T.\nDereferences the value.\nAttempts to downcast the Arc<dyn Any + Send + Sync> to a …\nDowncasts the Arc<dyn Any + Send + Sync> to a concrete …\nCreates a new Weak pointer to this allocation.\nDrops the Arc.\nDrops the Weak pointer.\nEquality for two Arcs.\nForces the evaluation of this lazy value and returns a …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a T into an Arc<T>\nConverts a [T; N] into an Arc<[T]>.\nConverts a Path into an Arc by copying the Path data into …\nConverts a PathBuf into an Arc<Path> by moving the PathBuf …\nAllocates a reference-counted slice and moves v’s items …\nAllocates a reference-counted slice and fills it by …\nCopies the string into a newly allocated Arc<OsStr>.\nConverts an atomically reference-counted string slice into …\nAllocates a reference-counted str and copies v into it.\nConverts a CString into an Arc<CStr> by moving the CString …\nConverts a &CStr into a Arc<CStr>, by copying the contents …\nAllocates a reference-counted str and copies v into it.\nCreates an atomically reference-counted pointer from a …\nConverts an OsString into an Arc<OsStr> by moving the …\nMove a boxed object to a new, reference-counted allocation.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new mutex in an unlocked state ready for use. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new cell with its contents set to value.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new instance of an RwLock<T> which is unlocked. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator and collects it into an …\nBuild a mutable reference to an Exclusive<T> from a mutable…\nBuild a pinned mutable reference to an Exclusive<T> from a …\nConstructs an Arc<T> from a raw pointer.\nConverts a raw pointer previously created by into_raw back …\nConstructs an Arc<T, A> from a raw pointer.\nConverts a raw pointer previously created by into_raw back …\n‘Greater than or equal to’ comparison for two Arcs.\nGets the reference to the underlying value.\nReturns a mutable reference into the given Arc, if there …\nReturns a mutable reference to the underlying data.\nGets the mutable reference to the underlying value.\nReaches into this error indicating that a lock is …\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nGets exclusive access to the underlying value.\nGets the mutable reference of the contents of the cell, …\nGets the mutable reference of the contents of the cell, …\nReturns a mutable reference into the given Arc, without …\nGets the contents of the cell, initializing it with f if …\nGets the contents of the cell, initializing it with f if …\nGets pinned exclusive access to the underlying value.\nReaches into this error indicating that a lock is …\nGreater-than comparison for two Arcs.\nIncrements the strong reference count on the Arc<T> …\nIncrements the strong reference count on the Arc<T> …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes this LazyLock returning the stored value.\nReturns the inner value, if the Arc has exactly one strong …\nConsumes this mutex, returning the underlying data.\nConsumes the OnceLock, returning the wrapped value. Returns\nConsumes this error indicating that a lock is poisoned, …\nConsumes this lock, returning the underlying data.\nConsumes this RwLock, returning the underlying data.\nUnwrap the value contained in the Exclusive\nConsumes the Arc, returning the wrapped pointer.\nConsumes the Weak<T> and turns it into a raw pointer.\nConsumes the Arc, returning the wrapped pointer and …\nConsumes the Weak<T>, returning the wrapped pointer and …\nReturns true if some call_once() call has completed …\nReturns true if this thread is the “leader thread” for …\nDetermines whether the mutex is poisoned.\nReturns true if the associated Once was poisoned prior to …\nDetermines whether the lock is poisoned.\n‘Less than or equal to’ comparison for two Arcs.\nAcquires a mutex, blocking the current thread until it is …\nAcquires the lock, blocking the current thread until it is …\nLess-than comparison for two Arcs.\nMakes a mutable reference into the given Arc.\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nMulti-producer, single-consumer FIFO queue communication …\nInequality for two Arcs.\nCreates a new barrier that can block a given number of …\nCreates a new condition variable which is ready to be …\nCreates a new lazy value with the given initializing …\nConstructs a new Arc<T>.\nConstructs a new Weak<T>, without allocating any memory. …\nCreates a new mutex in an unlocked state ready for use.\nCreates a new Once value.\nCreates a new empty cell.\nCreates a PoisonError.\nCreates a new re-entrant lock in an unlocked state ready …\nCreates a new instance of an RwLock<T> which is unlocked.\nWrap a value in an Exclusive\nConstructs a new Arc<T> while giving you a Weak<T> to the …\nConstructs a new Arc<T> in the provided allocator.\nConstructs a new Weak<T, A>, without allocating any …\nConstructs a new Arc with uninitialized contents.\nConstructs a new Arc with uninitialized contents in the …\nConstructs a new atomically reference-counted slice with …\nConstructs a new atomically reference-counted slice with …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new atomically reference-counted slice with …\nConstructs a new atomically reference-counted slice with …\nWakes up all blocked threads on this condvar.\nWakes up one blocked thread on this condvar.\nPartial comparison for two Arcs.\nConstructs a new Pin<Arc<T>>. If T does not implement Unpin…\nConstructs a new Pin<Arc<T, A>> in the provided allocator. …\nReturns true if the two Arcs point to the same allocation …\nReturns true if the two Weaks point to the same allocation …\nLocks this RwLock with shared read access, blocking the …\nSets the contents of this cell to value.\nGets the number of strong (Arc) pointers to this …\nGets the number of strong (Arc) pointers pointing to this …\nTakes the value out of this OnceLock, moving it back to an …\nReturns true if the wait was known to have timed out.\nSets the contents of this cell to value if the cell was …\nAttempts to acquire this lock.\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nConstructs a new Arc<T>, returning an error if allocation …\nConstructs a new Arc<T, A> in the provided allocator, …\nConstructs a new Arc with uninitialized contents, …\nConstructs a new Arc with uninitialized contents, in the …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new Pin<Arc<T>>, return an error if …\nConstructs a new Pin<Arc<T, A>> in the provided allocator, …\nAttempts to acquire this RwLock with shared read access.\nReturns the inner value, if the Arc has exactly one strong …\nAttempts to lock this RwLock with exclusive write access.\nIf we have the only reference to T then unwrap it. …\nAttempts to upgrade the Weak pointer to an Arc, delaying …\nBlocks the current thread until all threads have …\nBlocks the current thread until this condition variable …\nBlocks the current thread until initialization has …\nBlocks the current thread until the cell is initialized.\nBlocks the current thread until initialization has …\nWaits on this condition variable for a notification, …\nWaits on this condition variable for a notification, …\nWaits on this condition variable for a notification, …\nBlocks the current thread until this condition variable …\nGets the number of Weak pointers to this allocation.\nGets an approximation of the number of Weak pointers …\nLocks this RwLock with exclusive write access, blocking …\nAn AtomicBool initialized to false.\nAn AtomicIsize initialized to 0.\nAn AtomicUsize initialized to 0.\nHas the effects of both Acquire and Release together: For …\nWhen coupled with a load, if the loaded value was written …\nA boolean type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nA raw pointer type which can be safely shared between …\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAtomic memory orderings\nNo ordering constraints, only atomic operations.\nWhen coupled with a store, all previous operations become …\nLike Acquire/Release/AcqRel (for load, store, and …\nReturns a mutable pointer to the underlying bool.\nReturns a mutable pointer to the underlying pointer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nStores a value into the bool if the current value is the …\nStores a value into the pointer if the current value is …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the bool if the current value is the …\nStores a value into the pointer if the current value is …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the bool if the current value is the …\nStores a value into the pointer if the current value is …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nA “compiler-only” atomic fence.\nCreates an AtomicBool initialized to false.\nCreates a null AtomicPtr<T>.\nAn atomic fence.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nLogical “and” with a boolean value.\nPerforms a bitwise “and” operation on the address of …\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nOffsets the pointer’s address by adding val bytes, …\nOffsets the pointer’s address by subtracting val bytes, …\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nLogical “nand” with a boolean value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nLogical “not” with a boolean value.\nLogical “or” with a boolean value.\nPerforms a bitwise “or” operation on the address of …\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nOffsets the pointer’s address by adding val (in units of …\nOffsets the pointer’s address by subtracting val (in …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nLogical “xor” with a boolean value.\nPerforms a bitwise “xor” operation on the address of …\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nConverts a bool into an AtomicBool.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a *mut T into an AtomicPtr<T>.\nReturns the argument unchanged.\nConverts an i8 into an AtomicI8.\nReturns the argument unchanged.\nConverts an u8 into an AtomicU8.\nReturns the argument unchanged.\nConverts an i16 into an AtomicI16.\nReturns the argument unchanged.\nConverts an u16 into an AtomicU16.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an i32 into an AtomicI32.\nReturns the argument unchanged.\nConverts an u32 into an AtomicU32.\nReturns the argument unchanged.\nConverts an i64 into an AtomicI64.\nReturns the argument unchanged.\nConverts an u64 into an AtomicU64.\nConverts an isize into an AtomicIsize.\nReturns the argument unchanged.\nConverts an usize into an AtomicUsize.\nReturns the argument unchanged.\nGets atomic access to a &mut bool.\nGets atomic access to a pointer.\nGet atomic access to a &mut i8.\nGet atomic access to a &mut u8.\nGet atomic access to a &mut i16.\nGet atomic access to a &mut u16.\nGet atomic access to a &mut i32.\nGet atomic access to a &mut u32.\nGet atomic access to a &mut i64.\nGet atomic access to a &mut u64.\nGet atomic access to a &mut isize.\nGet atomic access to a &mut usize.\nGets atomic access to a &mut [bool] slice.\nGets atomic access to a slice of pointers.\nGet atomic access to a &mut [i8] slice.\nGet atomic access to a &mut [u8] slice.\nGet atomic access to a &mut [i16] slice.\nGet atomic access to a &mut [u16] slice.\nGet atomic access to a &mut [i32] slice.\nGet atomic access to a &mut [u32] slice.\nGet atomic access to a &mut [i64] slice.\nGet atomic access to a &mut [u64] slice.\nGet atomic access to a &mut [isize] slice.\nGet atomic access to a &mut [usize] slice.\nCreates a new AtomicBool from a pointer.\nCreates a new AtomicPtr from a pointer.\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nReturns a mutable reference to the underlying bool.\nReturns a mutable reference to the underlying pointer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nGets non-atomic access to a &mut [AtomicBool] slice.\nGets non-atomic access to a &mut [AtomicPtr] slice.\nGet non-atomic access to a &mut [AtomicI8] slice\nGet non-atomic access to a &mut [AtomicU8] slice\nGet non-atomic access to a &mut [AtomicI16] slice\nGet non-atomic access to a &mut [AtomicU16] slice\nGet non-atomic access to a &mut [AtomicI32] slice\nGet non-atomic access to a &mut [AtomicU32] slice\nGet non-atomic access to a &mut [AtomicI64] slice\nGet non-atomic access to a &mut [AtomicU64] slice\nGet non-atomic access to a &mut [AtomicIsize] slice\nGet non-atomic access to a &mut [AtomicUsize] slice\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nLoads a value from the bool.\nLoads a value from the pointer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nCreates a new AtomicBool.\nCreates a new AtomicPtr.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nSignals the processor that it is inside a busy-wait …\nStores a value into the bool.\nStores a value into the pointer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the bool, returning the previous value.\nStores a value into the pointer, returning the previous …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nThe channel’s sending half has become disconnected, and …\nThe channel’s sending half has become disconnected, and …\nThis sync_channel’s receiving half has disconnected, so …\nThis channel is currently empty, but the Sender(s) have …\nThe data could not be sent on the sync_channel because it …\nAn owning iterator over messages on a Receiver, created by …\nAn iterator over messages on a Receiver, created by iter.\nThe receiving half of Rust’s channel (or sync_channel) …\nAn error returned from the recv function on a Receiver.\nThis enumeration is the list of possible errors that made …\nAn error returned from the Sender::send or SyncSender::send\nThe sending-half of Rust’s asynchronous channel type.\nThe sending-half of Rust’s synchronous sync_channel type.\nThis channel is currently empty, but the Sender(s) have …\nAn iterator that attempts to yield all pending values for …\nThis enumeration is the list of the possible reasons that …\nThis enumeration is the list of the possible error …\nCreates a new asynchronous channel, returning the …\nClone a sender to send to other threads.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a RecvError into a TryRecvError.\nReturns the argument unchanged.\nConverts a RecvError into a RecvTimeoutError.\nConverts a SendError<T> into a TrySendError<T>.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns an iterator that will block waiting for messages, …\nAttempts to wait for a value on this receiver, returning …\nAttempts to wait for a value on this receiver, returning …\nAttempts to wait for a value on this receiver, returning …\nAttempts to send a value on this channel, returning it …\nSends a value on this synchronous channel.\nCreates a new synchronous, bounded channel. All data sent …\nReturns an iterator that will attempt to yield all pending …\nAttempts to return a pending value on this receiver …\nAttempts to send a value on this channel without blocking.\nThe context of an asynchronous task.\nA Builder used to construct a Context instance with …\nAn analogous trait to Wake but used to construct a …\nA LocalWaker is analogous to a Waker, but it does not …\nRepresents that a value is not ready yet.\nIndicates whether a value is available or if the current …\nA RawWaker allows the implementor of a task executor to …\nA virtual function pointer table (vtable) that specifies …\nRepresents that a value is immediately ready.\nThe implementation of waking a task on an executor.\nA Waker is a handle for waking up a task by notifying its …\nGets a reference to the underlying RawWaker.\nGets a reference to the underlying RawWaker.\nBuilds the Context.\nAssigns a clone of source to self, unless …\nGets the data pointer used to create this RawWaker.\nReturns a reference to the extension data for the current …\nSets the value for the extension data on Context.\nReturns the argument unchanged.\nUse a Wake-able type as a Waker.\nReturns the argument unchanged.\nUse a Wake-able type as a LocalWaker.\nReturns the argument unchanged.\nMoves the value into a Poll::Ready to make a Poll<T>.\nReturns the argument unchanged.\nReturns the argument unchanged.\nUse a Wake-able type as a RawWaker.\nUse a Wake-able type as a RawWaker.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a ContextBuilder from an existing Context.\nCreates a new Waker from RawWaker.\nCreates a new LocalWaker from RawWaker.\nCreates a new Context from a &Waker.\nCreates a ContextBuilder from a Waker.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the poll is a Pending value.\nReturns true if the poll is a Poll::Ready value.\nReturns a reference to the LocalWaker for the current task.\nSets the value for the local waker on Context.\nMaps a Poll<T> to Poll<U> by applying a function to a …\nMaps a Poll::Ready<Option<Result<T, E>>> to …\nMaps a Poll::Ready<Result<T, E>> to …\nMaps a Poll<Option<Result<T, E>>> to …\nMaps a Poll<Result<T, E>> to Poll<Result<U, E>> by …\nCreates a new RawWaker from the provided data pointer and …\nCreates a new RawWakerVTable from the provided clone, wake,\nReturns a reference to a Waker that does nothing when used.\nReturns a reference to a LocalWaker that does nothing when …\nExtracts the successful type of a Poll<T>.\nGets the vtable pointer used to create this RawWaker.\nWake this task.\nWake this task.\nWakes up the task associated with this Waker.\nWakes up the task associated with this LocalWaker.\nWake this task without consuming the waker.\nWake this task without consuming the local waker.\nWakes up the task associated with this Waker without …\nWakes up the task associated with this LocalWaker without …\nReturns a reference to the Waker for the current task.\nSets the value for the waker on Context.\nReturns true if this Waker and another Waker would awake …\nReturns true if this LocalWaker and another LocalWaker …\nAn error returned by LocalKey::try_with.\nThread factory, which can be used in order to configure …\nContains the error value\nAn owned permission to join on a thread (block on its …\nA thread local storage key which owns its contents.\nContains the success value\nA specialized Result type for threads.\nA scope to spawn scoped threads in.\nAn owned permission to join on a scoped thread (block on …\nA handle to a thread.\nA unique identifier for a running thread.\nThis returns a numeric identifier for the thread …\nReturns an estimate of the default amount of parallelism a …\nGets a handle to the thread that invokes it.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns a copy of the contained value.\nGets the thread’s unique identifier.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nChecks if the associated thread has finished running its …\nChecks if the associated thread has finished running its …\nWaits for the associated thread to finish.\nWaits for the associated thread to finish.\nNames the thread-to-be. Currently the name is used for …\nGets the thread’s name.\nGenerates the base configuration for spawning a thread, …\nDetermines whether the current thread is unwinding because …\nBlocks unless or until the current thread’s token is …\nBlocks unless or until the current thread’s token is …\nUses park_timeout.\nReplaces the contained value, returning the old value.\nReplaces the contained value, returning the old value.\nCreates a scope for spawning scoped threads.\nSets or initializes the contained value.\nSets or initializes the contained value.\nPuts the current thread to sleep for at least the …\nUses sleep.\nPuts the current thread to sleep until the specified …\nSpawns a new thread, returning a JoinHandle for it.\nSpawns a new thread within a scope, returning a …\nSpawns a new thread by taking ownership of the Builder, …\nSpawns a new scoped thread using the settings set through …\nSpawns a new thread without any lifetime restrictions by …\nSets the size of the stack (in bytes) for the new thread.\nTakes the contained value, leaving Default::default() in …\nTakes the contained value, leaving Default::default() in …\nExtracts a handle to the underlying thread.\nExtracts a handle to the underlying thread.\nAcquires a reference to the value in this TLS key.\nAtomically makes the handle’s token available if it is …\nAcquires a reference to the value in this TLS key.\nAcquires a reference to the contained value.\nAcquires a mutable reference to the contained value.\nCooperatively gives up a timeslice to the OS scheduler.\nA Duration type to represent a span of time, typically …\nA measurement of a monotonically nondecreasing clock. …\nThe maximum duration.\nThe duration of one microsecond.\nThe duration of one millisecond.\nThe duration of one nanosecond.\nThe duration of one second.\nA measurement of the system clock, useful for talking to …\nAn error returned from the duration_since and elapsed …\nAn error which can be returned when converting a …\nAn anchor in time which can be used to create new …\nAn anchor in time which can be used to create new …\nA duration of zero time.\nComputes the absolute difference between self and other.\nPanics\nPanics\nReturns the total number of whole microseconds contained …\nReturns the total number of whole milliseconds contained …\nReturns the number of milliseconds contained by this …\nReturns the number of milliseconds contained by this …\nReturns the total number of nanoseconds contained by this …\nReturns the number of whole seconds contained by this …\nReturns the number of seconds contained by this Duration …\nReturns the number of seconds contained by this Duration …\nReturns Some(t) where t is the time self + duration if t …\nReturns Some(t) where t is the time self + duration if t …\nChecked Duration addition. Computes self + other, …\nChecked Duration division. Computes self / other, …\nReturns the amount of time elapsed from another instant to …\nChecked Duration multiplication. Computes self * other, …\nReturns Some(t) where t is the time self - duration if t …\nReturns Some(t) where t is the time self - duration if t …\nChecked Duration subtraction. Computes self - other, …\nDivides Duration by Duration and returns f32.\nDivides Duration by Duration and returns f64.\nDivides Duration by f32.\nDivides Duration by f64.\nReturns the positive duration which represents how far …\nReturns the amount of time elapsed from another instant to …\nReturns the amount of time elapsed from an earlier point …\nReturns the amount of time elapsed since this instant.\nReturns the difference from this system time to the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new Duration from the specified number of days.\nCreates a new Duration from the specified number of hours.\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of whole …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of weeks.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if this Duration spans no time.\nMultiplies Duration by f32.\nMultiplies Duration by f64.\nCreates a new Duration from the specified number of whole …\nReturns an instant corresponding to “now”.\nReturns the system time corresponding to “now”.\nSaturating Duration addition. Computes self + other, …\nReturns the amount of time elapsed from another instant to …\nSaturating Duration multiplication. Computes self * other, …\nSaturating Duration subtraction. Computes self - other, …\nReturns the amount of time elapsed from another instant to …\nReturns the fractional part of this Duration, in whole …\nReturns the fractional part of this Duration, in whole …\nReturns the fractional part of this Duration, in …\nThe checked version of from_secs_f32.\nThe checked version of from_secs_f64.\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nA draining iterator for Vec<T>.\nAn iterator which uses a closure to determine if an …\nAn iterator that moves out of a vector.\nA splicing iterator for Vec.\nA contiguous growable array type, written as Vec<T>, short …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nMoves all the elements of other into self, leaving other …\nReturns a raw mutable pointer to the vector’s buffer, or …\nReturns the remaining items of this iterator as a mutable …\nExtracts a mutable slice of the entire vector.\nReturns a raw pointer to the vector’s buffer, or a …\nReturns the remaining items of this iterator as a slice.\nReturns the remaining items of this iterator as a slice.\nExtracts a slice containing the entire vector.\nReturns the total number of elements the vector can hold …\nClears the vector, removing all values.\nOverwrites the contents of self with a clone of the …\nRemoves consecutive repeated elements in the vector …\nRemoves all but the first of consecutive elements in the …\nRemoves all but the first of consecutive elements in the …\nCreates an empty vec::IntoIter.\nCreates an empty Vec<T>.\nRemoves the specified range from the vector in bulk, …\nClones and appends all elements in a slice to the Vec.\nCopies elements from src range to the end of the vector.\nCreates an iterator which uses a closure to determine if …\nReturns the argument unchanged.\nReturns the argument unchanged.\nTurn a VecDeque<T> into a Vec<T>.\nConverts the given String to a vector Vec that holds …\nConverts a BinaryHeap<T> into a Vec<T>.\nAllocates a Vec<T> and fills it by cloning s’s items.\nConverts a boxed slice into a vector by transferring …\nConverts a clone-on-write slice into a vector.\nAllocates a Vec<T> and moves s’s items into it.\nAllocates a Vec<T> and fills it by cloning s’s items.\nConverts a CString into a Vec<u8>.\nAllocates a Vec<T> and fills it by cloning s’s items.\nReturns the argument unchanged.\nAllocates a Vec<T> and fills it by cloning s’s items.\nAllocates a Vec<u8> and fills it with a UTF-8 string.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a Vec<T> directly from a pointer, a length, and a …\nCreates a Vec<T, A> directly from a pointer, a length, a …\nInserts an element at position index within the vector, …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts the vector into Box<[T]>.\nTakes a Vec<[T; N]> and flattens it into a Vec<T>.\nCreates a consuming iterator, that is, one that moves each …\nDecomposes a Vec<T> into its raw components: …\nDecomposes a Vec<T> into its raw components: …\nReturns true if the vector contains no elements.\nKeep unyielded elements in the source Vec.\nConsumes and leaks the Vec, returning a mutable reference …\nReturns the number of elements in the vector, also …\nConstructs a new, empty Vec<T>.\nConstructs a new, empty Vec<T, A>.\nRemoves the last element from a vector and returns it, or …\nRemoves and returns the last element in a vector if the …\nAppends an element to the back of a collection.\nAppends an element if there is sufficient spare capacity, …\nRemoves and returns the element at position index within …\nReserves capacity for at least additional more elements to …\nReserves the minimum capacity for at least additional more …\nResizes the Vec in-place so that len is equal to new_len.\nResizes the Vec in-place so that len is equal to new_len.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate, …\nForces the length of the vector to new_len.\nShrinks the capacity of the vector with a lower bound.\nShrinks the capacity of the vector as much as possible.\nReturns the remaining spare capacity of the vector as a …\nCreates a splicing iterator that replaces the specified …\nReturns vector content as a slice of T, along with the …\nSplits the collection into two at the given index.\nRemoves an element from the vector and returns it.\nShortens the vector, keeping the first len elements and …\nTries to reserve capacity for at least additional more …\nTries to reserve the minimum capacity for at least …\nConstructs a new, empty Vec<T> with at least the specified …\nConstructs a new, empty Vec<T, A> with at least the …\nConstructs a new, empty Vec<T> with at least the specified …\nConstructs a new, empty Vec<T, A> with at least the …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 10, "Searches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nRepresentation of a running or exited child process.\nA handle to a child process’s stderr.\nA handle to a child process’s standard input (stdin).\nA handle to a child process’s standard output (stdout).\nA process builder, providing fine-grained control over how …\nAn iterator over the command arguments.\nAn iterator over the command environment variables.\nThis type represents the status code the current process …\nDescribes the result of a process after it has terminated.\nDescribes the result of a process after it has failed\nThe canonical ExitCode for unsuccessful termination on …\nThe output of a finished process.\nThe canonical ExitCode for successful termination on this …\nDescribes what to do with a standard I/O stream for a …\nA trait for implementing arbitrary return types in the main…\nTerminates the process in an abnormal fashion.\nAdds an argument to pass to the program.\nAdds multiple arguments to pass to the program.\nReturns the exit code of the process, if any.\nReports the exit code, if applicable, from an …\nReports the exit code, if applicable, from an …\nSets the working directory for the child process.\nInserts or updates an explicit environment variable …\nClears all explicitly set environment variables and …\nRemoves an explicitly set environment variable and …\nInserts or updates multiple explicit environment variable …\nTerminates the current process with the specified exit …\nWas termination successful? Returns a Result.\nExit the current process with the given ExitCode.\nFormat the program and arguments of a Command for display. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nRedirect command stdout/stderr to our stderr\nRedirect command stdout/stderr to our stdout\nConverts a ChildStdin into a Stdio.\nConverts a File into a Stdio.\nConverts a ChildStdout into a Stdio.\nTakes ownership of a file descriptor and returns a Stdio …\nReturns the argument unchanged.\nConverts a ChildStderr into a Stdio.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs an ExitCode from an arbitrary u8 value.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns an iterator of the arguments that will be passed …\nReturns the working directory for the child process.\nReturns an iterator of the environment variables …\nReturns the path to the program that was given to …\nReturns the OS-assigned process identifier associated with …\nReturns the OS-assigned process identifier associated with …\nThe child inherits from the corresponding parent …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts an ExitStatusError (back) to an ExitStatus.\nForces the child process to exit. If the child has already …\nReturns true if this requires Command to create a new pipe.\nConstructs a new Command for launching the program at path …\nThis stream will be ignored. This is the equivalent of …\nExecutes the command as a child process, waiting for it to …\nA new pipe should be arranged to connect the parent and …\nIs called to get the representation of the value as status …\nExecutes the command as a child process, returning a …\nExecutes a command as a child process, waiting for it to …\nThe status (exit code) of the process.\nConfiguration for the child process’s standard error …\nThe handle for reading from the child’s standard error …\nThe data that the process wrote to stderr.\nConfiguration for the child process’s standard input …\nThe handle for writing to the child’s standard input …\nConfiguration for the child process’s standard output …\nThe handle for reading from the child’s standard output …\nThe data that the process wrote to stdout.\nWas termination successful? Signal termination is not …\nAttempts to collect the exit status of the child if it has …\nWaits for the child to exit completely, returning the …\nSimultaneously waits for the child to exit and collect all …\nA type storing a usize which is a power of two, and thus …\nThe metadata for a Dyn = dyn SomeTrait trait object type.\nThe smallest possible alignment, 1.\nThe type for metadata in pointers and references to Self.\n*mut T but non-zero and covariant.\nProvides the pointer metadata type of any pointed-to type.\nAdds an offset to a pointer (convenience for …\nGets the “address” portion of the pointer.\nCompares the addresses of the two pointers for equality, …\nCreates a const raw pointer to a place, without creating …\nCreates a mut raw pointer to a place, without creating an …\nReturns the alignment of the type associated with this …\nComputes the offset that needs to be applied to the …\nReturns a unique reference to the value. If the value may …\nReturns a raw pointer to the slice’s buffer.\nReturns a non-null pointer to the slice’s buffer.\nReturns the alignment as a NonZero<usize>.\nAcquires the underlying *mut pointer.\nReturns a shared reference to the value. If the value may …\nReturns a unique references to the value. In contrast to …\nReturns a shared references to the value. In contrast to …\nReturns a shared reference to a slice of possibly …\nReturns a unique reference to a slice of possibly …\nReturns the alignment as a usize.\nCalculates the offset from a pointer in bytes (convenience …\nCalculates the offset from a pointer in bytes.\nCalculates the distance between two pointers. The returned …\nCalculates the offset from a pointer in bytes (convenience …\nCasts to a pointer of another type.\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of<T> bytes from src to self. The …\nCopies count * size_of<T> bytes from src to self. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of<T> bytes from self to dest. The …\nCopies count * size_of<T> bytes from self to dest. The …\nCreates a new pointer that is dangling, but well-aligned.\nCreates a new NonNull that is dangling, but well-aligned.\nCreates a new pointer that is dangling, but well-aligned.\nExecutes the destructor (if any) of the pointed-to value.\nExecutes the destructor (if any) of the pointed-to value.\nCompares raw pointers for equality.\nCompares the addresses of the two function pointers for …\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a &mut T to a NonNull<T>.\nConverts a &T to a NonNull<T>.\nReturns the argument unchanged.\nConverts a mutable reference to a raw pointer.\nForms a (possibly-wide) raw pointer from a data pointer …\nPerforms the same functionality as std::ptr::from_raw_parts…\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to a raw pointer.\nReturns a raw pointer to an element or subslice, without …\nHash a raw pointer.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns whether the pointer is properly aligned for T.\nReturns whether the pointer is aligned to align.\nReturns true if the non-null raw slice has a length of 0.\nReturns the size and alignment together as a Layout\nReturns the length of a non-null raw slice.\nReturns the base-2 logarithm of the alignment.\nCreates a new pointer by mapping self’s address to a new …\nReturns a bit mask that can be used to match this …\nExtracts the metadata component of a pointer.\nCreates a new NonNull if ptr is non-null.\nCreates an Alignment from a usize, or returns None if it’…\nCreates a new NonNull.\nCreates an Alignment from a power-of-two usize.\nCreates a null raw pointer.\nCreates a null mutable raw pointer.\nReturns the alignment for a type.\nAdds an offset to a pointer.\nCalculates the distance between two pointers. The returned …\nReads the value from src without moving it. This leaves the\nReads the value from self without moving it. This leaves …\nReads the value from src without moving it. This leaves the\nReads the value from self without moving it. This leaves …\nPerforms a volatile read of the value from src without …\nPerforms a volatile read of the value from self without …\nMoves src into the pointed dst, returning the previous dst …\nReplaces the value at self with src, returning the old …\nReturns the size of the type associated with this vtable.\nForms a raw slice from a pointer and a length.\nCreates a non-null raw slice from a thin pointer and a …\nForms a raw mutable slice from a pointer and a length.\nSubtracts an offset from a pointer (convenience for …\nCalculates the distance between two pointers, where it’s …\nSwaps the values at two mutable locations of the same …\nSwaps the values at two mutable locations of the same …\nSwaps count * size_of::<T>() bytes between the two regions …\nDecompose a (possibly wide) pointer into its data pointer …\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a mutable pointer, picking up …\nCreates a pointer with the given address and no provenance.\nCreates a pointer with the given address and no provenance.\nOverwrites a memory location with the given value without …\nOverwrites a memory location with the given value without …\nSets count * size_of::<T>() bytes of memory starting at dst…\nInvokes memset on the specified pointer, setting …\nOverwrites a memory location with the given value without …\nOverwrites a memory location with the given value without …\nPerforms a volatile write of a memory location with the …\nPerforms a volatile write of a memory location with the …\nA single-threaded reference-counting pointer. ‘Rc’ …\nA uniquely owned Rc.\nWeak is a version of Rc that holds a non-owning reference …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nProvides a raw pointer to the data.\nReturns a raw pointer to the object T pointed to by this …\nConverts to Rc<[T]>.\nConverts to Rc<T>.\nMakes a clone of the Rc pointer.\nMakes a clone of the Weak pointer that points to the same …\nComparison for two Rcs.\nDecrements the strong reference count on the Rc<T> …\nDecrements the strong reference count on the Rc<T> …\nCreates an empty [T] inside an Rc\nCreates an empty CStr inside an Rc\nCreates a new Rc<T>, with the Default value for T.\nCreates an empty str inside an Rc\nConstructs a new Weak<T>, without allocating any memory. …\nAttempts to downcast the Rc<dyn Any> to a concrete type.\nDowncasts the Rc<dyn Any> to a concrete type.\nCreates a new Weak pointer to this allocation.\nCreates a new weak reference to the UniqueRc.\nDrops the Rc.\nDrops the Weak pointer.\nEquality for two Rcs.\nConverts a reference-counted string slice into a byte …\nAllocates a reference-counted string slice and copies v …\nAllocates a reference-counted slice and fills it by …\nConverts a Path into an Rc by copying the Path data into a …\nMove a boxed object to a new, reference counted, …\nConverts a [T; N] into an Rc<[T]>.\nConverts a PathBuf into an Rc<Path> by moving the PathBuf …\nConverts a generic type T into an Rc<T>\nConverts a &CStr into a Rc<CStr>, by copying the contents …\nCreates a reference-counted pointer from a clone-on-write …\nConverts a CString into an Rc<CStr> by moving the CString …\nAllocates a reference-counted slice and moves v’s items …\nCopies the string into a newly allocated Rc<OsStr>.\nConverts an OsString into an Rc<OsStr> by moving the …\nAllocates a reference-counted string slice and copies v …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator and collects it into an …\nConstructs an Rc<T> from a raw pointer.\nConverts a raw pointer previously created by into_raw back …\nConstructs an Rc<T, A> from a raw pointer in the provided …\nConverts a raw pointer previously created by into_raw back …\n‘Greater than or equal to’ comparison for two Rcs.\nReturns a mutable reference into the given Rc, if there are\nReturns a mutable reference into the given Rc, without any …\nGreater-than comparison for two Rcs.\nIncrements the strong reference count on the Rc<T> …\nIncrements the strong reference count on the Rc<T> …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the inner value, if the Rc has exactly one strong …\nConsumes the Rc, returning the wrapped pointer.\nConsumes the Weak<T> and turns it into a raw pointer.\nConsumes the Rc, returning the wrapped pointer and …\nConsumes the Weak<T>, returning the wrapped pointer and …\nConverts the UniqueRc into a regular Rc.\n‘Less than or equal to’ comparison for two Rcs.\nLess-than comparison for two Rcs.\nMakes a mutable reference into the given Rc.\nInequality for two Rcs.\nConstructs a new Rc<T>.\nConstructs a new Weak<T>, without allocating any memory. …\nCreates a new UniqueRc.\nConstructs a new Rc<T> while giving you a Weak<T> to the …\nConstructs a new Rc in the provided allocator.\nConstructs a new Weak<T>, without allocating any memory, …\nCreates a new UniqueRc in the provided allocator.\nConstructs a new Rc with uninitialized contents.\nConstructs a new Rc with uninitialized contents in the …\nConstructs a new reference-counted slice with …\nConstructs a new reference-counted slice with …\nConstructs a new Rc with uninitialized contents, with the …\nConstructs a new Rc with uninitialized contents, with the …\nConstructs a new reference-counted slice with …\nConstructs a new reference-counted slice with …\nPartial comparison for two Rcs.\nConstructs a new Pin<Rc<T>>. If T does not implement Unpin…\nConstructs a new Pin<Rc<T>> in the provided allocator. If T…\nReturns true if the two Rcs point to the same allocation …\nReturns true if the two Weaks point to the same allocation …\nGets the number of strong (Rc) pointers to this allocation.\nGets the number of strong (Rc) pointers pointing to this …\nConstructs a new Rc<T>, returning an error if the …\nConstructs a new Rc<T> in the provided allocator, …\nConstructs a new Rc with uninitialized contents, returning …\nConstructs a new Rc with uninitialized contents, in the …\nConstructs a new Rc with uninitialized contents, with the …\nConstructs a new Rc with uninitialized contents, with the …\nReturns the inner value, if the Rc has exactly one strong …\nIf we have the only reference to T then unwrap it. …\nAttempts to upgrade the Weak pointer to an Rc, delaying …\nGets the number of Weak pointers to this allocation.\nGets the number of Weak pointers pointing to this …\nContains the error value\nAn iterator over the value in a Ok variant of a Result.\nAn iterator over a reference to the Ok variant of a Result.\nAn iterator over a mutable reference to the Ok variant of …\nContains the success value\nResult is a type that represents either success (Ok) or …\nReturns res if the result is Ok, otherwise returns the Err …\nCalls op if the result is Ok, otherwise returns the Err …\nConverts from Result<T, E> (or &Result<T, E>) to …\nConverts from Result<T, E> (or &mut Result<T, E>) to …\nConverts from &mut Result<T, E> to Result<&mut T, &mut E>.\nConverts from &Result<T, E> to Result<&T, &E>.\nMaps a Result<&mut T, E> to a Result<T, E> by cloning the …\nMaps a Result<&T, E> to a Result<T, E> by cloning the …\nMaps a Result<&T, E> to a Result<T, E> by copying the …\nMaps a Result<&mut T, E> to a Result<T, E> by copying the …\nConverts from Result<T, E> to Option<E>.\nReturns the contained Ok value, consuming the self value.\nReturns the contained Err value, consuming the self value.\nConverts from Result<Result<T, E>, E> to Result<T, E>\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator: if it is an Err, no …\nCalls a function with a reference to the contained value …\nCalls a function with a reference to the contained value …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the contained Err value, but never panics.\nReturns a consuming iterator over the possibly contained …\nReturns the contained Ok value, but never panics.\nReturns true if the result is Err.\nReturns true if the result is Err and the value inside of …\nReturns true if the result is Ok.\nReturns true if the result is Ok and the value inside of …\nReturns an iterator over the possibly contained value.\nReturns a mutable iterator over the possibly contained …\nMaps a Result<T, E> to Result<U, E> by applying a function …\nMaps a Result<T, E> to Result<T, F> by applying a function …\nReturns the provided default (if Err), or applies a …\nMaps a Result<T, E> to U by applying fallback function …\nConverts from Result<T, E> to Option<T>.\nReturns res if the result is Err, otherwise returns the Ok …\nCalls op if the result is Err, otherwise returns the Ok …\nTakes each element in the Iterator: if it is an Err, no …\nTakes each element in the Iterator: if it is an Err, no …\nTransposes a Result of an Option into an Option of a Result…\nReturns the contained Ok value, consuming the self value.\nReturns the contained Err value, consuming the self value.\nReturns the contained Err value, consuming the self value, …\nReturns the contained Ok value or a provided default.\nReturns the contained Ok value or a default\nReturns the contained Ok value or computes it from a …\nReturns the contained Ok value, consuming the self value, …\nThe number of bytes in a bitmask with this many lanes.\nThis type, reinterpreted as bytes.\nMap from the elements of the input vector to the output …\nSpecifies the number of lanes in a SIMD vector as a type.\nA SIMD vector mask for N elements of width specified by …\nThe mask element type corresponding to this element type.\nMarker trait for types that may be used as SIMD mask …\nA SIMD vector with the shape of [T; N] but the operations …\nSupporting trait for Simd::cast. Typically doesn’t need …\nMarker trait for types that may be used as SIMD vector …\nThis trait provides a possibly-temporary implementation of …\nStatically guarantees that a lane count is marked as …\nCreates a vector from the elements of another vector.\nConverts SIMD vectors to vectors of bytes\nReturns the smallest integer greater than or equal to each …\nTraits for comparing and ordering vectors.\nCreates a new vector from the elements of first and second.\nCreates a new mask from the elements of first and second.\nProduces a vector where every element has the cosine of …\nProduces a vector where every element has the exponential …\nProduces a vector where every element has the exponential …\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nReturns the largest integer value less than or equal to …\nReturns the floating point’s fractional value, with its …\nReturns the argument unchanged.\nCreates an integer value from its representation as a byte …\nCreates an integer value from its representation as a byte …\nCreates a native endian integer value from its memory …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nCalls U::from(self).\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nProduces a vector where every element has the natural …\nProduces a vector where every element has the logarithm …\nProduces a vector where every element has the base-10 …\nProduces a vector where every element has the base-2 …\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nElementwise fused multiply-add. Computes (self * a) + b …\nTraits for vectors with numeric elements.\nThe portable SIMD prelude.\nTraits for vectors of pointers.\nRounds to the nearest integer value. Ties round toward …\nConstructs a new SIMD vector by copying elements from …\nProduces a vector where every element has the sine of the …\nProduces a vector where every element has the square root …\nCreates a new vector from the elements of vector.\nCreates a new mask from the elements of mask.\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nReturns the floating point’s integer value, with its …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nThe mask type returned by each comparison.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the element-wise maximum with other.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nReturns each element with the magnitude of self and the …\nRaw transmutation from an unsigned integer vector type …\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nReturns the maximum of each element.\nReturns the minimum of each element.\nReverses the byte order of each element.\nReverses the byte order of each element.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nWrapping negation.\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nNumber of elements in this vector.\nA SIMD vector mask for N elements of width specified by …\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nThe mask type returned by each comparison.\nVector of mutable pointers to the same type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nA SIMD vector with the shape of [T; N] but the operations …\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of mutable pointers.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nReturns true if all elements are set, or false otherwise.\nReturns true if any element is set, or false otherwise.\nReturns an array reference containing the entire SIMD …\nReturns a mutable array reference containing the entire …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nConverts the mask to a mask of any other element size.\nChanges constness without changing the type.\nChanges constness without changing the type.\nWrites a SIMD vector to the first N elements of a slice.\nReturns each element with the magnitude of self and the …\nDeinterleave two vectors.\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nFinds the index of the first set element.\nA Simd<T, N> has a debug format like the one for [T]:\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an array of bools to a SIMD mask.\nConverts an array to a SIMD vector.\nCreates a mask from a bitmask.\nCreates a mask from a bitmask vector.\nRaw transmutation from an unsigned integer vector type …\nConverts a vector of integers to a mask, where 0 …\nConverts a vector of integers to a mask, where 0 …\nConverts a slice to a SIMD vector containing slice[..N].\nReads from potentially discontiguous indices in slice to …\nReads from indices in slice to construct a SIMD vector. If …\nReads elementwise from pointers into a SIMD vector.\nReads from indices in slice to construct a SIMD vector. …\nConditionally read elementwise from pointers into a SIMD …\nReads from indices in slice to construct a SIMD vector. …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nInterleave two vectors.\nCalls U::from(self).\nCalls U::from(self).\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each element that is null.\nReturns true for each element that is null.\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of elements in this SIMD vector.\nReads contiguous elements from slice. Elements are read so …\nReads contiguous elements from slice. Elements are read so …\nReads contiguous elements from slice. Each element is read …\nReads contiguous elements from slice. Each element is read …\nReads contiguous elements starting at ptr. Each element is …\nReads contiguous elements from slice. Each element is read …\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nResize a vector.\nReverse the order of the elements in the vector.\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nRotates the vector such that the first OFFSET elements of …\nRotates the vector such that the first self.len() - OFFSET …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nWrites the values in a SIMD vector to potentially …\nWrites pointers elementwise into a SIMD vector.\nWrites values from a SIMD vector to multiple potentially …\nConditionally write pointers elementwise into a SIMD …\nWrites values from a SIMD vector to multiple potentially …\nChoose elements from two vectors.\nChoose elements from two masks.\nSets the value of the specified element.\nSets the value of the specified element.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the maximum of each element.\nReturns the element-wise maximum with other.\nReturns the minimum of each element.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nConstructs a new SIMD vector by copying elements from …\nConstructs a mask by setting all elements to the given …\nConstructs a new SIMD vector with all elements set to the …\nConditionally write contiguous elements to slice. The …\nConditionally write contiguous elements starting from ptr. …\nConditionally write contiguous elements to slice. The …\nReverses the byte order of each element.\nReverses the byte order of each element.\nSwizzle a vector of bytes according to the index vector. …\nTests the value of the specified element.\nTests the value of the specified element.\nConverts a SIMD mask to an array of bools.\nConverts a SIMD vector to an array.\nCreates a bitmask from a mask.\nCreates a bitmask vector from a mask.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nConverts the mask to a vector of integers, where 0 …\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nWrapping negation.\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nVector of mutable pointers to the same type.\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of mutable pointers.\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nChanges constness without changing the type.\nChanges constness without changing the type.\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nReturns true for each element that is null.\nReturns true for each element that is null.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nAn iterator over a slice in (non-overlapping) chunks (N …\nAn iterator over a slice in (non-overlapping) mutable …\nA windowed iterator over a slice in overlapping chunks (N …\nAn iterator over slice in (non-overlapping) chunks …\nAn iterator over slice in (non-overlapping) mutable chunks …\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nHelper trait for [T]::concat.\nAn iterator over the escaped version of a byte slice.\nImmutable slice iterator\nMutable slice iterator.\nHelper trait for [T]::join\nThe resulting type after concatenation\nThe resulting type after concatenation\nThe output type returned by methods.\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over subslices separated by elements that …\nAn iterator over the subslices of the vector which are …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nA helper trait used for indexing operations.\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over overlapping subslices of length size.\nViews the underlying data as a mutable subslice of the …\nViews the underlying data as a subslice of the original …\nViews the underlying data as a subslice of the original …\nReturns a slice which contains items not yet handled by …\nImplementation of [T]::concat\nCreates an empty slice iterator.\nCreates an empty slice iterator.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a reference to T into a slice of length 1 …\nForms a mutable slice from a pointer range.\nForms a slice from a pointer range.\nForms a slice from a pointer and a length.\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to T into a slice of length 1 …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nReturns a pointer to the output at this location, without …\nReturns a mutable pointer to the output at this location, …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nViews the underlying data as a subslice of the original …\nImplementation of [T]::join\nPerforms bounds checking of a range.\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nReturns the remainder of the original slice that is not …\nPerforms bounds checking of a range without panicking.\nAn iterator over the bytes of a string slice.\nAn iterator over the chars of a string slice, and their …\nAn iterator over the chars of a string slice.\nAn iterator of u16 over the string encoded as UTF-16.\nThe associated error which can be returned from parsing.\nThe return type of str::escape_debug.\nThe return type of str::escape_default.\nThe return type of str::escape_unicode.\nParse a value from a string\nAn iterator over the lines of a string, as string slices.\nCreated with the method lines_any.\nCreated with the method match_indices.\nCreated with the method matches.\nAn error returned when parsing a bool using from_str fails\nCreated with the method rmatch_indices.\nCreated with the method rmatches.\nCreated with the method rsplit.\nCreated with the method rsplitn.\nCreated with the method rsplit_terminator.\nCreated with the method split.\nAn iterator over the non-ASCII-whitespace substrings of a …\nAn iterator over the substrings of a string, terminated by …\nCreated with the method splitn.\nCreated with the method split_terminator.\nAn iterator over the non-whitespace substrings of a string,\nAn item returned by the Utf8Chunks iterator.\nAn iterator used to decode a slice of mostly UTF-8 bytes …\nErrors which can occur when attempting to interpret a …\nViews the underlying data as a subslice of the original …\nViews the underlying data as a subslice of the original …\nProvides more information about the failure:\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a boxed slice of bytes to a boxed string slice …\nCreates a &str from a pointer and a length.\nCreates a &mut str from a pointer and a length.\nParses a string s to return a value of this type.\nConverts a slice of bytes to a string slice.\nConverts a mutable slice of bytes to a mutable string …\nConverts a slice of bytes to a string slice without …\nConverts a slice of bytes to a string slice without …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the invalid sequence that caused a failure.\nReturns the byte position of the next character, or the …\nThe string Pattern API.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns remainder of the split string.\nReturns the remaining lines of the split string.\nReturns remainder of the split string\nReturns remainder of the split string.\nReturns the next validated UTF-8 substring.\nReturns the index in the given string up to which valid …\nAssociated type for <&[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <F as Pattern>::Searcher<'a>.\nAssociated type for <char as Pattern>::Searcher<'a>.\nAssociated type for <&[char] as Pattern>::Searcher<'a>.\nExpresses that every byte of the haystack has been …\nA marker trait to express that a ReverseSearcher can be …\nExpresses that a match of the pattern has been found at …\nA string pattern.\nExpresses that haystack[a..b] has been rejected as a …\nA reverse searcher for a string pattern.\nResult of calling Searcher::next() or …\nA searcher for a string pattern.\nAssociated searcher for this pattern\nAssociated type for <&str as Pattern>::Searcher<'a>.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nGetter for the underlying string to be searched in\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConstructs the associated searcher from self and the …\nChecks whether the pattern matches anywhere in the haystack\nChecks whether the pattern matches at the front of the …\nChecks whether the pattern matches at the back of the …\nPerforms the next search step starting from the front.\nPerforms the next search step starting from the back.\nFinds the next Match result. See next().\nFinds the next Match result. See next_back().\nFinds the next Reject result. See next() and next_match().\nFinds the next Reject result. See next_back().\nRemoves the pattern from the front of haystack, if it …\nRemoves the pattern from the back of haystack, if it …\nA draining iterator for String.\nA possible error value when converting a String from a …\nA possible error value when converting a String from a …\nA type alias for Infallible.\nA UTF-8–encoded, growable string.\nA trait for converting a value to a String.\nReturns a byte slice of this String’s contents.\nReturns a slice of u8s bytes that were attempted to …\nConverts a String into a mutable string slice.\nReturns a mutable reference to the contents of this String.\nReturns the remaining (sub)string of this iterator as a …\nExtracts a string slice containing the entire String.\nReturns this String’s capacity, in bytes.\nTruncates this String, removing all contents.\nClones the contents of source into self.\nCreates an empty String.\nRemoves the specified range from the string in bulk, …\nCopies elements from src range to the end of the string.\nReturns the argument unchanged.\nConverts the given boxed str slice to a String. It is …\nAllocates an owned String from a single character.\nConverts a &str into a String.\nReturns the argument unchanged.\nConverts a clone-on-write string to an owned instance of …\nConverts a &String into a String.\nConverts a &mut str into a String.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new String from a pointer, a length and a …\nDecode a UTF-16–encoded vector v into a String, …\nDecode a UTF-16–encoded slice v into a String, replacing …\nDecode a UTF-16BE–encoded vector v into a String, …\nDecode a UTF-16BE–encoded slice v into a String, …\nDecode a UTF-16LE–encoded vector v into a String, …\nDecode a UTF-16LE–encoded slice v into a String, …\nConverts a vector of bytes to a String.\nConverts a slice of bytes to a string, including invalid …\nConverts a vector of bytes to a String without checking …\nInserts a character into this String at a byte position.\nInserts a string slice into this String at a byte position.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts this String into a Box<str>.\nConverts a String into a byte vector.\nReturns the bytes that were attempted to convert to a …\nDecomposes a String into its raw components: …\nReturns true if this String has a length of zero, and false…\nConsumes and leaks the String, returning a mutable …\nReturns the length of this String, in bytes, not chars or …\nCreates a new empty String.\nRemoves the last character from the string buffer and …\nAppends the given char to the end of this String.\nAppends a given string slice onto the end of this String.\nRemoves a char from this String at a byte position and …\nRemove all matches of pattern pat in the String.\nRemoves the specified range in the string, and replaces it …\nReserves capacity for at least additional bytes more than …\nReserves the minimum capacity for at least additional …\nRetains only the characters specified by the predicate.\nShrinks the capacity of this String with a lower bound.\nShrinks the capacity of this String to match its length.\nSplits the string into two at the given byte index.\nConverts the given value to a String.\nShortens this String to the specified length.\nTries to reserve capacity for at least additional bytes …\nTries to reserve the minimum capacity for at least …\nCreates a new empty String with at least the specified …\nFetch a Utf8Error to get more details about the conversion …\nCreates a new empty String with at least the specified …\nA thread-safe reference-counting pointer. ‘Arc’ stands …\nA barrier enables multiple threads to synchronize the …\nA BarrierWaitResult is returned by Barrier::wait() when …\nA Condition Variable\nContains the error value\nContains the error value\nExclusive provides only mutable access, also referred to …\nA value which is initialized on the first access.\nA type alias for the result of a lock method which can be …\nAn RAII mutex guard returned by MutexGuard::map, which can …\nRAII structure used to release the shared read access of a …\nRAII structure used to release the exclusive write access …\nA mutual exclusion primitive useful for protecting shared …\nAn RAII implementation of a “scoped lock” of a mutex. …\nInitialization value for static Once values.\nContains the success value\nContains the success value\nA low-level synchronization primitive for one-time global …\nA synchronization primitive which can nominally be written …\nState yielded to Once::call_once_force()’s closure …\nA type of error which can be returned whenever a lock is …\nThe lock could not be acquired because another thread …\nA re-entrant mutual exclusion lock\nAn RAII implementation of a “scoped lock” of a …\nA reader-writer lock\nRAII structure used to release the shared read access of a …\nRAII structure used to release the exclusive write access …\nAn enumeration of possible errors associated with a …\nA type alias for the result of a nonblocking locking …\nA type indicating whether a timed wait on a condition …\nWeak is a version of Arc that holds a non-owning reference …\nThe lock could not be acquired at this time because the …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nProvides a raw pointer to the data.\nReturns a raw pointer to the object T pointed to by this …\nConverts to Arc<T>.\nConverts to Arc<[T]>.\nAtomic types\nPerforms an initialization routine once and only once. The …\nPerforms the same function as call_once() except ignores …\nClear the poisoned state from a mutex.\nClear the poisoned state from a lock.\nMakes a clone of the Arc pointer.\nMakes a clone of the Weak pointer that points to the same …\nComparison for two Arcs.\nDecrements the strong reference count on the Arc<T> …\nDecrements the strong reference count on the Arc<T> …\nCreates a Condvar which is ready to be waited on and …\nCreates a new lazy value using Default as the initializing …\nCreates an empty [T] inside an Arc\nCreates a new Arc<T>, with the Default value for T.\nCreates an empty CStr inside an Arc\nCreates an empty str inside an Arc\nConstructs a new Weak<T>, without allocating memory. …\nCreates a Mutex<T>, with the Default value for T.\nCreates a new empty cell.\nCreates a new RwLock<T>, with the Default value for T.\nDereferences the value.\nAttempts to downcast the Arc<dyn Any + Send + Sync> to a …\nDowncasts the Arc<dyn Any + Send + Sync> to a concrete …\nCreates a new Weak pointer to this allocation.\nDrops the Arc.\nDrops the Weak pointer.\nEquality for two Arcs.\nForces the evaluation of this lazy value and returns a …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a PathBuf into an Arc<Path> by moving the PathBuf …\nReturns the argument unchanged.\nCreates an atomically reference-counted pointer from a …\nConverts a &CStr into a Arc<CStr>, by copying the contents …\nConverts a [T; N] into an Arc<[T]>.\nAllocates a reference-counted slice and fills it by …\nAllocates a reference-counted str and copies v into it.\nAllocates a reference-counted str and copies v into it.\nConverts a T into an Arc<T>\nAllocates a reference-counted slice and moves v’s items …\nConverts an OsString into an Arc<OsStr> by moving the …\nConverts a CString into an Arc<CStr> by moving the CString …\nCopies the string into a newly allocated Arc<OsStr>.\nConverts an atomically reference-counted string slice into …\nConverts a Path into an Arc by copying the Path data into …\nMove a boxed object to a new, reference-counted allocation.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new mutex in an unlocked state ready for use. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new cell with its contents set to value.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new instance of an RwLock<T> which is unlocked. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator and collects it into an …\nBuild a mutable reference to an Exclusive<T> from a mutable…\nBuild a pinned mutable reference to an Exclusive<T> from a …\nConstructs an Arc<T> from a raw pointer.\nConverts a raw pointer previously created by into_raw back …\nConstructs an Arc<T, A> from a raw pointer.\nConverts a raw pointer previously created by into_raw back …\n‘Greater than or equal to’ comparison for two Arcs.\nGets the reference to the underlying value.\nReturns a mutable reference into the given Arc, if there …\nReturns a mutable reference to the underlying data.\nGets the mutable reference to the underlying value.\nReaches into this error indicating that a lock is …\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nGets exclusive access to the underlying value.\nGets the mutable reference of the contents of the cell, …\nGets the mutable reference of the contents of the cell, …\nReturns a mutable reference into the given Arc, without …\nGets the contents of the cell, initializing it with f if …\nGets the contents of the cell, initializing it with f if …\nGets pinned exclusive access to the underlying value.\nReaches into this error indicating that a lock is …\nGreater-than comparison for two Arcs.\nIncrements the strong reference count on the Arc<T> …\nIncrements the strong reference count on the Arc<T> …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes this LazyLock returning the stored value.\nReturns the inner value, if the Arc has exactly one strong …\nConsumes this mutex, returning the underlying data.\nConsumes the OnceLock, returning the wrapped value. Returns\nConsumes this error indicating that a lock is poisoned, …\nConsumes this lock, returning the underlying data.\nConsumes this RwLock, returning the underlying data.\nUnwrap the value contained in the Exclusive\nConsumes the Arc, returning the wrapped pointer.\nConsumes the Weak<T> and turns it into a raw pointer.\nConsumes the Arc, returning the wrapped pointer and …\nConsumes the Weak<T>, returning the wrapped pointer and …\nReturns true if some call_once() call has completed …\nReturns true if this thread is the “leader thread” for …\nDetermines whether the mutex is poisoned.\nReturns true if the associated Once was poisoned prior to …\nDetermines whether the lock is poisoned.\n‘Less than or equal to’ comparison for two Arcs.\nAcquires a mutex, blocking the current thread until it is …\nAcquires the lock, blocking the current thread until it is …\nLess-than comparison for two Arcs.\nMakes a mutable reference into the given Arc.\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nMulti-producer, single-consumer FIFO queue communication …\nInequality for two Arcs.\nCreates a new barrier that can block a given number of …\nCreates a new condition variable which is ready to be …\nCreates a new lazy value with the given initializing …\nConstructs a new Arc<T>.\nConstructs a new Weak<T>, without allocating any memory. …\nCreates a new mutex in an unlocked state ready for use.\nCreates a new Once value.\nCreates a new empty cell.\nCreates a PoisonError.\nCreates a new re-entrant lock in an unlocked state ready …\nCreates a new instance of an RwLock<T> which is unlocked.\nWrap a value in an Exclusive\nConstructs a new Arc<T> while giving you a Weak<T> to the …\nConstructs a new Arc<T> in the provided allocator.\nConstructs a new Weak<T, A>, without allocating any …\nConstructs a new Arc with uninitialized contents.\nConstructs a new Arc with uninitialized contents in the …\nConstructs a new atomically reference-counted slice with …\nConstructs a new atomically reference-counted slice with …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new atomically reference-counted slice with …\nConstructs a new atomically reference-counted slice with …\nWakes up all blocked threads on this condvar.\nWakes up one blocked thread on this condvar.\nPartial comparison for two Arcs.\nConstructs a new Pin<Arc<T>>. If T does not implement Unpin…\nConstructs a new Pin<Arc<T, A>> in the provided allocator. …\nReturns true if the two Arcs point to the same allocation …\nReturns true if the two Weaks point to the same allocation …\nLocks this RwLock with shared read access, blocking the …\nSets the contents of this cell to value.\nGets the number of strong (Arc) pointers to this …\nGets the number of strong (Arc) pointers pointing to this …\nTakes the value out of this OnceLock, moving it back to an …\nReturns true if the wait was known to have timed out.\nSets the contents of this cell to value if the cell was …\nAttempts to acquire this lock.\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedMutexGuard for a component of the borrowed …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nMakes a MappedRwLockReadGuard for a component of the …\nMakes a MappedRwLockWriteGuard for a component of the …\nConstructs a new Arc<T>, returning an error if allocation …\nConstructs a new Arc<T, A> in the provided allocator, …\nConstructs a new Arc with uninitialized contents, …\nConstructs a new Arc with uninitialized contents, in the …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new Arc with uninitialized contents, with the …\nConstructs a new Pin<Arc<T>>, return an error if …\nConstructs a new Pin<Arc<T, A>> in the provided allocator, …\nAttempts to acquire this RwLock with shared read access.\nReturns the inner value, if the Arc has exactly one strong …\nAttempts to lock this RwLock with exclusive write access.\nIf we have the only reference to T then unwrap it. …\nAttempts to upgrade the Weak pointer to an Arc, delaying …\nBlocks the current thread until all threads have …\nBlocks the current thread until this condition variable …\nBlocks the current thread until initialization has …\nBlocks the current thread until the cell is initialized.\nBlocks the current thread until initialization has …\nWaits on this condition variable for a notification, …\nWaits on this condition variable for a notification, …\nWaits on this condition variable for a notification, …\nBlocks the current thread until this condition variable …\nGets the number of Weak pointers to this allocation.\nGets an approximation of the number of Weak pointers …\nLocks this RwLock with exclusive write access, blocking …\nAn AtomicBool initialized to false.\nAn AtomicIsize initialized to 0.\nAn AtomicUsize initialized to 0.\nHas the effects of both Acquire and Release together: For …\nWhen coupled with a load, if the loaded value was written …\nA boolean type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nA raw pointer type which can be safely shared between …\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAtomic memory orderings\nNo ordering constraints, only atomic operations.\nWhen coupled with a store, all previous operations become …\nLike Acquire/Release/AcqRel (for load, store, and …\nReturns a mutable pointer to the underlying bool.\nReturns a mutable pointer to the underlying pointer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nReturns a mutable pointer to the underlying integer.\nStores a value into the bool if the current value is the …\nStores a value into the pointer if the current value is …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the bool if the current value is the …\nStores a value into the pointer if the current value is …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the bool if the current value is the …\nStores a value into the pointer if the current value is …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nStores a value into the atomic integer if the current …\nA “compiler-only” atomic fence.\nCreates an AtomicBool initialized to false.\nCreates a null AtomicPtr<T>.\nAn atomic fence.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nLogical “and” with a boolean value.\nPerforms a bitwise “and” operation on the address of …\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nBitwise “and” with the current value.\nOffsets the pointer’s address by adding val bytes, …\nOffsets the pointer’s address by subtracting val bytes, …\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMaximum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nMinimum with the current value.\nLogical “nand” with a boolean value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nBitwise “nand” with the current value.\nLogical “not” with a boolean value.\nLogical “or” with a boolean value.\nPerforms a bitwise “or” operation on the address of …\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nBitwise “or” with the current value.\nOffsets the pointer’s address by adding val (in units of …\nOffsets the pointer’s address by subtracting val (in …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nSubtracts from the current value, returning the previous …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nFetches the value, and applies a function to it that …\nLogical “xor” with a boolean value.\nPerforms a bitwise “xor” operation on the address of …\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nBitwise “xor” with the current value.\nReturns the argument unchanged.\nConverts a bool into an AtomicBool.\nReturns the argument unchanged.\nConverts a *mut T into an AtomicPtr<T>.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an i8 into an AtomicI8.\nConverts an u8 into an AtomicU8.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an i16 into an AtomicI16.\nReturns the argument unchanged.\nConverts an u16 into an AtomicU16.\nReturns the argument unchanged.\nConverts an i32 into an AtomicI32.\nConverts an u32 into an AtomicU32.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an i64 into an AtomicI64.\nReturns the argument unchanged.\nConverts an u64 into an AtomicU64.\nConverts an isize into an AtomicIsize.\nReturns the argument unchanged.\nConverts an usize into an AtomicUsize.\nReturns the argument unchanged.\nGets atomic access to a &mut bool.\nGets atomic access to a pointer.\nGet atomic access to a &mut i8.\nGet atomic access to a &mut u8.\nGet atomic access to a &mut i16.\nGet atomic access to a &mut u16.\nGet atomic access to a &mut i32.\nGet atomic access to a &mut u32.\nGet atomic access to a &mut i64.\nGet atomic access to a &mut u64.\nGet atomic access to a &mut isize.\nGet atomic access to a &mut usize.\nGets atomic access to a &mut [bool] slice.\nGets atomic access to a slice of pointers.\nGet atomic access to a &mut [i8] slice.\nGet atomic access to a &mut [u8] slice.\nGet atomic access to a &mut [i16] slice.\nGet atomic access to a &mut [u16] slice.\nGet atomic access to a &mut [i32] slice.\nGet atomic access to a &mut [u32] slice.\nGet atomic access to a &mut [i64] slice.\nGet atomic access to a &mut [u64] slice.\nGet atomic access to a &mut [isize] slice.\nGet atomic access to a &mut [usize] slice.\nCreates a new AtomicBool from a pointer.\nCreates a new AtomicPtr from a pointer.\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nCreates a new reference to an atomic integer from a …\nReturns a mutable reference to the underlying bool.\nReturns a mutable reference to the underlying pointer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nReturns a mutable reference to the underlying integer.\nGets non-atomic access to a &mut [AtomicBool] slice.\nGets non-atomic access to a &mut [AtomicPtr] slice.\nGet non-atomic access to a &mut [AtomicI8] slice\nGet non-atomic access to a &mut [AtomicU8] slice\nGet non-atomic access to a &mut [AtomicI16] slice\nGet non-atomic access to a &mut [AtomicU16] slice\nGet non-atomic access to a &mut [AtomicI32] slice\nGet non-atomic access to a &mut [AtomicU32] slice\nGet non-atomic access to a &mut [AtomicI64] slice\nGet non-atomic access to a &mut [AtomicU64] slice\nGet non-atomic access to a &mut [AtomicIsize] slice\nGet non-atomic access to a &mut [AtomicUsize] slice\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nConsumes the atomic and returns the contained value.\nLoads a value from the bool.\nLoads a value from the pointer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nLoads a value from the atomic integer.\nCreates a new AtomicBool.\nCreates a new AtomicPtr.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nCreates a new atomic integer.\nSignals the processor that it is inside a busy-wait …\nStores a value into the bool.\nStores a value into the pointer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the atomic integer.\nStores a value into the bool, returning the previous value.\nStores a value into the pointer, returning the previous …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nStores a value into the atomic integer, returning the …\nThe channel’s sending half has become disconnected, and …\nThe channel’s sending half has become disconnected, and …\nThis sync_channel’s receiving half has disconnected, so …\nThis channel is currently empty, but the Sender(s) have …\nThe data could not be sent on the sync_channel because it …\nAn owning iterator over messages on a Receiver, created by …\nAn iterator over messages on a Receiver, created by iter.\nThe receiving half of Rust’s channel (or sync_channel) …\nAn error returned from the recv function on a Receiver.\nThis enumeration is the list of possible errors that made …\nAn error returned from the Sender::send or SyncSender::send\nThe sending-half of Rust’s asynchronous channel type.\nThe sending-half of Rust’s synchronous sync_channel type.\nThis channel is currently empty, but the Sender(s) have …\nAn iterator that attempts to yield all pending values for …\nThis enumeration is the list of the possible reasons that …\nThis enumeration is the list of the possible error …\nCreates a new asynchronous channel, returning the …\nClone a sender to send to other threads.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a RecvError into a TryRecvError.\nReturns the argument unchanged.\nConverts a RecvError into a RecvTimeoutError.\nReturns the argument unchanged.\nConverts a SendError<T> into a TrySendError<T>.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns an iterator that will block waiting for messages, …\nAttempts to wait for a value on this receiver, returning …\nAttempts to wait for a value on this receiver, returning …\nAttempts to wait for a value on this receiver, returning …\nAttempts to send a value on this channel, returning it …\nSends a value on this synchronous channel.\nCreates a new synchronous, bounded channel. All data sent …\nReturns an iterator that will attempt to yield all pending …\nAttempts to return a pending value on this receiver …\nAttempts to send a value on this channel without blocking.\nThe context of an asynchronous task.\nA Builder used to construct a Context instance with …\nAn analogous trait to Wake but used to construct a …\nA LocalWaker is analogous to a Waker, but it does not …\nRepresents that a value is not ready yet.\nIndicates whether a value is available or if the current …\nA RawWaker allows the implementor of a task executor to …\nA virtual function pointer table (vtable) that specifies …\nRepresents that a value is immediately ready.\nThe implementation of waking a task on an executor.\nA Waker is a handle for waking up a task by notifying its …\nGets a reference to the underlying RawWaker.\nGets a reference to the underlying RawWaker.\nBuilds the Context.\nAssigns a clone of source to self, unless …\nGets the data pointer used to create this RawWaker.\nReturns a reference to the extension data for the current …\nSets the value for the extension data on Context.\nReturns the argument unchanged.\nReturns the argument unchanged.\nUse a Wake-able type as a Waker.\nUse a Wake-able type as a LocalWaker.\nReturns the argument unchanged.\nReturns the argument unchanged.\nMoves the value into a Poll::Ready to make a Poll<T>.\nReturns the argument unchanged.\nUse a Wake-able type as a RawWaker.\nUse a Wake-able type as a RawWaker.\nReturns the argument unchanged.\nCreates a ContextBuilder from an existing Context.\nReturns the argument unchanged.\nCreates a new Waker from RawWaker.\nCreates a new LocalWaker from RawWaker.\nCreates a new Context from a &Waker.\nCreates a ContextBuilder from a Waker.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the poll is a Pending value.\nReturns true if the poll is a Poll::Ready value.\nReturns a reference to the LocalWaker for the current task.\nSets the value for the local waker on Context.\nMaps a Poll<T> to Poll<U> by applying a function to a …\nMaps a Poll::Ready<Result<T, E>> to …\nMaps a Poll::Ready<Option<Result<T, E>>> to …\nMaps a Poll<Result<T, E>> to Poll<Result<U, E>> by …\nMaps a Poll<Option<Result<T, E>>> to …\nCreates a new RawWaker from the provided data pointer and …\nCreates a new RawWakerVTable from the provided clone, wake,\nReturns a reference to a Waker that does nothing when used.\nReturns a reference to a LocalWaker that does nothing when …\nExtracts the successful type of a Poll<T>.\nGets the vtable pointer used to create this RawWaker.\nWake this task.\nWake this task.\nWakes up the task associated with this Waker.\nWakes up the task associated with this LocalWaker.\nWake this task without consuming the waker.\nWake this task without consuming the local waker.\nWakes up the task associated with this Waker without …\nWakes up the task associated with this LocalWaker without …\nReturns a reference to the Waker for the current task.\nSets the value for the waker on Context.\nReturns true if this Waker and another Waker would awake …\nReturns true if this LocalWaker and another LocalWaker …\nAn error returned by LocalKey::try_with.\nThread factory, which can be used in order to configure …\nContains the error value\nAn owned permission to join on a thread (block on its …\nA thread local storage key which owns its contents.\nContains the success value\nA specialized Result type for threads.\nA scope to spawn scoped threads in.\nAn owned permission to join on a scoped thread (block on …\nA handle to a thread.\nA unique identifier for a running thread.\nThis returns a numeric identifier for the thread …\nReturns an estimate of the default amount of parallelism a …\nGets a handle to the thread that invokes it.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns a copy of the contained value.\nGets the thread’s unique identifier.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nChecks if the associated thread has finished running its …\nChecks if the associated thread has finished running its …\nWaits for the associated thread to finish.\nWaits for the associated thread to finish.\nNames the thread-to-be. Currently the name is used for …\nGets the thread’s name.\nGenerates the base configuration for spawning a thread, …\nDetermines whether the current thread is unwinding because …\nBlocks unless or until the current thread’s token is …\nBlocks unless or until the current thread’s token is …\nUses park_timeout.\nReplaces the contained value, returning the old value.\nReplaces the contained value, returning the old value.\nCreates a scope for spawning scoped threads.\nSets or initializes the contained value.\nSets or initializes the contained value.\nPuts the current thread to sleep for at least the …\nUses sleep.\nPuts the current thread to sleep until the specified …\nSpawns a new thread, returning a JoinHandle for it.\nSpawns a new thread within a scope, returning a …\nSpawns a new thread by taking ownership of the Builder, …\nSpawns a new scoped thread using the settings set through …\nSpawns a new thread without any lifetime restrictions by …\nSets the size of the stack (in bytes) for the new thread.\nTakes the contained value, leaving Default::default() in …\nTakes the contained value, leaving Default::default() in …\nExtracts a handle to the underlying thread.\nExtracts a handle to the underlying thread.\nAcquires a reference to the value in this TLS key.\nAtomically makes the handle’s token available if it is …\nAcquires a reference to the value in this TLS key.\nAcquires a reference to the contained value.\nAcquires a mutable reference to the contained value.\nCooperatively gives up a timeslice to the OS scheduler.\nA Duration type to represent a span of time, typically …\nA measurement of a monotonically nondecreasing clock. …\nThe maximum duration.\nThe duration of one microsecond.\nThe duration of one millisecond.\nThe duration of one nanosecond.\nThe duration of one second.\nA measurement of the system clock, useful for talking to …\nAn error returned from the duration_since and elapsed …\nAn error which can be returned when converting a …\nAn anchor in time which can be used to create new …\nAn anchor in time which can be used to create new …\nA duration of zero time.\nComputes the absolute difference between self and other.\nPanics\nPanics\nReturns the total number of whole microseconds contained …\nReturns the total number of whole milliseconds contained …\nReturns the number of milliseconds contained by this …\nReturns the number of milliseconds contained by this …\nReturns the total number of nanoseconds contained by this …\nReturns the number of whole seconds contained by this …\nReturns the number of seconds contained by this Duration …\nReturns the number of seconds contained by this Duration …\nReturns Some(t) where t is the time self + duration if t …\nReturns Some(t) where t is the time self + duration if t …\nChecked Duration addition. Computes self + other, …\nChecked Duration division. Computes self / other, …\nReturns the amount of time elapsed from another instant to …\nChecked Duration multiplication. Computes self * other, …\nReturns Some(t) where t is the time self - duration if t …\nReturns Some(t) where t is the time self - duration if t …\nChecked Duration subtraction. Computes self - other, …\nDivides Duration by Duration and returns f32.\nDivides Duration by Duration and returns f64.\nDivides Duration by f32.\nDivides Duration by f64.\nReturns the positive duration which represents how far …\nReturns the amount of time elapsed from another instant to …\nReturns the amount of time elapsed from an earlier point …\nReturns the amount of time elapsed since this instant.\nReturns the difference from this system time to the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new Duration from the specified number of days.\nCreates a new Duration from the specified number of hours.\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of whole …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of …\nCreates a new Duration from the specified number of weeks.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if this Duration spans no time.\nMultiplies Duration by f32.\nMultiplies Duration by f64.\nCreates a new Duration from the specified number of whole …\nReturns an instant corresponding to “now”.\nReturns the system time corresponding to “now”.\nSaturating Duration addition. Computes self + other, …\nReturns the amount of time elapsed from another instant to …\nSaturating Duration multiplication. Computes self * other, …\nSaturating Duration subtraction. Computes self - other, …\nReturns the amount of time elapsed from another instant to …\nReturns the fractional part of this Duration, in whole …\nReturns the fractional part of this Duration, in whole …\nReturns the fractional part of this Duration, in …\nThe checked version of from_secs_f32.\nThe checked version of from_secs_f64.\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nA draining iterator for Vec<T>.\nAn iterator which uses a closure to determine if an …\nAn iterator that moves out of a vector.\nA splicing iterator for Vec.\nA contiguous growable array type, written as Vec<T>, short …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nMoves all the elements of other into self, leaving other …\nReturns a raw mutable pointer to the vector’s buffer, or …\nReturns the remaining items of this iterator as a mutable …\nExtracts a mutable slice of the entire vector.\nReturns a raw pointer to the vector’s buffer, or a …\nReturns the remaining items of this iterator as a slice.\nReturns the remaining items of this iterator as a slice.\nExtracts a slice containing the entire vector.\nReturns the total number of elements the vector can hold …\nClears the vector, removing all values.\nOverwrites the contents of self with a clone of the …\nRemoves consecutive repeated elements in the vector …\nRemoves all but the first of consecutive elements in the …\nRemoves all but the first of consecutive elements in the …\nCreates an empty vec::IntoIter.\nCreates an empty Vec<T>.\nRemoves the specified range from the vector in bulk, …\nClones and appends all elements in a slice to the Vec.\nCopies elements from src range to the end of the vector.\nCreates an iterator which uses a closure to determine if …\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a CString into a Vec<u8>.\nAllocates a Vec<T> and fills it by cloning s’s items.\nConverts the given String to a vector Vec that holds …\nReturns the argument unchanged.\nTurn a VecDeque<T> into a Vec<T>.\nConverts a BinaryHeap<T> into a Vec<T>.\nAllocates a Vec<T> and fills it by cloning s’s items.\nAllocates a Vec<T> and fills it by cloning s’s items.\nAllocates a Vec<u8> and fills it with a UTF-8 string.\nAllocates a Vec<T> and fills it by cloning s’s items.\nConverts a clone-on-write slice into a vector.\nAllocates a Vec<T> and moves s’s items into it.\nConverts a boxed slice into a vector by transferring …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a Vec<T> directly from a pointer, a length, and a …\nCreates a Vec<T, A> directly from a pointer, a length, a …\nInserts an element at position index within the vector, …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts the vector into Box<[T]>.\nTakes a Vec<[T; N]> and flattens it into a Vec<T>.\nCreates a consuming iterator, that is, one that moves each …\nDecomposes a Vec<T> into its raw components: …\nDecomposes a Vec<T> into its raw components: …\nReturns true if the vector contains no elements.\nKeep unyielded elements in the source Vec.\nConsumes and leaks the Vec, returning a mutable reference …\nReturns the number of elements in the vector, also …\nConstructs a new, empty Vec<T>.\nConstructs a new, empty Vec<T, A>.\nRemoves the last element from a vector and returns it, or …\nRemoves and returns the last element in a vector if the …\nAppends an element to the back of a collection.\nAppends an element if there is sufficient spare capacity, …\nRemoves and returns the element at position index within …\nReserves capacity for at least additional more elements to …\nReserves the minimum capacity for at least additional more …\nResizes the Vec in-place so that len is equal to new_len.\nResizes the Vec in-place so that len is equal to new_len.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate, …\nForces the length of the vector to new_len.\nShrinks the capacity of the vector with a lower bound.\nShrinks the capacity of the vector as much as possible.\nReturns the remaining spare capacity of the vector as a …\nCreates a splicing iterator that replaces the specified …\nReturns vector content as a slice of T, along with the …\nSplits the collection into two at the given index.\nRemoves an element from the vector and returns it.\nShortens the vector, keeping the first len elements and …\nTries to reserve capacity for at least additional more …\nTries to reserve the minimum capacity for at least …\nConstructs a new, empty Vec<T> with at least the specified …\nConstructs a new, empty Vec<T, A> with at least the …\nConstructs a new, empty Vec<T> with at least the specified …\nConstructs a new, empty Vec<T, A> with at least the …\nConvenience macro that declares many private submodules, …\nUtility to emit fixed size (const) chunks, in an unchecked …\nHelper for unsafe buffer operations, when the exact total …\nDeclare that n bytes have been written\nGet the pointer pointing to the start of the uninitialised …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nDeclare that the amount of bytes requested up front, has …\nCreates a new ChunkedSlice instance from the given …\nRemoves, without checking, N bytes off the front of the …\nReturns the slice left in self\nCreate a new UnsafeBufWriteGuard with specified capacity\nConsumes self, takes the remainder slice, copies it into a …\nWrites an amount of bytes into self\nWrites an amount of bytes into self, determined by const …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-2-.js b/search.desc/wiwi/wiwi-desc-2-.js index 6e3a4f973..15968f6b6 100644 --- a/search.desc/wiwi/wiwi-desc-2-.js +++ b/search.desc/wiwi/wiwi-desc-2-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 2, "Set packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values …\nSet packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nReturn vector of type __m512 with all elements set to zero.\nReturn vector of type __m512i with all elements set to …\nReturns vector of type __m512d with all elements set to …\nReturn vector of type __m512h with all elements set to …\nReturns vector of type __m512 with all elements set to …\nReturns vector of type __m512i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits (composed of 32 packed 16-bit integers) …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 64 packed 8-bit integers) from …\nStores 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStores 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory. …\nLoad 512-bits of integer data from memory into dst using a …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory using a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nReturn vector of type __m512 with indeterminate elements. …\nReturn vector of type __m512i with indeterminate elements. …\nReturns vector of type __m512d with indeterminate elements.\nReturn vector of type __m512h with undefined elements. In …\nReturns vector of type __m512 with indeterminate elements. …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the bitwise XOR of 512 bits (representing integer …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nComputes the absolute value of each of the packed 16-bit …\nComputes the absolute value of each of the packed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute value of packed 8-bit signed …\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds __m128 vectors.\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nAdd the lower half-precision (16-bit) floating-point …\nAdds the first component of a and b, the other components …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively add and subtract packed double-precision …\nAlternatively add and subtract packed single-precision …\nPerforms one round of an AES decryption flow on data …\nPerforms the last round of an AES decryption flow on data …\nPerforms one round of an AES encryption flow on data …\nPerforms the last round of an AES encryption flow on data …\nPerforms the InvMixColumns transformation on a.\nAssist in expanding the AES cipher key.\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate 16-byte blocks in a and b into a 32-byte …\nComputes the bitwise AND of packed double-precision …\nBitwise AND of packed single-precision (32-bit) …\nComputes the bitwise AND of 128 bits (representing integer …\nComputes the bitwise NOT of a and then AND with b.\nBitwise AND-NOT of packed single-precision (32-bit) …\nComputes the bitwise NOT of 128 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using the mask …\nBlends packed 32-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBlend packed 8-bit integers from a and b using mask\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts a left by IMM8 bytes while shifting in zeros.\nShifts a right by IMM8 bytes while shifting in zeros.\nCast vector of type __m128d to type __m128h. This …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCast vector of type __m128h to type __m128d. This …\nCast vector of type __m128h to type __m128. This intrinsic …\nCast vector of type __m128h to type __m128i. This …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCast vector of type __m128 to type __m128h. This intrinsic …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCasts a 128-bit integer vector into a 128-bit …\nCast vector of type __m128i to type __m128h. This …\nCasts a 128-bit integer vector into a 128-bit …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nInvalidates and flushes the cache line that contains p …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompares the lower double-precision (64-bit) …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower single-precision (32-bit) …\nCompare the lower single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for equality.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for equality. The …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than or …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than. …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than or …\nCompares packed 16-bit integers in a and b for less-than.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for less-than.\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for less-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for less-than.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than. The …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for not-equal.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for inequality. The …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for not-less-than. …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are ordered. The …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are unordered. The …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nAlias for _mm_cvtsi32_ss.\nAlias for _mm_cvtss_si32.\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts the lower two packed 32-bit integers in a to …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZeroes extend packed unsigned 16-bit integers in a to …\nZeroes extend packed unsigned 16-bit integers in a to …\nConvert packed unsigned 16-bit integers in a to packed …\nZeroes extend packed unsigned 32-bit integers in a to …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nConvert the signed 32-bit integer b to a double-precision …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts a single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 4 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 4 x 32-bit float values in the 128-bit vector …\nConverts a single BF16 (16-bit) floating-point element in …\nReturns the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvtsd_si64\nConverts the lower double-precision (64-bit) …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nCopy the lower 16-bit integer in a to dst.\nReturns the lowest element of a.\nReturns the lowest element of a.\nReturns the lowest element of a.\nCopy 16-bit integer a to the lower elements of dst, and …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 32 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 64 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nExtracts the lowest 32 bit float from the input vector.\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lower single-precision (32-bit) …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nAlias for _mm_cvttss_si32.\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvttsd_si64\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivides __m128 vectors.\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nDivide the lower half-precision (16-bit) floating-point …\nDivides the first component of b by a, the other …\nReturns the dot product of two __m128d vectors.\nReturns the dot product of two __m128 vectors.\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nReturns the imm8 element of a.\nExtracts an 32-bit integer from a selected with IMM8\nExtracts an 64-bit integer from a selected with IMM1\nExtracts an 8-bit integer from a, selected with IMM8. …\nExtracts a single-precision (32-bit) floating-point …\nExtracts the bit range specified by y from the lower 64 …\nExtracts the specified bits from the lower 64 bits of the …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nGets the unsigned 32-bit value of the MXCSR control and …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally subtract the adjacent pairs of values …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nReturns a new vector where the imm8 element of a is …\nReturns a copy of a with the 32-bit integer from i …\nReturns a copy of a with the 64-bit integer from i …\nReturns a copy of a with the 8-bit integer from i inserted …\nSelect a single value in b to store at some position in a, …\nInserts the [length:0] bits of y into x at index.\nInserts the len least-significant bits from the lower 64 …\nLoads 128-bits of integer data from unaligned memory. This …\nPerforms a serializing operation on all load-from-memory …\nLoads a double-precision (64-bit) floating-point element …\nConstruct a __m128 by duplicating the value read from p …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoads a double-precision (64-bit) floating-point element …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from aligned memory into a __m128. …\nAlias for _mm_load1_ps\nLoads a 64-bit double-precision value to the low element …\nLoad a half-precision (16-bit) floating-point element from …\nLoads 128-bits of integer data from memory into a new …\nConstruct a __m128 with the lowest element read from p and …\nLoads a double-precision (64-bit) floating-point element …\nLoads a double-precision value into the high-order bits of …\nLoads 64-bit integer from memory into first element of …\nLoads a double-precision value into the low-order bits of …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads four f32 values from aligned memory into a __m128 in …\nLoad 128-bits (composed of 8 packed 16-bit integers) from …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoad 128-bits (composed of 16 packed 8-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from memory into a __m128. There are …\nLoads 128-bits of integer data from memory into a new …\nLoads unaligned 16-bits of integer data from memory into …\nLoads unaligned 32-bits of integer data from memory into …\nLoads unaligned 16-bits of integer data from memory into …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies and then horizontally add signed 16 bit …\nMultiplies corresponding pairs of packed 8-bit unsigned …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore a double-precision (64-bit) floating-point element …\nStore the lower half-precision (16-bit) floating-point …\nStore a single-precision (32-bit) floating-point element …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nConditionally store 8-bit integer elements from a into …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in th elow 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the maximum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nPerforms a serializing operation on all load-from-memory …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the minimum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nFinds the minimum unsigned 16-bit element in the 128-bit __…\nLoads 4 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nLoads 2 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 2 single-precision (32-bit) floating-point elements …\nReturns a vector where the low element is extracted from a …\nConstructs a 128-bit floating-point vector of [2 x double]…\nMove the lower half-precision (16-bit) floating-point …\nReturns a __m128 with the first component from b and the …\nDuplicate the low double-precision (64-bit) floating-point …\nDuplicate odd-indexed single-precision (32-bit) …\nCombine higher half of a and b. The higher half of b …\nDuplicate even-indexed single-precision (32-bit) …\nCombine lower half of a and b. The lower half of b …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nSubtracts 8-bit unsigned integer values and computes the …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies __m128 vectors.\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nReturns a new vector with the low element of a replaced by …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the first component of a and b, the other …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed unsigned 16-bit integers in a and b.\nMultiplies packed 16-bit signed integer values, truncate …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed 32-bit integers in a and b, …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR of a and b.\nBitwise OR of packed single-precision (32-bit) …\nComputes the bitwise OR of 128 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 2, "Shift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nCompute the bitwise OR of 512 bits (representing integer …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition. …\nReduce the packed 64-bit integers in a by addition. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND. …\nReduce the packed 64-bit integers in a by bitwise AND. …\nReduce the packed signed 32-bit integers in a by maximum. …\nReduce the packed signed 64-bit integers in a by maximum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by minimum. …\nReduce the packed signed 64-bit integers in a by minimum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication. …\nReduce the packed 64-bit integers in a by multiplication. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR. …\nReduce the packed 64-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst.\nBroadcast 64-bit integer a to all elements of dst.\nBroadcast 8-bit integer a to all elements of dst.\nBroadcast 64-bit float a to all elements of dst.\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcast 32-bit float a to all elements of dst.\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSet packed 16-bit integers in dst with the supplied values.\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values.\nSet packed 8-bit integers in dst with the supplied values.\nSet packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values …\nSet packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nReturn vector of type __m512 with all elements set to zero.\nReturn vector of type __m512i with all elements set to …\nReturns vector of type __m512d with all elements set to …\nReturn vector of type __m512h with all elements set to …\nReturns vector of type __m512 with all elements set to …\nReturns vector of type __m512i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits (composed of 32 packed 16-bit integers) …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 64 packed 8-bit integers) from …\nStores 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStores 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory. …\nLoad 512-bits of integer data from memory into dst using a …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory using a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nReturn vector of type __m512 with indeterminate elements. …\nReturn vector of type __m512i with indeterminate elements. …\nReturns vector of type __m512d with indeterminate elements.\nReturn vector of type __m512h with undefined elements. In …\nReturns vector of type __m512 with indeterminate elements. …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the bitwise XOR of 512 bits (representing integer …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nComputes the absolute value of each of the packed 16-bit …\nComputes the absolute value of each of the packed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute value of packed 8-bit signed …\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds __m128 vectors.\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nAdd the lower half-precision (16-bit) floating-point …\nAdds the first component of a and b, the other components …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively add and subtract packed double-precision …\nAlternatively add and subtract packed single-precision …\nPerforms one round of an AES decryption flow on data …\nPerforms the last round of an AES decryption flow on data …\nPerforms one round of an AES encryption flow on data …\nPerforms the last round of an AES encryption flow on data …\nPerforms the InvMixColumns transformation on a.\nAssist in expanding the AES cipher key.\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate 16-byte blocks in a and b into a 32-byte …\nComputes the bitwise AND of packed double-precision …\nBitwise AND of packed single-precision (32-bit) …\nComputes the bitwise AND of 128 bits (representing integer …\nComputes the bitwise NOT of a and then AND with b.\nBitwise AND-NOT of packed single-precision (32-bit) …\nComputes the bitwise NOT of 128 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using the mask …\nBlends packed 32-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBlend packed 8-bit integers from a and b using mask\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts a left by IMM8 bytes while shifting in zeros.\nShifts a right by IMM8 bytes while shifting in zeros.\nCast vector of type __m128d to type __m128h. This …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCast vector of type __m128h to type __m128d. This …\nCast vector of type __m128h to type __m128. This intrinsic …\nCast vector of type __m128h to type __m128i. This …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCast vector of type __m128 to type __m128h. This intrinsic …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCasts a 128-bit integer vector into a 128-bit …\nCast vector of type __m128i to type __m128h. This …\nCasts a 128-bit integer vector into a 128-bit …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nInvalidates and flushes the cache line that contains p …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompares the lower double-precision (64-bit) …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower single-precision (32-bit) …\nCompare the lower single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for equality.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for equality. The …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than or …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than. …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than or …\nCompares packed 16-bit integers in a and b for less-than.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for less-than.\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for less-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for less-than.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than. The …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for not-equal.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for inequality. The …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for not-less-than. …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are ordered. The …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are unordered. The …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nAlias for _mm_cvtsi32_ss.\nAlias for _mm_cvtss_si32.\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts the lower two packed 32-bit integers in a to …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZeroes extend packed unsigned 16-bit integers in a to …\nZeroes extend packed unsigned 16-bit integers in a to …\nConvert packed unsigned 16-bit integers in a to packed …\nZeroes extend packed unsigned 32-bit integers in a to …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nConvert the signed 32-bit integer b to a double-precision …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts a single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 4 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 4 x 32-bit float values in the 128-bit vector …\nConverts a single BF16 (16-bit) floating-point element in …\nReturns the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvtsd_si64\nConverts the lower double-precision (64-bit) …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nCopy the lower 16-bit integer in a to dst.\nReturns the lowest element of a.\nReturns the lowest element of a.\nReturns the lowest element of a.\nCopy 16-bit integer a to the lower elements of dst, and …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 32 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 64 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nExtracts the lowest 32 bit float from the input vector.\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lower single-precision (32-bit) …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nAlias for _mm_cvttss_si32.\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvttsd_si64\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivides __m128 vectors.\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nDivide the lower half-precision (16-bit) floating-point …\nDivides the first component of b by a, the other …\nReturns the dot product of two __m128d vectors.\nReturns the dot product of two __m128 vectors.\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nReturns the imm8 element of a.\nExtracts an 32-bit integer from a selected with IMM8\nExtracts an 64-bit integer from a selected with IMM1\nExtracts an 8-bit integer from a, selected with IMM8. …\nExtracts a single-precision (32-bit) floating-point …\nExtracts the bit range specified by y from the lower 64 …\nExtracts the specified bits from the lower 64 bits of the …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nGets the unsigned 32-bit value of the MXCSR control and …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally subtract the adjacent pairs of values …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nReturns a new vector where the imm8 element of a is …\nReturns a copy of a with the 32-bit integer from i …\nReturns a copy of a with the 64-bit integer from i …\nReturns a copy of a with the 8-bit integer from i inserted …\nSelect a single value in b to store at some position in a, …\nInserts the [length:0] bits of y into x at index.\nInserts the len least-significant bits from the lower 64 …\nLoads 128-bits of integer data from unaligned memory. This …\nPerforms a serializing operation on all load-from-memory …\nLoads a double-precision (64-bit) floating-point element …\nConstruct a __m128 by duplicating the value read from p …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoads a double-precision (64-bit) floating-point element …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from aligned memory into a __m128. …\nAlias for _mm_load1_ps\nLoads a 64-bit double-precision value to the low element …\nLoad a half-precision (16-bit) floating-point element from …\nLoads 128-bits of integer data from memory into a new …\nConstruct a __m128 with the lowest element read from p and …\nLoads a double-precision (64-bit) floating-point element …\nLoads a double-precision value into the high-order bits of …\nLoads 64-bit integer from memory into first element of …\nLoads a double-precision value into the low-order bits of …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads four f32 values from aligned memory into a __m128 in …\nLoad 128-bits (composed of 8 packed 16-bit integers) from …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoad 128-bits (composed of 16 packed 8-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from memory into a __m128. There are …\nLoads 128-bits of integer data from memory into a new …\nLoads unaligned 16-bits of integer data from memory into …\nLoads unaligned 32-bits of integer data from memory into …\nLoads unaligned 16-bits of integer data from memory into …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies and then horizontally add signed 16 bit …\nMultiplies corresponding pairs of packed 8-bit unsigned …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore a double-precision (64-bit) floating-point element …\nStore the lower half-precision (16-bit) floating-point …\nStore a single-precision (32-bit) floating-point element …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nConditionally store 8-bit integer elements from a into …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in th elow 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-3-.js b/search.desc/wiwi/wiwi-desc-3-.js index 4a82e49cd..bd44ec84d 100644 --- a/search.desc/wiwi/wiwi-desc-3-.js +++ b/search.desc/wiwi/wiwi-desc-3-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 3, "Provides a hint to the processor that the code sequence is …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle half-precision (16-bit) floating-point elements in …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nFetch the cache line that contains address p using the …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nReturns the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nReturns the approximate reciprocal of the first …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nReturns the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nReturns the approximate reciprocal square root of the …\nSum the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements.\nBroadcasts 32-bit integer a to all elements.\nBroadcasts 64-bit integer a to all elements.\nBroadcasts 8-bit integer a to all elements.\nBroadcasts double-precision (64-bit) floating-point value …\nBroadcast the half-precision (16-bit) floating-point value …\nConstruct a __m128 with all element set to a.\nSets packed 16-bit integers with the supplied values.\nSets packed 32-bit integers with the supplied values.\nSets packed 64-bit integers with the supplied values, from …\nSets packed 8-bit integers with the supplied values.\nSets packed double-precision (64-bit) floating-point …\nBroadcasts double-precision (64-bit) floating-point value …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values highest …\nAlias for _mm_set1_ps\nCopies double-precision (64-bit) floating-point element a …\nCopy half-precision (16-bit) floating-point elements from …\nConstruct a __m128 with the lowest element set to a and …\nSets the MXCSR register with the 32-bit unsigned integer …\nSets packed 16-bit integers with the supplied values in …\nSets packed 32-bit integers with the supplied values in …\nSets packed 8-bit integers with the supplied values in …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values lowest …\nReturns packed double-precision (64-bit) floating-point …\nReturn vector of type __m128h with all elements set to …\nConstruct a __m128 with all elements initialized to zero.\nReturns a vector with all elements set to zero.\nPerforms a serializing operation on all non-temporal (“…\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA1 …\nCalculate SHA1 state variable E after four rounds of …\nPerforms four rounds of SHA1 operation using an initial …\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA256 …\nPerforms 2 rounds of SHA256 operation using an initial …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in a using the control in IMM8.\nShuffles bytes from a according to the content of b.\nConstructs a 128-bit floating-point vector of [2 x double] …\nShuffles packed single-precision (32-bit) floating-point …\nShuffles 16-bit integers in the high 64 bits of a using …\nShuffles 16-bit integers in the low 64 bits of a using the …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts a left by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns a new vector with the square root of each of the …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nReturns a new vector with the low element of a replaced by …\nCompute the square root of the lower half-precision …\nReturns the square root of the first single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts a right by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStores the lower double-precision (64-bit) floating-point …\nStores the lowest 32 bit float of a repeated four times …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStores the lower double-precision (64-bit) floating-point …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into aligned memory.\nAlias for _mm_store1_ps\nStores the lower 64 bits of a 128-bit vector of …\nStore the lower half-precision (16-bit) floating-point …\nStores 128-bits of integer data from a into memory.\nStores the lowest 32 bit float of a into memory.\nStores the upper 64 bits of a 128-bit vector of …\nStores the lower 64-bit integer a to a memory location.\nStores the lower 64 bits of a 128-bit vector of …\nStores 2 double-precision (64-bit) floating-point elements …\nStores four 32-bit floats into aligned memory in reverse …\nStore 128-bits (composed of 8 packed 16-bit integers) from …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStore 128-bits (composed of 16 packed 8-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into memory. There are no …\nStores 128-bits of integer data from a into memory.\nStore 16-bit integer from the first element of a into …\nStore 32-bit integer from the first element of a into …\nStore 64-bit integer from the first element of a into …\nLoad 128-bits of integer data from memory into dst. …\nStores a 128-bit floating point vector of [2 x double] to …\nStores a into the memory at mem_addr using a non-temporal …\nNon-temporal store of a.0 into p.\nStores a 128-bit integer vector to a 128-bit aligned …\nStores a 32-bit integer value in the specified memory …\nStores a 64-bit integer value in the specified memory …\nNon-temporal store of a.0 into p.\nSubtracts packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtracts packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts __m128 vectors.\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nReturns a new vector with the low element of a replaced by …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtracts the first component of b from a, the other …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nTests whether the specified bits in a 128-bit integer …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nReturns vector of type __m128d with indeterminate elements.\nReturn vector of type __m128h with undefined elements. In …\nReturns vector of type __m128 with indeterminate elements. …\nReturns vector of type __m128i with indeterminate elements.\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nThe resulting __m128d element is composed by the low-order …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nThe resulting __m128d element is composed by the …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of a and b.\nBitwise exclusive OR of packed single-precision (32-bit) …\nComputes the bitwise XOR of 128 bits (representing integer …\nUnsigned multiply without affecting flags.\nUnsigned multiply without affecting flags.\nScatter contiguous low order bits of a to the result at …\nScatter contiguous low order bits of a to the result at …\nGathers the bits of x specified by the mask into the …\nGathers the bits of x specified by the mask into the …\nCounts the bits that are set.\nCounts the bits that are set.\nRead a hardware generated 16-bit random value and store …\nRead a hardware generated 32-bit random value and store …\nRead a hardware generated 64-bit random value and store …\nRead a 16-bit NIST SP800-90B and SP800-90C compliant …\nRead a 32-bit NIST SP800-90B and SP800-90C compliant …\nRead a 64-bit NIST SP800-90B and SP800-90C compliant …\nReads the current value of the processor’s time-stamp …\nStore 16-bit mask to memory\nStore 32-bit mask from a into memory.\nStore 64-bit mask from a into memory.\nStore 8-bit mask to memory\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nClears all bits below the least significant zero of x and …\nClears all bits below the least significant zero of x and …\nPerform matrix multiplication of two tiles containing …\nPerform matrix multiplication of two tiles containing …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of FP16 (16-bit) floating-point pairs …\nLoad tile configuration from a 64-byte memory location …\nLoad tile rows from memory specifieid by base address and …\nRelease the tile configuration to return to the init …\nStores the current tile configuration to a 64-byte memory …\nStore the tile specified by src to memory specifieid by …\nLoad tile rows from memory specifieid by base address and …\nZero the tile specified by tdest.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nSets all bits below the least significant one of x and …\nSets all bits below the least significant one of x and …\nForces a restricted transactional memory (RTM) region to …\nRetrieves the parameter passed to _xabort when _xbegin’s …\nSpecifies the start of a restricted transactional memory …\nSpecifies the end of a restricted transactional memory …\nReads the contents of the extended control register XCR …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nCopies 64-bits from val to the extended control register (…\nQueries whether the processor is executing in a …\nThe BFloat16 type used in AVX-512 intrinsics.\nCompares and exchange 16 bytes (128 bits) of data …\nEAX register.\nEBX register.\nECX register.\nEDX register.\nA by-value array iterator.\nThe error type returned when a conversion from a slice to …\nCreates an array of type [T; N], where each element T is …\nConverts a mutable reference to T into a mutable reference …\nConverts a reference to T into a reference to an array of …\nCreates an array of type [T; N] by repeatedly cloning a …\nCreates an array [T; N] where each fallible array element T…\nU+0006\nU+0026\nU+0027\nU+002A\nU+0008\nU+0007\nU+0018\nU+0041\nU+0042\nU+0043\nU+0044\nU+0045\nU+0046\nU+0047\nU+0048\nU+0049\nU+004A\nU+004B\nU+004C\nU+004D\nU+004E\nU+004F\nU+0050\nU+0051\nU+0052\nU+0053\nU+0054\nU+0055\nU+0056\nU+0057\nU+0058\nU+0059\nU+005A\nU+000D\nOne of the 128 Unicode characters from U+0000 through …\nU+0009\nU+005E\nU+003A\nU+002C\nU+0040\nU+0010\nU+007F\nU+0014\nU+0011\nU+0013\nU+0012\nU+0030\nU+0031\nU+0032\nU+0033\nU+0034\nU+0035\nU+0036\nU+0037\nU+0038\nU+0039\nU+0024\nU+0019\nU+0003\nU+0004\nU+0017\nU+0005\nU+003D\nU+001B\nAn iterator over the escaped version of a byte.\nU+0021\nU+000C\nU+002E\nU+0060\nU+003E\nU+002D\nU+001C\nU+001F\nU+001D\nU+001E\nU+007B\nU+0028\nU+005B\nU+003C\nU+000A\nU+000B\nU+005F\nU+0015\nU+0000 (The default variant)\nU+0023\nU+0025\nU+002B\nU+003F\nU+0022\nU+005C\nU+007D\nU+0029\nU+005D\nU+003B\nU+000F\nU+000E\nU+0061\nU+0062\nU+0063\nU+0064\nU+0065\nU+0066\nU+0067\nU+0068\nU+0069\nU+006A\nU+006B\nU+006C\nU+006D\nU+006E\nU+006F\nU+0070\nU+0071\nU+0072\nU+0073\nU+0074\nU+0075\nU+0076\nU+0077\nU+0078\nU+0079\nU+007A\nU+002F\nU+0020\nU+0001\nU+0002\nU+001A\nU+0016\nU+007E\nU+007C\nReturns an iterator that produces an escaped version of a …\nAsserts that an expression matches the provided pattern.\nAsserts that an expression matches the provided pattern.\nA trait for dealing with asynchronous iterators.\nAn async iterator that was created from iterator.\nThe type of the resulting iterator\nConverts something into an async iterator\nThe type of items yielded by the async iterator.\nThe type of the item yielded by the iterator\nConverts an iterator into an async iterator.\nConverts self into an async iterator\nAttempts to pull out the next value of this async …\nReturns the bounds on the remaining length of the async …\nA trait for borrowing data.\nA trait for mutably borrowing data.\nImmutably borrows from an owned value.\nMutably borrows from an owned value.\nAn error returned by RefCell::try_borrow.\nAn error returned by RefCell::try_borrow_mut.\nA mutable memory location.\nA value which is initialized on the first access.\nA cell which can nominally be written to only once.\nWraps a borrowed reference to a value in a RefCell box. A …\nA mutable memory location with dynamically checked borrow …\nA wrapper type for a mutably borrowed value from a …\nUnsafeCell, but Sync.\nThe core primitive for interior mutability in Rust.\nThe error type returned when a conversion from u32 to char …\nAn iterator that decodes UTF-16 encoded code points from …\nAn error that can be returned when decoding UTF-16 code …\nAn iterator that yields the literal escape code of a char.\nAn iterator that yields the literal escape code of a char.\nReturns an iterator that yields the hexadecimal Unicode …\nThe highest valid code point a char can have, '\\u{10FFFF}'…\nAn error which can be returned when parsing a char.\nU+FFFD REPLACEMENT CHARACTER (�) is used in Unicode to …\nReturns an iterator that yields the lowercase equivalent …\nReturns an iterator that yields the uppercase equivalent …\nThe error type returned when a checked char conversion …\nThe version of Unicode that the Unicode parts of char and …\nCreates an iterator over the UTF-16 encoded code points in …\nConverts a digit in the given radix to a char. Use …\nConverts a u32 to a char. Use char::from_u32 instead.\nConverts a u32 to a char, ignoring validity. Use …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nA generalization of Clone to dynamically-sized types …\nReturns a copy of the value.\nPerforms copy-assignment from source.\nPerforms copy-assignment from self to dst.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nAn ordering where a compared value is equal to another.\nAn ordering where a compared value is greater than another.\nAn ordering where a compared value is less than another.\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nAn Ordering is the result of a comparison between two …\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nA helper struct for reverse ordering.\nRestrict a value to a certain interval.\nThis method returns an Ordering between self and other.\nTests for self and other values to be equal, and is used …\nTests greater than or equal to (for self and other) and is …\nTests greater than (for self and other) and is used by the …\nTests less than or equal to (for self and other) and is …\nTests less than (for self and other) and is used by the < …\nCompares and returns the maximum of two values.\nCompares and returns the maximum of two values.\nReturns the maximum of two values with respect to the …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nCompares and returns the minimum of two values.\nReturns the minimum of two values with respect to the …\nReturns the element that gives the minimum value from the …\nCompares and sorts two values, returning minimum and …\nReturns minimum and maximum values with respect to the …\nReturns minimum and maximum values with respect to the …\nTests for !=. The default implementation is almost always …\nThis method returns an ordering between self and other …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nSupporting trait for inherent methods of f32 and f64 such …\nUsed to do value-to-value conversions while consuming the …\nThe error type for errors that can never happen.\nA value-to-value conversion that consumes the input value. …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nConverts to this type from the input type.\nThe identity function.\nConverts this type into the (usually inferred) input type.\nPerforms the conversion.\nPerforms the conversion.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nReturns the “default value” for a type.\nError is a trait representing the basic expectations for …\nRequest supports generic, type-driven access to data. Its …\nAn iterator over an Error and its sources.\nReturns the argument unchanged.\nCalls U::from(self).\nProvides type-based access to context intended for error …\nRequests a reference of type T from the given impl Error.\nRequests a value of type T from the given impl Error.\nReturns the lower-level source of this error, if any.\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f32. Use f32::EPSILON instead.\nInfinity (∞). Use f32::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f32 value. Use f32::MAX instead.\nMaximum possible power of 10 exponent. Use f32::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f32::MAX_EXP …\nSmallest finite f32 value. Use f32::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f32 value. Use f32::MIN_POSITIVE …\nNot a Number (NaN). Use f32::NAN instead.\nNegative infinity (−∞). Use f32::NEG_INFINITY instead.\nThe radix or base of the internal representation of f32. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f64. Use f64::EPSILON instead.\nInfinity (∞). Use f64::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f64 value. Use f64::MAX instead.\nMaximum possible power of 10 exponent. Use f64::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f64::MAX_EXP …\nSmallest finite f64 value. Use f64::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f64 value. Use f64::MIN_POSITIVE …\nNot a Number (NaN). Use f64::NAN instead.\nNegative infinity (−∞). Use f64::NEG_INFINITY instead.\nThe radix or base of the internal representation of f64. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nRepresentation of a borrowed C string.\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nA wrapper for a va_list\nx86_64 ABI implementation of a va_list.\nEquivalent to C’s char type.\nEquivalent to C’s double type.\nEquivalent to C’s float type.\nEquivalent to C’s signed int (int) type.\nEquivalent to C’s signed long (long) type.\nEquivalent to C’s signed long long (long long) type.\nEquivalent to C’s ptrdiff_t type, from stddef.h (or …\nEquivalent to C’s signed char type.\nEquivalent to C’s signed short (short) type.\nEquivalent to C’s size_t type, from stddef.h (or cstddef …\nEquivalent to C’s ssize_t (on POSIX) or SSIZE_T (on …\nCStr and its related types.\nEquivalent to C’s unsigned char type.\nEquivalent to C’s unsigned int type.\nEquivalent to C’s unsigned long type.\nEquivalent to C’s unsigned long long type.\nEquivalent to C’s unsigned short type.\nEquivalent to C’s void type when used as a pointer.\nC’s “variable arguments”\nAn iterator over the bytes of a CStr, without the nul …\nRepresentation of a borrowed C string.\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nReturns the argument unchanged.\nCalls U::from(self).\nA wrapper for a va_list\nx86_64 ABI implementation of a va_list.\nPossible alignments returned by Formatter::align\nThis structure represents a safely precompiled version of …\nb formatting.\nIndication that contents should be center-aligned.\n? formatting.\nDerive macro generating an impl of the trait Debug.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nFormat trait for an empty format, {}.\nContains the error value\nThe error type which is returned from formatting a message …\nConfiguration for formatting.\nImplements fmt::Debug and fmt::Display using a function.\nIndication that contents should be left-aligned.\ne formatting.\nx formatting.\no formatting.\nContains the success value\np formatting.\nThe type returned by formatter methods.\nIndication that contents should be right-aligned.\nE formatting.\nX formatting.\nA trait for writing or formatting into Unicode-accepting …\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nCreates a type whose fmt::Debug and fmt::Display impls are …\nTakes an output stream and an Arguments struct that can be …\nWrites a char into this writer, returning whether the …\nGlue for usage of the write! macro with implementors of …\nWrites a string slice into this writer, returning whether …\nCustom code within the asynchronous destructor.\nA future returned by the async_drop_in_place.\nA future returned by the AsyncDrop::async_drop to be part …\nA future represents an asynchronous computation obtained …\nConversion into a Future.\nWhich kind of future are we turning this into?\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nCreates a future which never resolves, representing a …\nA Future that wraps a function returning Poll.\nA future that is immediately ready with a value.\nAsynchronously drops a value by running …\nConstructs the asynchronous destructor for this type.\nCreates the asynchronous destructor of the pointed-to …\nCreates a future from a value.\nPolls multiple futures simultaneously, returning a tuple …\nCreates a future which never resolves, representing a …\nAttempts to resolve the future to a final value, …\nCreates a future that wraps a function returning Poll.\nCreates a future that is immediately ready with a value.\nA trait for creating instances of Hasher.\nUsed to create a default BuildHasher instance for types …\nA hashable type.\nDerive macro generating an impl of the trait Hash.\nA trait for hashing an arbitrary stream of bytes.\nType of the hasher that will be created.\nAn implementation of SipHash 2-4.\nCreates a new hasher.\nReturns the hash value for the values written so far.\nFeeds this value into the given Hasher.\nCalculates the hash of a single value.\nFeeds a slice of this type into the given Hasher.\nWrites some data into this Hasher.\nWrites a single i128 into this hasher.\nWrites a single i16 into this hasher.\nWrites a single i32 into this hasher.\nWrites a single i64 into this hasher.\nWrites a single i8 into this hasher.\nWrites a single isize into this hasher.\nWrites a length prefix into this hasher, as part of being …\nWrites a single str into this hasher.\nWrites a single u128 into this hasher.\nWrites a single u16 into this hasher.\nWrites a single u32 into this hasher.\nWrites a single u64 into this hasher.\nWrites a single u8 into this hasher.\nWrites a single usize into this hasher.\nMakes a soundness promise to the compiler that cond holds.\nAn identity function that hints to the compiler to be …\nAn identity function that causes an unused_must_use …\nEmits a machine instruction to signal the processor that …\nInforms the compiler that the site which is calling this …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAborts the execution of the process.\nPerforms checked integer addition.\nLowers in MIR to Rvalue::Aggregate with …\nCalculates the offset from a pointer, potentially wrapping.\nA guard for unsafe functions that cannot ever be executed …\nA guard for std::mem::uninitialized. This will statically …\nA guard for unsafe functions that cannot ever be executed …\nInforms the optimizer that a condition is always true. If …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMaximum with the current value.\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nReverses the bits in an integer type T.\nSee documentation of std::hint::black_box for details.\nExecutes a breakpoint trap, for inspection by a debugger.\nReverses the bytes in an integer type T.\nGets a reference to a static Location indicating where it …\nRust’s “try catch” construct for unwinding. Invokes …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nLexicographically compare [left, left + bytes) and …\nAllocates a block of memory at compile time. At runtime, …\nDeallocates a memory which allocated by …\nSelects which function to call depending on the context.\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies the sign from y to x for f128 values.\nCopies the sign from y to x for f16 values.\nCopies the sign from y to x for f32 values.\nCopies the sign from y to x for f64 values.\nReturns the cosine of an f128.\nReturns the cosine of an f16.\nReturns the cosine of an f32.\nReturns the cosine of an f64.\nReturns the number of leading unset bits (zeroes) in an …\nLike ctlz, but extra-unsafe as it returns undef when given …\nReturns the number of bits set in an integer type T\nReturns the number of trailing unset bits (zeroes) in an …\nLike cttz, but extra-unsafe as it returns undef when given …\nReturns the value of the discriminant for the variant in …\nPerforms an exact division, resulting in undefined …\nReturns 2 raised to the power of an f128.\nReturns 2 raised to the power of an f16.\nReturns 2 raised to the power of an f32.\nReturns 2 raised to the power of an f64.\nReturns the exponential of an f128.\nReturns the exponential of an f16.\nReturns the exponential of an f32.\nReturns the exponential of an f64.\nReturns the absolute value of an f128.\nReturns the absolute value of an f16.\nReturns the absolute value of an f32.\nReturns the absolute value of an f64.\nFloat addition that allows optimizations based on …\nFloat addition that allows optimizations based on …\nFloat division that allows optimizations based on …\nFloat division that allows optimizations based on …\nConverts with LLVM’s fptoui/fptosi, which may return …\nReturns the largest integer less than or equal to an f128.\nReturns the largest integer less than or equal to an f16.\nReturns the largest integer less than or equal to an f32.\nReturns the largest integer less than or equal to an f64.\nReturns a * b + c for f128 values.\nReturns a * b + c for f16 values.\nReturns a * b + c for f32 values.\nReturns a * b + c for f64 values.\nFloat multiplication that allows optimizations based on …\nFloat multiplication that allows optimizations based on …\nMoves a value out of scope without running drop glue.\nFloat remainder that allows optimizations based on …\nFloat remainder that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nReturns whether the argument’s value is statically known …\nHints to the compiler that branch condition is likely to …\nReturns the base 10 logarithm of an f128.\nReturns the base 10 logarithm of an f16.\nReturns the base 10 logarithm of an f32.\nReturns the base 10 logarithm of an f64.\nReturns the base 2 logarithm of an f128.\nReturns the base 2 logarithm of an f16.\nReturns the base 2 logarithm of an f32.\nReturns the base 2 logarithm of an f64.\nReturns the natural logarithm of an f128.\nReturns the natural logarithm of an f16.\nReturns the natural logarithm of an f32.\nReturns the natural logarithm of an f64.\nReturns the maximum of two f128 values.\nReturns the maximum of two f16 values.\nReturns the maximum of two f32 values.\nReturns the maximum of two f64 values.\nThe minimum alignment of a type.\nThe required alignment of the referenced value.\nReturns the minimum of two f128 values.\nReturns the minimum of two f16 values.\nReturns the minimum of two f32 values.\nReturns the minimum of two f64 values.\nRustc internal tooling for hand-writing MIR.\nPerforms checked integer multiplication\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nReturns true if the actual type given as T requires drop …\nEmits a nontemporal store, which gives a hint to the CPU …\nCalculates the offset from a pointer.\nRaises an f128 to an f128 power.\nRaises an f16 to an f16 power.\nRaises an f32 to an f32 power.\nRaises an f64 to an f64 power.\nRaises an f128 to an integer power.\nRaises an f16 to an integer power.\nRaises an f32 to an integer power.\nRaises an f64 to an integer power.\nThe preferred alignment of a type.\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nSee documentation of <*const T>::guaranteed_eq for details.\nMasks out bits of the pointer according to a mask.\nLowers in MIR to Rvalue::UnaryOp with UnOp::PtrMetadata.\nSee documentation of <*const T>::offset_from for details.\nSee documentation of <*const T>::sub_ptr for details.\nDetermines whether the raw bytes of the two values are …\nThis is an implementation detail of crate::ptr::read and …\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nPerforms rotate left.\nPerforms rotate right.\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nMagic intrinsic that derives its meaning from attributes …\nComputes a + b, saturating at numeric bounds.\nComputes a - b, saturating at numeric bounds.\nReturns either true_val or false_val depending on …\nSIMD compiler intrinsics.\nReturns the sine of an f128.\nReturns the sine of an f16.\nReturns the sine of an f32.\nReturns the sine of an f64.\nThe size of a type in bytes.\nThe size of the referenced value in bytes.\nReturns the square root of an f128\nReturns the square root of an f16\nReturns the square root of an f32\nReturns the square root of an f64\nPerforms checked integer subtraction\nDoes a three-way comparison between the two integer …\nReinterprets the bits of a value of one type as another …\nLike transmute, but even less checked at compile-time: …\nReturns the integer part of an f128.\nReturns the integer part of an f16.\nReturns the integer part of an f32.\nReturns the integer part of an f64.\nGets an identifier which is globally unique to the …\nGets a static string slice containing the name of a type.\nNon-overlapping typed swap of a single value.\nReturns whether we should perform some UB-checking at …\nPerforms a volatile load from the src pointer The pointer …\nPerforms a volatile store to the dst pointer. The pointer …\nReturns the result of an unchecked addition, resulting in …\nPerforms an unchecked division, resulting in undefined …\nReturns the result of an unchecked multiplication, …\nReturns the remainder of an unchecked division, resulting …\nPerforms an unchecked left shift, resulting in undefined …\nPerforms an unchecked right shift, resulting in undefined …\nReturns the result of an unchecked subtraction, resulting …\nHints to the compiler that branch condition is likely to …\nInforms the optimizer that this point in the code is not …\nReturns the number of variants of the type T cast to a …\nEquivalent to the appropriate llvm.memmove.p0i8.0i8.* …\nEquivalent to the appropriate llvm.memcpy.p0i8.0i8.* …\nPerforms a volatile load from the src pointer.\nEquivalent to the appropriate llvm.memset.p0i8.* …\nPerforms a volatile store to the dst pointer.\nThe intrinsic will return the alignment stored in that …\nThe intrinsic will return the size stored in that vtable.\nReturns (a + b) mod 2N, where N is the width of T in bits.\nReturns (a * b) mod 2N, where N is the width of T in bits.\nReturns (a - b) mod 2N, where N is the width of T in bits.\nSets count * size_of::<T>() bytes of memory starting at dst…\nThis is an implementation detail of crate::ptr::write and …\nUnwinding is just not possible given the ABI of this …\nType representing basic blocks.\nCall a function.\nEmits a CastKind::PtrToPtr cast.\nEmits a CastKind::Transmute cast.\nA basic block that lies on an unwind path.\nGets the discriminant of a place.\nDrop the contents of a place.\nAccess the field with the given index of some place.\nWe were already cleaning up for an ongoing unwind, and a …\nA non-cleanup basic block.\nCall a function.\nAn unwind action that continues execution in a given basic …\nAn unwind action that continues unwinding.\nA terminator that resumes the unwinding.\nAn unwind action that terminates the execution.\nThe reason we are terminating the process during unwinding.\nAn unwind action that triggers undefined behaviour.\nAdds a variant projection with the given index to the …\nMacro for generating custom MIR.\nHelper macro that allows you to treat a value expression …\nAdds two simd vectors elementwise.\n“Ands” vectors elementwise.\nCalculates the offset from a pointer vector elementwise, …\nNumerically casts a vector, elementwise.\nTruncates an integer vector to a bitmask.\nReverses bits of each element.\nSwaps bytes of each element.\nNumerically casts a vector, elementwise.\nCasts a vector of pointers.\nRounds up each element to the next highest integer-valued …\nCounts the leading zeros of each element.\nCounts the number of ones in each element.\nCounts the trailing zeros of each element.\nDivides lhs by rhs elementwise.\nTests elementwise equality of two vectors.\nExposes a vector of pointers as a vector of addresses.\nExtracts an element from a vector.\nReturns absolute value of a vector, elementwise.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nRounds down each element to the next lowest integer-valued …\nComputes (x*y) + z for each element, but without any …\nReturns the maximum of two vectors, elementwise.\nReturns the minimum of two vectors, elementwise.\nT must be a vector of floats.\nTakes the square root of each element.\nReads a vector of pointers.\nTests if x is greater than or equal to y, elementwise.\nTests if x is greater than y, elementwise.\nInserts an element into a vector, returning the updated …\nTests if x is less than or equal to y, elementwise.\nTests if x is less than y, elementwise.\nReads a vector of pointers.\nWrites to a vector of pointers.\nMultiplies two simd vectors elementwise.\nTests elementwise inequality equality of two vectors.\nNegates a vector elementwise.\n“Ors” vectors elementwise.\nAdds elements within a vector from left to right.\nAdds elements within a vector in arbitrary order. May also …\nChecks if all mask values are true.\nLogical “ands” all elements together.\nChecks if any mask value is true.\nReturns the maximum element of a vector.\nReturns the minimum element of a vector.\nMultiplies elements within a vector from left to right.\nMultiplies elements within a vector in arbitrary order. …\nLogical “ors” all elements together.\nLogical “exclusive ors” all elements together.\nReturns remainder of two vectors elementwise.\nRounds each element to the closest integer-valued float. …\nAdds two simd vectors elementwise, with saturation.\nSubtracts two simd vectors elementwise, with saturation.\nWrites to a vector of pointers.\nSelects elements from a mask.\nSelects elements from a bitmask.\nShifts vector left elementwise, with UB on overflow.\nShifts vector right elementwise, with UB on overflow.\nShuffles two vectors by const indices.\nSubtracts rhs from lhs elementwise.\nReturns the integer part of each element as an …\nCreates a vector of pointers from a vector of addresses.\n“Exclusive ors” vectors elementwise.\nA borrowed byte buffer which is incrementally filled and …\nA writeable view of the unfilled portion of a BorrowedBuf.\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAn iterator over N elements of the iterator at a time.\nLike Iterator::by_ref, but requiring Sized so it can …\nAn iterator that links two iterators together, in a chain.\nAn iterator that clones the elements of an underlying …\nAn iterator that copies the elements of an underlying …\nAn iterator that repeats endlessly.\nAn iterator able to yield elements from both ends.\nAn iterator that yields nothing.\nAn iterator that yields the current count and the element …\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nAn iterator that filters the elements of iter with …\nAn iterator that uses f to both filter and map elements …\nAn iterator that maps each element to an iterator, and …\nAn iterator that flattens one level of nesting in an …\nAn iterator where each iteration calls the provided …\nConversion from an Iterator.\nAn iterator that yields None forever after the underlying …\nAn iterator that always continues to yield None when …\nAn iterator that calls a function with a reference to each …\nAn iterator adapter that places a separator between all …\nAn iterator adapter that places a separator between all …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nAn iterator that maps the values of iter with f.\nAn iterator that only accepts elements while predicate …\nAn iterator over the mapped windows of another iterator.\nAn iterator that yields an element exactly once.\nAn iterator that yields a single element of type A by …\nAn iterator with a peek() that returns an optional …\nTrait to represent types that can be created by …\nAn iterator that repeats an element endlessly.\nAn iterator that repeats an element an exact number of …\nAn iterator that repeats elements of type A endlessly by …\nA double-ended iterator with the direction inverted.\nAn iterator to maintain state while iterating another …\nAn iterator that skips over n elements of iter.\nAn iterator that rejects elements while predicate returns …\nObjects that have a notion of successor and predecessor …\nAn iterator for stepping iterators by a custom amount.\nA new iterator where each successive item is computed …\nTrait to represent types that can be created by summing up …\nAn iterator that only iterates over the first n iterations …\nAn iterator that only accepts elements while predicate …\nAn iterator that reports an accurate length using …\nA type that upholds all invariants of Step.\nAn iterator that iterates two other iterators …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nTests if every element of the iterator matches a predicate.\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nBorrows an iterator, rather than consuming it.\nConverts the arguments to iterators and links them …\nTakes two iterators and creates a new iterator over both …\nCreates an iterator which clones all of its elements.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nCreates an iterator that yields nothing.\nCreates an iterator which gives the current iteration …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nCreates a new iterator where each iteration calls the …\nCreates a new iterator where each iteration calls the …\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nDetermines if the elements of this Iterator are …\nDetermines if the elements of this Iterator are …\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nCreates an iterator that yields an element exactly once.\nCreates an iterator that lazily generates a value exactly …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nTakes an iterator and generates Self from the elements by …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nCreates a new iterator that endlessly repeats a single …\nCreates a new iterator that repeats a single element a …\nCreates a new iterator that repeats elements of type A …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nReturns the number of successor steps required to get from …\nCreates a new iterator where each successive item is …\nTakes an iterator and generates Self from the elements by …\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nConverts an iterator of pairs into a pair of containers.\nConverts the arguments to iterators and zips them.\n‘Zips up’ two iterators into a single iterator of …\nDerive macro generating an impl of the trait ConstParamTy.\nA marker for types which can be used as types of const …\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nA marker for types that can be dropped.\nThe type of the discriminant, which must satisfy the trait …\nCompiler-internal trait used to indicate the type of enum …\nA common trait implemented by all function pointers.\nUsed to determine whether a type contains any UnsafeCell …\nZero-sized type used to mark things that “act like” …\nA marker type which does not implement Unpin.\nA marker for pointer-like types.\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nDerive macro generating impls of traits related to smart …\nRequired trait for constants used in pattern matches.\nTypes for which it is safe to share references between …\nA marker for tuple types.\nTypes that do not require any pinning guarantees.\nTypes that can be “unsized” to a dynamically-sized …\nA marker for types which can be used as types of const …\nDerive macro generating an impl of the trait ConstParamTy.\nReturns the address of the function pointer.\nConfigurable proof assumptions of TransmuteFrom.\nOpaque type representing the discriminant of an enum.\nA wrapper to inhibit the compiler from automatically …\nA wrapper type to construct uninitialized instances of T.\nMarks that Src is transmutable into Self.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns the ABI-required minimum alignment of the type of …\nWhen false, TransmuteFrom is not implemented for …\nBitwise-copies a value.\nReturns a value uniquely identifying the enum variant in v.\nDisposes of a value.\nTakes ownership and “forgets” about the value without …\nLike forget, but also accepts unsized values.\nWhen false, TransmuteFrom is not implemented for …\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns true if dropping values of type T matters.\nExpands to the offset in bytes of a field from the …\nMoves src into the referenced dest, returning the previous …\nWhen false, TransmuteFrom is not implemented for …\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nReturns the size of the pointed-to value in bytes.\nSwaps the values at two mutable locations, without …\nReplaces dest with the default value of T, returning the …\nReinterprets the bits of a value of one type as another …\nTransmutes a Src value into a Self.\nInterprets src as having type &Dst, and then reads src …\nBypasses Rust’s normal memory-initialization checks by …\nWhen false, TransmuteFrom is not implemented for …\nReturns the number of variants in the enum type T.\nReturns the value of type T represented by the all-zero …\nAn error which can be returned when parsing an IP address …\nAdmin-Local scope.\nGlobal scope.\nInterface-Local scope.\nAn IP address, either IPv4 or IPv6.\nAn IPv4 address.\nAn IPv6 address.\nScope of an IPv6 multicast address as defined in IETF RFC …\nLink-Local scope.\nOrganization-Local scope.\nRealm-Local scope.\nSite-Local scope.\nAn internet socket address, either IPv4 or IPv6.\nAn IPv4 socket address.\nAn IPv6 socket address.\nAn IPv4 address.\nAn IPv4 socket address.\nAn IPv6 address.\nAn IPv6 socket address.\nValue being parsed is empty.\nA classification of floating point numbers.\nPositive or negative infinity, which often results from …\nEnum to store the various types of errors that can cause …\nContains an invalid digit in its context.\nNaN (not a number): this value results from calculations …\nInteger is too small to store in target integer type.\nA value that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nA regular floating point number, not any of the …\nAn error which can be returned when parsing a float.\nAn error which can be returned when parsing an integer.\nInteger is too large to store in target integer type.\nProvides intentionally-saturating arithmetic on T.\n“Subnormal” or “denormal” floating point …\nThe error type returned when a checked integral type …\nProvides intentionally-wrapped arithmetic on T.\nValue was Zero\nPositive or negative zero.\nA marker trait for primitive types which can be zero.\nThe addition operator +.\nThe addition assignment operator +=.\nAn async-aware version of the Fn trait.\nAn async-aware version of the FnMut trait.\nAn async-aware version of the FnOnce trait.\nThe bitwise AND operator &.\nThe bitwise AND assignment operator &=.\nThe bitwise OR operator |.\nThe bitwise OR assignment operator |=.\nThe bitwise XOR operator ^.\nThe bitwise XOR assignment operator ^=.\nAn endpoint of a range of keys.\nExit the operation without running subsequent phases.\nFuture returned by AsyncFnOnce::async_call_once.\nFuture returned by AsyncFnMut::async_call_mut and …\nTrait that indicates that this is a pointer or a wrapper …\nThe coroutine completed with a return value.\nMove on to the next phase of the operation as normal.\nUsed to tell an operation whether it should exit early or …\nThe trait implemented by builtin coroutine types.\nThe result of a coroutine resumption.\nUsed for immutable dereferencing operations, like *v.\nUsed for mutable dereferencing operations, like in *v = 1;.\nPerma-unstable marker trait. Indicates that the type has a …\nDispatchFromDyn is used in the implementation of object …\nThe division operator /.\nThe division assignment operator /=.\nCustom code within the destructor.\nAn exclusive bound.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to specify which residuals can be converted into …\nAn inclusive bound.\nUsed for indexing operations (container[index]) in …\nUsed for indexing operations (container[index]) in mutable …\nThe multiplication operator *.\nThe multiplication assignment operator *=.\nThe unary negation operator -.\nThe unary logical negation operator !.\nOneSidedRange is implemented for built-in range types that …\nThe resulting type after applying the + operator.\nThe resulting type after applying the - operator.\nThe resulting type after applying the - operator.\nOutput type of the called closure’s future.\nThe resulting type after applying the ! operator.\nThe returned type after the call operator is used.\nThe type of the value produced by ? when not …\nThe resulting type after applying the * operator.\nThe resulting type after applying the / operator.\nThe resulting type after applying the % operator.\nThe resulting type after applying the & operator.\nThe resulting type after applying the | operator.\nThe resulting type after applying the ^ operator.\nThe resulting type after applying the << operator.\nThe resulting type after applying the >> operator.\nThe returned type after indexing.\nA (half-open) range bounded inclusively below and …\nRangeBounds is implemented by Rust’s built-in range …\nA range only bounded inclusively below (start..).\nAn unbounded range (..).\nA range bounded inclusively below and above (start..=end).\nA range only bounded exclusively above (..end).\nA range only bounded inclusively above (..=end).\nThe remainder operator %.\nThe remainder assignment operator %=.\nAllows retrieving the canonical type implementing Try that …\nThe type of the value passed to FromResidual::from_residual\nThe type of value this coroutine returns.\nThe left shift operator <<. Note that because this trait …\nThe left shift assignment operator <<=.\nThe right shift operator >>. Note that because this trait …\nThe right shift assignment operator >>=.\nThe subtraction operator -.\nThe subtraction assignment operator -=.\nThe resulting type after dereferencing.\nThe ? operator and try {} blocks.\nThe “return” type of this meta-function.\nAn infinite endpoint. Indicates that there is no bound in …\nImplement FromResidual<Yeet<T>> on your type to enable …\nThe type of value this coroutine yields.\nThe coroutine suspended with a value.\nPerforms the + operation.\nPerforms the += operation.\nCall the AsyncFn, returning a future which may borrow from …\nCall the AsyncFnMut, returning a future which may borrow …\nCall the AsyncFnOnce, returning a future which may move …\nPerforms the & operation.\nPerforms the &= operation.\nPerforms the | operation.\nPerforms the |= operation.\nPerforms the ^ operation.\nPerforms the ^= operation.\nUsed in ? to decide whether the operator should produce a …\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nReturns true if item is contained in the range.\nDereferences the value.\nMutably dereferences the value.\nPerforms the / operation.\nPerforms the /= operation.\nExecutes the destructor for this type.\nThe upper bound of the range (exclusive).\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive)\nEnd index bound.\nConstructs the type from its Output type.\nConstructs the type from a compatible Residual type.\nPerforms the indexing (container[index]) operation.\nPerforms the mutable indexing (container[index]) operation.\nPerforms the * operation.\nPerforms the *= operation.\nPerforms the unary - operation.\nPerforms the unary ! operation.\nPerforms the % operation.\nPerforms the %= operation.\nResumes the execution of this coroutine.\nPerforms the << operation.\nPerforms the <<= operation.\nPerforms the >> operation.\nPerforms the >>= operation.\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nStart index bound.\nPerforms the - operation.\nPerforms the -= operation.\nAn iterator over the value in Some variant of an Option.\nAn iterator over a reference to the Some variant of an …\nAn iterator over a mutable reference to the Some variant …\nNo value.\nThe Option type. See the module level documentation for …\nSome value of type T.\nA simple wrapper around a type to assert that it is unwind …\nA struct containing information about the location of a …\nA struct providing information about a panic.\nA message that was given to the panic!() macro.\nA marker trait representing types where a shared reference …\nA marker trait which represents “panic safe” types in …\nGets the formatted message, if it has no arguments to be …\nReturns whether the panic handler is allowed to unwind the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nReturns information about the location from which the …\nThe message that was given to the panic! macro.\nReturns the payload associated with the panic.\nThis function is used instead of panic_fmt in const eval.\nThe underlying implementation of core’s panic! macro …\nThe entry point for panicking with a formatted message.\nLike panic, but without unwinding and track_caller to …\nLike panic_fmt, but for non-unwinding panics.\nLike panic_nounwind, but also inhibits showing a backtrace.\nThis exists solely for the 2015 edition panic! macro to …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nA pointer which pins its pointee in place.\nTrait that indicates that this is a pointer or a wrapper …\nConstructs a Pin<&mut T>, by pinning a value: T locally.\nThe 2015 version of the core prelude.\nThe 2018 version of the core prelude.\nThe 2021 version of the core prelude.\nThe 2024 version of the core prelude.\nThe first version of the prelude of The Rust Standard …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nA future represents an asynchronous computation obtained …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nConversion into a Future.\nWhich kind of future are we turning this into?\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates a future from a value.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nAttempts to resolve the future to a final value, …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 3, "Compute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the maximum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nPerforms a serializing operation on all load-from-memory …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the minimum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nFinds the minimum unsigned 16-bit element in the 128-bit __…\nLoads 4 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nLoads 2 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 2 single-precision (32-bit) floating-point elements …\nReturns a vector where the low element is extracted from a …\nConstructs a 128-bit floating-point vector of [2 x double]…\nMove the lower half-precision (16-bit) floating-point …\nReturns a __m128 with the first component from b and the …\nDuplicate the low double-precision (64-bit) floating-point …\nDuplicate odd-indexed single-precision (32-bit) …\nCombine higher half of a and b. The higher half of b …\nDuplicate even-indexed single-precision (32-bit) …\nCombine lower half of a and b. The lower half of b …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nSubtracts 8-bit unsigned integer values and computes the …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies __m128 vectors.\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nReturns a new vector with the low element of a replaced by …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the first component of a and b, the other …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed unsigned 16-bit integers in a and b.\nMultiplies packed 16-bit signed integer values, truncate …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed 32-bit integers in a and b, …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR of a and b.\nBitwise OR of packed single-precision (32-bit) …\nComputes the bitwise OR of 128 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nProvides a hint to the processor that the code sequence is …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle half-precision (16-bit) floating-point elements in …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nFetch the cache line that contains address p using the …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nReturns the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nReturns the approximate reciprocal of the first …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nReturns the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nReturns the approximate reciprocal square root of the …\nSum the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements.\nBroadcasts 32-bit integer a to all elements.\nBroadcasts 64-bit integer a to all elements.\nBroadcasts 8-bit integer a to all elements.\nBroadcasts double-precision (64-bit) floating-point value …\nBroadcast the half-precision (16-bit) floating-point value …\nConstruct a __m128 with all element set to a.\nSets packed 16-bit integers with the supplied values.\nSets packed 32-bit integers with the supplied values.\nSets packed 64-bit integers with the supplied values, from …\nSets packed 8-bit integers with the supplied values.\nSets packed double-precision (64-bit) floating-point …\nBroadcasts double-precision (64-bit) floating-point value …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values highest …\nAlias for _mm_set1_ps\nCopies double-precision (64-bit) floating-point element a …\nCopy half-precision (16-bit) floating-point elements from …\nConstruct a __m128 with the lowest element set to a and …\nSets the MXCSR register with the 32-bit unsigned integer …\nSets packed 16-bit integers with the supplied values in …\nSets packed 32-bit integers with the supplied values in …\nSets packed 8-bit integers with the supplied values in …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values lowest …\nReturns packed double-precision (64-bit) floating-point …\nReturn vector of type __m128h with all elements set to …\nConstruct a __m128 with all elements initialized to zero.\nReturns a vector with all elements set to zero.\nPerforms a serializing operation on all non-temporal (“…\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA1 …\nCalculate SHA1 state variable E after four rounds of …\nPerforms four rounds of SHA1 operation using an initial …\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA256 …\nPerforms 2 rounds of SHA256 operation using an initial …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in a using the control in IMM8.\nShuffles bytes from a according to the content of b.\nConstructs a 128-bit floating-point vector of [2 x double] …\nShuffles packed single-precision (32-bit) floating-point …\nShuffles 16-bit integers in the high 64 bits of a using …\nShuffles 16-bit integers in the low 64 bits of a using the …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts a left by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns a new vector with the square root of each of the …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nReturns a new vector with the low element of a replaced by …\nCompute the square root of the lower half-precision …\nReturns the square root of the first single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts a right by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStores the lower double-precision (64-bit) floating-point …\nStores the lowest 32 bit float of a repeated four times …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStores the lower double-precision (64-bit) floating-point …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into aligned memory.\nAlias for _mm_store1_ps\nStores the lower 64 bits of a 128-bit vector of …\nStore the lower half-precision (16-bit) floating-point …\nStores 128-bits of integer data from a into memory.\nStores the lowest 32 bit float of a into memory.\nStores the upper 64 bits of a 128-bit vector of …\nStores the lower 64-bit integer a to a memory location.\nStores the lower 64 bits of a 128-bit vector of …\nStores 2 double-precision (64-bit) floating-point elements …\nStores four 32-bit floats into aligned memory in reverse …\nStore 128-bits (composed of 8 packed 16-bit integers) from …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStore 128-bits (composed of 16 packed 8-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into memory. There are no …\nStores 128-bits of integer data from a into memory.\nStore 16-bit integer from the first element of a into …\nStore 32-bit integer from the first element of a into …\nStore 64-bit integer from the first element of a into …\nLoad 128-bits of integer data from memory into dst. …\nStores a 128-bit floating point vector of [2 x double] to …\nStores a into the memory at mem_addr using a non-temporal …\nNon-temporal store of a.0 into p.\nStores a 128-bit integer vector to a 128-bit aligned …\nStores a 32-bit integer value in the specified memory …\nStores a 64-bit integer value in the specified memory …\nNon-temporal store of a.0 into p.\nSubtracts packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtracts packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts __m128 vectors.\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nReturns a new vector with the low element of a replaced by …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtracts the first component of b from a, the other …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nTests whether the specified bits in a 128-bit integer …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nReturns vector of type __m128d with indeterminate elements.\nReturn vector of type __m128h with undefined elements. In …\nReturns vector of type __m128 with indeterminate elements. …\nReturns vector of type __m128i with indeterminate elements.\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nThe resulting __m128d element is composed by the low-order …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nThe resulting __m128d element is composed by the …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of a and b.\nBitwise exclusive OR of packed single-precision (32-bit) …\nComputes the bitwise XOR of 128 bits (representing integer …\nUnsigned multiply without affecting flags.\nUnsigned multiply without affecting flags.\nScatter contiguous low order bits of a to the result at …\nScatter contiguous low order bits of a to the result at …\nGathers the bits of x specified by the mask into the …\nGathers the bits of x specified by the mask into the …\nCounts the bits that are set.\nCounts the bits that are set.\nRead a hardware generated 16-bit random value and store …\nRead a hardware generated 32-bit random value and store …\nRead a hardware generated 64-bit random value and store …\nRead a 16-bit NIST SP800-90B and SP800-90C compliant …\nRead a 32-bit NIST SP800-90B and SP800-90C compliant …\nRead a 64-bit NIST SP800-90B and SP800-90C compliant …\nReads the current value of the processor’s time-stamp …\nStore 16-bit mask to memory\nStore 32-bit mask from a into memory.\nStore 64-bit mask from a into memory.\nStore 8-bit mask to memory\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nClears all bits below the least significant zero of x and …\nClears all bits below the least significant zero of x and …\nPerform matrix multiplication of two tiles containing …\nPerform matrix multiplication of two tiles containing …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of FP16 (16-bit) floating-point pairs …\nLoad tile configuration from a 64-byte memory location …\nLoad tile rows from memory specifieid by base address and …\nRelease the tile configuration to return to the init …\nStores the current tile configuration to a 64-byte memory …\nStore the tile specified by src to memory specifieid by …\nLoad tile rows from memory specifieid by base address and …\nZero the tile specified by tdest.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nSets all bits below the least significant one of x and …\nSets all bits below the least significant one of x and …\nForces a restricted transactional memory (RTM) region to …\nRetrieves the parameter passed to _xabort when _xbegin’s …\nSpecifies the start of a restricted transactional memory …\nSpecifies the end of a restricted transactional memory …\nReads the contents of the extended control register XCR …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nCopies 64-bits from val to the extended control register (…\nQueries whether the processor is executing in a …\nThe BFloat16 type used in AVX-512 intrinsics.\nCompares and exchange 16 bytes (128 bits) of data …\nEAX register.\nEBX register.\nECX register.\nEDX register.\nA by-value array iterator.\nThe error type returned when a conversion from a slice to …\nCreates an array of type [T; N], where each element T is …\nConverts a mutable reference to T into a mutable reference …\nConverts a reference to T into a reference to an array of …\nCreates an array of type [T; N] by repeatedly cloning a …\nCreates an array [T; N] where each fallible array element T…\nU+0006\nU+0026\nU+0027\nU+002A\nU+0008\nU+0007\nU+0018\nU+0041\nU+0042\nU+0043\nU+0044\nU+0045\nU+0046\nU+0047\nU+0048\nU+0049\nU+004A\nU+004B\nU+004C\nU+004D\nU+004E\nU+004F\nU+0050\nU+0051\nU+0052\nU+0053\nU+0054\nU+0055\nU+0056\nU+0057\nU+0058\nU+0059\nU+005A\nU+000D\nOne of the 128 Unicode characters from U+0000 through …\nU+0009\nU+005E\nU+003A\nU+002C\nU+0040\nU+0010\nU+007F\nU+0014\nU+0011\nU+0013\nU+0012\nU+0030\nU+0031\nU+0032\nU+0033\nU+0034\nU+0035\nU+0036\nU+0037\nU+0038\nU+0039\nU+0024\nU+0019\nU+0003\nU+0004\nU+0017\nU+0005\nU+003D\nU+001B\nAn iterator over the escaped version of a byte.\nU+0021\nU+000C\nU+002E\nU+0060\nU+003E\nU+002D\nU+001C\nU+001F\nU+001D\nU+001E\nU+007B\nU+0028\nU+005B\nU+003C\nU+000A\nU+000B\nU+005F\nU+0015\nU+0000 (The default variant)\nU+0023\nU+0025\nU+002B\nU+003F\nU+0022\nU+005C\nU+007D\nU+0029\nU+005D\nU+003B\nU+000F\nU+000E\nU+0061\nU+0062\nU+0063\nU+0064\nU+0065\nU+0066\nU+0067\nU+0068\nU+0069\nU+006A\nU+006B\nU+006C\nU+006D\nU+006E\nU+006F\nU+0070\nU+0071\nU+0072\nU+0073\nU+0074\nU+0075\nU+0076\nU+0077\nU+0078\nU+0079\nU+007A\nU+002F\nU+0020\nU+0001\nU+0002\nU+001A\nU+0016\nU+007E\nU+007C\nReturns an iterator that produces an escaped version of a …\nAsserts that an expression matches the provided pattern.\nAsserts that an expression matches the provided pattern.\nA trait for dealing with asynchronous iterators.\nAn async iterator that was created from iterator.\nThe type of the resulting iterator\nConverts something into an async iterator\nThe type of items yielded by the async iterator.\nThe type of the item yielded by the iterator\nConverts an iterator into an async iterator.\nConverts self into an async iterator\nAttempts to pull out the next value of this async …\nReturns the bounds on the remaining length of the async …\nA trait for borrowing data.\nA trait for mutably borrowing data.\nImmutably borrows from an owned value.\nMutably borrows from an owned value.\nAn error returned by RefCell::try_borrow.\nAn error returned by RefCell::try_borrow_mut.\nA mutable memory location.\nA value which is initialized on the first access.\nA cell which can nominally be written to only once.\nWraps a borrowed reference to a value in a RefCell box. A …\nA mutable memory location with dynamically checked borrow …\nA wrapper type for a mutably borrowed value from a …\nUnsafeCell, but Sync.\nThe core primitive for interior mutability in Rust.\nThe error type returned when a conversion from u32 to char …\nAn iterator that decodes UTF-16 encoded code points from …\nAn error that can be returned when decoding UTF-16 code …\nAn iterator that yields the literal escape code of a char.\nAn iterator that yields the literal escape code of a char.\nReturns an iterator that yields the hexadecimal Unicode …\nThe highest valid code point a char can have, '\\u{10FFFF}'…\nAn error which can be returned when parsing a char.\nU+FFFD REPLACEMENT CHARACTER (�) is used in Unicode to …\nReturns an iterator that yields the lowercase equivalent …\nReturns an iterator that yields the uppercase equivalent …\nThe error type returned when a checked char conversion …\nThe version of Unicode that the Unicode parts of char and …\nCreates an iterator over the UTF-16 encoded code points in …\nConverts a digit in the given radix to a char. Use …\nConverts a u32 to a char. Use char::from_u32 instead.\nConverts a u32 to a char, ignoring validity. Use …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nA generalization of Clone to dynamically-sized types …\nReturns a copy of the value.\nPerforms copy-assignment from source.\nPerforms copy-assignment from self to dst.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nAn ordering where a compared value is equal to another.\nAn ordering where a compared value is greater than another.\nAn ordering where a compared value is less than another.\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nAn Ordering is the result of a comparison between two …\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nA helper struct for reverse ordering.\nRestrict a value to a certain interval.\nThis method returns an Ordering between self and other.\nTests for self and other values to be equal, and is used …\nTests greater than or equal to (for self and other) and is …\nTests greater than (for self and other) and is used by the …\nTests less than or equal to (for self and other) and is …\nTests less than (for self and other) and is used by the < …\nCompares and returns the maximum of two values.\nCompares and returns the maximum of two values.\nReturns the maximum of two values with respect to the …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nCompares and returns the minimum of two values.\nReturns the minimum of two values with respect to the …\nReturns the element that gives the minimum value from the …\nCompares and sorts two values, returning minimum and …\nReturns minimum and maximum values with respect to the …\nReturns minimum and maximum values with respect to the …\nTests for !=. The default implementation is almost always …\nThis method returns an ordering between self and other …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nSupporting trait for inherent methods of f32 and f64 such …\nUsed to do value-to-value conversions while consuming the …\nThe error type for errors that can never happen.\nA value-to-value conversion that consumes the input value. …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nConverts to this type from the input type.\nThe identity function.\nConverts this type into the (usually inferred) input type.\nPerforms the conversion.\nPerforms the conversion.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nReturns the “default value” for a type.\nError is a trait representing the basic expectations for …\nRequest supports generic, type-driven access to data. Its …\nAn iterator over an Error and its sources.\nReturns the argument unchanged.\nCalls U::from(self).\nProvides type-based access to context intended for error …\nRequests a reference of type T from the given impl Error.\nRequests a value of type T from the given impl Error.\nReturns the lower-level source of this error, if any.\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f32. Use f32::EPSILON instead.\nInfinity (∞). Use f32::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f32 value. Use f32::MAX instead.\nMaximum possible power of 10 exponent. Use f32::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f32::MAX_EXP …\nSmallest finite f32 value. Use f32::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f32 value. Use f32::MIN_POSITIVE …\nNot a Number (NaN). Use f32::NAN instead.\nNegative infinity (−∞). Use f32::NEG_INFINITY instead.\nThe radix or base of the internal representation of f32. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f64. Use f64::EPSILON instead.\nInfinity (∞). Use f64::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f64 value. Use f64::MAX instead.\nMaximum possible power of 10 exponent. Use f64::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f64::MAX_EXP …\nSmallest finite f64 value. Use f64::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f64 value. Use f64::MIN_POSITIVE …\nNot a Number (NaN). Use f64::NAN instead.\nNegative infinity (−∞). Use f64::NEG_INFINITY instead.\nThe radix or base of the internal representation of f64. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nRepresentation of a borrowed C string.\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nA wrapper for a va_list\nx86_64 ABI implementation of a va_list.\nEquivalent to C’s char type.\nEquivalent to C’s double type.\nEquivalent to C’s float type.\nEquivalent to C’s signed int (int) type.\nEquivalent to C’s signed long (long) type.\nEquivalent to C’s signed long long (long long) type.\nEquivalent to C’s ptrdiff_t type, from stddef.h (or …\nEquivalent to C’s signed char type.\nEquivalent to C’s signed short (short) type.\nEquivalent to C’s size_t type, from stddef.h (or cstddef …\nEquivalent to C’s ssize_t (on POSIX) or SSIZE_T (on …\nCStr and its related types.\nEquivalent to C’s unsigned char type.\nEquivalent to C’s unsigned int type.\nEquivalent to C’s unsigned long type.\nEquivalent to C’s unsigned long long type.\nEquivalent to C’s unsigned short type.\nEquivalent to C’s void type when used as a pointer.\nC’s “variable arguments”\nAn iterator over the bytes of a CStr, without the nul …\nRepresentation of a borrowed C string.\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nReturns the argument unchanged.\nCalls U::from(self).\nA wrapper for a va_list\nx86_64 ABI implementation of a va_list.\nPossible alignments returned by Formatter::align\nThis structure represents a safely precompiled version of …\nb formatting.\nIndication that contents should be center-aligned.\n? formatting.\nDerive macro generating an impl of the trait Debug.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nFormat trait for an empty format, {}.\nContains the error value\nThe error type which is returned from formatting a message …\nConfiguration for formatting.\nImplements fmt::Debug and fmt::Display using a function.\nIndication that contents should be left-aligned.\ne formatting.\nx formatting.\no formatting.\nContains the success value\np formatting.\nThe type returned by formatter methods.\nIndication that contents should be right-aligned.\nE formatting.\nX formatting.\nA trait for writing or formatting into Unicode-accepting …\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nCreates a type whose fmt::Debug and fmt::Display impls are …\nTakes an output stream and an Arguments struct that can be …\nWrites a char into this writer, returning whether the …\nGlue for usage of the write! macro with implementors of …\nWrites a string slice into this writer, returning whether …\nCustom code within the asynchronous destructor.\nA future returned by the async_drop_in_place.\nA future returned by the AsyncDrop::async_drop to be part …\nA future represents an asynchronous computation obtained …\nConversion into a Future.\nWhich kind of future are we turning this into?\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nCreates a future which never resolves, representing a …\nA Future that wraps a function returning Poll.\nA future that is immediately ready with a value.\nAsynchronously drops a value by running …\nConstructs the asynchronous destructor for this type.\nCreates the asynchronous destructor of the pointed-to …\nCreates a future from a value.\nPolls multiple futures simultaneously, returning a tuple …\nCreates a future which never resolves, representing a …\nAttempts to resolve the future to a final value, …\nCreates a future that wraps a function returning Poll.\nCreates a future that is immediately ready with a value.\nA trait for creating instances of Hasher.\nUsed to create a default BuildHasher instance for types …\nA hashable type.\nDerive macro generating an impl of the trait Hash.\nA trait for hashing an arbitrary stream of bytes.\nType of the hasher that will be created.\nAn implementation of SipHash 2-4.\nCreates a new hasher.\nReturns the hash value for the values written so far.\nFeeds this value into the given Hasher.\nCalculates the hash of a single value.\nFeeds a slice of this type into the given Hasher.\nWrites some data into this Hasher.\nWrites a single i128 into this hasher.\nWrites a single i16 into this hasher.\nWrites a single i32 into this hasher.\nWrites a single i64 into this hasher.\nWrites a single i8 into this hasher.\nWrites a single isize into this hasher.\nWrites a length prefix into this hasher, as part of being …\nWrites a single str into this hasher.\nWrites a single u128 into this hasher.\nWrites a single u16 into this hasher.\nWrites a single u32 into this hasher.\nWrites a single u64 into this hasher.\nWrites a single u8 into this hasher.\nWrites a single usize into this hasher.\nMakes a soundness promise to the compiler that cond holds.\nAn identity function that hints to the compiler to be …\nAn identity function that causes an unused_must_use …\nEmits a machine instruction to signal the processor that …\nInforms the compiler that the site which is calling this …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAborts the execution of the process.\nPerforms checked integer addition.\nLowers in MIR to Rvalue::Aggregate with …\nCalculates the offset from a pointer, potentially wrapping.\nA guard for unsafe functions that cannot ever be executed …\nA guard for std::mem::uninitialized. This will statically …\nA guard for unsafe functions that cannot ever be executed …\nInforms the optimizer that a condition is always true. If …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMaximum with the current value.\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nReverses the bits in an integer type T.\nSee documentation of std::hint::black_box for details.\nExecutes a breakpoint trap, for inspection by a debugger.\nReverses the bytes in an integer type T.\nGets a reference to a static Location indicating where it …\nRust’s “try catch” construct for unwinding. Invokes …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nLexicographically compare [left, left + bytes) and …\nAllocates a block of memory at compile time. At runtime, …\nDeallocates a memory which allocated by …\nSelects which function to call depending on the context.\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies the sign from y to x for f128 values.\nCopies the sign from y to x for f16 values.\nCopies the sign from y to x for f32 values.\nCopies the sign from y to x for f64 values.\nReturns the cosine of an f128.\nReturns the cosine of an f16.\nReturns the cosine of an f32.\nReturns the cosine of an f64.\nReturns the number of leading unset bits (zeroes) in an …\nLike ctlz, but extra-unsafe as it returns undef when given …\nReturns the number of bits set in an integer type T\nReturns the number of trailing unset bits (zeroes) in an …\nLike cttz, but extra-unsafe as it returns undef when given …\nReturns the value of the discriminant for the variant in …\nPerforms an exact division, resulting in undefined …\nReturns 2 raised to the power of an f128.\nReturns 2 raised to the power of an f16.\nReturns 2 raised to the power of an f32.\nReturns 2 raised to the power of an f64.\nReturns the exponential of an f128.\nReturns the exponential of an f16.\nReturns the exponential of an f32.\nReturns the exponential of an f64.\nReturns the absolute value of an f128.\nReturns the absolute value of an f16.\nReturns the absolute value of an f32.\nReturns the absolute value of an f64.\nFloat addition that allows optimizations based on …\nFloat addition that allows optimizations based on …\nFloat division that allows optimizations based on …\nFloat division that allows optimizations based on …\nConverts with LLVM’s fptoui/fptosi, which may return …\nReturns the largest integer less than or equal to an f128.\nReturns the largest integer less than or equal to an f16.\nReturns the largest integer less than or equal to an f32.\nReturns the largest integer less than or equal to an f64.\nReturns a * b + c for f128 values.\nReturns a * b + c for f16 values.\nReturns a * b + c for f32 values.\nReturns a * b + c for f64 values.\nFloat multiplication that allows optimizations based on …\nFloat multiplication that allows optimizations based on …\nMoves a value out of scope without running drop glue.\nFloat remainder that allows optimizations based on …\nFloat remainder that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nReturns whether the argument’s value is statically known …\nHints to the compiler that branch condition is likely to …\nReturns the base 10 logarithm of an f128.\nReturns the base 10 logarithm of an f16.\nReturns the base 10 logarithm of an f32.\nReturns the base 10 logarithm of an f64.\nReturns the base 2 logarithm of an f128.\nReturns the base 2 logarithm of an f16.\nReturns the base 2 logarithm of an f32.\nReturns the base 2 logarithm of an f64.\nReturns the natural logarithm of an f128.\nReturns the natural logarithm of an f16.\nReturns the natural logarithm of an f32.\nReturns the natural logarithm of an f64.\nReturns the maximum of two f128 values.\nReturns the maximum of two f16 values.\nReturns the maximum of two f32 values.\nReturns the maximum of two f64 values.\nThe minimum alignment of a type.\nThe required alignment of the referenced value.\nReturns the minimum of two f128 values.\nReturns the minimum of two f16 values.\nReturns the minimum of two f32 values.\nReturns the minimum of two f64 values.\nRustc internal tooling for hand-writing MIR.\nPerforms checked integer multiplication\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nReturns true if the actual type given as T requires drop …\nEmits a nontemporal store, which gives a hint to the CPU …\nCalculates the offset from a pointer.\nRaises an f128 to an f128 power.\nRaises an f16 to an f16 power.\nRaises an f32 to an f32 power.\nRaises an f64 to an f64 power.\nRaises an f128 to an integer power.\nRaises an f16 to an integer power.\nRaises an f32 to an integer power.\nRaises an f64 to an integer power.\nThe preferred alignment of a type.\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nSee documentation of <*const T>::guaranteed_eq for details.\nMasks out bits of the pointer according to a mask.\nLowers in MIR to Rvalue::UnaryOp with UnOp::PtrMetadata.\nSee documentation of <*const T>::offset_from for details.\nSee documentation of <*const T>::sub_ptr for details.\nDetermines whether the raw bytes of the two values are …\nThis is an implementation detail of crate::ptr::read and …\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nPerforms rotate left.\nPerforms rotate right.\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nMagic intrinsic that derives its meaning from attributes …\nComputes a + b, saturating at numeric bounds.\nComputes a - b, saturating at numeric bounds.\nReturns either true_val or false_val depending on …\nSIMD compiler intrinsics.\nReturns the sine of an f128.\nReturns the sine of an f16.\nReturns the sine of an f32.\nReturns the sine of an f64.\nThe size of a type in bytes.\nThe size of the referenced value in bytes.\nReturns the square root of an f128\nReturns the square root of an f16\nReturns the square root of an f32\nReturns the square root of an f64\nPerforms checked integer subtraction\nDoes a three-way comparison between the two integer …\nReinterprets the bits of a value of one type as another …\nLike transmute, but even less checked at compile-time: …\nReturns the integer part of an f128.\nReturns the integer part of an f16.\nReturns the integer part of an f32.\nReturns the integer part of an f64.\nGets an identifier which is globally unique to the …\nGets a static string slice containing the name of a type.\nNon-overlapping typed swap of a single value.\nReturns whether we should perform some UB-checking at …\nPerforms a volatile load from the src pointer The pointer …\nPerforms a volatile store to the dst pointer. The pointer …\nReturns the result of an unchecked addition, resulting in …\nPerforms an unchecked division, resulting in undefined …\nReturns the result of an unchecked multiplication, …\nReturns the remainder of an unchecked division, resulting …\nPerforms an unchecked left shift, resulting in undefined …\nPerforms an unchecked right shift, resulting in undefined …\nReturns the result of an unchecked subtraction, resulting …\nHints to the compiler that branch condition is likely to …\nInforms the optimizer that this point in the code is not …\nReturns the number of variants of the type T cast to a …\nEquivalent to the appropriate llvm.memmove.p0i8.0i8.* …\nEquivalent to the appropriate llvm.memcpy.p0i8.0i8.* …\nPerforms a volatile load from the src pointer.\nEquivalent to the appropriate llvm.memset.p0i8.* …\nPerforms a volatile store to the dst pointer.\nThe intrinsic will return the alignment stored in that …\nThe intrinsic will return the size stored in that vtable.\nReturns (a + b) mod 2N, where N is the width of T in bits.\nReturns (a * b) mod 2N, where N is the width of T in bits.\nReturns (a - b) mod 2N, where N is the width of T in bits.\nSets count * size_of::<T>() bytes of memory starting at dst…\nThis is an implementation detail of crate::ptr::write and …\nUnwinding is just not possible given the ABI of this …\nType representing basic blocks.\nCall a function.\nEmits a CastKind::PtrToPtr cast.\nEmits a CastKind::Transmute cast.\nA basic block that lies on an unwind path.\nGets the discriminant of a place.\nDrop the contents of a place.\nAccess the field with the given index of some place.\nWe were already cleaning up for an ongoing unwind, and a …\nA non-cleanup basic block.\nCall a function.\nAn unwind action that continues execution in a given basic …\nAn unwind action that continues unwinding.\nA terminator that resumes the unwinding.\nAn unwind action that terminates the execution.\nThe reason we are terminating the process during unwinding.\nAn unwind action that triggers undefined behaviour.\nAdds a variant projection with the given index to the …\nMacro for generating custom MIR.\nHelper macro that allows you to treat a value expression …\nAdds two simd vectors elementwise.\n“Ands” vectors elementwise.\nCalculates the offset from a pointer vector elementwise, …\nNumerically casts a vector, elementwise.\nTruncates an integer vector to a bitmask.\nReverses bits of each element.\nSwaps bytes of each element.\nNumerically casts a vector, elementwise.\nCasts a vector of pointers.\nRounds up each element to the next highest integer-valued …\nCounts the leading zeros of each element.\nCounts the number of ones in each element.\nCounts the trailing zeros of each element.\nDivides lhs by rhs elementwise.\nTests elementwise equality of two vectors.\nExposes a vector of pointers as a vector of addresses.\nExtracts an element from a vector.\nReturns absolute value of a vector, elementwise.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nRounds down each element to the next lowest integer-valued …\nComputes (x*y) + z for each element, but without any …\nReturns the maximum of two vectors, elementwise.\nReturns the minimum of two vectors, elementwise.\nT must be a vector of floats.\nTakes the square root of each element.\nReads a vector of pointers.\nTests if x is greater than or equal to y, elementwise.\nTests if x is greater than y, elementwise.\nInserts an element into a vector, returning the updated …\nTests if x is less than or equal to y, elementwise.\nTests if x is less than y, elementwise.\nReads a vector of pointers.\nWrites to a vector of pointers.\nMultiplies two simd vectors elementwise.\nTests elementwise inequality equality of two vectors.\nNegates a vector elementwise.\n“Ors” vectors elementwise.\nAdds elements within a vector from left to right.\nAdds elements within a vector in arbitrary order. May also …\nChecks if all mask values are true.\nLogical “ands” all elements together.\nChecks if any mask value is true.\nReturns the maximum element of a vector.\nReturns the minimum element of a vector.\nMultiplies elements within a vector from left to right.\nMultiplies elements within a vector in arbitrary order. …\nLogical “ors” all elements together.\nLogical “exclusive ors” all elements together.\nReturns remainder of two vectors elementwise.\nRounds each element to the closest integer-valued float. …\nAdds two simd vectors elementwise, with saturation.\nSubtracts two simd vectors elementwise, with saturation.\nWrites to a vector of pointers.\nSelects elements from a mask.\nSelects elements from a bitmask.\nShifts vector left elementwise, with UB on overflow.\nShifts vector right elementwise, with UB on overflow.\nShuffles two vectors by const indices.\nSubtracts rhs from lhs elementwise.\nReturns the integer part of each element as an …\nCreates a vector of pointers from a vector of addresses.\n“Exclusive ors” vectors elementwise.\nA borrowed byte buffer which is incrementally filled and …\nA writeable view of the unfilled portion of a BorrowedBuf.\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAn iterator over N elements of the iterator at a time.\nLike Iterator::by_ref, but requiring Sized so it can …\nAn iterator that links two iterators together, in a chain.\nAn iterator that clones the elements of an underlying …\nAn iterator that copies the elements of an underlying …\nAn iterator that repeats endlessly.\nAn iterator able to yield elements from both ends.\nAn iterator that yields nothing.\nAn iterator that yields the current count and the element …\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nAn iterator that filters the elements of iter with …\nAn iterator that uses f to both filter and map elements …\nAn iterator that maps each element to an iterator, and …\nAn iterator that flattens one level of nesting in an …\nAn iterator where each iteration calls the provided …\nConversion from an Iterator.\nAn iterator that yields None forever after the underlying …\nAn iterator that always continues to yield None when …\nAn iterator that calls a function with a reference to each …\nAn iterator adapter that places a separator between all …\nAn iterator adapter that places a separator between all …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nAn iterator that maps the values of iter with f.\nAn iterator that only accepts elements while predicate …\nAn iterator over the mapped windows of another iterator.\nAn iterator that yields an element exactly once.\nAn iterator that yields a single element of type A by …\nAn iterator with a peek() that returns an optional …\nTrait to represent types that can be created by …\nAn iterator that repeats an element endlessly.\nAn iterator that repeats an element an exact number of …\nAn iterator that repeats elements of type A endlessly by …\nA double-ended iterator with the direction inverted.\nAn iterator to maintain state while iterating another …\nAn iterator that skips over n elements of iter.\nAn iterator that rejects elements while predicate returns …\nObjects that have a notion of successor and predecessor …\nAn iterator for stepping iterators by a custom amount.\nA new iterator where each successive item is computed …\nTrait to represent types that can be created by summing up …\nAn iterator that only iterates over the first n iterations …\nAn iterator that only accepts elements while predicate …\nAn iterator that reports an accurate length using …\nA type that upholds all invariants of Step.\nAn iterator that iterates two other iterators …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nTests if every element of the iterator matches a predicate.\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nBorrows an iterator, rather than consuming it.\nConverts the arguments to iterators and links them …\nTakes two iterators and creates a new iterator over both …\nCreates an iterator which clones all of its elements.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nCreates an iterator that yields nothing.\nCreates an iterator which gives the current iteration …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nCreates a new iterator where each iteration calls the …\nCreates a new iterator where each iteration calls the …\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nDetermines if the elements of this Iterator are …\nDetermines if the elements of this Iterator are …\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nCreates an iterator that yields an element exactly once.\nCreates an iterator that lazily generates a value exactly …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nTakes an iterator and generates Self from the elements by …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nCreates a new iterator that endlessly repeats a single …\nCreates a new iterator that repeats a single element a …\nCreates a new iterator that repeats elements of type A …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nReturns the number of successor steps required to get from …\nCreates a new iterator where each successive item is …\nTakes an iterator and generates Self from the elements by …\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nConverts an iterator of pairs into a pair of containers.\nConverts the arguments to iterators and zips them.\n‘Zips up’ two iterators into a single iterator of …\nDerive macro generating an impl of the trait ConstParamTy.\nA marker for types which can be used as types of const …\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nA marker for types that can be dropped.\nThe type of the discriminant, which must satisfy the trait …\nCompiler-internal trait used to indicate the type of enum …\nA common trait implemented by all function pointers.\nUsed to determine whether a type contains any UnsafeCell …\nZero-sized type used to mark things that “act like” …\nA marker type which does not implement Unpin.\nA marker for pointer-like types.\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nDerive macro generating impls of traits related to smart …\nRequired trait for constants used in pattern matches.\nTypes for which it is safe to share references between …\nA marker for tuple types.\nTypes that do not require any pinning guarantees.\nTypes that can be “unsized” to a dynamically-sized …\nA marker for types which can be used as types of const …\nDerive macro generating an impl of the trait ConstParamTy.\nReturns the address of the function pointer.\nConfigurable proof assumptions of TransmuteFrom.\nOpaque type representing the discriminant of an enum.\nA wrapper to inhibit the compiler from automatically …\nA wrapper type to construct uninitialized instances of T.\nMarks that Src is transmutable into Self.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns the ABI-required minimum alignment of the type of …\nWhen false, TransmuteFrom is not implemented for …\nBitwise-copies a value.\nReturns a value uniquely identifying the enum variant in v.\nDisposes of a value.\nTakes ownership and “forgets” about the value without …\nLike forget, but also accepts unsized values.\nWhen false, TransmuteFrom is not implemented for …\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns true if dropping values of type T matters.\nExpands to the offset in bytes of a field from the …\nMoves src into the referenced dest, returning the previous …\nWhen false, TransmuteFrom is not implemented for …\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nReturns the size of the pointed-to value in bytes.\nSwaps the values at two mutable locations, without …\nReplaces dest with the default value of T, returning the …\nReinterprets the bits of a value of one type as another …\nTransmutes a Src value into a Self.\nInterprets src as having type &Dst, and then reads src …\nBypasses Rust’s normal memory-initialization checks by …\nWhen false, TransmuteFrom is not implemented for …\nReturns the number of variants in the enum type T.\nReturns the value of type T represented by the all-zero …\nAn error which can be returned when parsing an IP address …\nAdmin-Local scope.\nGlobal scope.\nInterface-Local scope.\nAn IP address, either IPv4 or IPv6.\nAn IPv4 address.\nAn IPv6 address.\nScope of an IPv6 multicast address as defined in IETF RFC …\nLink-Local scope.\nOrganization-Local scope.\nRealm-Local scope.\nSite-Local scope.\nAn internet socket address, either IPv4 or IPv6.\nAn IPv4 socket address.\nAn IPv6 socket address.\nAn IPv4 address.\nAn IPv4 socket address.\nAn IPv6 address.\nAn IPv6 socket address.\nValue being parsed is empty.\nA classification of floating point numbers.\nPositive or negative infinity, which often results from …\nEnum to store the various types of errors that can cause …\nContains an invalid digit in its context.\nNaN (not a number): this value results from calculations …\nInteger is too small to store in target integer type.\nA value that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nA regular floating point number, not any of the …\nAn error which can be returned when parsing a float.\nAn error which can be returned when parsing an integer.\nInteger is too large to store in target integer type.\nProvides intentionally-saturating arithmetic on T.\n“Subnormal” or “denormal” floating point …\nThe error type returned when a checked integral type …\nProvides intentionally-wrapped arithmetic on T.\nValue was Zero\nPositive or negative zero.\nA marker trait for primitive types which can be zero.\nThe addition operator +.\nThe addition assignment operator +=.\nAn async-aware version of the Fn trait.\nAn async-aware version of the FnMut trait.\nAn async-aware version of the FnOnce trait.\nThe bitwise AND operator &.\nThe bitwise AND assignment operator &=.\nThe bitwise OR operator |.\nThe bitwise OR assignment operator |=.\nThe bitwise XOR operator ^.\nThe bitwise XOR assignment operator ^=.\nAn endpoint of a range of keys.\nExit the operation without running subsequent phases.\nFuture returned by AsyncFnOnce::async_call_once.\nFuture returned by AsyncFnMut::async_call_mut and …\nTrait that indicates that this is a pointer or a wrapper …\nThe coroutine completed with a return value.\nMove on to the next phase of the operation as normal.\nUsed to tell an operation whether it should exit early or …\nThe trait implemented by builtin coroutine types.\nThe result of a coroutine resumption.\nUsed for immutable dereferencing operations, like *v.\nUsed for mutable dereferencing operations, like in *v = 1;.\nPerma-unstable marker trait. Indicates that the type has a …\nDispatchFromDyn is used in the implementation of object …\nThe division operator /.\nThe division assignment operator /=.\nCustom code within the destructor.\nAn exclusive bound.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to specify which residuals can be converted into …\nAn inclusive bound.\nUsed for indexing operations (container[index]) in …\nUsed for indexing operations (container[index]) in mutable …\nThe multiplication operator *.\nThe multiplication assignment operator *=.\nThe unary negation operator -.\nThe unary logical negation operator !.\nOneSidedRange is implemented for built-in range types that …\nThe resulting type after applying the + operator.\nThe resulting type after applying the - operator.\nThe resulting type after applying the - operator.\nOutput type of the called closure’s future.\nThe resulting type after applying the ! operator.\nThe returned type after the call operator is used.\nThe type of the value produced by ? when not …\nThe resulting type after applying the * operator.\nThe resulting type after applying the / operator.\nThe resulting type after applying the % operator.\nThe resulting type after applying the & operator.\nThe resulting type after applying the | operator.\nThe resulting type after applying the ^ operator.\nThe resulting type after applying the << operator.\nThe resulting type after applying the >> operator.\nThe returned type after indexing.\nA (half-open) range bounded inclusively below and …\nRangeBounds is implemented by Rust’s built-in range …\nA range only bounded inclusively below (start..).\nAn unbounded range (..).\nA range bounded inclusively below and above (start..=end).\nA range only bounded exclusively above (..end).\nA range only bounded inclusively above (..=end).\nThe remainder operator %.\nThe remainder assignment operator %=.\nAllows retrieving the canonical type implementing Try that …\nThe type of the value passed to FromResidual::from_residual\nThe type of value this coroutine returns.\nThe left shift operator <<. Note that because this trait …\nThe left shift assignment operator <<=.\nThe right shift operator >>. Note that because this trait …\nThe right shift assignment operator >>=.\nThe subtraction operator -.\nThe subtraction assignment operator -=.\nThe resulting type after dereferencing.\nThe ? operator and try {} blocks.\nThe “return” type of this meta-function.\nAn infinite endpoint. Indicates that there is no bound in …\nImplement FromResidual<Yeet<T>> on your type to enable …\nThe type of value this coroutine yields.\nThe coroutine suspended with a value.\nPerforms the + operation.\nPerforms the += operation.\nCall the AsyncFn, returning a future which may borrow from …\nCall the AsyncFnMut, returning a future which may borrow …\nCall the AsyncFnOnce, returning a future which may move …\nPerforms the & operation.\nPerforms the &= operation.\nPerforms the | operation.\nPerforms the |= operation.\nPerforms the ^ operation.\nPerforms the ^= operation.\nUsed in ? to decide whether the operator should produce a …\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nReturns true if item is contained in the range.\nDereferences the value.\nMutably dereferences the value.\nPerforms the / operation.\nPerforms the /= operation.\nExecutes the destructor for this type.\nThe upper bound of the range (exclusive).\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive)\nEnd index bound.\nConstructs the type from its Output type.\nConstructs the type from a compatible Residual type.\nPerforms the indexing (container[index]) operation.\nPerforms the mutable indexing (container[index]) operation.\nPerforms the * operation.\nPerforms the *= operation.\nPerforms the unary - operation.\nPerforms the unary ! operation.\nPerforms the % operation.\nPerforms the %= operation.\nResumes the execution of this coroutine.\nPerforms the << operation.\nPerforms the <<= operation.\nPerforms the >> operation.\nPerforms the >>= operation.\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nStart index bound.\nPerforms the - operation.\nPerforms the -= operation.\nAn iterator over the value in Some variant of an Option.\nAn iterator over a reference to the Some variant of an …\nAn iterator over a mutable reference to the Some variant …\nNo value.\nThe Option type. See the module level documentation for …\nSome value of type T.\nA simple wrapper around a type to assert that it is unwind …\nA struct containing information about the location of a …\nA struct providing information about a panic.\nA message that was given to the panic!() macro.\nA marker trait representing types where a shared reference …\nA marker trait which represents “panic safe” types in …\nGets the formatted message, if it has no arguments to be …\nReturns whether the panic handler is allowed to unwind the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nReturns information about the location from which the …\nThe message that was given to the panic! macro.\nReturns the payload associated with the panic.\nThis function is used instead of panic_fmt in const eval.\nThe underlying implementation of core’s panic! macro …\nThe entry point for panicking with a formatted message.\nLike panic, but without unwinding and track_caller to …\nLike panic_fmt, but for non-unwinding panics.\nLike panic_nounwind, but also inhibits showing a backtrace.\nThis exists solely for the 2015 edition panic! macro to …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nThis is a panic called with a message that’s a result of …\nA pointer which pins its pointee in place.\nTrait that indicates that this is a pointer or a wrapper …\nConstructs a Pin<&mut T>, by pinning a value: T locally.\nThe 2015 version of the core prelude.\nThe 2018 version of the core prelude.\nThe 2021 version of the core prelude.\nThe 2024 version of the core prelude.\nThe first version of the prelude of The Rust Standard …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-4-.js b/search.desc/wiwi/wiwi-desc-4-.js index f657b38a7..2fa58a0fb 100644 --- a/search.desc/wiwi/wiwi-desc-4-.js +++ b/search.desc/wiwi/wiwi-desc-4-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 4, "Searches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nA type storing a usize which is a power of two, and thus …\nThe metadata for a Dyn = dyn SomeTrait trait object type.\nThe type for metadata in pointers and references to Self.\n*mut T but non-zero and covariant.\nProvides the pointer metadata type of any pointed-to type.\nCompares the addresses of the two pointers for equality, …\nCreates a const raw pointer to a place, without creating …\nCreates a mut raw pointer to a place, without creating an …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCreates a new pointer that is dangling, but well-aligned.\nCreates a new pointer that is dangling, but well-aligned.\nExecutes the destructor (if any) of the pointed-to value.\nCompares raw pointers for equality.\nCompares the addresses of the two function pointers for …\nConverts a mutable reference to a raw pointer.\nForms a (possibly-wide) raw pointer from a data pointer …\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to a raw pointer.\nHash a raw pointer.\nExtracts the metadata component of a pointer.\nCreates a null raw pointer.\nCreates a null mutable raw pointer.\nReads the value from src without moving it. This leaves the\nReads the value from src without moving it. This leaves the\nPerforms a volatile read of the value from src without …\nMoves src into the pointed dst, returning the previous dst …\nForms a raw slice from a pointer and a length.\nForms a raw mutable slice from a pointer and a length.\nSwaps the values at two mutable locations of the same …\nSwaps count * size_of::<T>() bytes between the two regions …\nConverts an address back to a pointer, picking up a …\nConverts an address back to a mutable pointer, picking up …\nCreates a pointer with the given address and no provenance.\nCreates a pointer with the given address and no provenance.\nOverwrites a memory location with the given value without …\nSets count * size_of::<T>() bytes of memory starting at dst…\nOverwrites a memory location with the given value without …\nPerforms a volatile write of a memory location with the …\nAn endpoint of a range of keys.\nAn exclusive bound.\nAn inclusive bound.\nBy-value Range iterator.\nBy-value RangeFrom iterator.\nBy-value RangeInclusive iterator.\nOneSidedRange is implemented for built-in range types that …\nA (half-open) range bounded inclusively below and …\nRangeBounds is implemented by Rust’s built-in range …\nA range only bounded inclusively below (start..).\nAn unbounded range (..).\nA range bounded inclusively below and above (start..=end).\nA range only bounded exclusively above (..end).\nA range only bounded inclusively above (..=end).\nObjects that have a notion of successor and predecessor …\nAn infinite endpoint. Indicates that there is no bound in …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive)\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive).\nEnd index bound.\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the range contains no items.\nReturns true if the range contains no items.\nCreates an iterator over the elements within this range.\nCreates an iterator over the elements within this range.\nCreates an iterator over the elements within this range.\nLegacy range types\nReturns the remainder of the range being iterated over.\nReturns the remainder of the range being iterated over.\nReturns the remainder of the range being iterated over.\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nStart index bound.\nReturns the number of successor steps required to get from …\nA (half-open) range bounded inclusively below and …\nA range only bounded inclusively below (start..).\nA range bounded inclusively below and above (start..=end).\nThe upper bound of the range (exclusive).\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nContains the error value\nAn iterator over the value in a Ok variant of a Result.\nAn iterator over a reference to the Ok variant of a Result.\nAn iterator over a mutable reference to the Ok variant of …\nContains the success value\nResult is a type that represents either success (Ok) or …\nThis type, reinterpreted as bytes.\nMap from the elements of the input vector to the output …\nSpecifies the number of lanes in a SIMD vector as a type.\nA SIMD vector mask for N elements of width specified by …\nThe mask element type corresponding to this element type.\nMarker trait for types that may be used as SIMD mask …\nA SIMD vector with the shape of [T; N] but the operations …\nSupporting trait for Simd::cast. Typically doesn’t need …\nMarker trait for types that may be used as SIMD vector …\nStatically guarantees that a lane count is marked as …\nCreates a vector from the elements of another vector.\nConverts SIMD vectors to vectors of bytes\nTraits for comparing and ordering vectors.\nCreates a new vector from the elements of first and second.\nCreates a new mask from the elements of first and second.\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nCreates an integer value from its representation as a byte …\nCreates an integer value from its representation as a byte …\nCreates a native endian integer value from its memory …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nTraits for vectors with numeric elements.\nThe portable SIMD prelude.\nTraits for vectors of pointers.\nConstructs a new SIMD vector by copying elements from …\nCreates a new vector from the elements of vector.\nCreates a new mask from the elements of mask.\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nThe mask type returned by each comparison.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the element-wise maximum with other.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nReturns each element with the magnitude of self and the …\nRaw transmutation from an unsigned integer vector type …\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nReturns the maximum of each element.\nReturns the minimum of each element.\nReverses the byte order of each element.\nReverses the byte order of each element.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nWrapping negation.\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nA SIMD vector mask for N elements of width specified by …\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nThe mask type returned by each comparison.\nVector of mutable pointers to the same type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nA SIMD vector with the shape of [T; N] but the operations …\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of mutable pointers.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nChanges constness without changing the type.\nChanges constness without changing the type.\nReturns each element with the magnitude of self and the …\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nRaw transmutation from an unsigned integer vector type …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each element that is null.\nReturns true for each element that is null.\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the maximum of each element.\nReturns the element-wise maximum with other.\nReturns the minimum of each element.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nConstructs a new SIMD vector by copying elements from …\nReverses the byte order of each element.\nReverses the byte order of each element.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nWrapping negation.\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nVector of mutable pointers to the same type.\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of mutable pointers.\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nChanges constness without changing the type.\nChanges constness without changing the type.\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nReturns true for each element that is null.\nReturns true for each element that is null.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nAn iterator over a slice in (non-overlapping) chunks (N …\nAn iterator over a slice in (non-overlapping) mutable …\nA windowed iterator over a slice in overlapping chunks (N …\nAn iterator over slice in (non-overlapping) chunks …\nAn iterator over slice in (non-overlapping) mutable chunks …\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over the escaped version of a byte slice.\nThe error type returned by get_many_mut<N>.\nThe element type of the slice being matched on.\nImmutable slice iterator\nMutable slice iterator.\nThe output type returned by methods.\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over subslices separated by elements that …\nAn iterator over the subslices of the vector which are …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nA helper trait used for indexing operations.\nPatterns in slices - currently, only used by strip_prefix …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over overlapping subslices of length size.\nCurrently, the consumers of SlicePattern need a slice.\nReturns the argument unchanged.\nConverts a reference to T into a slice of length 1 …\nForms a mutable slice from a pointer range.\nForms a slice from a pointer range.\nForms a slice from a pointer and a length.\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to T into a slice of length 1 …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nReturns a pointer to the output at this location, without …\nReturns a mutable pointer to the output at this location, …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nCalls U::from(self).\nPure Rust memchr implementation, taken from rust-memchr\nPerforms bounds checking of a range.\nPerforms bounds checking of a range without panicking.\nReturns the first index matching the byte x in text.\nReturns the last index matching the byte x in text.\nAn iterator over the bytes of a string slice.\nAn iterator over the chars of a string slice, and their …\nAn iterator over the chars of a string slice.\nAn iterator of u16 over the string encoded as UTF-16.\nThe associated error which can be returned from parsing.\nThe return type of str::escape_debug.\nThe return type of str::escape_default.\nThe return type of str::escape_unicode.\nParse a value from a string\nAn iterator over the lines of a string, as string slices.\nCreated with the method lines_any.\nCreated with the method match_indices.\nCreated with the method matches.\nAn error returned when parsing a bool using from_str fails\nCreated with the method rmatch_indices.\nCreated with the method rmatches.\nCreated with the method rsplit.\nCreated with the method rsplitn.\nCreated with the method rsplit_terminator.\nCreated with the method split.\nAn iterator over the non-ASCII-whitespace substrings of a …\nAn iterator over the substrings of a string, terminated by …\nCreated with the method splitn.\nCreated with the method split_terminator.\nAn iterator over the non-whitespace substrings of a string,\nAn item returned by the Utf8Chunks iterator.\nAn iterator used to decode a slice of mostly UTF-8 bytes …\nErrors which can occur when attempting to interpret a …\nCreates a &str from a pointer and a length.\nCreates a &mut str from a pointer and a length.\nParses a string s to return a value of this type.\nConverts a slice of bytes to a string slice.\nConverts a mutable slice of bytes to a mutable string …\nConverts a slice of bytes to a string slice without …\nConverts a slice of bytes to a string slice without …\nReads the next code point out of a byte iterator (assuming …\nThe string Pattern API.\nGiven a first byte, determines how many bytes are in this …\nAssociated type for <&[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <F as Pattern>::Searcher<'a>.\nAssociated type for <char as Pattern>::Searcher<'a>.\nAssociated type for <&[char] as Pattern>::Searcher<'a>.\nExpresses that every byte of the haystack has been …\nA marker trait to express that a ReverseSearcher can be …\nExpresses that a match of the pattern has been found at …\nA string pattern.\nExpresses that haystack[a..b] has been rejected as a …\nA reverse searcher for a string pattern.\nResult of calling Searcher::next() or …\nA searcher for a string pattern.\nAssociated searcher for this pattern\nAssociated type for <&str as Pattern>::Searcher<'a>.\nGetter for the underlying string to be searched in\nConstructs the associated searcher from self and the …\nChecks whether the pattern matches anywhere in the haystack\nChecks whether the pattern matches at the front of the …\nChecks whether the pattern matches at the back of the …\nPerforms the next search step starting from the front.\nPerforms the next search step starting from the back.\nFinds the next Match result. See next().\nFinds the next Match result. See next_back().\nFinds the next Reject result. See next() and next_match().\nFinds the next Reject result. See next_back().\nRemoves the pattern from the front of haystack, if it …\nRemoves the pattern from the back of haystack, if it …\nExclusive provides only mutable access, also referred to …\nAtomic types\nAn AtomicBool initialized to false.\nAn AtomicIsize initialized to 0.\nAn AtomicUsize initialized to 0.\nHas the effects of both Acquire and Release together: For …\nWhen coupled with a load, if the loaded value was written …\nA boolean type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nA raw pointer type which can be safely shared between …\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAtomic memory orderings\nNo ordering constraints, only atomic operations.\nWhen coupled with a store, all previous operations become …\nLike Acquire/Release/AcqRel (for load, store, and …\nA “compiler-only” atomic fence.\nAn atomic fence.\nSignals the processor that it is inside a busy-wait …\nThe context of an asynchronous task.\nA Builder used to construct a Context instance with …\nA LocalWaker is analogous to a Waker, but it does not …\nRepresents that a value is not ready yet.\nIndicates whether a value is available or if the current …\nA RawWaker allows the implementor of a task executor to …\nA virtual function pointer table (vtable) that specifies …\nRepresents that a value is immediately ready.\nA Waker is a handle for waking up a task by notifying its …\nExtracts the successful type of a Poll<T>.\nA Duration type to represent a span of time, typically …\nAn error which can be returned when converting a …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nChecks that the preconditions of an unsafe function are …\nReturns whether we should perform some UB-checking at …\nThe version of Unicode that the Unicode parts of char and …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nMemory allocation APIs.\nUtilities for dynamic typing or type reflection.\nSIMD and vendor intrinsics module.\nUtilities for the array primitive type.\nOperations on ASCII strings and characters.\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other …\nUnstable module containing the unstable assert_matches …\nAsserts that two expressions are not equal to each other …\nComposable asynchronous iteration.\nSupport for capturing a stack backtrace of an OS thread\nA module for working with borrowed data.\nThe Box<T> type for heap allocation.\nShareable mutable containers.\nEvaluates boolean combinations of configuration flags at …\nA macro for defining #[cfg] match-like statements.\nUtilities for the char primitive type.\nThe Clone trait for types that cannot be ‘implicitly …\nUtilities for comparing and ordering values.\nCollection types.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nSame as format_args, but can be used in some const …\nTraits for conversions between types.\nPrints and returns the value of a given expression for …\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other.\nAsserts that two expressions are not equal to each other.\nThe Default trait for types with a default value.\nInspection and manipulation of the process’s environment.\nInspects an environment variable at compile time.\nPrints to the standard error.\nPrints to the standard error, with a newline.\nInterfaces for working with Errors.\nConstants for the f128 double-precision floating point …\nConstants for the f16 double-precision floating point type.\nConstants for the f32 single-precision floating point type.\nConstants for the f64 double-precision floating point type.\nUtilities related to FFI bindings.\nExpands to the file name in which it was invoked.\nUtilities for formatting and printing Strings.\nCreates a String using interpolation of runtime …\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nFilesystem manipulation operations.\nAsynchronous basic functionality.\nGeneric hashing support.\nHints to compiler that affects how code should be emitted …\nRedundant constants module for the i128 primitive type.\nRedundant constants module for the i16 primitive type.\nRedundant constants module for the i32 primitive type.\nRedundant constants module for the i64 primitive type.\nRedundant constants module for the i8 primitive type.\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nCompiler intrinsics.\nTraits, helpers, and type definitions for core I/O …\nA macro to test at runtime whether a CPU feature is …\nRedundant constants module for the isize primitive type.\nComposable external iteration.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nPrimitive traits and types representing basic properties …\nReturns whether the given expression matches the provided …\nBasic functions for dealing with memory.\nExpands to a string that represents the current module …\nNetworking primitives for TCP/UDP communication.\nAdditional functionality for numerics.\nOverloadable operators.\nOptional values.\nOptionally inspects an environment variable at compile …\nOS-specific functionality.\nPanic support in the standard library.\nPanics the current thread.\nHelper module for exporting the pattern_type macro\nCross-platform path manipulation.\nTypes that pin data to a location in memory.\nModule for anonymous pipe\nThe Rust Prelude\nThis module reexports the primitive types to allow usage …\nPrints to the standard output.\nPrints to the standard output, with a newline.\nA module for working with processes.\nManually manage memory through raw pointers.\nSingle-threaded reference-counting pointers. ‘Rc’ …\nError handling with the Result type.\nPortable SIMD module.\nUtilities for the slice primitive type.\nUtilities for the str primitive type.\nA UTF-8–encoded, growable string.\nStringifies its arguments.\nUseful synchronization primitives.\nTypes and Traits for working with asynchronous tasks.\nNative threads.\nDeclare a new thread local storage key of type …\nTemporal quantification.\nIndicates unfinished code.\nEnables or disables tracing functionality used for …\nUnwraps a result or propagates its error.\nRedundant constants module for the u128 primitive type.\nRedundant constants module for the u16 primitive type.\nRedundant constants module for the u32 primitive type.\nRedundant constants module for the u64 primitive type.\nRedundant constants module for the u8 primitive type.\nIndicates unimplemented code by panicking with a message …\nIndicates unreachable code.\nRedundant constants module for the usize primitive type.\nA contiguous growable array type with heap-allocated …\nCreates a Vec containing the arguments.\nWrites formatted data into a buffer.\nWrites formatted data into a buffer, with a newline …\nThe AllocError error indicates an allocation failure that …\nAn implementation of Allocator can allocate, grow, shrink, …\nThe global memory allocator.\nA memory allocator that can be registered as the standard …\nLayout of a block of memory.\nThe parameters given to Layout::from_size_align or some …\nThe default memory allocator provided by the operating …\nThe minimum byte alignment for a memory block of this …\nCreates a layout describing the record that can hold a …\nAllocates memory with the global allocator.\nAllocates memory as described by the given layout.\nAllocates zero-initialized memory with the global …\nBehaves like alloc, but also ensures that the contents are …\nAttempts to allocate a block of memory.\nBehaves like allocate, but also ensures that the returned …\nCreates a layout describing the record for a [T; n].\nCreates a “by reference” adapter for this instance of …\nCreates a NonNull that is dangling, but well-aligned for …\nDeallocates memory with the global allocator.\nDeallocates the block of memory at the given ptr pointer …\nDeallocates the memory referenced by ptr.\nCreates a layout describing the record for self followed by\nCreates a layout describing the record for self followed by\nProduces layout describing a record that could be used to …\nProduces layout describing a record that could be used to …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs a Layout from a given size and align, or …\nCreates a layout, bypassing all checks.\nAttempts to extend the memory block.\nBehaves like grow, but also ensures that the new contents …\nSignals a memory allocation error.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConstructs a Layout suitable for holding a value of type T.\nCreates a layout by rounding the size of this layout up to …\nReturns the amount of padding we must insert after self to …\nReallocates memory with the global allocator.\nShrinks or grows a block of memory to the given new_size …\nCreates a layout describing the record for n instances of …\nCreates a layout describing the record for n instances of …\nRegisters a custom allocation error hook, replacing any …\nAttempts to shrink the memory block.\nThe minimum size in bytes for a memory block of this …\nUnregisters the current allocation error hook, returning …\nA trait to emulate dynamic typing.\nA TypeId represents a globally unique identifier for a …\nForwards to the method defined on the type dyn Any.\nReturns some mutable reference to the inner value if it is …\nForwards to the method defined on the type Any.\nReturns a mutable reference to the inner value as type …\nForwards to the method defined on the type dyn Any.\nForwards to the method defined on the type Any.\nForwards to the method defined on the type Any.\nReturns some reference to the inner value if it is of type …\nForwards to the method defined on the type dyn Any.\nForwards to the method defined on the type dyn Any.\nForwards to the method defined on the type Any.\nReturns a reference to the inner value as type dyn T.\nReturns the argument unchanged.\nCalls U::from(self).\nForwards to the method defined on the type Any.\nForwards to the method defined on the type dyn Any.\nReturns true if the inner type is the same as T.\nReturns the TypeId of the type this generic function has …\nGets the TypeId of self.\nReturns the name of a type as a string slice.\nReturns the type name of the pointed-to value as a string …\nInline assembly.\nModule-level inline assembly.\nThis macro tests, at runtime, whether an aarch64 feature …\nChecks if arm feature is enabled.\nChecks if mips64 feature is enabled.\nChecks if mips feature is enabled.\nChecks if powerpc feature is enabled.\nChecks if powerpc feature is enabled.\nA macro to test at runtime whether instruction sets are …\nA macro to test at runtime whether a CPU feature is …\nPlatform-specific intrinsics for the x86_64 platform.\nResult of the cpuid instruction.\nEqual (ordered, non-signaling)\nEqual (ordered, signaling)\nEqual (unordered, non-signaling)\nEqual (unordered, signaling)\nFalse (ordered, non-signaling)\nFalse (ordered, signaling)\nGreater-than-or-equal (ordered, non-signaling)\nGreater-than-or-equal (ordered, signaling)\nGreater-than (ordered, non-signaling)\nGreater-than (ordered, signaling)\nLess-than-or-equal (ordered, non-signaling)\nLess-than-or-equal (ordered, signaling)\nLess-than (ordered, non-signaling)\nLess-than (ordered, signaling)\nNot-equal (ordered, non-signaling)\nNot-equal (ordered, signaling)\nNot-equal (unordered, non-signaling)\nNot-equal (unordered, signaling)\nNot-greater-than-or-equal (unordered, non-signaling)\nNot-greater-than-or-equal (unordered, signaling)\nNot-greater-than (unordered, non-signaling)\nNot-greater-than (unordered, signaling)\nNot-less-than-or-equal (unordered, non-signaling)\nNot-less-than-or-equal (unordered, signaling)\nNot-less-than (unordered, non-signaling)\nNot-less-than (unordered, signaling)\nOrdered (non-signaling)\nOrdered (signaling)\nTrue (unordered, non-signaling)\nTrue (unordered, signaling)\nUnordered (non-signaling)\nUnordered (signaling)\nThe _MM_CMPINT_ENUM type used to specify comparison …\nEqual\nFalse\nLess-than-or-equal\nLess-than\nNot-equal\nNot less-than-or-equal\nNot less-than\nTrue\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_STATE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_FLUSH_ZERO_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nround up and do not suppress exceptions\nuse MXCSR.RC; see vendor::_MM_SET_ROUNDING_MODE\nround down and do not suppress exceptions\nuse MXCSR.RC and suppress exceptions; see …\nround to nearest and do not suppress exceptions\nsuppress exceptions\ndo not suppress exceptions\nuse MXCSR.RC and do not suppress exceptions; see …\nround to nearest\nround down\nround up\ntruncate\ntruncate and do not suppress exceptions\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nThe MM_MANTISSA_NORM_ENUM type used to specify mantissa …\nThe MM_MANTISSA_SIGN_ENUM type used to specify mantissa …\ninterval [1, 2)\ninterval [0.5, 1)\ninterval [0.5, 2)\ninterval [0.75, 1.5)\nDEST = NaN if sign(SRC) = 1\nsign = sign(SRC)\nsign = 0\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_MASK\nSee _mm_setcsr\nSee _mm_setcsr\nThe MM_PERM_ENUM type used to specify shuffle operations …\nSee _mm_setcsr\nSee _MM_GET_ROUNDING_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nA utility function for creating masks to use with Intel …\nTranspose the 4x4 matrix formed by 4 rows of __m128 in …\nMask only: return the bit mask\nFor each character in a, find if it is in b (Default)\nThe strings defined by a and b are equal\nSearch for the defined substring in the target\nFor each character in a, determine if …\nIndex only: return the least significant bit (Default)\nNegates results only before the end of the string\nDo not negate results before the end of the string\nIndex only: return the most significant bit\nNegates results\nDo not negate results (Default)\nString contains signed 8-bit characters\nString contains unsigned 16-bit characters\nString contains unsigned 8-bit characters (Default)\nMask only: return the byte mask\nString contains unsigned 16-bit characters\nTransaction abort due to the transaction using too much …\nTransaction abort due to a memory conflict with another …\nTransaction abort due to a debug trap.\nTransaction explicitly aborted with xabort. The parameter …\nTransaction abort in a inner nested transaction.\nTransaction retry is possible.\nTransaction successfully started.\nXFEATURE_ENABLED_MASK for XCR\nSee __cpuid_count.\nReturns the result of the cpuid instruction for a given …\nReturns the highest-supported leaf (EAX) and sub-leaf (ECX…\n128-bit wide set of four f32 types, x86-specific\n128-bit wide set of eight u16 types, x86-specific\n128-bit wide set of two f64 types, x86-specific\n128-bit wide set of 8 f16 types, x86-specific\n128-bit wide integer vector type, x86-specific\n256-bit wide set of eight f32 types, x86-specific\n256-bit wide set of 16 u16 types, x86-specific\n256-bit wide set of four f64 types, x86-specific\n256-bit wide set of 16 f16 types, x86-specific\n256-bit wide integer vector type, x86-specific\n512-bit wide set of sixteen f32 types, x86-specific\n512-bit wide set of 32 u16 types, x86-specific\n512-bit wide set of eight f64 types, x86-specific\n512-bit wide set of 32 f16 types, x86-specific\n512-bit wide integer vector type, x86-specific\nThe __mmask16 type used in AVX-512 intrinsics, a 16-bit …\nThe __mmask32 type used in AVX-512 intrinsics, a 32-bit …\nThe __mmask64 type used in AVX-512 intrinsics, a 64-bit …\nThe __mmask8 type used in AVX-512 intrinsics, a 8-bit …\nReads the current value of the processor’s time-stamp …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nBitwise logical AND of inverted a with b.\nBitwise logical AND of inverted a with b.\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nClears all bits below the least significant zero bit of x.\nClears all bits below the least significant zero bit of x.\nSets all bits of x to 1 except for the least significant …\nSets all bits of x to 1 except for the least significant …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x.\nSets the least significant zero bit of x.\nSets all bits of x below the least significant one.\nSets all bits of x below the least significant one.\nExtracts lowest set isolated bit.\nExtracts lowest set isolated bit.\nClears least significant bit and sets all other bits.\nClears least significant bit and sets all other bits.\nGets mask up to lowest set bit.\nGets mask up to lowest set bit.\nResets the lowest set bit of x.\nResets the lowest set bit of x.\nReturns an integer with the reversed byte order of x\nReturns an integer with the reversed byte order of x\nZeroes higher bits of a >= index.\nZeroes higher bits of a >= index.\nConvert 16-bit mask a into an integer value, and store the …\nConvert 32-bit mask a into an integer value, and store the …\nConvert 64-bit mask a into an integer value, and store the …\nConvert 8-bit mask a to a 32-bit integer value and store …\nConvert 32-bit integer value a to an 16-bit mask and store …\nConvert integer value a into an 32-bit mask, and store the …\nConvert 32-bit integer value a to an 8-bit mask and store …\nConvert integer value a into an 64-bit mask, and store the …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nAdd 16-bit masks a and b, and store the result in dst.\nAdd 32-bit masks in a and b, and store the result in k.\nAdd 64-bit masks in a and b, and store the result in k.\nAdd 8-bit masks a and b, and store the result in dst.\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise AND of 32-bit masks a and b, and store …\nCompute the bitwise AND of 64-bit masks a and b, and store …\nBitwise AND of 8-bit masks a and b, and store the result …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCompute the bitwise NOT of 32-bit masks a and then AND …\nCompute the bitwise NOT of 64-bit masks a and then AND …\nBitwise AND NOT of 8-bit masks a and b, and store the …\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise NOT of 32-bit mask a, and store the …\nCompute the bitwise NOT of 64-bit mask a, and store the …\nBitwise NOT of 8-bit mask a, and store the result in dst.\nCompute the bitwise OR of 16-bit masks a and b, and store …\nCompute the bitwise OR of 32-bit masks a and b, and store …\nCompute the bitwise OR of 64-bit masks a and b, and store …\nBitwise OR of 8-bit masks a and b, and store the result in …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nShift 16-bit mask a left by count bits while shifting in …\nShift the bits of 32-bit mask a left by count while …\nShift the bits of 64-bit mask a left by count while …\nShift 8-bit mask a left by count bits while shifting in …\nShift 16-bit mask a right by count bits while shifting in …\nShift the bits of 32-bit mask a right by count while …\nShift the bits of 64-bit mask a right by count while …\nShift 8-bit mask a right by count bits while shifting in …\nCompute the bitwise AND of 16-bit masks a and b, and if …\nCompute the bitwise AND of 32-bit masks a and b, and if …\nCompute the bitwise AND of 64-bit masks a and b, and if …\nCompute the bitwise AND of 8-bit masks a and b, and if the …\nCompute the bitwise NOT of 16-bit mask a and then AND with …\nCompute the bitwise NOT of 32-bit mask a and then AND with …\nCompute the bitwise NOT of 64-bit mask a and then AND with …\nCompute the bitwise NOT of 8-bit mask a and then AND with …\nCompute the bitwise AND of 16-bit masks a and b, if the …\nCompute the bitwise AND of 32-bit masks a and b, if the …\nCompute the bitwise AND of 64-bit masks a and b, if the …\nCompute the bitwise AND of 8-bit masks a and b, if the …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XNOR of 32-bit masks a and b, and …\nCompute the bitwise XNOR of 64-bit masks a and b, and …\nBitwise XNOR of 8-bit masks a and b, and store the result …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nCompute the bitwise XOR of 32-bit masks a and b, and store …\nCompute the bitwise XOR of 64-bit masks a and b, and store …\nBitwise XOR of 8-bit masks a and b, and store the result …\nLoad 16-bit mask from memory\nLoad 32-bit mask from memory into k.\nLoad 64-bit mask from memory into k.\nLoad 8-bit mask from memory\nCounts the leading most significant zero bits.\nCounts the leading most significant zero bits.\nComputes the absolute values of packed 16-bit integers in a…\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute values of packed 8-bit integers in a.\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds packed single-precision (32-bit) floating-point …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively adds and subtracts packed double-precision …\nAlternatively adds and subtracts packed single-precision …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenates pairs of 16-byte blocks in a and b into a …\nComputes the bitwise AND of a packed double-precision …\nComputes the bitwise AND of packed single-precision …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise NOT of packed double-precision …\nComputes the bitwise NOT of packed single-precision …\nComputes the bitwise NOT of 256 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlends packed 16-bit integers from a and b using control …\nBlends packed 32-bit integers from a and b using control …\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBlends packed 8-bit integers from a and b using mask.\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcasts 128 bits from memory (composed of 2 packed …\nBroadcasts 128 bits from memory (composed of 4 packed …\nBroadcasts a double-precision (64-bit) floating-point …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nCasts vector of type __m128d to type __m256d; the upper …\nCasts vector of type __m256d to type __m128d.\nCast vector of type __m256d to type __m256h. This …\nCast vector of type __m256d to type __m256.\nCasts vector of type __m256d to type __m256i.\nCast vector of type __m128h to type __m256h. The upper 8 …\nCast vector of type __m256h to type __m128h. This …\nCast vector of type __m256h to type __m256d. This …\nCast vector of type __m256h to type __m256. This intrinsic …\nCast vector of type __m256h to type __m256i. This …\nCasts vector of type __m128 to type __m256; the upper 128 …\nCasts vector of type __m256 to type __m128.\nCast vector of type __m256 to type __m256d.\nCast vector of type __m256 to type __m256h. This intrinsic …\nCasts vector of type __m256 to type __m256i.\nCasts vector of type __m128i to type __m256i; the upper …\nCasts vector of type __m256i to type __m256d.\nCast vector of type __m256i to type __m256h. This …\nCasts vector of type __m256i to type __m256.\nCasts vector of type __m256i to type __m128i.\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality.\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nSign-extend 16-bit integers to 32-bit integers.\nSign-extend 16-bit integers to 64-bit integers.\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign-extend 32-bit integers to 64-bit integers.\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts packed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign-extend 8-bit integers to 16-bit integers.\nSign-extend 8-bit integers to 32-bit integers.\nSign-extend 8-bit integers to 64-bit integers.\nZeroes extend packed unsigned 16-bit integers in a to …\nZero-extend the lower four unsigned 16-bit integers in a …\nConvert packed unsigned 16-bit integers in a to packed …\nZero-extend unsigned 32-bit integers in a to 64-bit …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero-extend unsigned 8-bit integers in a to 16-bit …\nZero-extend the lower eight unsigned 8-bit integers in a …\nZero-extend the lower four unsigned 8-bit integers in a to …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 8 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 8 x 32-bit float values in the 256-bit vector …\nReturns the first element of the input vector of …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nReturns the first element of the input vector of [8 x i32].\nReturns the first element of the input vector of …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nComputes the division of each of the 4 packed 64-bit …\nDivide packed half-precision (16-bit) floating-point …\nComputes the division of each of the 8 packed 32-bit …\nConditionally multiplies the packed single-precision …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nExtracts a 16-bit integer from a, selected with INDEX. …\nExtracts a 32-bit integer from a, selected with INDEX.\nExtracts a 64-bit integer from a, selected with INDEX.\nExtracts an 8-bit integer from a, selected with INDEX. …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of integer data) from a, …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (of integer data) from a selected with …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally adds adjacent pairs of 32-bit integers in a …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nHorizontally subtract adjacent pairs of 32-bit integers in …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nScatter 64-bit integers from a into memory using 32-bit …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopies a to result, and inserts the 16-bit integer i into …\nCopies a to result, and inserts the 32-bit integer i into …\nCopies a to result, and insert the 64-bit integer i into …\nCopies a to result, and inserts the 8-bit integer i into …\nCopies a to result, then inserts 128 bits (composed of 2 …\nCopies a to result, then inserts 128 bits (composed of 4 …\nCopies a to result, then inserts 128 bits from b into …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopies a to dst, then insert 128 bits (of integer data) …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nLoads 256-bits of integer data from unaligned memory into …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nLoads two 128-bit values (composed of 4 packed …\nLoads two 128-bit values (composed of 2 packed …\nLoads two 128-bit values (composed of integer data) from …\nLoad 256-bits (composed of 16 packed 16-bit integers) from …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoad 256-bits (composed of 32 packed 8-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies packed signed 16-bit integers in a and b, …\nVertically multiplies each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 4, "Determines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nA future represents an asynchronous computation obtained …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nConversion into a Future.\nWhich kind of future are we turning this into?\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates a future from a value.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nAttempts to resolve the future to a final value, …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nTypes for which it is safe to share references between …\nTypes that do not require any pinning guarantees.\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nA type storing a usize which is a power of two, and thus …\nThe metadata for a Dyn = dyn SomeTrait trait object type.\nThe type for metadata in pointers and references to Self.\n*mut T but non-zero and covariant.\nProvides the pointer metadata type of any pointed-to type.\nCompares the addresses of the two pointers for equality, …\nCreates a const raw pointer to a place, without creating …\nCreates a mut raw pointer to a place, without creating an …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCreates a new pointer that is dangling, but well-aligned.\nCreates a new pointer that is dangling, but well-aligned.\nExecutes the destructor (if any) of the pointed-to value.\nCompares raw pointers for equality.\nCompares the addresses of the two function pointers for …\nConverts a mutable reference to a raw pointer.\nForms a (possibly-wide) raw pointer from a data pointer …\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to a raw pointer.\nHash a raw pointer.\nExtracts the metadata component of a pointer.\nCreates a null raw pointer.\nCreates a null mutable raw pointer.\nReads the value from src without moving it. This leaves the\nReads the value from src without moving it. This leaves the\nPerforms a volatile read of the value from src without …\nMoves src into the pointed dst, returning the previous dst …\nForms a raw slice from a pointer and a length.\nForms a raw mutable slice from a pointer and a length.\nSwaps the values at two mutable locations of the same …\nSwaps count * size_of::<T>() bytes between the two regions …\nConverts an address back to a pointer, picking up a …\nConverts an address back to a mutable pointer, picking up …\nCreates a pointer with the given address and no provenance.\nCreates a pointer with the given address and no provenance.\nOverwrites a memory location with the given value without …\nSets count * size_of::<T>() bytes of memory starting at dst…\nOverwrites a memory location with the given value without …\nPerforms a volatile write of a memory location with the …\nAn endpoint of a range of keys.\nAn exclusive bound.\nAn inclusive bound.\nBy-value Range iterator.\nBy-value RangeFrom iterator.\nBy-value RangeInclusive iterator.\nOneSidedRange is implemented for built-in range types that …\nA (half-open) range bounded inclusively below and …\nRangeBounds is implemented by Rust’s built-in range …\nA range only bounded inclusively below (start..).\nAn unbounded range (..).\nA range bounded inclusively below and above (start..=end).\nA range only bounded exclusively above (..end).\nA range only bounded inclusively above (..=end).\nObjects that have a notion of successor and predecessor …\nAn infinite endpoint. Indicates that there is no bound in …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive)\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive).\nEnd index bound.\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the range contains no items.\nReturns true if the range contains no items.\nCreates an iterator over the elements within this range.\nCreates an iterator over the elements within this range.\nCreates an iterator over the elements within this range.\nLegacy range types\nReturns the remainder of the range being iterated over.\nReturns the remainder of the range being iterated over.\nReturns the remainder of the range being iterated over.\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nStart index bound.\nReturns the number of successor steps required to get from …\nA (half-open) range bounded inclusively below and …\nA range only bounded inclusively below (start..).\nA range bounded inclusively below and above (start..=end).\nThe upper bound of the range (exclusive).\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nContains the error value\nAn iterator over the value in a Ok variant of a Result.\nAn iterator over a reference to the Ok variant of a Result.\nAn iterator over a mutable reference to the Ok variant of …\nContains the success value\nResult is a type that represents either success (Ok) or …\nThis type, reinterpreted as bytes.\nMap from the elements of the input vector to the output …\nSpecifies the number of lanes in a SIMD vector as a type.\nA SIMD vector mask for N elements of width specified by …\nThe mask element type corresponding to this element type.\nMarker trait for types that may be used as SIMD mask …\nA SIMD vector with the shape of [T; N] but the operations …\nSupporting trait for Simd::cast. Typically doesn’t need …\nMarker trait for types that may be used as SIMD vector …\nStatically guarantees that a lane count is marked as …\nCreates a vector from the elements of another vector.\nConverts SIMD vectors to vectors of bytes\nTraits for comparing and ordering vectors.\nCreates a new vector from the elements of first and second.\nCreates a new mask from the elements of first and second.\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nCreates an integer value from its representation as a byte …\nCreates an integer value from its representation as a byte …\nCreates a native endian integer value from its memory …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nTraits for vectors with numeric elements.\nThe portable SIMD prelude.\nTraits for vectors of pointers.\nConstructs a new SIMD vector by copying elements from …\nCreates a new vector from the elements of vector.\nCreates a new mask from the elements of mask.\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nReturns the memory representation of this integer as a …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nThe mask type returned by each comparison.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the element-wise maximum with other.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nReturns each element with the magnitude of self and the …\nRaw transmutation from an unsigned integer vector type …\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nReturns the maximum of each element.\nReturns the minimum of each element.\nReverses the byte order of each element.\nReverses the byte order of each element.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nWrapping negation.\nBit representation of this SIMD vector type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nA SIMD vector with a different element type.\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nA SIMD vector mask for N elements of width specified by …\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nThe mask type returned by each comparison.\nVector of mutable pointers to the same type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nScalar type contained by this SIMD vector type.\nA SIMD vector with the shape of [T; N] but the operations …\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of floats.\nOperations on SIMD vectors of signed integers.\nOperations on SIMD vectors of mutable pointers.\nParallel Ord.\nParallel PartialEq.\nParallel PartialOrd.\nOperations on SIMD vectors of unsigned integers.\nA SIMD vector of unsigned integers with the same element …\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nProduces a vector where every element has the absolute …\nLanewise absolute value, implemented in Rust. Every …\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nPerforms elementwise conversion of this vector’s …\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nChanges constness without changing the type.\nChanges constness without changing the type.\nReturns each element with the magnitude of self and the …\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nA SIMD vector with one element of type f32.\nA SIMD vector with 16 elements of type f32.\nA SIMD vector with two elements of type f32.\nA SIMD vector with 32 elements of type f32.\nA SIMD vector with four elements of type f32.\nA SIMD vector with 64 elements of type f32.\nA SIMD vector with eight elements of type f32.\nA SIMD vector with one element of type f64.\nA SIMD vector with 16 elements of type f64.\nA SIMD vector with two elements of type f64.\nA SIMD vector with 32 elements of type f64.\nA SIMD vector with four elements of type f64.\nA SIMD vector with 64 elements of type f64.\nA SIMD vector with eight elements of type f64.\nRaw transmutation from an unsigned integer vector type …\nA SIMD vector with one element of type i16.\nA SIMD vector with 16 elements of type i16.\nA SIMD vector with two elements of type i16.\nA SIMD vector with 32 elements of type i16.\nA SIMD vector with four elements of type i16.\nA SIMD vector with 64 elements of type i16.\nA SIMD vector with eight elements of type i16.\nA SIMD vector with one element of type i32.\nA SIMD vector with 16 elements of type i32.\nA SIMD vector with two elements of type i32.\nA SIMD vector with 32 elements of type i32.\nA SIMD vector with four elements of type i32.\nA SIMD vector with 64 elements of type i32.\nA SIMD vector with eight elements of type i32.\nA SIMD vector with one element of type i64.\nA SIMD vector with 16 elements of type i64.\nA SIMD vector with two elements of type i64.\nA SIMD vector with 32 elements of type i64.\nA SIMD vector with four elements of type i64.\nA SIMD vector with 64 elements of type i64.\nA SIMD vector with eight elements of type i64.\nA SIMD vector with one element of type i8.\nA SIMD vector with 16 elements of type i8.\nA SIMD vector with two elements of type i8.\nA SIMD vector with 32 elements of type i8.\nA SIMD vector with four elements of type i8.\nA SIMD vector with 64 elements of type i8.\nA SIMD vector with eight elements of type i8.\nReturns true for each element if its value is neither …\nReturns true for each element if its value is positive …\nReturns true for each element if its value is NaN.\nReturns true for each negative element and false if it is …\nReturns true for each element if its value is neither …\nReturns true for each element that is null.\nReturns true for each element that is null.\nReturns true for each positive element and false if it is …\nReturns true for each element if it has a negative sign, …\nReturns true for each element if it has a positive sign, …\nReturns true for each element if its value is subnormal.\nA SIMD vector with one element of type isize.\nA SIMD vector with 16 elements of type isize.\nA SIMD vector with two elements of type isize.\nA SIMD vector with 32 elements of type isize.\nA SIMD vector with four elements of type isize.\nA SIMD vector with 64 elements of type isize.\nA SIMD vector with eight elements of type isize.\nReturns the number of leading ones in the binary …\nReturns the number of leading ones in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nA SIMD mask with one element for vectors with 16-bit …\nA SIMD mask with 16 elements for vectors with 16-bit …\nA SIMD mask with two elements for vectors with 16-bit …\nA SIMD mask with 32 elements for vectors with 16-bit …\nA SIMD mask with four elements for vectors with 16-bit …\nA SIMD mask with 64 elements for vectors with 16-bit …\nA SIMD mask with eight elements for vectors with 16-bit …\nA SIMD mask with one element for vectors with 32-bit …\nA SIMD mask with 16 elements for vectors with 32-bit …\nA SIMD mask with two elements for vectors with 32-bit …\nA SIMD mask with 32 elements for vectors with 32-bit …\nA SIMD mask with four elements for vectors with 32-bit …\nA SIMD mask with 64 elements for vectors with 32-bit …\nA SIMD mask with eight elements for vectors with 32-bit …\nA SIMD mask with one element for vectors with 64-bit …\nA SIMD mask with 16 elements for vectors with 64-bit …\nA SIMD mask with two elements for vectors with 64-bit …\nA SIMD mask with 32 elements for vectors with 64-bit …\nA SIMD mask with four elements for vectors with 64-bit …\nA SIMD mask with 64 elements for vectors with 64-bit …\nA SIMD mask with eight elements for vectors with 64-bit …\nA SIMD mask with one element for vectors with 8-bit …\nA SIMD mask with 16 elements for vectors with 8-bit …\nA SIMD mask with two elements for vectors with 8-bit …\nA SIMD mask with 32 elements for vectors with 8-bit …\nA SIMD mask with four elements for vectors with 8-bit …\nA SIMD mask with 64 elements for vectors with 8-bit …\nA SIMD mask with eight elements for vectors with 8-bit …\nA SIMD mask with one element for vectors with …\nA SIMD mask with 16 elements for vectors with …\nA SIMD mask with two elements for vectors with …\nA SIMD mask with 32 elements for vectors with …\nA SIMD mask with four elements for vectors with …\nA SIMD mask with 64 elements for vectors with …\nA SIMD mask with eight elements for vectors with …\nTakes the reciprocal (inverse) of each element, 1/x.\nReturns the cumulative bitwise “and” across the …\nReturns the cumulative bitwise “and” across the …\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the maximum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the minimum element in the vector.\nReturns the cumulative bitwise “or” across the …\nReturns the cumulative bitwise “or” across the …\nReducing multiply. Returns the product of the elements of …\nReturns the product of the elements of the vector, with …\nReturns the product of the elements of the vector, with …\nReturns the sum of the elements of the vector.\nReturns the sum of the elements of the vector, with …\nReturns the sum of the elements of the vector, with …\nReturns the cumulative bitwise “xor” across the …\nReturns the cumulative bitwise “xor” across the …\nReverses the order of bits in each elemnent. The least …\nReverses the order of bits in each elemnent. The least …\nLanewise saturating absolute value, implemented in Rust. …\nLanewise saturating add.\nLanewise saturating add.\nLanewise saturating negation, implemented in Rust. As …\nLanewise saturating subtract.\nLanewise saturating subtract.\nReplaces each element with a number that represents its …\nReturns numbers representing the sign of each element.\nRestrict each element to a certain interval unless it is …\nRestrict each element to a certain interval.\nTest if each element is equal to the corresponding element …\nTest if each element is greater than or equal to the …\nTest if each element is greater than the corresponding …\nTest if each element is less than or equal to the …\nTest if each element is less than the corresponding …\nReturns the maximum of each element.\nReturns the element-wise maximum with other.\nReturns the minimum of each element.\nReturns the element-wise minimum with other.\nTest if each element is equal to the corresponding element …\nConstructs a new SIMD vector by copying elements from …\nReverses the byte order of each element.\nReverses the byte order of each element.\nRaw transmutation to an unsigned integer vector type with …\nConverts each element from radians to degrees.\nRounds toward zero and converts to the same-width integer …\nConverts each element from degrees to radians.\nReturns the number of trailing ones in the binary …\nReturns the number of trailing ones in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nA SIMD vector with one element of type u16.\nA SIMD vector with 16 elements of type u16.\nA SIMD vector with two elements of type u16.\nA SIMD vector with 32 elements of type u16.\nA SIMD vector with four elements of type u16.\nA SIMD vector with 64 elements of type u16.\nA SIMD vector with eight elements of type u16.\nA SIMD vector with one element of type u32.\nA SIMD vector with 16 elements of type u32.\nA SIMD vector with two elements of type u32.\nA SIMD vector with 32 elements of type u32.\nA SIMD vector with four elements of type u32.\nA SIMD vector with 64 elements of type u32.\nA SIMD vector with eight elements of type u32.\nA SIMD vector with one element of type u64.\nA SIMD vector with 16 elements of type u64.\nA SIMD vector with two elements of type u64.\nA SIMD vector with 32 elements of type u64.\nA SIMD vector with four elements of type u64.\nA SIMD vector with 64 elements of type u64.\nA SIMD vector with eight elements of type u64.\nA SIMD vector with one element of type u8.\nA SIMD vector with 16 elements of type u8.\nA SIMD vector with two elements of type u8.\nA SIMD vector with 32 elements of type u8.\nA SIMD vector with four elements of type u8.\nA SIMD vector with 64 elements of type u8.\nA SIMD vector with eight elements of type u8.\nA SIMD vector with one element of type usize.\nA SIMD vector with 16 elements of type usize.\nA SIMD vector with two elements of type usize.\nA SIMD vector with 32 elements of type usize.\nA SIMD vector with four elements of type usize.\nA SIMD vector with 64 elements of type usize.\nA SIMD vector with eight elements of type usize.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nWrapping negation.\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nVector of const pointers with the same number of elements.\nVector of const pointers with the same number of elements.\nVector of constant pointers to the same type.\nVector of isize with the same number of elements.\nVector of isize with the same number of elements.\nMask type used for manipulating this SIMD vector type.\nMask type used for manipulating this SIMD vector type.\nVector of mutable pointers to the same type.\nOperations on SIMD vectors of constant pointers.\nOperations on SIMD vectors of mutable pointers.\nVector of usize with the same number of elements.\nVector of usize with the same number of elements.\nGets the “address” portion of the pointer.\nGets the “address” portion of the pointer.\nCasts to a pointer of another type.\nCasts to a pointer of another type.\nChanges constness without changing the type.\nChanges constness without changing the type.\nExposes the “provenance” part of the pointer for …\nExposes the “provenance” part of the pointer for …\nReturns true for each element that is null.\nReturns true for each element that is null.\nCreates a new pointer with the given address.\nCreates a new pointer with the given address.\nConverts an address back to a pointer, picking up a …\nConverts an address back to a pointer, picking up a …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nCalculates the offset from a pointer using wrapping …\nAn iterator over a slice in (non-overlapping) chunks (N …\nAn iterator over a slice in (non-overlapping) mutable …\nA windowed iterator over a slice in overlapping chunks (N …\nAn iterator over slice in (non-overlapping) chunks …\nAn iterator over slice in (non-overlapping) mutable chunks …\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over the escaped version of a byte slice.\nThe error type returned by get_many_mut<N>.\nThe element type of the slice being matched on.\nImmutable slice iterator\nMutable slice iterator.\nThe output type returned by methods.\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) chunks (…\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over a slice in (non-overlapping) mutable …\nAn iterator over subslices separated by elements that …\nAn iterator over the subslices of the vector which are …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nA helper trait used for indexing operations.\nPatterns in slices - currently, only used by strip_prefix …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over the mutable subslices of the vector which …\nAn iterator over subslices separated by elements that …\nAn iterator over subslices separated by elements that …\nAn iterator over overlapping subslices of length size.\nCurrently, the consumers of SlicePattern need a slice.\nReturns the argument unchanged.\nConverts a reference to T into a slice of length 1 …\nForms a mutable slice from a pointer range.\nForms a slice from a pointer range.\nForms a slice from a pointer and a length.\nPerforms the same functionality as from_raw_parts, except …\nConverts a reference to T into a slice of length 1 …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nReturns a pointer to the output at this location, without …\nReturns a mutable pointer to the output at this location, …\nReturns a shared reference to the output at this location, …\nReturns a mutable reference to the output at this …\nCalls U::from(self).\nPure Rust memchr implementation, taken from rust-memchr\nPerforms bounds checking of a range.\nPerforms bounds checking of a range without panicking.\nReturns the first index matching the byte x in text.\nReturns the last index matching the byte x in text.\nAn iterator over the bytes of a string slice.\nAn iterator over the chars of a string slice, and their …\nAn iterator over the chars of a string slice.\nAn iterator of u16 over the string encoded as UTF-16.\nThe associated error which can be returned from parsing.\nThe return type of str::escape_debug.\nThe return type of str::escape_default.\nThe return type of str::escape_unicode.\nParse a value from a string\nAn iterator over the lines of a string, as string slices.\nCreated with the method lines_any.\nCreated with the method match_indices.\nCreated with the method matches.\nAn error returned when parsing a bool using from_str fails\nCreated with the method rmatch_indices.\nCreated with the method rmatches.\nCreated with the method rsplit.\nCreated with the method rsplitn.\nCreated with the method rsplit_terminator.\nCreated with the method split.\nAn iterator over the non-ASCII-whitespace substrings of a …\nAn iterator over the substrings of a string, terminated by …\nCreated with the method splitn.\nCreated with the method split_terminator.\nAn iterator over the non-whitespace substrings of a string,\nAn item returned by the Utf8Chunks iterator.\nAn iterator used to decode a slice of mostly UTF-8 bytes …\nErrors which can occur when attempting to interpret a …\nCreates a &str from a pointer and a length.\nCreates a &mut str from a pointer and a length.\nParses a string s to return a value of this type.\nConverts a slice of bytes to a string slice.\nConverts a mutable slice of bytes to a mutable string …\nConverts a slice of bytes to a string slice without …\nConverts a slice of bytes to a string slice without …\nReads the next code point out of a byte iterator (assuming …\nThe string Pattern API.\nGiven a first byte, determines how many bytes are in this …\nAssociated type for <&[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <[char; N] as Pattern>::Searcher<'a>.\nAssociated type for <F as Pattern>::Searcher<'a>.\nAssociated type for <char as Pattern>::Searcher<'a>.\nAssociated type for <&[char] as Pattern>::Searcher<'a>.\nExpresses that every byte of the haystack has been …\nA marker trait to express that a ReverseSearcher can be …\nExpresses that a match of the pattern has been found at …\nA string pattern.\nExpresses that haystack[a..b] has been rejected as a …\nA reverse searcher for a string pattern.\nResult of calling Searcher::next() or …\nA searcher for a string pattern.\nAssociated searcher for this pattern\nAssociated type for <&str as Pattern>::Searcher<'a>.\nGetter for the underlying string to be searched in\nConstructs the associated searcher from self and the …\nChecks whether the pattern matches anywhere in the haystack\nChecks whether the pattern matches at the front of the …\nChecks whether the pattern matches at the back of the …\nPerforms the next search step starting from the front.\nPerforms the next search step starting from the back.\nFinds the next Match result. See next().\nFinds the next Match result. See next_back().\nFinds the next Reject result. See next() and next_match().\nFinds the next Reject result. See next_back().\nRemoves the pattern from the front of haystack, if it …\nRemoves the pattern from the back of haystack, if it …\nExclusive provides only mutable access, also referred to …\nAtomic types\nAn AtomicBool initialized to false.\nAn AtomicIsize initialized to 0.\nAn AtomicUsize initialized to 0.\nHas the effects of both Acquire and Release together: For …\nWhen coupled with a load, if the loaded value was written …\nA boolean type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nA raw pointer type which can be safely shared between …\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAn integer type which can be safely shared between threads.\nAtomic memory orderings\nNo ordering constraints, only atomic operations.\nWhen coupled with a store, all previous operations become …\nLike Acquire/Release/AcqRel (for load, store, and …\nA “compiler-only” atomic fence.\nAn atomic fence.\nSignals the processor that it is inside a busy-wait …\nThe context of an asynchronous task.\nA Builder used to construct a Context instance with …\nA LocalWaker is analogous to a Waker, but it does not …\nRepresents that a value is not ready yet.\nIndicates whether a value is available or if the current …\nA RawWaker allows the implementor of a task executor to …\nA virtual function pointer table (vtable) that specifies …\nRepresents that a value is immediately ready.\nA Waker is a handle for waking up a task by notifying its …\nExtracts the successful type of a Poll<T>.\nA Duration type to represent a span of time, typically …\nAn error which can be returned when converting a …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nChecks that the preconditions of an unsafe function are …\nReturns whether we should perform some UB-checking at …\nThe version of Unicode that the Unicode parts of char and …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nMemory allocation APIs.\nUtilities for dynamic typing or type reflection.\nSIMD and vendor intrinsics module.\nUtilities for the array primitive type.\nOperations on ASCII strings and characters.\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other …\nUnstable module containing the unstable assert_matches …\nAsserts that two expressions are not equal to each other …\nComposable asynchronous iteration.\nSupport for capturing a stack backtrace of an OS thread\nA module for working with borrowed data.\nThe Box<T> type for heap allocation.\nShareable mutable containers.\nEvaluates boolean combinations of configuration flags at …\nA macro for defining #[cfg] match-like statements.\nUtilities for the char primitive type.\nThe Clone trait for types that cannot be ‘implicitly …\nUtilities for comparing and ordering values.\nCollection types.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nSame as format_args, but can be used in some const …\nTraits for conversions between types.\nPrints and returns the value of a given expression for …\nAsserts that a boolean expression is true at runtime.\nAsserts that two expressions are equal to each other.\nAsserts that two expressions are not equal to each other.\nThe Default trait for types with a default value.\nInspection and manipulation of the process’s environment.\nInspects an environment variable at compile time.\nPrints to the standard error.\nPrints to the standard error, with a newline.\nInterfaces for working with Errors.\nConstants for the f128 double-precision floating point …\nConstants for the f16 double-precision floating point type.\nConstants for the f32 single-precision floating point type.\nConstants for the f64 double-precision floating point type.\nUtilities related to FFI bindings.\nExpands to the file name in which it was invoked.\nUtilities for formatting and printing Strings.\nCreates a String using interpolation of runtime …\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nFilesystem manipulation operations.\nAsynchronous basic functionality.\nGeneric hashing support.\nHints to compiler that affects how code should be emitted …\nRedundant constants module for the i128 primitive type.\nRedundant constants module for the i16 primitive type.\nRedundant constants module for the i32 primitive type.\nRedundant constants module for the i64 primitive type.\nRedundant constants module for the i8 primitive type.\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nCompiler intrinsics.\nTraits, helpers, and type definitions for core I/O …\nA macro to test at runtime whether a CPU feature is …\nRedundant constants module for the isize primitive type.\nComposable external iteration.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nPrimitive traits and types representing basic properties …\nReturns whether the given expression matches the provided …\nBasic functions for dealing with memory.\nExpands to a string that represents the current module …\nNetworking primitives for TCP/UDP communication.\nAdditional functionality for numerics.\nOverloadable operators.\nOptional values.\nOptionally inspects an environment variable at compile …\nOS-specific functionality.\nPanic support in the standard library.\nPanics the current thread.\nHelper module for exporting the pattern_type macro\nCross-platform path manipulation.\nTypes that pin data to a location in memory.\nModule for anonymous pipe\nThe Rust Prelude\nThis module reexports the primitive types to allow usage …\nPrints to the standard output.\nPrints to the standard output, with a newline.\nA module for working with processes.\nManually manage memory through raw pointers.\nSingle-threaded reference-counting pointers. ‘Rc’ …\nError handling with the Result type.\nPortable SIMD module.\nUtilities for the slice primitive type.\nUtilities for the str primitive type.\nA UTF-8–encoded, growable string.\nStringifies its arguments.\nUseful synchronization primitives.\nTypes and Traits for working with asynchronous tasks.\nNative threads.\nDeclare a new thread local storage key of type …\nTemporal quantification.\nIndicates unfinished code.\nEnables or disables tracing functionality used for …\nUnwraps a result or propagates its error.\nRedundant constants module for the u128 primitive type.\nRedundant constants module for the u16 primitive type.\nRedundant constants module for the u32 primitive type.\nRedundant constants module for the u64 primitive type.\nRedundant constants module for the u8 primitive type.\nIndicates unimplemented code by panicking with a message …\nIndicates unreachable code.\nRedundant constants module for the usize primitive type.\nA contiguous growable array type with heap-allocated …\nCreates a Vec containing the arguments.\nWrites formatted data into a buffer.\nWrites formatted data into a buffer, with a newline …\nThe AllocError error indicates an allocation failure that …\nAn implementation of Allocator can allocate, grow, shrink, …\nThe global memory allocator.\nA memory allocator that can be registered as the standard …\nLayout of a block of memory.\nThe parameters given to Layout::from_size_align or some …\nThe default memory allocator provided by the operating …\nThe minimum byte alignment for a memory block of this …\nCreates a layout describing the record that can hold a …\nAllocates memory with the global allocator.\nAllocates memory as described by the given layout.\nAllocates zero-initialized memory with the global …\nBehaves like alloc, but also ensures that the contents are …\nAttempts to allocate a block of memory.\nBehaves like allocate, but also ensures that the returned …\nCreates a layout describing the record for a [T; n].\nCreates a “by reference” adapter for this instance of …\nCreates a NonNull that is dangling, but well-aligned for …\nDeallocates memory with the global allocator.\nDeallocates the block of memory at the given ptr pointer …\nDeallocates the memory referenced by ptr.\nCreates a layout describing the record for self followed by\nCreates a layout describing the record for self followed by\nProduces layout describing a record that could be used to …\nProduces layout describing a record that could be used to …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs a Layout from a given size and align, or …\nCreates a layout, bypassing all checks.\nAttempts to extend the memory block.\nBehaves like grow, but also ensures that the new contents …\nSignals a memory allocation error.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConstructs a Layout suitable for holding a value of type T.\nCreates a layout by rounding the size of this layout up to …\nReturns the amount of padding we must insert after self to …\nReallocates memory with the global allocator.\nShrinks or grows a block of memory to the given new_size …\nCreates a layout describing the record for n instances of …\nCreates a layout describing the record for n instances of …\nRegisters a custom allocation error hook, replacing any …\nAttempts to shrink the memory block.\nThe minimum size in bytes for a memory block of this …\nUnregisters the current allocation error hook, returning …\nA trait to emulate dynamic typing.\nA TypeId represents a globally unique identifier for a …\nReturns some mutable reference to the inner value if it is …\nForwards to the method defined on the type Any.\nForwards to the method defined on the type dyn Any.\nForwards to the method defined on the type Any.\nForwards to the method defined on the type dyn Any.\nReturns a mutable reference to the inner value as type …\nReturns some reference to the inner value if it is of type …\nForwards to the method defined on the type Any.\nForwards to the method defined on the type dyn Any.\nReturns a reference to the inner value as type dyn T.\nForwards to the method defined on the type Any.\nForwards to the method defined on the type dyn Any.\nReturns the argument unchanged.\nCalls U::from(self).\nReturns true if the inner type is the same as T.\nForwards to the method defined on the type Any.\nForwards to the method defined on the type dyn Any.\nReturns the TypeId of the type this generic function has …\nGets the TypeId of self.\nReturns the name of a type as a string slice.\nReturns the type name of the pointed-to value as a string …\nInline assembly.\nModule-level inline assembly.\nThis macro tests, at runtime, whether an aarch64 feature …\nChecks if arm feature is enabled.\nChecks if mips64 feature is enabled.\nChecks if mips feature is enabled.\nChecks if powerpc feature is enabled.\nChecks if powerpc feature is enabled.\nA macro to test at runtime whether instruction sets are …\nA macro to test at runtime whether a CPU feature is …\nPlatform-specific intrinsics for the x86_64 platform.\nResult of the cpuid instruction.\nEqual (ordered, non-signaling)\nEqual (ordered, signaling)\nEqual (unordered, non-signaling)\nEqual (unordered, signaling)\nFalse (ordered, non-signaling)\nFalse (ordered, signaling)\nGreater-than-or-equal (ordered, non-signaling)\nGreater-than-or-equal (ordered, signaling)\nGreater-than (ordered, non-signaling)\nGreater-than (ordered, signaling)\nLess-than-or-equal (ordered, non-signaling)\nLess-than-or-equal (ordered, signaling)\nLess-than (ordered, non-signaling)\nLess-than (ordered, signaling)\nNot-equal (ordered, non-signaling)\nNot-equal (ordered, signaling)\nNot-equal (unordered, non-signaling)\nNot-equal (unordered, signaling)\nNot-greater-than-or-equal (unordered, non-signaling)\nNot-greater-than-or-equal (unordered, signaling)\nNot-greater-than (unordered, non-signaling)\nNot-greater-than (unordered, signaling)\nNot-less-than-or-equal (unordered, non-signaling)\nNot-less-than-or-equal (unordered, signaling)\nNot-less-than (unordered, non-signaling)\nNot-less-than (unordered, signaling)\nOrdered (non-signaling)\nOrdered (signaling)\nTrue (unordered, non-signaling)\nTrue (unordered, signaling)\nUnordered (non-signaling)\nUnordered (signaling)\nThe _MM_CMPINT_ENUM type used to specify comparison …\nEqual\nFalse\nLess-than-or-equal\nLess-than\nNot-equal\nNot less-than-or-equal\nNot less-than\nTrue\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_STATE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_FLUSH_ZERO_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nround up and do not suppress exceptions\nuse MXCSR.RC; see vendor::_MM_SET_ROUNDING_MODE\nround down and do not suppress exceptions\nuse MXCSR.RC and suppress exceptions; see …\nround to nearest and do not suppress exceptions\nsuppress exceptions\ndo not suppress exceptions\nuse MXCSR.RC and do not suppress exceptions; see …\nround to nearest\nround down\nround up\ntruncate\ntruncate and do not suppress exceptions\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nSee _mm_prefetch.\nThe MM_MANTISSA_NORM_ENUM type used to specify mantissa …\nThe MM_MANTISSA_SIGN_ENUM type used to specify mantissa …\ninterval [1, 2)\ninterval [0.5, 1)\ninterval [0.5, 2)\ninterval [0.75, 1.5)\nDEST = NaN if sign(SRC) = 1\nsign = sign(SRC)\nsign = 0\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _MM_GET_EXCEPTION_MASK\nSee _mm_setcsr\nSee _mm_setcsr\nThe MM_PERM_ENUM type used to specify shuffle operations …\nSee _mm_setcsr\nSee _MM_GET_ROUNDING_MODE\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nSee _mm_setcsr\nA utility function for creating masks to use with Intel …\nTranspose the 4x4 matrix formed by 4 rows of __m128 in …\nMask only: return the bit mask\nFor each character in a, find if it is in b (Default)\nThe strings defined by a and b are equal\nSearch for the defined substring in the target\nFor each character in a, determine if …\nIndex only: return the least significant bit (Default)\nNegates results only before the end of the string\nDo not negate results before the end of the string\nIndex only: return the most significant bit\nNegates results\nDo not negate results (Default)\nString contains signed 8-bit characters\nString contains unsigned 16-bit characters\nString contains unsigned 8-bit characters (Default)\nMask only: return the byte mask\nString contains unsigned 16-bit characters\nTransaction abort due to the transaction using too much …\nTransaction abort due to a memory conflict with another …\nTransaction abort due to a debug trap.\nTransaction explicitly aborted with xabort. The parameter …\nTransaction abort in a inner nested transaction.\nTransaction retry is possible.\nTransaction successfully started.\nXFEATURE_ENABLED_MASK for XCR\nSee __cpuid_count.\nReturns the result of the cpuid instruction for a given …\nReturns the highest-supported leaf (EAX) and sub-leaf (ECX…\n128-bit wide set of four f32 types, x86-specific\n128-bit wide set of eight u16 types, x86-specific\n128-bit wide set of two f64 types, x86-specific\n128-bit wide set of 8 f16 types, x86-specific\n128-bit wide integer vector type, x86-specific\n256-bit wide set of eight f32 types, x86-specific\n256-bit wide set of 16 u16 types, x86-specific\n256-bit wide set of four f64 types, x86-specific\n256-bit wide set of 16 f16 types, x86-specific\n256-bit wide integer vector type, x86-specific\n512-bit wide set of sixteen f32 types, x86-specific\n512-bit wide set of 32 u16 types, x86-specific\n512-bit wide set of eight f64 types, x86-specific\n512-bit wide set of 32 f16 types, x86-specific\n512-bit wide integer vector type, x86-specific\nThe __mmask16 type used in AVX-512 intrinsics, a 16-bit …\nThe __mmask32 type used in AVX-512 intrinsics, a 32-bit …\nThe __mmask64 type used in AVX-512 intrinsics, a 64-bit …\nThe __mmask8 type used in AVX-512 intrinsics, a 8-bit …\nReads the current value of the processor’s time-stamp …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nBitwise logical AND of inverted a with b.\nBitwise logical AND of inverted a with b.\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits in range [start, start + length) from a into …\nExtracts bits of a specified by control into the least …\nExtracts bits of a specified by control into the least …\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p.\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nReturns the bit in position b of the memory addressed by p…\nClears all bits below the least significant zero bit of x.\nClears all bits below the least significant zero bit of x.\nSets all bits of x to 1 except for the least significant …\nSets all bits of x to 1 except for the least significant …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x and clears all …\nSets the least significant zero bit of x.\nSets the least significant zero bit of x.\nSets all bits of x below the least significant one.\nSets all bits of x below the least significant one.\nExtracts lowest set isolated bit.\nExtracts lowest set isolated bit.\nClears least significant bit and sets all other bits.\nClears least significant bit and sets all other bits.\nGets mask up to lowest set bit.\nGets mask up to lowest set bit.\nResets the lowest set bit of x.\nResets the lowest set bit of x.\nReturns an integer with the reversed byte order of x\nReturns an integer with the reversed byte order of x\nZeroes higher bits of a >= index.\nZeroes higher bits of a >= index.\nConvert 16-bit mask a into an integer value, and store the …\nConvert 32-bit mask a into an integer value, and store the …\nConvert 64-bit mask a into an integer value, and store the …\nConvert 8-bit mask a to a 32-bit integer value and store …\nConvert 32-bit integer value a to an 16-bit mask and store …\nConvert integer value a into an 32-bit mask, and store the …\nConvert 32-bit integer value a to an 8-bit mask and store …\nConvert integer value a into an 64-bit mask, and store the …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nRestores the XMM, MMX, MXCSR, and x87 FPU registers from …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nSaves the x87 FPU, MMX technology, XMM, and MXCSR …\nAdd 16-bit masks a and b, and store the result in dst.\nAdd 32-bit masks in a and b, and store the result in k.\nAdd 64-bit masks in a and b, and store the result in k.\nAdd 8-bit masks a and b, and store the result in dst.\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise AND of 32-bit masks a and b, and store …\nCompute the bitwise AND of 64-bit masks a and b, and store …\nBitwise AND of 8-bit masks a and b, and store the result …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCompute the bitwise NOT of 32-bit masks a and then AND …\nCompute the bitwise NOT of 64-bit masks a and then AND …\nBitwise AND NOT of 8-bit masks a and b, and store the …\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise NOT of 32-bit mask a, and store the …\nCompute the bitwise NOT of 64-bit mask a, and store the …\nBitwise NOT of 8-bit mask a, and store the result in dst.\nCompute the bitwise OR of 16-bit masks a and b, and store …\nCompute the bitwise OR of 32-bit masks a and b, and store …\nCompute the bitwise OR of 64-bit masks a and b, and store …\nBitwise OR of 8-bit masks a and b, and store the result in …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nCompute the bitwise OR of 16-bit masks a and b. If the …\nCompute the bitwise OR of 32-bit masks a and b. If the …\nCompute the bitwise OR of 64-bit masks a and b. If the …\nCompute the bitwise OR of 8-bit masks a and b. If the …\nShift 16-bit mask a left by count bits while shifting in …\nShift the bits of 32-bit mask a left by count while …\nShift the bits of 64-bit mask a left by count while …\nShift 8-bit mask a left by count bits while shifting in …\nShift 16-bit mask a right by count bits while shifting in …\nShift the bits of 32-bit mask a right by count while …\nShift the bits of 64-bit mask a right by count while …\nShift 8-bit mask a right by count bits while shifting in …\nCompute the bitwise AND of 16-bit masks a and b, and if …\nCompute the bitwise AND of 32-bit masks a and b, and if …\nCompute the bitwise AND of 64-bit masks a and b, and if …\nCompute the bitwise AND of 8-bit masks a and b, and if the …\nCompute the bitwise NOT of 16-bit mask a and then AND with …\nCompute the bitwise NOT of 32-bit mask a and then AND with …\nCompute the bitwise NOT of 64-bit mask a and then AND with …\nCompute the bitwise NOT of 8-bit mask a and then AND with …\nCompute the bitwise AND of 16-bit masks a and b, if the …\nCompute the bitwise AND of 32-bit masks a and b, if the …\nCompute the bitwise AND of 64-bit masks a and b, if the …\nCompute the bitwise AND of 8-bit masks a and b, if the …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XNOR of 32-bit masks a and b, and …\nCompute the bitwise XNOR of 64-bit masks a and b, and …\nBitwise XNOR of 8-bit masks a and b, and store the result …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nCompute the bitwise XOR of 32-bit masks a and b, and store …\nCompute the bitwise XOR of 64-bit masks a and b, and store …\nBitwise XOR of 8-bit masks a and b, and store the result …\nLoad 16-bit mask from memory\nLoad 32-bit mask from memory into k.\nLoad 64-bit mask from memory into k.\nLoad 8-bit mask from memory\nCounts the leading most significant zero bits.\nCounts the leading most significant zero bits.\nComputes the absolute values of packed 16-bit integers in a…\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute values of packed 8-bit integers in a.\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds packed single-precision (32-bit) floating-point …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively adds and subtracts packed double-precision …\nAlternatively adds and subtracts packed single-precision …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenates pairs of 16-byte blocks in a and b into a …\nComputes the bitwise AND of a packed double-precision …\nComputes the bitwise AND of packed single-precision …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise NOT of packed double-precision …\nComputes the bitwise NOT of packed single-precision …\nComputes the bitwise NOT of 256 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlends packed 16-bit integers from a and b using control …\nBlends packed 32-bit integers from a and b using control …\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBlends packed 8-bit integers from a and b using mask.\nBlends packed double-precision (64-bit) floating-point …\nBlends packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcasts 128 bits from memory (composed of 2 packed …\nBroadcasts 128 bits from memory (composed of 4 packed …\nBroadcasts a double-precision (64-bit) floating-point …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nCasts vector of type __m128d to type __m256d; the upper …\nCasts vector of type __m256d to type __m128d.\nCast vector of type __m256d to type __m256h. This …\nCast vector of type __m256d to type __m256.\nCasts vector of type __m256d to type __m256i.\nCast vector of type __m128h to type __m256h. The upper 8 …\nCast vector of type __m256h to type __m128h. This …\nCast vector of type __m256h to type __m256d. This …\nCast vector of type __m256h to type __m256. This intrinsic …\nCast vector of type __m256h to type __m256i. This …\nCasts vector of type __m128 to type __m256; the upper 128 …\nCasts vector of type __m256 to type __m128.\nCast vector of type __m256 to type __m256d.\nCast vector of type __m256 to type __m256h. This intrinsic …\nCasts vector of type __m256 to type __m256i.\nCasts vector of type __m128i to type __m256i; the upper …\nCasts vector of type __m256i to type __m256d.\nCast vector of type __m256i to type __m256h. This …\nCasts vector of type __m256i to type __m256.\nCasts vector of type __m256i to type __m128i.\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality.\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nSign-extend 16-bit integers to 32-bit integers.\nSign-extend 16-bit integers to 64-bit integers.\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign-extend 32-bit integers to 64-bit integers.\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts packed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign-extend 8-bit integers to 16-bit integers.\nSign-extend 8-bit integers to 32-bit integers.\nSign-extend 8-bit integers to 64-bit integers.\nZeroes extend packed unsigned 16-bit integers in a to …\nZero-extend the lower four unsigned 16-bit integers in a …\nConvert packed unsigned 16-bit integers in a to packed …\nZero-extend unsigned 32-bit integers in a to 64-bit …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero-extend unsigned 8-bit integers in a to 16-bit …\nZero-extend the lower eight unsigned 8-bit integers in a …\nZero-extend the lower four unsigned 8-bit integers in a to …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 8 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 8 x 32-bit float values in the 256-bit vector …\nReturns the first element of the input vector of …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nReturns the first element of the input vector of [8 x i32].\nReturns the first element of the input vector of …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nComputes the division of each of the 4 packed 64-bit …\nDivide packed half-precision (16-bit) floating-point …\nComputes the division of each of the 8 packed 32-bit …\nConditionally multiplies the packed single-precision …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nExtracts a 16-bit integer from a, selected with INDEX. …\nExtracts a 32-bit integer from a, selected with INDEX.\nExtracts a 64-bit integer from a, selected with INDEX.\nExtracts an 8-bit integer from a, selected with INDEX. …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of integer data) from a, …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtracts 128 bits (of integer data) from a selected with …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally adds adjacent pairs of 32-bit integers in a …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontal addition of adjacent pairs in the two packed …\nHorizontally adds adjacent pairs of 16-bit integers in a …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nHorizontally subtract adjacent pairs of 32-bit integers in …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontal subtraction of adjacent pairs in the two packed …\nHorizontally subtract adjacent pairs of 16-bit integers in …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nScatter 64-bit integers from a into memory using 32-bit …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopies a to result, and inserts the 16-bit integer i into …\nCopies a to result, and inserts the 32-bit integer i into …\nCopies a to result, and insert the 64-bit integer i into …\nCopies a to result, and inserts the 8-bit integer i into …\nCopies a to result, then inserts 128 bits (composed of 2 …\nCopies a to result, then inserts 128 bits (composed of 4 …\nCopies a to result, then inserts 128 bits from b into …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopies a to dst, then insert 128 bits (of integer data) …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nLoads 256-bits of integer data from unaligned memory into …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nLoads two 128-bit values (composed of 4 packed …\nLoads two 128-bit values (composed of 2 packed …\nLoads two 128-bit values (composed of integer data) from …\nLoad 256-bits (composed of 16 packed 16-bit integers) from …\nLoad 256-bits (composed of 8 packed 32-bit integers) from …\nLoad 256-bits (composed of 4 packed 64-bit integers) from …\nLoad 256-bits (composed of 32 packed 8-bit integers) from …\nLoads 256-bits (composed of 4 packed double-precision …\nLoad 256-bits (composed of 16 packed half-precision …\nLoads 256-bits (composed of 8 packed single-precision …\nLoads 256-bits of integer data from memory into result. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies packed signed 16-bit integers in a and b, …\nVertically multiplies each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-5-.js b/search.desc/wiwi/wiwi-desc-5-.js index 797f0231a..f25b17cfd 100644 --- a/search.desc/wiwi/wiwi-desc-5-.js +++ b/search.desc/wiwi/wiwi-desc-5-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 5, "Extract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nLoads 8 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 8 single-precision (32-bit) floating-point elements …\nLoads 4 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nCreates mask from the most significant bit of each 8-bit …\nSets each bit of the returned mask based on the most …\nSets each bit of the returned mask based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nComputes the sum of absolute differences (SADs) of …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed unsigned 16-bit integers in a and b, …\nMultiplies packed 16-bit integers in a and b, producing …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed 32-bit integers in a and b, producing\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR packed double-precision (64-bit) …\nComputes the bitwise OR packed single-precision (32-bit) …\nComputes the bitwise OR of 256 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nShuffles 256 bits (composed of 4 packed double-precision …\nShuffles 256 bits (composed of 8 packed single-precision …\nShuffles 128-bits (composed of integer data) selected by …\nShuffles 128-bits of integer data selected by imm8 from a …\nPermutes 64-bit integers from a using control mask imm8.\nShuffles 64-bit floating-point elements in a across lanes …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nPermutes packed 32-bit integers from a according to the …\nShuffles eight 32-bit floating-point elements in a across …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nComputes the approximate reciprocal of packed …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nComputes the approximate reciprocal square root of packed …\nComputes the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements of returned …\nBroadcasts 32-bit integer a to all elements of returned …\nBroadcasts 64-bit integer a to all elements of returned …\nBroadcasts 8-bit integer a to all elements of returned …\nBroadcasts double-precision (64-bit) floating-point value a…\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcasts single-precision (32-bit) floating-point value a…\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nReturns vector of type __m256d with all elements set to …\nReturn vector of type __m256h with all elements set to …\nReturns vector of type __m256 with all elements set to …\nReturns vector of type __m256i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in 128-bit lanes of a using the …\nShuffles bytes from a according to the content of b.\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles 16-bit integers in the high 64 bits of 128-bit …\nShuffles 16-bit integers in the low 64 bits of 128-bit …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nStores the high and low 128-bit halves (each composed of 4 …\nStores the high and low 128-bit halves (each composed of 2 …\nStores the high and low 128-bit halves (each composed of …\nStore 256-bits (composed of 16 packed 16-bit integers) …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStore 256-bits (composed of 32 packed 8-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nLoad 256-bits of integer data from memory into dst using a …\nMoves double-precision values from a 256-bit vector of …\nMoves single-precision floating point values from a …\nMoves integer data from a 256-bit integer vector to a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtracts packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nReturns vector of type __m256d with indeterminate elements.\nReturn vector of type __m256h with undefined elements. In …\nReturns vector of type __m256 with indeterminate elements. …\nReturns vector of type __m256i with with indeterminate …\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of packed double-precision …\nComputes the bitwise XOR of packed single-precision …\nComputes the bitwise XOR of 256 bits (representing integer …\nZeroes the contents of all XMM or YMM registers.\nZeroes the upper 128 bits of all YMM registers; the lower …\nConstructs a 256-bit floating-point vector of [4 x double] …\nCast vector of type __m256h to type __m128h. The upper 8 …\nConstructs a 256-bit floating-point vector of [8 x float] …\nConstructs a 256-bit integer vector from a 128-bit integer …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed half-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of 512 bits (composed of packed …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise AND of 512 bits (representing integer …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of 512 bits (composed of packed …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nCompute the bitwise NOT of 512 bits (representing integer …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nShift 128-bit lanes in a left by imm8 bytes while shifting …\nShift 128-bit lanes in a right by imm8 bytes while …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m512d to type __m128d. This …\nCast vector of type __m512d to type __m256d. This …\nCast vector of type __m512d to type __m512h. This …\nCast vector of type __m512d to type __m512. This intrinsic …\nCast vector of type __m512d to type __m512i. This …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m512h to type __m128h. This …\nCast vector of type __m512h to type __m256h. This …\nCast vector of type __m512h to type __m512d. This …\nCast vector of type __m512h to type __m512. This intrinsic …\nCast vector of type __m512h to type __m512i. This …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m512 to type __m128. This intrinsic …\nCast vector of type __m512 to type __m256. This intrinsic …\nCast vector of type __m512 to type __m512d. This intrinsic …\nCast vector of type __m512 to type __m512h. This intrinsic …\nCast vector of type __m512 to type __m512i. This intrinsic …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nCast vector of type __m512i to type __m512d. This …\nCast vector of type __m512i to type __m512h. This …\nCast vector of type __m512i to type __m512. This intrinsic …\nCast vector of type __m512i to type __m128i. This …\nCast vector of type __m512i to type __m256i. This …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nCopy the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nCopy the lower 32-bit integer in a to dst.\nCopy the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nConverts integer mask into bitmask, storing the result in …\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCopy 16-bit mask a to k.\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise OR of 16-bit masks a and b, and store …\nPerforms bitwise OR between k1 and k2, storing the result …\nPerforms bitwise OR between k1 and k2, storing the result …\nUnpack and interleave 8 bits from masks a and b, and store …\nUnpack and interleave 32 bits from masks a and b, and …\nUnpack and interleave 16 bits from masks a and b, and …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoad 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nLoad 512-bits (composed of 32 packed 16-bit integers) from …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 64 packed 8-bit integers) from …\nLoads 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoads 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nVertically multiply each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nConverts bit mask k1 into an integer value, storing the …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition using …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed unsigned 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication …\nReduce the packed 64-bit integers in a by multiplication …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR using …\nReduce the packed 64-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 5, "Convert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 8 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 8 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 4 64-bit integer elements from a to memory starting …\nStores 4 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate a and b into a 64-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 4 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 8 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nZero extend packed unsigned 8-bit integers in the low 4 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b, and returns the …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nLoads 8 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 8 single-precision (32-bit) floating-point elements …\nLoads 4 32-bit integer elements from memory starting at …\nLoads 4 64-bit integer elements from memory starting at …\nLoads 4 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nCreates mask from the most significant bit of each 8-bit …\nSets each bit of the returned mask based on the most …\nSets each bit of the returned mask based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nComputes the sum of absolute differences (SADs) of …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed unsigned 16-bit integers in a and b, …\nMultiplies packed 16-bit integers in a and b, producing …\nMultiplies the packed 16-bit integers in a and b, producing\nMultiplies the packed 32-bit integers in a and b, producing\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR packed double-precision (64-bit) …\nComputes the bitwise OR packed single-precision (32-bit) …\nComputes the bitwise OR of 256 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nShuffles 256 bits (composed of 4 packed double-precision …\nShuffles 256 bits (composed of 8 packed single-precision …\nShuffles 128-bits (composed of integer data) selected by …\nShuffles 128-bits of integer data selected by imm8 from a …\nPermutes 64-bit integers from a using control mask imm8.\nShuffles 64-bit floating-point elements in a across lanes …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nPermutes packed 32-bit integers from a according to the …\nShuffles eight 32-bit floating-point elements in a across …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nComputes the approximate reciprocal of packed …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRounds packed double-precision (64-bit) floating point …\nRounds packed single-precision (32-bit) floating point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nComputes the approximate reciprocal square root of packed …\nComputes the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements of returned …\nBroadcasts 32-bit integer a to all elements of returned …\nBroadcasts 64-bit integer a to all elements of returned …\nBroadcasts 8-bit integer a to all elements of returned …\nBroadcasts double-precision (64-bit) floating-point value a…\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcasts single-precision (32-bit) floating-point value a…\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nSets packed 16-bit integers in returned vector with the …\nSets packed 32-bit integers in returned vector with the …\nSets packed 64-bit integers in returned vector with the …\nSets packed 8-bit integers in returned vector with the …\nSets packed __m256 returned vector with the supplied …\nSets packed __m256d returned vector with the supplied …\nSets packed __m256i returned vector with the supplied …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed single-precision (32-bit) floating-point …\nReturns vector of type __m256d with all elements set to …\nReturn vector of type __m256h with all elements set to …\nReturns vector of type __m256 with all elements set to …\nReturns vector of type __m256i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in 128-bit lanes of a using the …\nShuffles bytes from a according to the content of b.\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles 16-bit integers in the high 64 bits of 128-bit …\nShuffles 16-bit integers in the low 64 bits of 128-bit …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts 128-bit lanes in a left by imm8 bytes while …\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts 128-bit lanes in a right by imm8 bytes while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nStores the high and low 128-bit halves (each composed of 4 …\nStores the high and low 128-bit halves (each composed of 2 …\nStores the high and low 128-bit halves (each composed of …\nStore 256-bits (composed of 16 packed 16-bit integers) …\nStore 256-bits (composed of 8 packed 32-bit integers) from …\nStore 256-bits (composed of 4 packed 64-bit integers) from …\nStore 256-bits (composed of 32 packed 8-bit integers) from …\nStores 256-bits (composed of 4 packed double-precision …\nStore 256-bits (composed of 16 packed half-precision …\nStores 256-bits (composed of 8 packed single-precision …\nStores 256-bits of integer data from a into memory. …\nLoad 256-bits of integer data from memory into dst using a …\nMoves double-precision values from a 256-bit vector of …\nMoves single-precision floating point values from a …\nMoves integer data from a 256-bit integer vector to a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtracts packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing …\nComputes the bitwise AND of 256 bits (representing integer …\nReturns vector of type __m256d with indeterminate elements.\nReturn vector of type __m256h with undefined elements. In …\nReturns vector of type __m256 with indeterminate elements. …\nReturns vector of type __m256i with with indeterminate …\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nUnpacks and interleave double-precision (64-bit) …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of packed double-precision …\nComputes the bitwise XOR of packed single-precision …\nComputes the bitwise XOR of 256 bits (representing integer …\nZeroes the contents of all XMM or YMM registers.\nZeroes the upper 128 bits of all YMM registers; the lower …\nConstructs a 256-bit floating-point vector of [4 x double] …\nCast vector of type __m256h to type __m128h. The upper 8 …\nConstructs a 256-bit floating-point vector of [8 x float] …\nConstructs a 256-bit integer vector from a 128-bit integer …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute values of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed half-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nPerforms one round of an AES decryption flow on each …\nPerforms the last round of an AES decryption flow on each …\nPerforms one round of an AES encryption flow on each …\nPerforms the last round of an AES encryption flow on each …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of 512 bits (composed of packed …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise AND of 512 bits (representing integer …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of 512 bits (composed of packed …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nCompute the bitwise NOT of 512 bits (representing integer …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nShift 128-bit lanes in a left by imm8 bytes while shifting …\nShift 128-bit lanes in a right by imm8 bytes while …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m512d to type __m128d. This …\nCast vector of type __m512d to type __m256d. This …\nCast vector of type __m512d to type __m512h. This …\nCast vector of type __m512d to type __m512. This intrinsic …\nCast vector of type __m512d to type __m512i. This …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m512h to type __m128h. This …\nCast vector of type __m512h to type __m256h. This …\nCast vector of type __m512h to type __m512d. This …\nCast vector of type __m512h to type __m512. This intrinsic …\nCast vector of type __m512h to type __m512i. This …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m512 to type __m128. This intrinsic …\nCast vector of type __m512 to type __m256. This intrinsic …\nCast vector of type __m512 to type __m512d. This intrinsic …\nCast vector of type __m512 to type __m512h. This intrinsic …\nCast vector of type __m512 to type __m512i. This intrinsic …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nCast vector of type __m512i to type __m512d. This …\nCast vector of type __m512i to type __m512h. This …\nCast vector of type __m512i to type __m512. This intrinsic …\nCast vector of type __m512i to type __m128i. This …\nCast vector of type __m512i to type __m256i. This …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nCopy the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nCopy the lower 32-bit integer in a to dst.\nCopy the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nCopy a to dst, then insert 128 bits (composed of 4 packed …\nCopy a to dst, then insert 256 bits (composed of 8 packed …\nCopy a to dst, then insert 128 bits (composed of 2 packed …\nCopy a to dst, then insert 256 bits (composed of 4 packed …\nConverts integer mask into bitmask, storing the result in …\nCompute the bitwise AND of 16-bit masks a and b, and store …\nCompute the bitwise NOT of 16-bit masks a and then AND …\nCopy 16-bit mask a to k.\nCompute the bitwise NOT of 16-bit mask a, and store the …\nCompute the bitwise OR of 16-bit masks a and b, and store …\nPerforms bitwise OR between k1 and k2, storing the result …\nPerforms bitwise OR between k1 and k2, storing the result …\nUnpack and interleave 8 bits from masks a and b, and store …\nUnpack and interleave 32 bits from masks a and b, and …\nUnpack and interleave 16 bits from masks a and b, and …\nCompute the bitwise XNOR of 16-bit masks a and b, and …\nCompute the bitwise XOR of 16-bit masks a and b, and store …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoad 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nLoad 512-bits (composed of 32 packed 16-bit integers) from …\nLoad 512-bits (composed of 16 packed 32-bit integers) from …\nLoad 512-bits (composed of 8 packed 64-bit integers) from …\nLoad 512-bits (composed of 64 packed 8-bit integers) from …\nLoads 512-bits (composed of 8 packed double-precision …\nLoad 512-bits (composed of 32 packed half-precision …\nLoads 512-bits (composed of 16 packed single-precision …\nLoad 512-bits of integer data from memory into dst. …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nVertically multiply each unsigned 8-bit integer from a …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nConverts bit mask k1 into an integer value, storing the …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nFinds the absolute value of each packed double-precision …\nFinds the absolute value of each packed single-precision …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nPerforms element-by-element conversion of the lower half …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nPerforms element-by-element conversion of the lower half …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nPerforms an element-by-element conversion of packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nPerforms element-by-element conversion of the lower half …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nGather 32-bit integers from memory using 32-bit indices. …\nGather 64-bit integers from memory using 32-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nLoads 8 64-bit integer elements from memory starting at …\nLoads 8 double-precision (64-bit) floating-point elements …\nStores 8 64-bit integer elements from a to memory starting …\nStores 8 double-precision (64-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 32-bit …\nScatter 64-bit integers from a into memory using 32-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nGather 32-bit integers from memory using 64-bit indices. …\nGather 64-bit integers from memory using 64-bit indices. …\nGather double-precision (64-bit) floating-point elements …\nGather single-precision (32-bit) floating-point elements …\nScatter 32-bit integers from a into memory using 64-bit …\nScatter 64-bit integers from a into memory using 64-bit …\nScatter double-precision (64-bit) floating-point elements …\nScatter single-precision (32-bit) floating-point elements …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition using …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND …\nReduce the packed 64-bit integers in a by addition using …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed unsigned 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed unsigned 32-bit integers in a by maximum …\nReduce the packed signed 64-bit integers in a by maximum …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication …\nReduce the packed 64-bit integers in a by multiplication …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR using …\nReduce the packed 64-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-6-.js b/search.desc/wiwi/wiwi-desc-6-.js index adfa64b36..02aeb9560 100644 --- a/search.desc/wiwi/wiwi-desc-6-.js +++ b/search.desc/wiwi/wiwi-desc-6-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 6, "Convert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nCompute the bitwise OR of 512 bits (representing integer …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition. …\nReduce the packed 64-bit integers in a by addition. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND. …\nReduce the packed 64-bit integers in a by bitwise AND. …\nReduce the packed signed 32-bit integers in a by maximum. …\nReduce the packed signed 64-bit integers in a by maximum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by minimum. …\nReduce the packed signed 64-bit integers in a by minimum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication. …\nReduce the packed 64-bit integers in a by multiplication. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR. …\nReduce the packed 64-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst.\nBroadcast 64-bit integer a to all elements of dst.\nBroadcast 8-bit integer a to all elements of dst.\nBroadcast 64-bit float a to all elements of dst.\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcast 32-bit float a to all elements of dst.\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSet packed 16-bit integers in dst with the supplied values.\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values.\nSet packed 8-bit integers in dst with the supplied values.\nSet packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values …\nSet packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nReturn vector of type __m512 with all elements set to zero.\nReturn vector of type __m512i with all elements set to …\nReturns vector of type __m512d with all elements set to …\nReturn vector of type __m512h with all elements set to …\nReturns vector of type __m512 with all elements set to …\nReturns vector of type __m512i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits (composed of 32 packed 16-bit integers) …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 64 packed 8-bit integers) from …\nStores 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStores 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory. …\nLoad 512-bits of integer data from memory into dst using a …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory using a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nReturn vector of type __m512 with indeterminate elements. …\nReturn vector of type __m512i with indeterminate elements. …\nReturns vector of type __m512d with indeterminate elements.\nReturn vector of type __m512h with undefined elements. In …\nReturns vector of type __m512 with indeterminate elements. …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the bitwise XOR of 512 bits (representing integer …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nComputes the absolute value of each of the packed 16-bit …\nComputes the absolute value of each of the packed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute value of packed 8-bit signed …\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds __m128 vectors.\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nAdd the lower half-precision (16-bit) floating-point …\nAdds the first component of a and b, the other components …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively add and subtract packed double-precision …\nAlternatively add and subtract packed single-precision …\nPerforms one round of an AES decryption flow on data …\nPerforms the last round of an AES decryption flow on data …\nPerforms one round of an AES encryption flow on data …\nPerforms the last round of an AES encryption flow on data …\nPerforms the InvMixColumns transformation on a.\nAssist in expanding the AES cipher key.\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate 16-byte blocks in a and b into a 32-byte …\nComputes the bitwise AND of packed double-precision …\nBitwise AND of packed single-precision (32-bit) …\nComputes the bitwise AND of 128 bits (representing integer …\nComputes the bitwise NOT of a and then AND with b.\nBitwise AND-NOT of packed single-precision (32-bit) …\nComputes the bitwise NOT of 128 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using the mask …\nBlends packed 32-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBlend packed 8-bit integers from a and b using mask\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts a left by IMM8 bytes while shifting in zeros.\nShifts a right by IMM8 bytes while shifting in zeros.\nCast vector of type __m128d to type __m128h. This …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCast vector of type __m128h to type __m128d. This …\nCast vector of type __m128h to type __m128. This intrinsic …\nCast vector of type __m128h to type __m128i. This …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCast vector of type __m128 to type __m128h. This intrinsic …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCasts a 128-bit integer vector into a 128-bit …\nCast vector of type __m128i to type __m128h. This …\nCasts a 128-bit integer vector into a 128-bit …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nInvalidates and flushes the cache line that contains p …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompares the lower double-precision (64-bit) …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower single-precision (32-bit) …\nCompare the lower single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for equality.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for equality. The …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than or …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than. …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than or …\nCompares packed 16-bit integers in a and b for less-than.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for less-than.\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for less-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for less-than.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than. The …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for not-equal.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for inequality. The …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for not-less-than. …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are ordered. The …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are unordered. The …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nAlias for _mm_cvtsi32_ss.\nAlias for _mm_cvtss_si32.\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts the lower two packed 32-bit integers in a to …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZeroes extend packed unsigned 16-bit integers in a to …\nZeroes extend packed unsigned 16-bit integers in a to …\nConvert packed unsigned 16-bit integers in a to packed …\nZeroes extend packed unsigned 32-bit integers in a to …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nConvert the signed 32-bit integer b to a double-precision …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts a single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 4 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 4 x 32-bit float values in the 128-bit vector …\nConverts a single BF16 (16-bit) floating-point element in …\nReturns the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvtsd_si64\nConverts the lower double-precision (64-bit) …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nCopy the lower 16-bit integer in a to dst.\nReturns the lowest element of a.\nReturns the lowest element of a.\nReturns the lowest element of a.\nCopy 16-bit integer a to the lower elements of dst, and …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 32 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 64 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nExtracts the lowest 32 bit float from the input vector.\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lower single-precision (32-bit) …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nAlias for _mm_cvttss_si32.\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvttsd_si64\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivides __m128 vectors.\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nDivide the lower half-precision (16-bit) floating-point …\nDivides the first component of b by a, the other …\nReturns the dot product of two __m128d vectors.\nReturns the dot product of two __m128 vectors.\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nReturns the imm8 element of a.\nExtracts an 32-bit integer from a selected with IMM8\nExtracts an 64-bit integer from a selected with IMM1\nExtracts an 8-bit integer from a, selected with IMM8. …\nExtracts a single-precision (32-bit) floating-point …\nExtracts the bit range specified by y from the lower 64 …\nExtracts the specified bits from the lower 64 bits of the …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nGets the unsigned 32-bit value of the MXCSR control and …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally subtract the adjacent pairs of values …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nReturns a new vector where the imm8 element of a is …\nReturns a copy of a with the 32-bit integer from i …\nReturns a copy of a with the 64-bit integer from i …\nReturns a copy of a with the 8-bit integer from i inserted …\nSelect a single value in b to store at some position in a, …\nInserts the [length:0] bits of y into x at index.\nInserts the len least-significant bits from the lower 64 …\nLoads 128-bits of integer data from unaligned memory. This …\nPerforms a serializing operation on all load-from-memory …\nLoads a double-precision (64-bit) floating-point element …\nConstruct a __m128 by duplicating the value read from p …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoads a double-precision (64-bit) floating-point element …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from aligned memory into a __m128. …\nAlias for _mm_load1_ps\nLoads a 64-bit double-precision value to the low element …\nLoad a half-precision (16-bit) floating-point element from …\nLoads 128-bits of integer data from memory into a new …\nConstruct a __m128 with the lowest element read from p and …\nLoads a double-precision (64-bit) floating-point element …\nLoads a double-precision value into the high-order bits of …\nLoads 64-bit integer from memory into first element of …\nLoads a double-precision value into the low-order bits of …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads four f32 values from aligned memory into a __m128 in …\nLoad 128-bits (composed of 8 packed 16-bit integers) from …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoad 128-bits (composed of 16 packed 8-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from memory into a __m128. There are …\nLoads 128-bits of integer data from memory into a new …\nLoads unaligned 16-bits of integer data from memory into …\nLoads unaligned 32-bits of integer data from memory into …\nLoads unaligned 16-bits of integer data from memory into …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies and then horizontally add signed 16 bit …\nMultiplies corresponding pairs of packed 8-bit unsigned …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore a double-precision (64-bit) floating-point element …\nStore the lower half-precision (16-bit) floating-point …\nStore a single-precision (32-bit) floating-point element …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nConditionally store 8-bit integer elements from a into …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 6, "Shuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the absolute value of packed signed 16-bit …\nComputes the absolute value of packed 32-bit integers in a…\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate a and b into a 128-byte immediate result, …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed single-precision (32-bit) …\nBroadcast the 4 packed single-precision (32-bit) …\nBroadcasts the 8 packed single-precision (32-bit) …\nBroadcasts the 2 packed double-precision (64-bit) …\nBroadcast the 4 packed double-precision (64-bit) …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the 4 packed 32-bit integers from a to all …\nBroadcasts the 8 packed 32-bit integers from a to all …\nBroadcasts the 2 packed 64-bit integers from a to all …\nBroadcast the 4 packed 64-bit integers from a to all …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low double-precision (64-bit) floating-point …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 8 …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nExtract 128 bits (composed of 4 packed single-precision …\nExtracts 256 bits (composed of 8 packed single-precision …\nExtracts 128 bits (composed of 2 packed double-precision …\nExtract 256 bits (composed of 4 packed double-precision …\nExtract 128 bits (composed of 4 packed 32-bit integers) …\nExtracts 256 bits (composed of 8 packed 32-bit integers) …\nExtracts 128 bits (composed of 2 packed 64-bit integers) …\nExtract 256 bits (composed of 4 packed 64-bit integers) …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply packed complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nCopy a to tmp, then insert 128 bits (composed of 4 packed …\nCopy a to tmp, then insert 256 bits (composed of 8 packed …\nCopy a to tmp, then insert 128 bits (composed of 2 packed …\nCopy a to tmp, then insert 256 bits (composed of 4 packed …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nMultiplies elements in packed 64-bit integer vectors a and …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nCompute the bitwise OR of 512 bits (representing integer …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 32-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 64-bit integers in a within 256-bit lanes using …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 32-bit integers in a across lanes using the …\nShuffle 64-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed 16-bit …\nReduce the packed 32-bit integers in a by addition. …\nReduce the packed 64-bit integers in a by addition. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise AND. …\nReduce the packed 64-bit integers in a by bitwise AND. …\nReduce the packed signed 32-bit integers in a by maximum. …\nReduce the packed signed 64-bit integers in a by maximum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed signed 32-bit integers in a by minimum. …\nReduce the packed signed 64-bit integers in a by minimum. …\nReduce the packed unsigned 32-bit integers in a by …\nReduce the packed unsigned 64-bit integers in a by …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by multiplication. …\nReduce the packed 64-bit integers in a by multiplication. …\nReduce the packed double-precision (64-bit) floating-point …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed single-precision (32-bit) floating-point …\nReduce the packed 32-bit integers in a by bitwise OR. …\nReduce the packed 64-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst.\nBroadcast 64-bit integer a to all elements of dst.\nBroadcast 8-bit integer a to all elements of dst.\nBroadcast 64-bit float a to all elements of dst.\nBroadcast the half-precision (16-bit) floating-point value …\nBroadcast 32-bit float a to all elements of dst.\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSet packed 16-bit integers in dst with the supplied values.\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values.\nSet packed 8-bit integers in dst with the supplied values.\nSet packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 32-bit integers in dst with the repeated 4 …\nSet packed 64-bit integers in dst with the repeated 4 …\nSet packed double-precision (64-bit) floating-point …\nSet packed single-precision (32-bit) floating-point …\nSets packed 32-bit integers in dst with the supplied …\nSet packed 64-bit integers in dst with the supplied values …\nSet packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nSets packed 32-bit integers in dst with the supplied …\nReturn vector of type __m512 with all elements set to zero.\nReturn vector of type __m512i with all elements set to …\nReturns vector of type __m512d with all elements set to …\nReturn vector of type __m512h with all elements set to …\nReturns vector of type __m512 with all elements set to …\nReturns vector of type __m512i with all elements set to …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle 128-bits (composed of 4 single-precision (32-bit) …\nShuffle 128-bits (composed of 2 double-precision (64-bit) …\nShuffle 128-bits (composed of 4 32-bit integers) selected …\nShuffle 128-bits (composed of 2 64-bit integers) selected …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits of integer data from a into memory. …\nStore 512-bits (composed of 32 packed 16-bit integers) …\nStore 512-bits (composed of 16 packed 32-bit integers) …\nStore 512-bits (composed of 8 packed 64-bit integers) from …\nStore 512-bits (composed of 64 packed 8-bit integers) from …\nStores 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 32 packed half-precision …\nStores 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory. …\nLoad 512-bits of integer data from memory into dst using a …\nStore 512-bits (composed of 8 packed double-precision …\nStore 512-bits (composed of 16 packed single-precision …\nStore 512-bits of integer data from a into memory using a …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nReturn vector of type __m512 with indeterminate elements. …\nReturn vector of type __m512i with indeterminate elements. …\nReturns vector of type __m512d with indeterminate elements.\nReturn vector of type __m512h with undefined elements. In …\nReturns vector of type __m512 with indeterminate elements. …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompute the bitwise XOR of 512 bits (representing integer …\nCast vector of type __m128d to type __m512d; the upper 384 …\nCast vector of type __m256d to type __m512d; the upper 256 …\nCast vector of type __m128h to type __m512h. The upper 24 …\nCast vector of type __m256h to type __m512h. The upper 16 …\nCast vector of type __m128 to type __m512; the upper 384 …\nCast vector of type __m256 to type __m512; the upper 256 …\nCast vector of type __m128i to type __m512i; the upper 384 …\nCast vector of type __m256i to type __m512i; the upper 256 …\nComputes the absolute value of each of the packed 16-bit …\nComputes the absolute value of each of the packed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nComputes the absolute value of packed 8-bit signed …\nFinds the absolute value of each packed half-precision …\nAdds packed 16-bit integers in a and b.\nAdds packed 32-bit integers in a and b.\nAdds packed 64-bit integers in a and b.\nAdds packed 8-bit integers in a and b.\nAdds packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdds __m128 vectors.\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nAdd the lower half-precision (16-bit) floating-point …\nAdds the first component of a and b, the other components …\nAdds packed 16-bit integers in a and b using saturation.\nAdds packed 8-bit integers in a and b using saturation.\nAdds packed unsigned 16-bit integers in a and b using …\nAdds packed unsigned 8-bit integers in a and b using …\nAlternatively add and subtract packed double-precision …\nAlternatively add and subtract packed single-precision …\nPerforms one round of an AES decryption flow on data …\nPerforms the last round of an AES decryption flow on data …\nPerforms one round of an AES encryption flow on data …\nPerforms the last round of an AES encryption flow on data …\nPerforms the InvMixColumns transformation on a.\nAssist in expanding the AES cipher key.\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate 16-byte blocks in a and b into a 32-byte …\nComputes the bitwise AND of packed double-precision …\nBitwise AND of packed single-precision (32-bit) …\nComputes the bitwise AND of 128 bits (representing integer …\nComputes the bitwise NOT of a and then AND with b.\nBitwise AND-NOT of packed single-precision (32-bit) …\nComputes the bitwise NOT of 128 bits (representing integer …\nAverages packed unsigned 16-bit integers in a and b.\nAverages packed unsigned 8-bit integers in a and b.\nConvert scalar BF16 (16-bit) floating point element stored …\nConvert scalar half-precision (16-bit) floating-point …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using the mask …\nBlends packed 32-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBlend packed 8-bit integers from a and b using mask\nBlend packed double-precision (64-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcasts a single-precision (32-bit) floating-point …\nBroadcasts the low packed 8-bit integer from a to all …\nBroadcasts the low packed 32-bit integer from a to all …\nBroadcast the low 8-bits from input mask k to all 64-bit …\nBroadcast the low 16-bits from input mask k to all 32-bit …\nBroadcasts the low packed 64-bit integer from a to all …\nBroadcasts the low double-precision (64-bit) …\nBroadcasts 128 bits of integer data from a to all 128-bit …\nBroadcasts the low single-precision (32-bit) …\nBroadcasts the low packed 16-bit integer from a to all …\nShifts a left by IMM8 bytes while shifting in zeros.\nShifts a right by IMM8 bytes while shifting in zeros.\nCast vector of type __m128d to type __m128h. This …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCasts a 128-bit floating-point vector of [2 x double] into …\nCast vector of type __m128h to type __m128d. This …\nCast vector of type __m128h to type __m128. This intrinsic …\nCast vector of type __m128h to type __m128i. This …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCast vector of type __m128 to type __m128h. This intrinsic …\nCasts a 128-bit floating-point vector of [4 x float] into …\nCasts a 128-bit integer vector into a 128-bit …\nCast vector of type __m128i to type __m128h. This …\nCasts a 128-bit integer vector into a 128-bit …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nInvalidates and flushes the cache line that contains p …\nPerforms a carry-less multiplication of two 64-bit …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompares packed double-precision (64-bit) floating-point …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompares the lower double-precision (64-bit) …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower single-precision (32-bit) …\nCompare the lower single-precision (32-bit) floating-point …\nCompares packed 16-bit integers in a and b for equality.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for equality.\nCompare packed 32-bit integers in a and b for equality, …\nCompares packed 64-bit integers in a and b for equality\nCompare packed 64-bit integers in a and b for equality, …\nCompares packed 8-bit integers in a and b for equality.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for equality.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for equality. The …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompares packed strings in a and b with lengths la and lb …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than or …\nCompares packed 16-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompares packed 64-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for greater-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for greater than. …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompares packed strings with implicit lengths in a and b …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than or …\nCompares packed 16-bit integers in a and b for less-than.\nCompare packed signed 16-bit integers in a and b for …\nCompares packed 32-bit integers in a and b for less-than.\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompares packed 8-bit integers in a and b for less-than.\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for less-than.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for less than. The …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompares corresponding elements in a and b for not-equal.\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for inequality. The …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for …\nCompares corresponding elements in a and b for …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nCompares the lowest f32 of both inputs for not-less-than. …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are ordered. The …\nCompares corresponding elements in a and b to see if …\nCompares each of the four floats in a to the corresponding …\nReturns a new vector with the low element of a replaced by …\nChecks if the lowest f32 of both inputs are unordered. The …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nStarting with the initial value in crc, return the …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nAlias for _mm_cvtsi32_ss.\nAlias for _mm_cvtss_si32.\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConverts the lower two packed 32-bit integers in a to …\nConvert packed signed 32-bit integers in a to packed …\nConverts packed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 8 bytes of a …\nZeroes extend packed unsigned 16-bit integers in a to …\nZeroes extend packed unsigned 16-bit integers in a to …\nConvert packed unsigned 16-bit integers in a to packed …\nZeroes extend packed unsigned 32-bit integers in a to …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nZeroes extend packed unsigned 8-bit integers in a to …\nConvert the signed 32-bit integer b to a double-precision …\nConvert the signed 32-bit integer b to a half-precision …\nConvert the signed 32-bit integer b to a single-precision …\nConvert the signed 64-bit integer b to a double-precision …\nConvert the signed 64-bit integer b to a half-precision …\nConvert the signed 64-bit integer b to a single-precision …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point even-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed BF16 (16-bit) floating-point odd-indexed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts a single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConverts packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts the 4 x 16-bit half-precision float values in the …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts the 4 x 32-bit float values in the 128-bit vector …\nConverts a single BF16 (16-bit) floating-point element in …\nReturns the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvtsd_si64\nConverts the lower double-precision (64-bit) …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nCopy the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nCopy the lower 16-bit integer in a to dst.\nReturns the lowest element of a.\nReturns the lowest element of a.\nReturns the lowest element of a.\nCopy 16-bit integer a to the lower elements of dst, and …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 32 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nConverts a 64 bit integer to a 32 bit float. The result …\nReturns a with its lower element replaced by b after …\nReturns a vector whose lowest element is a and all higher …\nExtracts the lowest 32 bit float from the input vector.\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lower single-precision (32-bit) …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nAlias for _mm_cvttss_si32.\nConverts packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConverts the lower double-precision (64-bit) …\nConverts the lower double-precision (64-bit) …\nAlias for _mm_cvttsd_si64\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConverts the lowest 32 bit float in the input vector to a …\nConverts the lowest 32 bit float in the input vector to a …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 32-bit integer b to a half-precision …\nConvert the unsigned 32-bit integer b to a …\nConvert the unsigned 64-bit integer b to a …\nConvert the unsigned 64-bit integer b to a half-precision …\nConvert the unsigned 64-bit integer b to a …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivides __m128 vectors.\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nDivide the lower half-precision (16-bit) floating-point …\nDivides the first component of b by a, the other …\nReturns the dot product of two __m128d vectors.\nReturns the dot product of two __m128 vectors.\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of signed 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nMultiply groups of 2 adjacent pairs of unsigned 16-bit …\nReturns the imm8 element of a.\nExtracts an 32-bit integer from a selected with IMM8\nExtracts an 64-bit integer from a selected with IMM1\nExtracts an 8-bit integer from a, selected with IMM8. …\nExtracts a single-precision (32-bit) floating-point …\nExtracts the bit range specified by y from the lower 64 …\nExtracts the specified bits from the lower 64 bits of the …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiplies the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nGets the unsigned 32-bit value of the MXCSR control and …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally adds adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally adds the adjacent pairs of values contained …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract the adjacent pairs of values …\nHorizontally subtract adjacent pairs of double-precision …\nHorizontally adds adjacent pairs of single-precision …\nHorizontally subtract the adjacent pairs of values …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nReturns a new vector where the imm8 element of a is …\nReturns a copy of a with the 32-bit integer from i …\nReturns a copy of a with the 64-bit integer from i …\nReturns a copy of a with the 8-bit integer from i inserted …\nSelect a single value in b to store at some position in a, …\nInserts the [length:0] bits of y into x at index.\nInserts the len least-significant bits from the lower 64 …\nLoads 128-bits of integer data from unaligned memory. This …\nPerforms a serializing operation on all load-from-memory …\nLoads a double-precision (64-bit) floating-point element …\nConstruct a __m128 by duplicating the value read from p …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoads a double-precision (64-bit) floating-point element …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from aligned memory into a __m128. …\nAlias for _mm_load1_ps\nLoads a 64-bit double-precision value to the low element …\nLoad a half-precision (16-bit) floating-point element from …\nLoads 128-bits of integer data from memory into a new …\nConstruct a __m128 with the lowest element read from p and …\nLoads a double-precision (64-bit) floating-point element …\nLoads a double-precision value into the high-order bits of …\nLoads 64-bit integer from memory into first element of …\nLoads a double-precision value into the low-order bits of …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads four f32 values from aligned memory into a __m128 in …\nLoad 128-bits (composed of 8 packed 16-bit integers) from …\nLoad 128-bits (composed of 4 packed 32-bit integers) from …\nLoad 128-bits (composed of 2 packed 64-bit integers) from …\nLoad 128-bits (composed of 16 packed 8-bit integers) from …\nLoads 128-bits (composed of 2 packed double-precision …\nLoad 128-bits (composed of 8 packed half-precision …\nLoads four f32 values from memory into a __m128. There are …\nLoads 128-bits of integer data from memory into a new …\nLoads unaligned 16-bits of integer data from memory into …\nLoads unaligned 32-bits of integer data from memory into …\nLoads unaligned 16-bits of integer data from memory into …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiplies and then horizontally add signed 16 bit …\nMultiplies corresponding pairs of packed 8-bit unsigned …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nPerforms element-by-element bitwise AND between packed …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nConsiders the input b as packed 64-bit integers and c as …\nBlend packed 16-bit integers from a and b using control …\nBlend packed 32-bit integers from a and b using control …\nBlend packed 64-bit integers from a and b using control …\nBlend packed 8-bit integers from a and b using control …\nBlend packed double-precision (64-bit) floating-point …\nBlend packed half-precision (16-bit) floating-point …\nBlend packed single-precision (32-bit) floating-point …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nCompare packed signed 16-bit integers in a and b based on …\nCompare packed signed 32-bit integers in a and b based on …\nCompare packed signed 64-bit integers in a and b based on …\nCompare packed signed 8-bit integers in a and b based on …\nCompare packed unsigned 16-bit integers in a and b based …\nCompare packed unsigned 32-bit integers in a and b based …\nCompare packed unsigned 64-bit integers in a and b based …\nCompare packed unsigned 8-bit integers in a and b based on …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for equality, …\nCompare packed 64-bit integers in a and b for equality, …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed signed 32-bit integers in a and b for …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nCompare packed signed 16-bit integers in a and b for …\nCompare packed 32-bit integers in a and b for not-equal, …\nCompare packed signed 64-bit integers in a and b for …\nCompare packed signed 8-bit integers in a and b for …\nCompare packed unsigned 16-bit integers in a and b for …\nCompare packed unsigned 32-bit integers in a and b for …\nCompare packed unsigned 64-bit integers in a and b for …\nCompare packed unsigned 8-bit integers in a and b for …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in the low 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nTest packed double-precision (64-bit) floating-point …\nTest packed half-precision (16-bit) floating-point …\nTest packed single-precision (32-bit) floating-point …\nTest the lower double-precision (64-bit) floating-point …\nTest the lower half-precision (16-bit) floating-point …\nTest the lower single-precision (32-bit) floating-point …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 4 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 4 single-precision (32-bit) floating-point elements …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nReturns values from slice at offsets determined by …\nStores 2 32-bit integer elements from a to memory starting …\nStores 2 64-bit integer elements from a to memory starting …\nStores 2 double-precision (64-bit) floating-point elements …\nStores 2 single-precision (32-bit) floating-point elements …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using …\nMove packed 32-bit integers from a to dst using writemask …\nMove packed 64-bit integers from a to dst using writemask …\nMove packed 8-bit integers from a into dst using writemask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nReduce the packed 16-bit integers in a by addition using …\nReduce the packed 8-bit integers in a by addition using …\nReduce the packed 16-bit integers in a by bitwise AND …\nReduce the packed 8-bit integers in a by bitwise AND using …\nReduce the packed 16-bit integers in a by maximum using …\nReduce the packed 8-bit integers in a by maximum using …\nReduce the packed unsigned 16-bit integers in a by maximum …\nReduce the packed unsigned 8-bit integers in a by maximum …\nReduce the packed 16-bit integers in a by minimum using …\nReduce the packed 8-bit integers in a by minimum using …\nReduce the packed unsigned 16-bit integers in a by minimum …\nReduce the packed unsigned 8-bit integers in a by minimum …\nReduce the packed 16-bit integers in a by multiplication …\nReduce the packed 8-bit integers in a by multiplication …\nReduce the packed 16-bit integers in a by bitwise OR using …\nReduce the packed 8-bit integers in a by bitwise OR using …\nExtract the reduced argument of packed double-precision …") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-7-.js b/search.desc/wiwi/wiwi-desc-7-.js index 265df7d40..7166266cd 100644 --- a/search.desc/wiwi/wiwi-desc-7-.js +++ b/search.desc/wiwi/wiwi-desc-7-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 7, "Test each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in th elow 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the maximum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nPerforms a serializing operation on all load-from-memory …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the minimum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nFinds the minimum unsigned 16-bit element in the 128-bit __…\nLoads 4 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nLoads 2 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 2 single-precision (32-bit) floating-point elements …\nReturns a vector where the low element is extracted from a …\nConstructs a 128-bit floating-point vector of [2 x double]…\nMove the lower half-precision (16-bit) floating-point …\nReturns a __m128 with the first component from b and the …\nDuplicate the low double-precision (64-bit) floating-point …\nDuplicate odd-indexed single-precision (32-bit) …\nCombine higher half of a and b. The higher half of b …\nDuplicate even-indexed single-precision (32-bit) …\nCombine lower half of a and b. The lower half of b …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nSubtracts 8-bit unsigned integer values and computes the …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies __m128 vectors.\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nReturns a new vector with the low element of a replaced by …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the first component of a and b, the other …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed unsigned 16-bit integers in a and b.\nMultiplies packed 16-bit signed integer values, truncate …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed 32-bit integers in a and b, …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR of a and b.\nBitwise OR of packed single-precision (32-bit) …\nComputes the bitwise OR of 128 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nProvides a hint to the processor that the code sequence is …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle half-precision (16-bit) floating-point elements in …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nFetch the cache line that contains address p using the …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nReturns the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nReturns the approximate reciprocal of the first …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nReturns the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nReturns the approximate reciprocal square root of the …\nSum the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements.\nBroadcasts 32-bit integer a to all elements.\nBroadcasts 64-bit integer a to all elements.\nBroadcasts 8-bit integer a to all elements.\nBroadcasts double-precision (64-bit) floating-point value …\nBroadcast the half-precision (16-bit) floating-point value …\nConstruct a __m128 with all element set to a.\nSets packed 16-bit integers with the supplied values.\nSets packed 32-bit integers with the supplied values.\nSets packed 64-bit integers with the supplied values, from …\nSets packed 8-bit integers with the supplied values.\nSets packed double-precision (64-bit) floating-point …\nBroadcasts double-precision (64-bit) floating-point value …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values highest …\nAlias for _mm_set1_ps\nCopies double-precision (64-bit) floating-point element a …\nCopy half-precision (16-bit) floating-point elements from …\nConstruct a __m128 with the lowest element set to a and …\nSets the MXCSR register with the 32-bit unsigned integer …\nSets packed 16-bit integers with the supplied values in …\nSets packed 32-bit integers with the supplied values in …\nSets packed 8-bit integers with the supplied values in …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values lowest …\nReturns packed double-precision (64-bit) floating-point …\nReturn vector of type __m128h with all elements set to …\nConstruct a __m128 with all elements initialized to zero.\nReturns a vector with all elements set to zero.\nPerforms a serializing operation on all non-temporal (“…\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA1 …\nCalculate SHA1 state variable E after four rounds of …\nPerforms four rounds of SHA1 operation using an initial …\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA256 …\nPerforms 2 rounds of SHA256 operation using an initial …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in a using the control in IMM8.\nShuffles bytes from a according to the content of b.\nConstructs a 128-bit floating-point vector of [2 x double] …\nShuffles packed single-precision (32-bit) floating-point …\nShuffles 16-bit integers in the high 64 bits of a using …\nShuffles 16-bit integers in the low 64 bits of a using the …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts a left by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns a new vector with the square root of each of the …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nReturns a new vector with the low element of a replaced by …\nCompute the square root of the lower half-precision …\nReturns the square root of the first single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts a right by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStores the lower double-precision (64-bit) floating-point …\nStores the lowest 32 bit float of a repeated four times …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStores the lower double-precision (64-bit) floating-point …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into aligned memory.\nAlias for _mm_store1_ps\nStores the lower 64 bits of a 128-bit vector of …\nStore the lower half-precision (16-bit) floating-point …\nStores 128-bits of integer data from a into memory.\nStores the lowest 32 bit float of a into memory.\nStores the upper 64 bits of a 128-bit vector of …\nStores the lower 64-bit integer a to a memory location.\nStores the lower 64 bits of a 128-bit vector of …\nStores 2 double-precision (64-bit) floating-point elements …\nStores four 32-bit floats into aligned memory in reverse …\nStore 128-bits (composed of 8 packed 16-bit integers) from …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStore 128-bits (composed of 16 packed 8-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into memory. There are no …\nStores 128-bits of integer data from a into memory.\nStore 16-bit integer from the first element of a into …\nStore 32-bit integer from the first element of a into …\nStore 64-bit integer from the first element of a into …\nLoad 128-bits of integer data from memory into dst. …\nStores a 128-bit floating point vector of [2 x double] to …\nStores a into the memory at mem_addr using a non-temporal …\nNon-temporal store of a.0 into p.\nStores a 128-bit integer vector to a 128-bit aligned …\nStores a 32-bit integer value in the specified memory …\nStores a 64-bit integer value in the specified memory …\nNon-temporal store of a.0 into p.\nSubtracts packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtracts packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts __m128 vectors.\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nReturns a new vector with the low element of a replaced by …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtracts the first component of b from a, the other …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nTests whether the specified bits in a 128-bit integer …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nReturns vector of type __m128d with indeterminate elements.\nReturn vector of type __m128h with undefined elements. In …\nReturns vector of type __m128 with indeterminate elements. …\nReturns vector of type __m128i with indeterminate elements.\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nThe resulting __m128d element is composed by the low-order …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nThe resulting __m128d element is composed by the …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of a and b.\nBitwise exclusive OR of packed single-precision (32-bit) …\nComputes the bitwise XOR of 128 bits (representing integer …\nUnsigned multiply without affecting flags.\nUnsigned multiply without affecting flags.\nScatter contiguous low order bits of a to the result at …\nScatter contiguous low order bits of a to the result at …\nGathers the bits of x specified by the mask into the …\nGathers the bits of x specified by the mask into the …\nCounts the bits that are set.\nCounts the bits that are set.\nRead a hardware generated 16-bit random value and store …\nRead a hardware generated 32-bit random value and store …\nRead a hardware generated 64-bit random value and store …\nRead a 16-bit NIST SP800-90B and SP800-90C compliant …\nRead a 32-bit NIST SP800-90B and SP800-90C compliant …\nRead a 64-bit NIST SP800-90B and SP800-90C compliant …\nReads the current value of the processor’s time-stamp …\nStore 16-bit mask to memory\nStore 32-bit mask from a into memory.\nStore 64-bit mask from a into memory.\nStore 8-bit mask to memory\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nClears all bits below the least significant zero of x and …\nClears all bits below the least significant zero of x and …\nPerform matrix multiplication of two tiles containing …\nPerform matrix multiplication of two tiles containing …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of FP16 (16-bit) floating-point pairs …\nLoad tile configuration from a 64-byte memory location …\nLoad tile rows from memory specifieid by base address and …\nRelease the tile configuration to return to the init …\nStores the current tile configuration to a 64-byte memory …\nStore the tile specified by src to memory specifieid by …\nLoad tile rows from memory specifieid by base address and …\nZero the tile specified by tdest.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nSets all bits below the least significant one of x and …\nSets all bits below the least significant one of x and …\nForces a restricted transactional memory (RTM) region to …\nRetrieves the parameter passed to _xabort when _xbegin’s …\nSpecifies the start of a restricted transactional memory …\nSpecifies the end of a restricted transactional memory …\nReads the contents of the extended control register XCR …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nCopies 64-bits from val to the extended control register (…\nQueries whether the processor is executing in a …\nThe BFloat16 type used in AVX-512 intrinsics.\nCompares and exchange 16 bytes (128 bits) of data …\nEAX register.\nEBX register.\nECX register.\nEDX register.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nRaw transmutation from u16\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRaw transmutation to u16\nA by-value array iterator.\nThe error type returned when a conversion from a slice to …\nReturns a mutable slice of all elements that have not been …\nReturns an immutable slice of all elements that have not …\nCreates an iterator over T which returns no elements.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates an array of type [T; N], where each element T is …\nConverts a mutable reference to T into a mutable reference …\nConverts a reference to T into a reference to an array of …\nCalls U::from(self).\nCalls U::from(self).\nCreates a new iterator over the given array.\nCreates an iterator over the elements in a …\nCreates an array of type [T; N] by repeatedly cloning a …\nCreates an array [T; N] where each fallible array element T…\nU+0006\nU+0026\nU+0027\nExtension methods for ASCII-subset only operations.\nU+002A\nU+0008\nU+0007\nU+0018\nU+0041\nU+0042\nU+0043\nU+0044\nU+0045\nU+0046\nU+0047\nU+0048\nU+0049\nU+004A\nU+004B\nU+004C\nU+004D\nU+004E\nU+004F\nU+0050\nU+0051\nU+0052\nU+0053\nU+0054\nU+0055\nU+0056\nU+0057\nU+0058\nU+0059\nU+005A\nU+000D\nOne of the 128 Unicode characters from U+0000 through …\nU+0009\nU+005E\nU+003A\nU+002C\nU+0040\nU+0010\nU+007F\nU+0014\nU+0011\nU+0013\nU+0012\nU+0030\nU+0031\nU+0032\nU+0033\nU+0034\nU+0035\nU+0036\nU+0037\nU+0038\nU+0039\nU+0024\nU+0019\nU+0003\nU+0004\nU+0017\nU+0005\nU+003D\nU+001B\nAn iterator over the escaped version of a byte.\nU+0021\nU+000C\nU+002E\nU+0060\nU+003E\nU+002D\nU+001C\nU+001F\nU+001D\nU+001E\nU+007B\nU+0028\nU+005B\nU+003C\nU+000A\nU+000B\nU+005F\nU+0015\nU+0000 (The default variant)\nU+0023\nContainer type for copied ASCII characters.\nU+0025\nU+002B\nU+003F\nU+0022\nU+005C\nU+007D\nU+0029\nU+005D\nU+003B\nU+000F\nU+000E\nU+0061\nU+0062\nU+0063\nU+0064\nU+0065\nU+0066\nU+0067\nU+0068\nU+0069\nU+006A\nU+006B\nU+006C\nU+006D\nU+006E\nU+006F\nU+0070\nU+0071\nU+0072\nU+0073\nU+0074\nU+0075\nU+0076\nU+0077\nU+0078\nU+0079\nU+007A\nU+002F\nU+0020\nU+0001\nU+0002\nU+001A\nU+0016\nU+007E\nU+007C\nViews this ASCII character as a one-code-unit UTF-8 str.\nReturns the default value of Null\nWhen passed the number 0, 1, …, 9, returns the character …\nWhen passed the number 0, 1, …, 9, returns the character …\nChecks that two values are an ASCII case-insensitive match.\nReturns an iterator that produces an escaped version of a …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates an ascii character from the byte b, or returns None…\nCreates an ASCII character from the byte b, without …\nCalls U::from(self).\nCalls U::from(self).\nChecks if the value is within the ASCII range.\nConverts this type to its ASCII lower case equivalent …\nConverts this type to its ASCII upper case equivalent …\nMakes a copy of the value in its ASCII lower case …\nMakes a copy of the value in its ASCII upper case …\nGets this ASCII character as a char Unicode Scalar Value.\nGets this ASCII character as a byte.\nAsserts that an expression matches the provided pattern.\nAsserts that an expression matches the provided pattern.\nA trait for dealing with asynchronous iterators.\nAn async iterator that was created from iterator.\nThe type of the resulting iterator\nConverts something into an async iterator\nThe type of items yielded by the async iterator.\nThe type of the item yielded by the iterator\nReturns the argument unchanged.\nConverts an iterator into an async iterator.\nCalls U::from(self).\nConverts self into an async iterator\nAttempts to pull out the next value of this async …\nReturns the bounds on the remaining length of the async …\nA captured OS thread stack backtrace.\nA single frame of a backtrace.\nThe current status of a backtrace, indicating whether it …\nA backtrace has been captured and the Backtrace should …\nCapturing a backtrace has been disabled through either the …\nCapturing a backtrace is not supported, likely because it…\nCaptures a stack backtrace of the current thread.\nForcibly captures a disabled backtrace, regardless of …\nForcibly captures a full backtrace, regardless of …\nReturns an iterator over the backtrace frames.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the status of this backtrace, indicating whether …\nA trait for borrowing data.\nA trait for mutably borrowing data.\nBorrowed data.\nA clone-on-write smart pointer.\nOwned data.\nThe resulting type after obtaining ownership.\nA generalization of Clone to borrowed data.\nImmutably borrows from an owned value.\nMutably borrows from an owned value.\nUses borrowed data to replace owned data, usually by …\nCreates an owned Cow<’a, B> with the default value for …\nConverts a CString into an owned Cow without copying or …\nCreates a clone-on-write pointer from a reference to Path.\nConverts a CStr into a borrowed Cow without copying or …\nCreates a Borrowed variant of Cow from a reference to an …\nCreates an Owned variant of Cow from an owned instance of …\nCreates a Borrowed variant of Cow from a reference to Vec.\nConverts a String reference into a Borrowed variant. No …\nReturns the argument unchanged.\nConverts a String into an Owned variant. No heap …\nConverts a string slice into a Borrowed variant. No heap …\nConverts a &CString into a borrowed Cow without copying or …\nCreates a Borrowed variant of Cow from a slice.\nCreates a clone-on-write pointer from a reference to …\nCreates a clone-on-write pointer from an owned instance of …\nMoves the string into a Cow::Owned.\nConverts the string reference into a Cow::Borrowed.\nConverts the string reference into a Cow::Borrowed.\nCalls U::from(self).\nExtracts the owned data.\nReturns true if the data is borrowed, i.e. if to_mut would …\nReturns true if the data is owned, i.e. if to_mut would be …\nAcquires a mutable reference to the owned form of the data.\nCreates owned data from borrowed data, usually by cloning.\nA pointer type that uniquely owns a heap allocation of …\nThinBox.\nReturns a reference to the underlying allocator.\nReturns a raw mutable pointer to the Box’s contents.\nReturns a raw pointer to the Box’s contents.\nConverts to Box<T, A>.\nConverts to Box<[T], A>.\nReturns a new box with a clone() of this box’s contents.\nCopies source’s contents into self without creating a …\nCopies source’s contents into self without creating a …\nCreates a Box<T>, with the Default value for T.\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nDowncasts the box to a concrete type.\nDowncasts the box to a concrete type.\nDowncasts the box to a concrete type.\nReturns the argument unchanged.\nConverts a PathBuf into a Box<Path>.\nConverts a Box<str> into a Box<[u8]>\nConverts a str into a box of dyn Error.\nConverts a Cow into a box of dyn Error + Send + Sync.\nConverts a Cow into a box of dyn Error.\nReturns the argument unchanged.\nCreates a boxed Path from a clone-on-write pointer.\nConverts a String into a box of dyn Error.\nConverts a str into a box of dyn Error + Send + Sync.\nConverts a String into a box of dyn Error + Send + Sync.\nConverts a T into a Box<T>\nCreates a boxed Path from a reference.\nConverts a Cow<'_, str> into a Box<str>\nConverts an OsString into a Box<OsStr> without copying or …\nConverts a &CStr into a Box<CStr>, by copying the contents …\nConverts a Cow<'a, CStr> into a Box<CStr>, by copying the …\nConverts a vector into a boxed slice.\nConverts a Cow<'a, OsStr> into a Box<OsStr>, by copying …\nConverts a CString into a Box<CStr> without copying or …\nCopies the string into a newly allocated Box<OsStr>.\nConverts a Cow<'_, [T]> into a Box<[T]>\nConverts a &str into a Box<str>\nConverts a type of Error + Send + Sync into a box of dyn …\nConverts the given String to a boxed str slice that is …\nConverts a type of Error into a box of dyn Error.\nConverts a [T; N] into a Box<[T]>\nConverts a &[T] into a Box<[T]>\nConstructs a box from a raw pointer.\nConstructs a box from a raw pointer in the given allocator.\nCalls U::from(self).\nCalls U::from(self).\nConverts a Box<T> into a Box<[T]>\nConsumes the Box, returning the wrapped value.\nConverts a Box<T> into a Pin<Box<T>>. If T does not …\nConsumes the Box, returning a wrapped raw pointer.\nConsumes the Box, returning a wrapped raw pointer and the …\nConsumes and leaks the Box, returning a mutable reference, …\nMoves a type to the heap with its Metadata stored in the …\nAllocates memory on the heap and then places x into it.\nAllocates memory in the given allocator then places x into …\nConstructs a new box with uninitialized contents.\nConstructs a new box with uninitialized contents in the …\nConstructs a new boxed slice with uninitialized contents.\nConstructs a new boxed slice with uninitialized contents …\nMoves a type to the heap with its Metadata stored in the …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new boxed slice with uninitialized contents, …\nConstructs a new boxed slice with uninitialized contents …\nConstructs a new Pin<Box<T>>. If T does not implement Unpin…\nConstructs a new Pin<Box<T, A>>. If T does not implement …\nAttempts to convert a Box<[T]> into a Box<[T; N]>.\nAttempts to convert a Vec<T> into a Box<[T; N]>.\nMoves a type to the heap with its Metadata stored in the …\nAllocates memory on the heap then places x into it, …\nAllocates memory in the given allocator then places x into …\nConstructs a new box with uninitialized contents on the …\nConstructs a new box with uninitialized contents in the …\nConstructs a new boxed slice with uninitialized contents. …\nConstructs a new boxed slice with uninitialized contents …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new boxed slice with uninitialized contents, …\nConstructs a new boxed slice with uninitialized contents …\nWrites the value and converts to Box<T, A>.\nAn error returned by RefCell::try_borrow.\nAn error returned by RefCell::try_borrow_mut.\nA mutable memory location.\nA value which is initialized on the first access.\nA cell which can nominally be written to only once.\nWraps a borrowed reference to a value in a RefCell box. A …\nA mutable memory location with dynamically checked borrow …\nA wrapper type for a mutably borrowed value from a …\nUnsafeCell, but Sync.\nThe core primitive for interior mutability in Rust.\nReturns a &[Cell<T>; N] from a &Cell<[T; N]>\nReturns a raw pointer to the underlying data in this cell.\nReturns a raw pointer to the underlying data in this cell.\nReturns a &[Cell<T>] from a &Cell<[T]>\nImmutably borrows the wrapped value.\nMutably borrows the wrapped value.\nPanics\nCopies a Ref.\nPanics\nPanics\nCreates a new lazy value using Default as the initializing …\nCreates a Cell<T>, with the Default value for T.\nCreates a RefCell<T>, with the Default value for T.\nCreates an UnsafeCell, with the Default value for T.\nCreates an SyncUnsafeCell, with the Default value for T.\nPanics\nMakes a new Ref for an optional component of the borrowed …\nMakes a new RefMut for an optional component of the …\nForces the evaluation of this lazy value and returns a …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new OnceCell<T> which already contains the given …\nCreates a new Cell<T> containing the given value.\nReturns the argument unchanged.\nCreates a new RefCell<T> containing the given value.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new UnsafeCell<T> containing the given value.\nCreates a new SyncUnsafeCell<T> containing the given value.\nReturns the argument unchanged.\nReturns a &Cell<T> from a &mut T\nConverts from &mut T to &mut UnsafeCell<T>.\nPanics\nGets the reference to the underlying value.\nReturns a copy of the contained value.\nGets a mutable pointer to the wrapped value.\nGets a mutable pointer to the wrapped value.\nGets the mutable reference to the underlying value.\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nGets the mutable reference of the contents of the cell, …\nGets the mutable reference of the contents of the cell, …\nGets the contents of the cell, initializing it with f if …\nGets the contents of the cell, initializing it with f if …\nPanics\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes this LazyCell returning the stored value.\nConsumes the cell, returning the wrapped value.\nUnwraps the value, consuming the cell.\nConsumes the RefCell, returning the wrapped value.\nUnwraps the value, consuming the cell.\nUnwraps the value, consuming the cell.\nPanics\nConverts into a reference to the underlying data.\nConverts into a mutable reference to the underlying data.\nPanics\nMakes a new Ref for a component of the borrowed data.\nMakes a new RefMut for a component of the borrowed data, …\nSplits a Ref into multiple Refs for different components …\nSplits a RefMut into multiple RefMuts for different …\nCreates a new lazy value with the given initializing …\nCreates a new empty cell.\nCreates a new Cell containing the given value.\nCreates a new RefCell containing value.\nConstructs a new instance of UnsafeCell which will wrap …\nConstructs a new instance of SyncUnsafeCell which will …\nPanics\nGets a mutable pointer to the wrapped value. The …\nGets a mutable pointer to the wrapped value.\nReplaces the contained value with val, and returns the old …\nReplaces the wrapped value with a new one, returning the …\nReplaces the wrapped value with a new one computed from f, …\nSets the contents of the cell to value.\nSets the contained value.\nSwaps the values of two Cells.\nSwaps the wrapped value of self with the wrapped value of …\nTakes the value out of this OnceCell, moving it back to an …\nTakes the value of the cell, leaving Default::default() in …\nTakes the wrapped value, leaving Default::default() in its …\nImmutably borrows the wrapped value, returning an error if …\nMutably borrows the wrapped value, returning an error if …\nImmutably borrows the wrapped value, returning an error if …\nSets the contents of the cell to value if the cell was …\nUndo the effect of leaked guards on the borrow state of …\nUpdates the contained value using a function and returns …\nThe error type returned when a conversion from u32 to char …\nAn iterator that decodes UTF-16 encoded code points from …\nAn error that can be returned when decoding UTF-16 code …\nAn iterator that yields the literal escape code of a char.\nAn iterator that yields the literal escape code of a char.\nReturns an iterator that yields the hexadecimal Unicode …\nThe highest valid code point a char can have, '\\u{10FFFF}'…\nAn error which can be returned when parsing a char.\nU+FFFD REPLACEMENT CHARACTER (�) is used in Unicode to …\nReturns an iterator that yields the lowercase equivalent …\nReturns an iterator that yields the uppercase equivalent …\nThe error type returned when a checked char conversion …\nThe version of Unicode that the Unicode parts of char and …\nCreates an iterator over the UTF-16 encoded code points in …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a digit in the given radix to a char. Use …\nConverts a u32 to a char. Use char::from_u32 instead.\nConverts a u32 to a char, ignoring validity. Use …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the unpaired surrogate which caused this error.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nA generalization of Clone to dynamically-sized types …\nReturns a copy of the value.\nPerforms copy-assignment from source.\nPerforms copy-assignment from self to dst.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nAn ordering where a compared value is equal to another.\nAn ordering where a compared value is greater than another.\nAn ordering where a compared value is less than another.\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nAn Ordering is the result of a comparison between two …\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nA helper struct for reverse ordering.\nRestrict a value to a certain interval.\nThis method returns an Ordering between self and other.\nTests for self and other values to be equal, and is used …\nReturns the argument unchanged.\nReturns the argument unchanged.\nTests greater than or equal to (for self and other) and is …\nTests greater than (for self and other) and is used by the …\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the ordering is the Equal variant.\nReturns true if the ordering is either the Greater or Equal…\nReturns true if the ordering is the Greater variant.\nReturns true if the ordering is either the Less or Equal …\nReturns true if the ordering is the Less variant.\nReturns true if the ordering is not the Equal variant.\nTests less than or equal to (for self and other) and is …\nTests less than (for self and other) and is used by the < …\nCompares and returns the maximum of two values.\nCompares and returns the maximum of two values.\nReturns the maximum of two values with respect to the …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nCompares and returns the minimum of two values.\nReturns the minimum of two values with respect to the …\nReturns the element that gives the minimum value from the …\nCompares and sorts two values, returning minimum and …\nReturns minimum and maximum values with respect to the …\nReturns minimum and maximum values with respect to the …\nTests for !=. The default implementation is almost always …\nThis method returns an ordering between self and other …\nReverses the Ordering.\nChains two orderings.\nChains the ordering with the given function.\nThe memory allocator returned an error\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nA priority queue implemented with a binary heap.\nAn endpoint of a range of keys.\nError due to the computed capacity exceeding the collection…\nAn exclusive bound.\nA hash map implemented with quadratic probing and SIMD …\nA hash set implemented as a HashMap where the value is ().\nAn inclusive bound.\nA doubly-linked list with owned nodes.\nThe error type for try_reserve methods.\nDetails of the allocation that caused a TryReserveError\nAn infinite endpoint. Indicates that there is no bound in …\nA double-ended queue implemented with a growable ring …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nMoves all the elements of other into self, leaving other …\nMoves all elements from other into self, leaving other …\nMoves all elements from other into self, leaving other …\nMoves all elements from other to the end of the list.\nMoves all the elements of other into self, leaving other …\nReturns a pair of slices which contain, in order, the …\nReturns a slice of all values in the underlying vector, in …\nReturns a pair of slices which contain, in order, the …\nProvides a reference to the back element, or None if the …\nProvides a reference to the back element, or None if the …\nProvides a mutable reference to the back element, or None …\nProvides a mutable reference to the back element, or None …\nA priority queue implemented with a binary heap.\nBinary searches this VecDeque for a given element. If the …\nBinary searches this VecDeque with a comparator function.\nBinary searches this VecDeque with a key extraction …\nReturns the intersection of self and rhs as a new …\nReturns the intersection of self and rhs as a new …\nReturns the union of self and rhs as a new HashSet<T, S>.\nReturns the union of self and rhs as a new BTreeSet<T>.\nReturns the symmetric difference of self and rhs as a new …\nReturns the symmetric difference of self and rhs as a new …\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nReturns the number of elements the map can hold without …\nReturns the number of elements the binary heap can hold …\nReturns the number of elements the set can hold without …\nReturns the number of elements the deque can hold without …\nClears the map, removing all key-value pairs. Keeps the …\nDrops all items from the binary heap.\nClears the map, removing all elements.\nClears the set, removing all values.\nClears the set, removing all elements.\nRemoves all elements from the LinkedList.\nClears the deque, removing all values.\nOverwrites the contents of self with a clone of the …\nOverwrites the contents of self with a clone of the …\nOverwrites the contents of self with a clone of the …\nOverwrites the contents of self with a clone of the …\nReturns true if the set contains a value.\nReturns true if the set contains an element equal to the …\nReturns true if the LinkedList contains an element equal …\nReturns true if the deque contains an element equal to the …\nReturns true if the map contains a value for the specified …\nReturns true if the map contains a value for the specified …\nProvides a cursor at the back element.\nProvides a cursor with editing operations at the back …\nProvides a cursor at the front element.\nProvides a cursor with editing operations at the front …\nCreates an empty HashMap<K, V, S>, with the Default value …\nCreates an empty BinaryHeap<T>.\nCreates an empty BTreeMap.\nCreates an empty HashSet<T, S> with the Default value for …\nCreates an empty BTreeSet.\nCreates an empty LinkedList<T>.\nCreates an empty deque.\nVisits the values representing the difference, i.e., the …\nVisits the elements representing the difference, i.e., the …\nClears the map, returning all key-value pairs as an …\nClears the binary heap, returning an iterator over the …\nClears the set, returning all elements as an iterator. …\nRemoves the specified range from the deque in bulk, …\nClears the binary heap, returning an iterator over the …\nGets the given key’s corresponding entry in the map for …\nGets the given key’s corresponding entry in the map for …\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that visits all elements (key-value …\nCreates an iterator which uses a closure to determine if a …\nCreates an iterator that visits all elements in ascending …\nCreates an iterator which uses a closure to determine if …\nReturns the contents of the “front” slice as returned …\nReturns a reference to the first element in the set, if …\nReturns the first entry in the map for in-place …\nReturns the first key-value pair in the map. The key in …\nExamples\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a Vec<T> into a BinaryHeap<T>.\nReturns the argument unchanged.\nConverts a [(K, V); N] into a BTreeMap<(K, V)>.\nExamples\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a [T; N] into a BTreeSet<T>.\nReturns the argument unchanged.\nConverts a [T; N] into a LinkedList<T>.\nReturns the argument unchanged.\nTurn a Vec<T> into a VecDeque<T>.\nConverts a [T; N] into a VecDeque<T>.\nReturns the argument unchanged.\nAlways evaluates to TryReserveErrorKind::CapacityOverflow.\nReturns the argument unchanged.\nProvides a reference to the front element, or None if the …\nProvides a reference to the front element, or None if the …\nProvides a mutable reference to the front element, or None …\nProvides a mutable reference to the front element, or None …\nReturns a reference to the value corresponding to the key.\nReturns a reference to the value corresponding to the key.\nReturns a reference to the value in the set, if any, that …\nReturns a reference to the element in the set, if any, …\nProvides a reference to the element at the given index.\nReturns the key-value pair corresponding to the supplied …\nReturns the key-value pair corresponding to the supplied …\nAttempts to get mutable references to N values in the map …\nAttempts to get mutable references to N values in the map …\nReturns a mutable reference to the value corresponding to …\nReturns a mutable reference to the value corresponding to …\nProvides a mutable reference to the element at the given …\nInserts the given value into the set if it is not present, …\nInserts an owned copy of the given value into the set if …\nInserts a value computed from f into the set if the given …\nA hash map implemented with quadratic probing and SIMD …\nA hash set implemented as a HashMap where the value is ().\nReturns a reference to the map’s BuildHasher.\nReturns a reference to the set’s BuildHasher.\nReturns a reference to the value corresponding to the …\nReturns a reference to the value corresponding to the …\nInserts a key-value pair into the map.\nInserts a key-value pair into the map.\nAdds a value to the set.\nAdds a value to the set.\nInserts an element at index within the deque, shifting all …\nVisits the values representing the intersection, i.e., the …\nVisits the elements representing the intersection, i.e., …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreates a consuming iterator, that is, one that moves each …\nCreates a consuming iterator, that is, one that moves each …\nGets an owning iterator over the entries of the map, …\nCreates a consuming iterator, that is, one that moves each …\nGets an iterator for moving out the BTreeSet’s contents …\nConsumes the list into an iterator yielding elements by …\nConsumes the deque into a front-to-back iterator yielding …\nReturns an iterator which retrieves elements in heap order.\nCreates a consuming iterator visiting all the keys in …\nCreates a consuming iterator visiting all the keys, in …\nConsumes the BinaryHeap and returns a vector in sorted …\nCreates a consuming iterator visiting all the values in …\nCreates a consuming iterator visiting all the values, in …\nConsumes the BinaryHeap and returns the underlying vector …\nReturns true if self has no elements in common with other. …\nReturns true if self has no elements in common with other. …\nReturns true if the map contains no elements.\nChecks if the binary heap is empty.\nReturns true if the map contains no elements.\nReturns true if the set contains no elements.\nReturns true if the set contains no elements.\nReturns true if the LinkedList is empty.\nReturns true if the deque is empty.\nReturns true if the set is a subset of another, i.e., other…\nReturns true if the set is a subset of another, i.e., other…\nReturns true if the set is a superset of another, i.e., …\nReturns true if the set is a superset of another, i.e., …\nAn iterator visiting all key-value pairs in arbitrary …\nReturns an iterator visiting all values in the underlying …\nGets an iterator over the entries of the map, sorted by …\nAn iterator visiting all elements in arbitrary order. The …\nGets an iterator that visits the elements in the BTreeSet …\nProvides a forward iterator.\nReturns a front-to-back iterator.\nAn iterator visiting all key-value pairs in arbitrary …\nGets a mutable iterator over the entries of the map, …\nProvides a forward iterator with mutable references.\nReturns a front-to-back iterator that returns mutable …\nAn iterator visiting all keys in arbitrary order. The …\nGets an iterator over the keys of the map, in sorted order.\nDetails about the allocation that caused the error\nReturns a reference to the last element in the set, if any.\nReturns the last entry in the map for in-place …\nReturns the last key-value pair in the map. The key in …\nReturns the number of elements in the map.\nReturns the length of the binary heap.\nReturns the number of elements in the map.\nReturns the number of elements in the set.\nReturns the number of elements in the set.\nReturns the length of the LinkedList.\nReturns the number of elements in the deque.\nA doubly-linked list with owned nodes.\nReturns a Cursor pointing at the gap before the smallest …\nReturns a Cursor pointing at the gap before the smallest …\nReturns a CursorMut pointing at the gap before the …\nReturns a CursorMut pointing at the gap before the …\nRearranges the internal storage of this deque so it is one …\nCreates an empty HashMap.\nCreates an empty BinaryHeap as a max-heap.\nMakes a new, empty BTreeMap.\nCreates an empty HashSet.\nMakes a new, empty BTreeSet.\nCreates an empty LinkedList.\nCreates an empty deque.\nCreates an empty BinaryHeap as a max-heap, using A as …\nMakes a new empty BTreeMap with a reasonable choice for B.\nMakes a new BTreeSet with a reasonable choice of B.\nConstructs an empty LinkedList<T, A>.\nCreates an empty deque.\nReturns the index of the partition point according to the …\nReturns the greatest item in the binary heap, or None if …\nReturns a mutable reference to the greatest item in the …\nRemoves the greatest item from the binary heap and returns …\nRemoves the last element from a list and returns it, or …\nRemoves the last element from the deque and returns it, or …\nRemoves and returns the first element in the map. The key …\nRemoves the first element from the set and returns it, if …\nRemoves the first element and returns it, or None if the …\nRemoves the first element and returns it, or None if the …\nRemoves and returns the last element in the map. The key …\nRemoves the last element from the set and returns it, if …\nPushes an item onto the binary heap.\nAppends an element to the back of a list.\nAppends an element to the back of the deque.\nAdds an element first in the list.\nPrepends an element to the deque.\nConstructs a double-ended iterator over a sub-range of …\nConstructs a double-ended iterator over a sub-range of …\nCreates an iterator that covers the specified range in the …\nConstructs a mutable double-ended iterator over a …\nCreates an iterator that covers the specified mutable …\nCreates a raw immutable entry builder for the HashMap.\nCreates a raw entry builder for the HashMap.\nFill buf with the contents of the “front” slice as …\nRemoves a key from the map, returning the value at the key …\nRemoves a key from the map, returning the value at the key …\nRemoves a value from the set. Returns whether the value was\nIf the set contains an element equal to the value, removes …\nRemoves the element at the given index and returns it.\nRemoves and returns the element at index from the deque. …\nRemoves a key from the map, returning the stored key and …\nRemoves a key from the map, returning the stored key and …\nAdds a value to the set, replacing the existing value, if …\nAdds a value to the set, replacing the existing element, …\nReserves capacity for at least additional more elements to …\nReserves capacity for at least additional elements more …\nReserves capacity for at least additional more elements to …\nReserves capacity for at least additional more elements to …\nReserves the minimum capacity for at least additional …\nReserves the minimum capacity for at least additional more …\nModifies the deque in-place so that len() is equal to …\nModifies the deque in-place so that len() is equal to …\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRotates the double-ended queue n places to the left.\nRotates the double-ended queue n places to the right.\nShrinks the capacity of the map with a lower limit. It …\nDiscards capacity with a lower bound.\nShrinks the capacity of the set with a lower limit. It …\nShrinks the capacity of the deque with a lower bound.\nShrinks the capacity of the map as much as possible. It …\nDiscards as much additional capacity as possible.\nShrinks the capacity of the set as much as possible. It …\nShrinks the capacity of the deque as much as possible.\nSplits the collection into two at the given key. Returns …\nSplits the collection into two at the value. Returns a new …\nSplits the list into two at the given index. Returns …\nSplits the deque into two at the given index.\nReturns the difference of self and rhs as a new …\nReturns the difference of self and rhs as a new BTreeSet<T>…\nSwaps elements at indices i and j.\nRemoves an element from anywhere in the deque and returns …\nRemoves an element from anywhere in the deque and returns …\nVisits the values representing the symmetric difference, …\nVisits the elements representing the symmetric difference, …\nRemoves and returns the value in the set, if any, that is …\nRemoves and returns the element in the set, if any, that …\nShortens the deque, keeping the first len elements and …\nTries to insert a key-value pair into the map, and returns …\nTries to insert a key-value pair into the map, and returns …\nTries to reserve capacity for at least additional more …\nTries to reserve capacity for at least additional elements …\nTries to reserve capacity for at least additional more …\nTries to reserve capacity for at least additional more …\nTries to reserve the minimum capacity for at least …\nTries to reserve the minimum capacity for at least …\nCreates an empty deque with space for at least capacity …\nVisits the values representing the union, i.e., all the …\nVisits the elements representing the union, i.e., all the …\nReturns a Cursor pointing at the gap after the greatest key\nReturns a Cursor pointing at the gap after the greatest …\nReturns a CursorMut pointing at the gap after the greatest …\nReturns a CursorMut pointing at the gap after the greatest …\nAn iterator visiting all values in arbitrary order. The …\nGets an iterator over the values of the map, in order by …\nAn iterator visiting all values mutably in arbitrary order.\nGets a mutable iterator over the values of the map, in …\nA double-ended queue (deque) implemented with a growable …\nCreates an empty HashMap with at least the specified …\nCreates an empty BinaryHeap with at least the specified …\nCreates an empty HashSet with at least the specified …\nCreates an empty deque with space for at least capacity …\nCreates an empty HashMap with at least the specified …\nCreates an empty HashSet with at least the specified …\nCreates an empty BinaryHeap with at least the specified …\nCreates an empty deque with space for at least capacity …\nCreates an empty HashMap which will use the given hash …\nCreates a new empty hash set which will use the given …\nThe layout of allocation request that failed\nA priority queue implemented with a binary heap.\nA draining iterator over the elements of a BinaryHeap.\nA draining iterator over the elements of a BinaryHeap.\nAn owning iterator over the elements of a BinaryHeap.\nAn iterator over the elements of a BinaryHeap.\nStructure wrapping a mutable reference to the greatest …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nCreates an empty binary_heap::Iter.\nCreates an empty binary_heap::IntoIter.\nRemoves heap elements in heap order.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRemoves the peeked value from the heap and returns it.\nAn ordered map based on a B-Tree.\nA cursor over a BTreeMap.\nA cursor over a BTreeMap with editing operations.\nA cursor over a BTreeMap with editing operations, and …\nA view into a single entry in a map, which may either be …\nAn iterator produced by calling extract_if on BTreeMap.\nAn owning iterator over the entries of a BTreeMap, sorted …\nAn owning iterator over the keys of a BTreeMap.\nAn owning iterator over the values of a BTreeMap.\nAn iterator over the entries of a BTreeMap.\nA mutable iterator over the entries of a BTreeMap.\nAn iterator over the keys of a BTreeMap.\nAn occupied entry.\nA view into an occupied entry in a BTreeMap. It is part of …\nThe error returned by try_insert when the key already …\nAn iterator over a sub-range of entries in a BTreeMap.\nA mutable iterator over a sub-range of entries in a …\nError type returned by CursorMut::insert_before and …\nA vacant entry.\nA view into a vacant entry in a BTreeMap. It is part of …\nAn iterator over the values of a BTreeMap.\nA mutable iterator over the values of a BTreeMap.\nProvides in-place mutable access to an occupied entry …\nReturns a read-only cursor pointing to the same location …\nReturns a read-only cursor pointing to the same location …\nCreates an empty btree_map::Iter.\nCreates an empty btree_map::IterMut.\nCreates an empty btree_map::IntoIter.\nCreates an empty btree_map::Keys.\nCreates an empty btree_map::Values.\nCreates an empty btree_map::ValuesMut.\nCreates an empty btree_map::IntoKeys.\nCreates an empty btree_map::IntoValues.\nCreates an empty btree_map::Range.\nCreates an empty btree_map::RangeMut.\nThe entry in the map that was already occupied.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nGets a reference to the value in the entry.\nGets a mutable reference to the value in the entry.\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry with the OccupiedEntry’s key,\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nTake ownership of the key.\nConverts the entry into a mutable reference to its value.\nReturns a reference to this entry’s key.\nGets a reference to the key that would be used when …\nGets a reference to the key in the entry.\nAdvances the cursor to the next gap, returning the key and …\nAdvances the cursor to the next gap, returning the key and …\nAdvances the cursor to the next gap, returning the key and …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the result of …\nEnsures a value is in the entry by inserting, if empty, …\nReturns a reference to the key and value of the next …\nReturns a reference to the key and value of the next …\nReturns a reference to the key and value of the next …\nReturns a reference to the key and value of the previous …\nReturns a reference to the key and value of the previous …\nReturns a reference to the key and value of the previous …\nAdvances the cursor to the previous gap, returning the key …\nAdvances the cursor to the previous gap, returning the key …\nAdvances the cursor to the previous gap, returning the key …\nTakes the value of the entry out of the map, and returns …\nTake ownership of the key and value from the map.\nRemoves the next element from the BTreeMap.\nRemoves the next element from the BTreeMap.\nRemoves the preceding element from the BTreeMap.\nRemoves the preceding element from the BTreeMap.\nThe value which was not inserted, because the entry was …\nConverts the cursor into a CursorMutKey, which allows …\nAn ordered set based on a B-Tree.\nA cursor over a BTreeSet.\nA cursor over a BTreeSet with editing operations.\nA cursor over a BTreeSet with editing operations, and …\nA lazy iterator producing elements in the difference of …\nAn iterator produced by calling extract_if on BTreeSet.\nA lazy iterator producing elements in the intersection of …\nAn owning iterator over the items of a BTreeSet in …\nAn iterator over the items of a BTreeSet.\nAn iterator over a sub-range of items in a BTreeSet.\nA lazy iterator producing elements in the symmetric …\nA lazy iterator producing elements in the union of BTreeSet…\nError type returned by CursorMut::insert_before and …\nReturns a read-only cursor pointing to the same location …\nReturns a read-only cursor pointing to the same location …\nCreates an empty btree_set::Iter.\nCreates an empty btree_set::IntoIter.\nCreates an empty btree_set::Range.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nAdvances the cursor to the next gap, returning the element …\nAdvances the cursor to the next gap, returning the …\nAdvances the cursor to the next gap, returning the element …\nReturns a reference to the next element without moving the …\nReturns a reference to the next element without moving the …\nReturns a reference to next element without moving the …\nReturns a reference to the previous element without moving …\nReturns a reference to the previous element without moving …\nReturns a reference to the previous element without moving …\nAdvances the cursor to the previous gap, returning the …\nAdvances the cursor to the previous gap, returning the …\nAdvances the cursor to the previous gap, returning the …\nRemoves the next element from the BTreeSet.\nRemoves the next element from the BTreeSet.\nRemoves the preceding element from the BTreeSet.\nRemoves the preceding element from the BTreeSet.\nConverts the cursor into a CursorMutKey, which allows …\nThe default Hasher used by RandomState.\nA draining iterator over the entries of a HashMap.\nA view into a single entry in a map, which may either be …\nA draining, filtering iterator over the entries of a …\nA hash map implemented with quadratic probing and SIMD …\nAn owning iterator over the entries of a HashMap.\nAn owning iterator over the keys of a HashMap.\nAn owning iterator over the values of a HashMap.\nAn iterator over the entries of a HashMap.\nA mutable iterator over the entries of a HashMap.\nAn iterator over the keys of a HashMap.\nAn occupied entry.\nAn occupied entry.\nA view into an occupied entry in a HashMap. It is part of …\nThe error returned by try_insert when the key already …\nRandomState is the default state for HashMap types.\nA builder for computing where in a HashMap a key-value …\nA builder for computing where in a HashMap a key-value …\nA view into a single entry in a map, which may either be …\nA view into an occupied entry in a HashMap. It is part of …\nA view into a vacant entry in a HashMap. It is part of the …\nA vacant entry.\nA vacant entry.\nA view into a vacant entry in a HashMap. It is part of the …\nAn iterator over the values of a HashMap.\nA mutable iterator over the values of a HashMap.\nProvides in-place mutable access to an occupied entry …\nProvides in-place mutable access to an occupied entry …\nThe entry in the map that was already occupied.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a RawEntryMut from the given hash.\nAccess an entry by hash.\nCreates a RawEntryMut from the given key.\nAccess an entry by key.\nCreates a RawEntryMut from the given key and its hash.\nAccess an entry by a key and its hash.\nGets a reference to the value in the entry.\nGets a reference to the value in the entry.\nGets a reference to the key and value in the entry.\nGets a mutable reference to the key and value in the entry.\nGets a mutable reference to the value in the entry.\nGets a mutable reference to the value in the entry.\nSets the value of the entry, and returns the entry’s old …\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry, and returns the entry’s old …\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry, and returns an OccupiedEntry.\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry, and returns the entry’s old …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts the entry into a mutable reference to the key in …\nTake ownership of the key.\nConverts the OccupiedEntry into a mutable reference to the …\nConverts the OccupiedEntry into a mutable reference to the …\nConverts the OccupiedEntry into a mutable reference to the …\nGets a reference to the key in the entry.\nReturns a reference to this entry’s key.\nGets a reference to the key in the entry.\nGets a reference to the key that would be used when …\nGets a mutable reference to the key in the entry.\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the result of …\nEnsures a value is in the entry by inserting the result of …\nEnsures a value is in the entry by inserting, if empty, …\nTakes the value out of the entry, and returns it.\nTakes the value out of the entry, and returns it.\nTake the ownership of the key and value from the map.\nTake the ownership of the key and value from the map.\nReplaces the entry, returning the old key and value. The …\nReplaces the key in the hash map with the key used to …\nThe value which was not inserted, because the entry was …\nA lazy iterator producing elements in the difference of …\nA draining iterator over the items of a HashSet.\nA draining, filtering iterator over the items of a HashSet.\nA hash set implemented as a HashMap where the value is ().\nA lazy iterator producing elements in the intersection of …\nAn owning iterator over the items of a HashSet.\nAn iterator over the items of a HashSet.\nA lazy iterator producing elements in the symmetric …\nA lazy iterator producing elements in the union of HashSet…\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nA cursor over a LinkedList.\nA cursor over a LinkedList with editing operations.\nAn iterator produced by calling extract_if on LinkedList.\nAn owning iterator over the elements of a LinkedList.\nAn iterator over the elements of a LinkedList.\nA mutable iterator over the elements of a LinkedList.\nA doubly-linked list with owned nodes.\nReturns a read-only cursor pointing to the current element.\nProvides a reference to the cursor’s parent list.\nProvides a read-only reference to the cursor’s parent …\nProvides a reference to the back element of the cursor’s …\nProvides a reference to the back element of the cursor’s …\nProvides a mutable reference to back element of the cursor…\nReturns a reference to the element that the cursor is …\nReturns a reference to the element that the cursor is …\nCreates an empty linked_list::Iter.\nCreates an empty linked_list::IntoIter.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nProvides a reference to the front element of the cursor’…\nProvides a reference to the front element of the cursor’…\nProvides a mutable reference to the front element of the …\nReturns the cursor position index within the LinkedList.\nReturns the cursor position index within the LinkedList.\nInserts a new element into the LinkedList after the …\nInserts a new element into the LinkedList before the …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nMoves the cursor to the next element of the LinkedList.\nMoves the cursor to the next element of the LinkedList.\nMoves the cursor to the previous element of the LinkedList.\nMoves the cursor to the previous element of the LinkedList.\nReturns a reference to the next element.\nReturns a reference to the next element.\nReturns a reference to the previous element.\nReturns a reference to the previous element.\nRemoves the last element from the cursor’s parent list …\nRemoves the first element from the cursor’s parent list …\nAppends an element to the back of the cursor’s parent …\nAppends an element to the front of the cursor’s parent …\nRemoves the current element from the LinkedList.\nRemoves the current element from the LinkedList without …\nInserts the elements from the given LinkedList after the …\nInserts the elements from the given LinkedList before the …\nSplits the list into two after the current element. This …\nSplits the list into two before the current element. This …\nA draining iterator over the elements of a VecDeque.\nAn owning iterator over the elements of a VecDeque.\nAn iterator over the elements of a VecDeque.\nA mutable iterator over the elements of a VecDeque.\nA double-ended queue implemented with a growable ring …\nCreates an empty vec_deque::IterMut.\nCreates an empty vec_deque::Iter.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nSupporting trait for inherent methods of f32 and f64 such …\nUsed to do value-to-value conversions while consuming the …\nThe error type for errors that can never happen.\nA value-to-value conversion that consumes the input value. …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nConverts to this type from the input type.\nReturns the argument unchanged.\nThe identity function.\nConverts this type into the (usually inferred) input type.\nCalls U::from(self).\nPerforms the conversion.\nPerforms the conversion.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nReturns the “default value” for a type.\nAn iterator over the arguments of a process, yielding a …\nAn iterator over the arguments of a process, yielding an …\nThe error type for operations on the PATH variable. …\nThe specified environment variable was not present in the …\nThe specified environment variable was found, but it did …\nAn iterator that splits an environment variable into paths …\nThe error type for operations interacting with environment …\nAn iterator over a snapshot of the environment variables …\nAn iterator over a snapshot of the environment variables …\nReturns the arguments that this program was started with …\nReturns the arguments that this program was started with …\nConstants associated with the current target\nReturns the current working directory as a PathBuf.\nReturns the full filesystem path of the current running …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the path of the current user’s home directory if …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nJoins a collection of Paths appropriately for the PATH …\nRemoves an environment variable from the environment of …\nChanges the current working directory to the specified …\nSets the environment variable key to the value value for …\nParses input according to platform conventions for the PATH\nReturns the path of a temporary directory.\nFetches the environment variable key from the current …\nFetches the environment variable key from the current …\nReturns an iterator of (variable, value) pairs of strings, …\nReturns an iterator of (variable, value) pairs of OS …\nA string describing the architecture of the CPU that is …\nSpecifies the file extension used for shared libraries on …\nSpecifies the filename prefix used for shared libraries on …\nSpecifies the filename suffix used for shared libraries on …\nSpecifies the file extension, if any, used for executable …\nSpecifies the filename suffix used for executable binaries …\nThe family of the operating system. Example value is unix.\nA string describing the specific operating system in use. …\nError is a trait representing the basic expectations for …\nAn error reporter that prints an error and its sources.\nRequest supports generic, type-driven access to data. Its …\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nForwards to the method defined on the type dyn Error.\nForwards to the method defined on the type dyn Error.\nReturns some mutable reference to the inner value if it is …\nForwards to the method defined on the type dyn Error.\nForwards to the method defined on the type dyn Error.\nReturns some reference to the inner value if it is of type …\nReturns the argument unchanged.\nCalls U::from(self).\nForwards to the method defined on the type dyn Error.\nForwards to the method defined on the type dyn Error.\nReturns true if the inner type is the same as T.\nCreates a new Report from an input error.\nEnable pretty-printing the report across multiple lines.\nProvides type-based access to context intended for error …\nProvides a reference. The referee type must be bounded by …\nProvides a reference computed using a closure. The referee …\nProvides a value or other type with only static lifetimes.\nProvides a value or other type with only static lifetimes …\nRequests a reference of type T from the given impl Error.\nRequests a value of type T from the given impl Error.\nDisplay backtrace if available when using pretty output …\nReturns the lower-level source of this error, if any.\nReturns an iterator starting with the current error and …\nChecks if the Request would be satisfied if provided with a\nChecks if the Request would be satisfied if provided with a\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f32. Use f32::EPSILON instead.\nInfinity (∞). Use f32::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f32 value. Use f32::MAX instead.\nMaximum possible power of 10 exponent. Use f32::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f32::MAX_EXP …\nSmallest finite f32 value. Use f32::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f32 value. Use f32::MIN_POSITIVE …\nNot a Number (NaN). Use f32::NAN instead.\nNegative infinity (−∞). Use f32::NEG_INFINITY instead.\nThe radix or base of the internal representation of f32. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f64. Use f64::EPSILON instead.\nInfinity (∞). Use f64::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f64 value. Use f64::MAX instead.\nMaximum possible power of 10 exponent. Use f64::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f64::MAX_EXP …\nSmallest finite f64 value. Use f64::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f64 value. Use f64::MIN_POSITIVE …\nNot a Number (NaN). Use f64::NAN instead.\nNegative infinity (−∞). Use f64::NEG_INFINITY instead.\nThe radix or base of the internal representation of f64. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nRepresentation of a borrowed C string.\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nBorrowed reference to an OS string (see OsString).\nA type that can represent owned, mutable platform-native …\nA wrapper for a va_list\nx86_64 ABI implementation of a va_list.\nAdvance to the next arg.\nReturns the contents of this CString as a slice of bytes.\nReturns a slice of u8s bytes that were attempted to …\nEquivalent to CString::as_bytes() except that the returned …\nExtracts a CStr slice containing the entire string.\nConverts an OS string slice to a byte slice. To convert …\nConverts to an OsStr slice.\nReturns the inner pointer to this C string.\nConverts a VaListImpl into a VaList that is …\nIterates over the bytes in this C string.\nEquivalent to C’s char type.\nEquivalent to C’s double type.\nEquivalent to C’s float type.") \ No newline at end of file +searchState.loadedDescShard("wiwi", 7, "Extract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast 16-bit integer a to all elements of dst using …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle 8-bit integers in a within 128-bit lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nStore a double-precision (64-bit) floating-point element …\nStore the lower half-precision (16-bit) floating-point …\nStore a single-precision (32-bit) floating-point element …\nStore packed 16-bit integers from a into memory using …\nStore packed 32-bit integers from a into memory using …\nStore packed 64-bit integers from a into memory using …\nStore packed 8-bit integers from a into memory using …\nStore packed double-precision (64-bit) floating-point …\nStore packed single-precision (32-bit) floating-point …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nLoads packed 32-bit integers from memory pointed by …\nLoads packed 64-bit integers from memory pointed by …\nLoads packed double-precision (64-bit) floating-point …\nLoads packed single-precision (32-bit) floating-point …\nConditionally store 8-bit integer elements from a into …\nStores packed 32-bit integers from a into memory pointed …\nStores packed 64-bit integers from a into memory pointed …\nStores packed double-precision (64-bit) floating-point …\nStores packed single-precision (32-bit) floating-point …\nCompute the absolute value of packed signed 16-bit …\nCompute the absolute value of packed signed 32-bit …\nCompute the absolute value of packed signed 64-bit …\nCompute the absolute value of packed signed 8-bit integers …\nAdd packed 16-bit integers in a and b, and store the …\nAdd packed 32-bit integers in a and b, and store the …\nAdd packed 64-bit integers in a and b, and store the …\nAdd packed 8-bit integers in a and b, and store the …\nAdd packed double-precision (64-bit) floating-point …\nAdd packed half-precision (16-bit) floating-point elements …\nAdd packed single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd the lower double-precision (64-bit) floating-point …\nAdd the lower half-precision (16-bit) floating-point …\nAdd the lower single-precision (32-bit) floating-point …\nAdd packed signed 16-bit integers in a and b using …\nAdd packed signed 8-bit integers in a and b using …\nAdd packed unsigned 16-bit integers in a and b using …\nAdd packed unsigned 8-bit integers in a and b using …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate a and b into a 32-byte immediate result, shift …\nConcatenate pairs of 16-byte blocks in a and b into a …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed double-precision …\nCompute the bitwise AND of packed single-precision …\nCompute the bitwise NOT of packed 32-bit integers in a and …\nCompute the bitwise NOT of packed 64-bit integers in a and …\nCompute the bitwise NOT of packed double-precision …\nCompute the bitwise NOT of packed single-precision …\nAverage packed unsigned 16-bit integers in a and b, and …\nAverage packed unsigned 8-bit integers in a and b, and …\nBroadcasts the lower 2 packed 32-bit integers from a to …\nBroadcast the low packed 8-bit integer from a to all …\nBroadcast the low packed 32-bit integer from a to all …\nBroadcast the low packed 64-bit integer from a to all …\nBroadcast the low single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nContiguously store the active 16-bit integers in a (those …\nContiguously store the active 32-bit integers in a (those …\nContiguously store the active 64-bit integers in a (those …\nContiguously store the active 8-bit integers in a (those …\nContiguously store the active double-precision (64-bit) …\nContiguously store the active single-precision (32-bit) …\nTest each 32-bit element of a for equality with all other …\nTest each 64-bit element of a for equality with all other …\nCompute the complex conjugates of complex numbers in a, …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nSign extend packed 16-bit integers in a to packed 32-bit …\nSign extend packed 16-bit integers in a to packed 64-bit …\nConvert packed 16-bit integers in a to packed 8-bit …\nConvert packed signed 16-bit integers in a to packed …\nConvert packed 32-bit integers in a to packed 16-bit …\nSign extend packed 32-bit integers in a to packed 64-bit …\nConvert packed 32-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed 64-bit integers in a to packed 16-bit …\nConvert packed 64-bit integers in a to packed 32-bit …\nConvert packed 64-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nSign extend packed 8-bit integers in a to packed 16-bit …\nSign extend packed 8-bit integers in a to packed 32-bit …\nSign extend packed 8-bit integers in the low 2 bytes of a …\nZero extend packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 16-bit integers in the low 4 …\nConvert packed unsigned 16-bit integers in a to packed …\nZero extend packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in a to packed …\nZero extend packed unsigned 8-bit integers in th elow 4 …\nZero extend packed unsigned 8-bit integers in the low 2 …\nConvert packed single-precision (32-bit) floating-point …\nConverts packed single-precision (32-bit) floating-point …\nConverts packed BF16 (16-bit) floating-point elements in a …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert the lower double-precision (64-bit) floating-point …\nConvert packed signed 16-bit integers in a to packed 8-bit …\nConvert packed signed 32-bit integers in a to packed …\nConvert packed signed 32-bit integers in a to packed 8-bit …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed …\nConvert packed signed 64-bit integers in a to packed 8-bit …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower half-precision (16-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert the lower single-precision (32-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed double-precision (64-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed double-precision (32-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nConvert packed unsigned 16-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 32-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed unsigned 64-bit integers in a to packed …\nConvert packed half-precision (16-bit) floating-point …\nConvert packed single-precision (32-bit) floating-point …\nCompute the sum of absolute differences (SADs) of …\nDivide packed double-precision (64-bit) floating-point …\nDivide packed half-precision (16-bit) floating-point …\nDivide packed single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nDivide the lower double-precision (64-bit) floating-point …\nDivide the lower half-precision (16-bit) floating-point …\nDivide the lower single-precision (32-bit) floating-point …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 4 adjacent pairs of unsigned 8-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nMultiply groups of 2 adjacent pairs of signed 16-bit …\nLoad contiguous active 16-bit integers from a (those with …\nLoad contiguous active 32-bit integers from a (those with …\nLoad contiguous active 64-bit integers from a (those with …\nLoad contiguous active 8-bit integers from a (those with …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nLoad contiguous active 16-bit integers from unaligned …\nLoad contiguous active 32-bit integers from unaligned …\nLoad contiguous active 64-bit integers from unaligned …\nLoad contiguous active 8-bit integers from unaligned …\nLoad contiguous active double-precision (64-bit) …\nLoad contiguous active single-precision (32-bit) …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply the lower complex number in a by the complex …\nMultiply packed complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nMultiply the lower complex numbers in a by the complex …\nFix up packed double-precision (64-bit) floating-point …\nFix up packed single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nFix up the lower double-precision (64-bit) floating-point …\nFix up the lower single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, accumulate to …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, accumulate …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply packed complex numbers in a and b, and store the …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower complex numbers in a and b, and store …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nConvert the exponent of each packed double-precision …\nConvert the exponent of each packed half-precision …\nConvert the exponent of each packed single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nConvert the exponent of the lower double-precision …\nConvert the exponent of the lower half-precision (16-bit) …\nConvert the exponent of the lower single-precision …\nNormalize the mantissas of packed double-precision …\nNormalize the mantissas of packed half-precision (16-bit) …\nNormalize the mantissas of packed single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nNormalize the mantissas of the lower double-precision …\nNormalize the mantissas of the lower half-precision …\nNormalize the mantissas of the lower single-precision …\nPerforms an affine transformation on the packed bytes in x.\nPerforms an affine transformation on the inverted packed …\nPerforms a multiplication in GF(2^8) on the packed bytes. …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nLoad a double-precision (64-bit) floating-point element …\nLoad a half-precision (16-bit) floating-point element from …\nLoad a single-precision (32-bit) floating-point element …\nLoad packed 16-bit integers from memory into dst using …\nLoad packed 32-bit integers from memory into dst using …\nLoad packed 64-bit integers from memory into dst using …\nLoad packed 8-bit integers from memory into dst using …\nLoad packed double-precision (64-bit) floating-point …\nLoad packed single-precision (32-bit) floating-point …\nCounts the number of leading zero bits in each packed …\nCounts the number of leading zero bits in each packed …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed unsigned 52-bit integers in each 64-bit …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply packed unsigned 8-bit integers in a by packed …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare packed signed 16-bit integers in a and b, and …\nCompare packed signed 32-bit integers in a and b, and …\nCompare packed signed 64-bit integers in a and b, and …\nCompare packed signed 8-bit integers in a and b, and store …\nCompare packed unsigned 16-bit integers in a and b, and …\nCompare packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompare packed unsigned 8-bit integers in a and b, and …\nCompare packed double-precision (64-bit) floating-point …\nCompare packed half-precision (16-bit) floating-point …\nCompare packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nMove packed 16-bit integers from a into dst using zeromask …\nMove packed 32-bit integers from a into dst using zeromask …\nMove packed 64-bit integers from a into dst using zeromask …\nMove packed 8-bit integers from a into dst using zeromask …\nMove packed double-precision (64-bit) floating-point …\nMove packed single-precision (32-bit) floating-point …\nMove the lower double-precision (64-bit) floating-point …\nMove the lower half-precision (16-bit) floating-point …\nMove the lower single-precision (32-bit) floating-point …\nDuplicate even-indexed double-precision (64-bit) …\nDuplicate odd-indexed single-precision (32-bit) …\nDuplicate even-indexed single-precision (32-bit) …\nMultiply the low signed 32-bit integers from each packed …\nMultiply the low unsigned 32-bit integers from each packed …\nMultiply packed complex numbers in a and b, and store the …\nMultiply packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiply packed single-precision (32-bit) floating-point …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the packed signed 16-bit integers in a and b, …\nMultiply the packed unsigned 16-bit integers in a and b, …\nMultiply packed signed 16-bit integers in a and b, …\nMultiply the packed 16-bit integers in a and b, producing …\nMultiply the packed 32-bit integers in a and b, producing …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nCompute the bitwise OR of packed double-precision (64-bit) …\nCompute the bitwise OR of packed single-precision (32-bit) …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nConvert packed signed 16-bit integers from a and b to …\nConvert packed signed 32-bit integers from a and b to …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nCompute the approximate reciprocal of the lower …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcast the low packed 16-bit integer from a to all …\nBroadcast 32-bit integer a to all elements of dst using …\nBroadcast 64-bit integer a to all elements of dst using …\nBroadcast 8-bit integer a to all elements of dst using …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffle 32-bit integers in a within 128-bit lanes using …\nShuffle packed 8-bit integers in a according to shuffle …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in the high 64 bits of 128-bit …\nShuffle 16-bit integers in the low 64 bits of 128-bit …\nShift packed 16-bit integers in a left by count while …\nShift packed 32-bit integers in a left by count while …\nShift packed 64-bit integers in a left by count while …\nShift packed 16-bit integers in a left by imm8 while …\nShift packed 32-bit integers in a left by imm8 while …\nShift packed 64-bit integers in a left by imm8 while …\nShift packed 16-bit integers in a left by the amount …\nShift packed 32-bit integers in a left by the amount …\nShift packed 64-bit integers in a left by the amount …\nCompute the square root of packed double-precision …\nCompute the square root of packed half-precision (16-bit) …\nCompute the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShift packed 16-bit integers in a right by count while …\nShift packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShift packed 16-bit integers in a right by imm8 while …\nShift packed 32-bit integers in a right by imm8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShift packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtract packed single-precision (32-bit) floating-point …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nSubtract packed signed 16-bit integers in b from packed …\nSubtract packed signed 8-bit integers in b from packed …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nUnpack and interleave 16-bit integers from the high half …\nUnpack and interleave 32-bit integers from the high half …\nUnpack and interleave 64-bit integers from the high half …\nUnpack and interleave 8-bit integers from the high half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nUnpack and interleave 16-bit integers from the low half of …\nUnpack and interleave 32-bit integers from the low half of …\nUnpack and interleave 64-bit integers from the low half of …\nUnpack and interleave 8-bit integers from the low half of …\nUnpack and interleave double-precision (64-bit) …\nUnpack and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nCompute the bitwise XOR of packed double-precision …\nCompute the bitwise XOR of packed single-precision …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the maximum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nPerforms a serializing operation on all load-from-memory …\nCompares packed 16-bit integers in a and b, and returns …\nCompares packed 32-bit integers in a and b, and returns …\nCompare packed signed 64-bit integers in a and b, and …\nCompares packed 8-bit integers in a and b and returns …\nCompares packed unsigned 16-bit integers in a and b, and …\nCompares packed unsigned 32-bit integers in a and b, and …\nCompare packed unsigned 64-bit integers in a and b, and …\nCompares packed unsigned 8-bit integers in a and b, and …\nReturns a new vector with the minimum values from …\nCompare packed half-precision (16-bit) floating-point …\nCompares packed single-precision (32-bit) floating-point …\nCompare the lower double-precision (64-bit) floating-point …\nCompare the lower half-precision (16-bit) floating-point …\nCompare the lower single-precision (32-bit) floating-point …\nReturns a new vector with the low element of a replaced by …\nCompare the lower half-precision (16-bit) floating-point …\nCompares the first single-precision (32-bit) …\nFinds the minimum unsigned 16-bit element in the 128-bit __…\nLoads 4 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 4 single-precision (32-bit) floating-point elements …\nLoads 2 32-bit integer elements from memory starting at …\nLoads 2 64-bit integer elements from memory starting at …\nLoads 2 double-precision (64-bit) floating-point elements …\nLoads 2 single-precision (32-bit) floating-point elements …\nReturns a vector where the low element is extracted from a …\nConstructs a 128-bit floating-point vector of [2 x double]…\nMove the lower half-precision (16-bit) floating-point …\nReturns a __m128 with the first component from b and the …\nDuplicate the low double-precision (64-bit) floating-point …\nDuplicate odd-indexed single-precision (32-bit) …\nCombine higher half of a and b. The higher half of b …\nDuplicate even-indexed single-precision (32-bit) …\nCombine lower half of a and b. The lower half of b …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nReturns a mask of the most significant bit of each element …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each bit of mask register k based on the most …\nSet each packed 16-bit integer in dst to all ones or all …\nSet each packed 32-bit integer in dst to all ones or all …\nSet each packed 64-bit integer in dst to all ones or all …\nSet each packed 8-bit integer in dst to all ones or all …\nSubtracts 8-bit unsigned integer values and computes the …\nMultiplies the low 32-bit integers from each packed 64-bit …\nMultiplies the low unsigned 32-bit integers from each …\nMultiply packed complex numbers in a and b, and store the …\nMultiplies packed double-precision (64-bit) floating-point …\nMultiply packed half-precision (16-bit) floating-point …\nMultiplies __m128 vectors.\nMultiply the lower complex numbers in a and b, and store …\nMultiply the lower double-precision (64-bit) …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiply the lower single-precision (32-bit) …\nMultiply the lower complex numbers in a and b, and store …\nReturns a new vector with the low element of a replaced by …\nMultiply the lower half-precision (16-bit) floating-point …\nMultiplies the first component of a and b, the other …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed unsigned 16-bit integers in a and b.\nMultiplies packed 16-bit signed integer values, truncate …\nMultiplies the packed 16-bit integers in a and b.\nMultiplies the packed 32-bit integers in a and b, …\nMultiply packed 64-bit integers in a and b, producing …\nFor each 64-bit element in b, select 8 unaligned bytes …\nCompute the bitwise OR of packed 32-bit integers in a and …\nCompute the bitwise OR of packed 64-bit integers in a and …\nComputes the bitwise OR of a and b.\nBitwise OR of packed single-precision (32-bit) …\nComputes the bitwise OR of 128 bits (representing integer …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nConverts packed 16-bit integers from a and b to packed …\nConverts packed 32-bit integers from a and b to packed …\nProvides a hint to the processor that the code sequence is …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffles double-precision (64-bit) floating-point elements …\nShuffles single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a and b across lanes using the …\nShuffle 32-bit integers in a and b across lanes using the …\nShuffle 64-bit integers in a and b across lanes using the …\nShuffle 8-bit integers in a and b across lanes using the …\nShuffle double-precision (64-bit) floating-point elements …\nShuffle half-precision (16-bit) floating-point elements in …\nShuffle single-precision (32-bit) floating-point elements …\nShuffle 16-bit integers in a across lanes using the …\nShuffle 8-bit integers in a across lanes using the …\nShuffle half-precision (16-bit) floating-point elements in …\nFor each packed 16-bit integer maps the value to the …\nFor each packed 32-bit integer maps the value to the …\nFor each packed 64-bit integer maps the value to the …\nFor each packed 8-bit integer maps the value to the number …\nFetch the cache line that contains address p using the …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCalculate the max, min, absolute max, or absolute min …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of the lower …\nCompute the approximate reciprocal of packed 16-bit …\nReturns the approximate reciprocal of packed …\nCompute the approximate reciprocal of the lower …\nReturns the approximate reciprocal of the first …\nReduce the packed 16-bit integers in a by addition. …\nReduce the packed 8-bit integers in a by addition. Returns …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise AND. …\nReduce the packed 8-bit integers in a by bitwise AND. …\nReduce the packed 16-bit integers in a by maximum. Returns …\nReduce the packed 8-bit integers in a by maximum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by maximum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by minimum. Returns …\nReduce the packed 8-bit integers in a by minimum. Returns …\nReduce the packed unsigned 16-bit integers in a by …\nReduce the packed unsigned 8-bit integers in a by minimum. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by multiplication. …\nReduce the packed 8-bit integers in a by multiplication. …\nReduce the packed half-precision (16-bit) floating-point …\nReduce the packed 16-bit integers in a by bitwise OR. …\nReduce the packed 8-bit integers in a by bitwise OR. …\nExtract the reduced argument of packed double-precision …\nExtract the reduced argument of packed half-precision …\nExtract the reduced argument of packed single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nExtract the reduced argument of the lower double-precision …\nExtract the reduced argument of the lower half-precision …\nExtract the reduced argument of the lower single-precision …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRotate the bits in each packed 32-bit integer in a to the …\nRotate the bits in each packed 64-bit integer in a to the …\nRound the packed double-precision (64-bit) floating-point …\nRound the packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound packed double-precision (64-bit) floating-point …\nRound packed half-precision (16-bit) floating-point …\nRound packed single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nRound the lower double-precision (64-bit) floating-point …\nRound the lower half-precision (16-bit) floating-point …\nRound the lower single-precision (32-bit) floating-point …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of the …\nCompute the approximate reciprocal square root of packed …\nReturns the approximate reciprocal square root of packed …\nCompute the approximate reciprocal square root of the …\nReturns the approximate reciprocal square root of the …\nSum the absolute differences of packed unsigned 8-bit …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed half-precision (16-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed double-precision (64-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nScale the packed single-precision (32-bit) floating-point …\nBroadcasts 16-bit integer a to all elements.\nBroadcasts 32-bit integer a to all elements.\nBroadcasts 64-bit integer a to all elements.\nBroadcasts 8-bit integer a to all elements.\nBroadcasts double-precision (64-bit) floating-point value …\nBroadcast the half-precision (16-bit) floating-point value …\nConstruct a __m128 with all element set to a.\nSets packed 16-bit integers with the supplied values.\nSets packed 32-bit integers with the supplied values.\nSets packed 64-bit integers with the supplied values, from …\nSets packed 8-bit integers with the supplied values.\nSets packed double-precision (64-bit) floating-point …\nBroadcasts double-precision (64-bit) floating-point value …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values highest …\nAlias for _mm_set1_ps\nCopies double-precision (64-bit) floating-point element a …\nCopy half-precision (16-bit) floating-point elements from …\nConstruct a __m128 with the lowest element set to a and …\nSets the MXCSR register with the 32-bit unsigned integer …\nSets packed 16-bit integers with the supplied values in …\nSets packed 32-bit integers with the supplied values in …\nSets packed 8-bit integers with the supplied values in …\nSets packed double-precision (64-bit) floating-point …\nSet packed half-precision (16-bit) floating-point elements …\nConstruct a __m128 from four floating point values lowest …\nReturns packed double-precision (64-bit) floating-point …\nReturn vector of type __m128h with all elements set to …\nConstruct a __m128 with all elements initialized to zero.\nReturns a vector with all elements set to zero.\nPerforms a serializing operation on all non-temporal (“…\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA1 …\nCalculate SHA1 state variable E after four rounds of …\nPerforms four rounds of SHA1 operation using an initial …\nPerforms an intermediate calculation for the next four …\nPerforms the final calculation for the next four SHA256 …\nPerforms 2 rounds of SHA256 operation using an initial …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in a and b producing an …\nConcatenate packed 32-bit integers in a and b producing an …\nConcatenate packed 64-bit integers in a and b producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nConcatenate packed 16-bit integers in b and a producing an …\nConcatenate packed 32-bit integers in b and a producing an …\nConcatenate packed 64-bit integers in b and a producing an …\nShuffles 32-bit integers in a using the control in IMM8.\nShuffles bytes from a according to the content of b.\nConstructs a 128-bit floating-point vector of [2 x double] …\nShuffles packed single-precision (32-bit) floating-point …\nShuffles 16-bit integers in the high 64 bits of a using …\nShuffles 16-bit integers in the low 64 bits of a using the …\nNegates packed 16-bit integers in a when the corresponding …\nNegates packed 32-bit integers in a when the corresponding …\nNegates packed 8-bit integers in a when the corresponding …\nShifts packed 16-bit integers in a left by count while …\nShifts packed 32-bit integers in a left by count while …\nShifts packed 64-bit integers in a left by count while …\nShifts packed 16-bit integers in a left by IMM8 while …\nShifts packed 32-bit integers in a left by IMM8 while …\nShifts packed 64-bit integers in a left by IMM8 while …\nShifts a left by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a left by the amount …\nShifts packed 32-bit integers in a left by the amount …\nShifts packed 64-bit integers in a left by the amount …\nReturns a new vector with the square root of each of the …\nCompute the square root of packed half-precision (16-bit) …\nReturns the square root of packed single-precision …\nCompute the square root of the lower double-precision …\nCompute the square root of the lower half-precision …\nCompute the square root of the lower single-precision …\nReturns a new vector with the low element of a replaced by …\nCompute the square root of the lower half-precision …\nReturns the square root of the first single-precision …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShift packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShift packed 64-bit integers in a right by imm8 while …\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShift packed 64-bit integers in a right by the amount …\nShifts packed 16-bit integers in a right by count while …\nShifts packed 32-bit integers in a right by count while …\nShifts packed 64-bit integers in a right by count while …\nShifts packed 16-bit integers in a right by IMM8 while …\nShifts packed 32-bit integers in a right by IMM8 while …\nShifts packed 64-bit integers in a right by IMM8 while …\nShifts a right by IMM8 bytes while shifting in zeros.\nShift packed 16-bit integers in a right by the amount …\nShifts packed 32-bit integers in a right by the amount …\nShifts packed 64-bit integers in a right by the amount …\nStores the lower double-precision (64-bit) floating-point …\nStores the lowest 32 bit float of a repeated four times …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStores the lower double-precision (64-bit) floating-point …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into aligned memory.\nAlias for _mm_store1_ps\nStores the lower 64 bits of a 128-bit vector of …\nStore the lower half-precision (16-bit) floating-point …\nStores 128-bits of integer data from a into memory.\nStores the lowest 32 bit float of a into memory.\nStores the upper 64 bits of a 128-bit vector of …\nStores the lower 64-bit integer a to a memory location.\nStores the lower 64 bits of a 128-bit vector of …\nStores 2 double-precision (64-bit) floating-point elements …\nStores four 32-bit floats into aligned memory in reverse …\nStore 128-bits (composed of 8 packed 16-bit integers) from …\nStore 128-bits (composed of 4 packed 32-bit integers) from …\nStore 128-bits (composed of 2 packed 64-bit integers) from …\nStore 128-bits (composed of 16 packed 8-bit integers) from …\nStores 128-bits (composed of 2 packed double-precision …\nStore 128-bits (composed of 8 packed half-precision …\nStores four 32-bit floats into memory. There are no …\nStores 128-bits of integer data from a into memory.\nStore 16-bit integer from the first element of a into …\nStore 32-bit integer from the first element of a into …\nStore 64-bit integer from the first element of a into …\nLoad 128-bits of integer data from memory into dst. …\nStores a 128-bit floating point vector of [2 x double] to …\nStores a into the memory at mem_addr using a non-temporal …\nNon-temporal store of a.0 into p.\nStores a 128-bit integer vector to a 128-bit aligned …\nStores a 32-bit integer value in the specified memory …\nStores a 64-bit integer value in the specified memory …\nNon-temporal store of a.0 into p.\nSubtracts packed 16-bit integers in b from packed 16-bit …\nSubtract packed 32-bit integers in b from packed 32-bit …\nSubtract packed 64-bit integers in b from packed 64-bit …\nSubtracts packed 8-bit integers in b from packed 8-bit …\nSubtract packed double-precision (64-bit) floating-point …\nSubtract packed half-precision (16-bit) floating-point …\nSubtracts __m128 vectors.\nSubtract the lower double-precision (64-bit) …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtract the lower single-precision (32-bit) …\nReturns a new vector with the low element of a replaced by …\nSubtract the lower half-precision (16-bit) floating-point …\nSubtracts the first component of b from a, the other …\nSubtract packed 16-bit integers in b from packed 16-bit …\nSubtract packed 8-bit integers in b from packed 8-bit …\nSubtract packed unsigned 16-bit integers in b from packed …\nSubtract packed unsigned 8-bit integers in b from packed …\nBitwise ternary logic that provides the capability to …\nBitwise ternary logic that provides the capability to …\nTests whether the specified bits in a 128-bit integer …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise AND of packed 16-bit integers in a and …\nCompute the bitwise AND of packed 32-bit integers in a and …\nCompute the bitwise AND of packed 64-bit integers in a and …\nCompute the bitwise AND of packed 8-bit integers in a and …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCompute the bitwise NAND of packed 16-bit integers in a …\nCompute the bitwise NAND of packed 32-bit integers in a …\nCompute the bitwise NAND of packed 64-bit integers in a …\nCompute the bitwise NAND of packed 8-bit integers in a and …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nComputes the bitwise AND of 128 bits (representing …\nComputes the bitwise AND of 128 bits (representing …\nTests whether the specified bits in a 128-bit integer …\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCompares the lower element of a and b for equality.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for greater-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for …\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for less-than.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nCompares the lower element of a and b for not-equal.\nCompare the lower half-precision (16-bit) floating-point …\nCompares two 32-bit floats from the low-order bits of a …\nReturns vector of type __m128d with indeterminate elements.\nReturn vector of type __m128h with undefined elements. In …\nReturns vector of type __m128 with indeterminate elements. …\nReturns vector of type __m128i with indeterminate elements.\nUnpacks and interleave 16-bit integers from the high half …\nUnpacks and interleave 32-bit integers from the high half …\nUnpacks and interleave 64-bit integers from the high half …\nUnpacks and interleave 8-bit integers from the high half …\nThe resulting __m128d element is composed by the low-order …\nUnpacks and interleave single-precision (32-bit) …\nUnpacks and interleave 16-bit integers from the low half …\nUnpacks and interleave 32-bit integers from the low half …\nUnpacks and interleave 64-bit integers from the low half …\nUnpacks and interleave 8-bit integers from the low half of …\nThe resulting __m128d element is composed by the …\nUnpacks and interleave single-precision (32-bit) …\nCompute the bitwise XOR of packed 32-bit integers in a and …\nCompute the bitwise XOR of packed 64-bit integers in a and …\nComputes the bitwise XOR of a and b.\nBitwise exclusive OR of packed single-precision (32-bit) …\nComputes the bitwise XOR of 128 bits (representing integer …\nUnsigned multiply without affecting flags.\nUnsigned multiply without affecting flags.\nScatter contiguous low order bits of a to the result at …\nScatter contiguous low order bits of a to the result at …\nGathers the bits of x specified by the mask into the …\nGathers the bits of x specified by the mask into the …\nCounts the bits that are set.\nCounts the bits that are set.\nRead a hardware generated 16-bit random value and store …\nRead a hardware generated 32-bit random value and store …\nRead a hardware generated 64-bit random value and store …\nRead a 16-bit NIST SP800-90B and SP800-90C compliant …\nRead a 32-bit NIST SP800-90B and SP800-90C compliant …\nRead a 64-bit NIST SP800-90B and SP800-90C compliant …\nReads the current value of the processor’s time-stamp …\nStore 16-bit mask to memory\nStore 32-bit mask from a into memory.\nStore 64-bit mask from a into memory.\nStore 8-bit mask to memory\nAdds unsigned 32-bit integers a and b with unsigned 8-bit …\nAdds unsigned 64-bit integers a and b with unsigned 8-bit …\nClears all bits below the least significant zero of x and …\nClears all bits below the least significant zero of x and …\nPerform matrix multiplication of two tiles containing …\nPerform matrix multiplication of two tiles containing …\nCompute dot-product of BF16 (16-bit) floating-point pairs …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of bytes in tiles with a …\nCompute dot-product of FP16 (16-bit) floating-point pairs …\nLoad tile configuration from a 64-byte memory location …\nLoad tile rows from memory specifieid by base address and …\nRelease the tile configuration to return to the init …\nStores the current tile configuration to a 64-byte memory …\nStore the tile specified by src to memory specifieid by …\nLoad tile rows from memory specifieid by base address and …\nZero the tile specified by tdest.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nCounts the number of trailing least significant zero bits.\nSets all bits below the least significant one of x and …\nSets all bits below the least significant one of x and …\nForces a restricted transactional memory (RTM) region to …\nRetrieves the parameter passed to _xabort when _xbegin’s …\nSpecifies the start of a restricted transactional memory …\nSpecifies the end of a restricted transactional memory …\nReads the contents of the extended control register XCR …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial restore of the enabled …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nPerforms a full or partial save of the enabled processor …\nCopies 64-bits from val to the extended control register (…\nQueries whether the processor is executing in a …\nThe BFloat16 type used in AVX-512 intrinsics.\nCompares and exchange 16 bytes (128 bits) of data …\nEAX register.\nEBX register.\nECX register.\nEDX register.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nRaw transmutation from u16\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRaw transmutation to u16\nA by-value array iterator.\nThe error type returned when a conversion from a slice to …\nReturns a mutable slice of all elements that have not been …\nReturns an immutable slice of all elements that have not …\nCreates an iterator over T which returns no elements.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates an array of type [T; N], where each element T is …\nConverts a mutable reference to T into a mutable reference …\nConverts a reference to T into a reference to an array of …\nCalls U::from(self).\nCalls U::from(self).\nCreates a new iterator over the given array.\nCreates an iterator over the elements in a …\nCreates an array of type [T; N] by repeatedly cloning a …\nCreates an array [T; N] where each fallible array element T…\nU+0006\nU+0026\nU+0027\nExtension methods for ASCII-subset only operations.\nU+002A\nU+0008\nU+0007\nU+0018\nU+0041\nU+0042\nU+0043\nU+0044\nU+0045\nU+0046\nU+0047\nU+0048\nU+0049\nU+004A\nU+004B\nU+004C\nU+004D\nU+004E\nU+004F\nU+0050\nU+0051\nU+0052\nU+0053\nU+0054\nU+0055\nU+0056\nU+0057\nU+0058\nU+0059\nU+005A\nU+000D\nOne of the 128 Unicode characters from U+0000 through …\nU+0009\nU+005E\nU+003A\nU+002C\nU+0040\nU+0010\nU+007F\nU+0014\nU+0011\nU+0013\nU+0012\nU+0030\nU+0031\nU+0032\nU+0033\nU+0034\nU+0035\nU+0036\nU+0037\nU+0038\nU+0039\nU+0024\nU+0019\nU+0003\nU+0004\nU+0017\nU+0005\nU+003D\nU+001B\nAn iterator over the escaped version of a byte.\nU+0021\nU+000C\nU+002E\nU+0060\nU+003E\nU+002D\nU+001C\nU+001F\nU+001D\nU+001E\nU+007B\nU+0028\nU+005B\nU+003C\nU+000A\nU+000B\nU+005F\nU+0015\nU+0000 (The default variant)\nU+0023\nContainer type for copied ASCII characters.\nU+0025\nU+002B\nU+003F\nU+0022\nU+005C\nU+007D\nU+0029\nU+005D\nU+003B\nU+000F\nU+000E\nU+0061\nU+0062\nU+0063\nU+0064\nU+0065\nU+0066\nU+0067\nU+0068\nU+0069\nU+006A\nU+006B\nU+006C\nU+006D\nU+006E\nU+006F\nU+0070\nU+0071\nU+0072\nU+0073\nU+0074\nU+0075\nU+0076\nU+0077\nU+0078\nU+0079\nU+007A\nU+002F\nU+0020\nU+0001\nU+0002\nU+001A\nU+0016\nU+007E\nU+007C\nViews this ASCII character as a one-code-unit UTF-8 str.\nReturns the default value of Null\nWhen passed the number 0, 1, …, 9, returns the character …\nWhen passed the number 0, 1, …, 9, returns the character …\nChecks that two values are an ASCII case-insensitive match.\nReturns an iterator that produces an escaped version of a …\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates an ascii character from the byte b, or returns None…\nCreates an ASCII character from the byte b, without …\nCalls U::from(self).\nCalls U::from(self).\nChecks if the value is within the ASCII range.\nConverts this type to its ASCII lower case equivalent …\nConverts this type to its ASCII upper case equivalent …\nMakes a copy of the value in its ASCII lower case …\nMakes a copy of the value in its ASCII upper case …\nGets this ASCII character as a char Unicode Scalar Value.\nGets this ASCII character as a byte.\nAsserts that an expression matches the provided pattern.\nAsserts that an expression matches the provided pattern.\nA trait for dealing with asynchronous iterators.\nAn async iterator that was created from iterator.\nThe type of the resulting iterator\nConverts something into an async iterator\nThe type of items yielded by the async iterator.\nThe type of the item yielded by the iterator\nReturns the argument unchanged.\nConverts an iterator into an async iterator.\nCalls U::from(self).\nConverts self into an async iterator\nAttempts to pull out the next value of this async …\nReturns the bounds on the remaining length of the async …\nA captured OS thread stack backtrace.\nA single frame of a backtrace.\nThe current status of a backtrace, indicating whether it …\nA backtrace has been captured and the Backtrace should …\nCapturing a backtrace has been disabled through either the …\nCapturing a backtrace is not supported, likely because it…\nCaptures a stack backtrace of the current thread.\nForcibly captures a disabled backtrace, regardless of …\nForcibly captures a full backtrace, regardless of …\nReturns an iterator over the backtrace frames.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the status of this backtrace, indicating whether …\nA trait for borrowing data.\nA trait for mutably borrowing data.\nBorrowed data.\nA clone-on-write smart pointer.\nOwned data.\nThe resulting type after obtaining ownership.\nA generalization of Clone to borrowed data.\nImmutably borrows from an owned value.\nMutably borrows from an owned value.\nUses borrowed data to replace owned data, usually by …\nCreates an owned Cow<’a, B> with the default value for …\nConverts a CString into an owned Cow without copying or …\nConverts a CStr into a borrowed Cow without copying or …\nCreates a clone-on-write pointer from an owned instance of …\nCreates a clone-on-write pointer from a reference to …\nCreates a Borrowed variant of Cow from a reference to Vec.\nCreates an Owned variant of Cow from an owned instance of …\nCreates a Borrowed variant of Cow from a reference to an …\nConverts a String into an Owned variant. No heap …\nConverts a String reference into a Borrowed variant. No …\nConverts the string reference into a Cow::Borrowed.\nConverts the string reference into a Cow::Borrowed.\nCreates a clone-on-write pointer from a reference to Path.\nCreates a Borrowed variant of Cow from a slice.\nConverts a string slice into a Borrowed variant. No heap …\nMoves the string into a Cow::Owned.\nConverts a &CString into a borrowed Cow without copying or …\nReturns the argument unchanged.\nCalls U::from(self).\nExtracts the owned data.\nReturns true if the data is borrowed, i.e. if to_mut would …\nReturns true if the data is owned, i.e. if to_mut would be …\nAcquires a mutable reference to the owned form of the data.\nCreates owned data from borrowed data, usually by cloning.\nA pointer type that uniquely owns a heap allocation of …\nThinBox.\nReturns a reference to the underlying allocator.\nReturns a raw mutable pointer to the Box’s contents.\nReturns a raw pointer to the Box’s contents.\nConverts to Box<[T], A>.\nConverts to Box<T, A>.\nReturns a new box with a clone() of this box’s contents.\nCopies source’s contents into self without creating a …\nCopies source’s contents into self without creating a …\nCreates a Box<T>, with the Default value for T.\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nDowncasts the box to a concrete type.\nDowncasts the box to a concrete type.\nDowncasts the box to a concrete type.\nReturns the argument unchanged.\nConverts a str into a box of dyn Error + Send + Sync.\nConverts a CString into a Box<CStr> without copying or …\nConverts a Cow<'a, OsStr> into a Box<OsStr>, by copying …\nConverts an OsString into a Box<OsStr> without copying or …\nCreates a boxed Path from a reference.\nConverts a T into a Box<T>\nConverts a &[T] into a Box<[T]>\nConverts a Cow<'_, [T]> into a Box<[T]>\nReturns the argument unchanged.\nCreates a boxed Path from a clone-on-write pointer.\nConverts a PathBuf into a Box<Path>.\nConverts a &str into a Box<str>\nConverts a vector into a boxed slice.\nConverts a Cow<'_, str> into a Box<str>\nConverts a Box<str> into a Box<[u8]>\nConverts the given String to a boxed str slice that is …\nConverts a [T; N] into a Box<[T]>\nConverts a type of Error into a box of dyn Error.\nConverts a type of Error + Send + Sync into a box of dyn …\nConverts a String into a box of dyn Error + Send + Sync.\nConverts a String into a box of dyn Error.\nConverts a str into a box of dyn Error.\nConverts a Cow into a box of dyn Error + Send + Sync.\nConverts a Cow into a box of dyn Error.\nConverts a &CStr into a Box<CStr>, by copying the contents …\nConverts a Cow<'a, CStr> into a Box<CStr>, by copying the …\nCopies the string into a newly allocated Box<OsStr>.\nConstructs a box from a raw pointer.\nConstructs a box from a raw pointer in the given allocator.\nCalls U::from(self).\nCalls U::from(self).\nConverts a Box<T> into a Box<[T]>\nConsumes the Box, returning the wrapped value.\nConverts a Box<T> into a Pin<Box<T>>. If T does not …\nConsumes the Box, returning a wrapped raw pointer.\nConsumes the Box, returning a wrapped raw pointer and the …\nConsumes and leaks the Box, returning a mutable reference, …\nMoves a type to the heap with its Metadata stored in the …\nAllocates memory on the heap and then places x into it.\nAllocates memory in the given allocator then places x into …\nConstructs a new box with uninitialized contents.\nConstructs a new box with uninitialized contents in the …\nConstructs a new boxed slice with uninitialized contents.\nConstructs a new boxed slice with uninitialized contents …\nMoves a type to the heap with its Metadata stored in the …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new boxed slice with uninitialized contents, …\nConstructs a new boxed slice with uninitialized contents …\nConstructs a new Pin<Box<T>>. If T does not implement Unpin…\nConstructs a new Pin<Box<T, A>>. If T does not implement …\nAttempts to convert a Vec<T> into a Box<[T; N]>.\nAttempts to convert a Box<[T]> into a Box<[T; N]>.\nMoves a type to the heap with its Metadata stored in the …\nAllocates memory on the heap then places x into it, …\nAllocates memory in the given allocator then places x into …\nConstructs a new box with uninitialized contents on the …\nConstructs a new box with uninitialized contents in the …\nConstructs a new boxed slice with uninitialized contents. …\nConstructs a new boxed slice with uninitialized contents …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new Box with uninitialized contents, with the …\nConstructs a new boxed slice with uninitialized contents, …\nConstructs a new boxed slice with uninitialized contents …\nWrites the value and converts to Box<T, A>.\nAn error returned by RefCell::try_borrow.\nAn error returned by RefCell::try_borrow_mut.\nA mutable memory location.\nA value which is initialized on the first access.\nA cell which can nominally be written to only once.\nWraps a borrowed reference to a value in a RefCell box. A …\nA mutable memory location with dynamically checked borrow …\nA wrapper type for a mutably borrowed value from a …\nUnsafeCell, but Sync.\nThe core primitive for interior mutability in Rust.\nReturns a &[Cell<T>; N] from a &Cell<[T; N]>\nReturns a raw pointer to the underlying data in this cell.\nReturns a raw pointer to the underlying data in this cell.\nReturns a &[Cell<T>] from a &Cell<[T]>\nImmutably borrows the wrapped value.\nMutably borrows the wrapped value.\nPanics\nCopies a Ref.\nPanics\nPanics\nCreates a new lazy value using Default as the initializing …\nCreates a Cell<T>, with the Default value for T.\nCreates a RefCell<T>, with the Default value for T.\nCreates an UnsafeCell, with the Default value for T.\nCreates an SyncUnsafeCell, with the Default value for T.\nPanics\nMakes a new Ref for an optional component of the borrowed …\nMakes a new RefMut for an optional component of the …\nForces the evaluation of this lazy value and returns a …\nReturns the argument unchanged.\nCreates a new OnceCell<T> which already contains the given …\nReturns the argument unchanged.\nCreates a new Cell<T> containing the given value.\nReturns the argument unchanged.\nCreates a new RefCell<T> containing the given value.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new UnsafeCell<T> containing the given value.\nReturns the argument unchanged.\nCreates a new SyncUnsafeCell<T> containing the given value.\nReturns a &Cell<T> from a &mut T\nConverts from &mut T to &mut UnsafeCell<T>.\nPanics\nGets the reference to the underlying value.\nReturns a copy of the contained value.\nGets a mutable pointer to the wrapped value.\nGets a mutable pointer to the wrapped value.\nGets the mutable reference to the underlying value.\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nReturns a mutable reference to the underlying data.\nGets the mutable reference of the contents of the cell, …\nGets the mutable reference of the contents of the cell, …\nGets the contents of the cell, initializing it with f if …\nGets the contents of the cell, initializing it with f if …\nPanics\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes this LazyCell returning the stored value.\nConsumes the cell, returning the wrapped value.\nUnwraps the value, consuming the cell.\nConsumes the RefCell, returning the wrapped value.\nUnwraps the value, consuming the cell.\nUnwraps the value, consuming the cell.\nPanics\nConverts into a reference to the underlying data.\nConverts into a mutable reference to the underlying data.\nPanics\nMakes a new Ref for a component of the borrowed data.\nMakes a new RefMut for a component of the borrowed data, …\nSplits a Ref into multiple Refs for different components …\nSplits a RefMut into multiple RefMuts for different …\nCreates a new lazy value with the given initializing …\nCreates a new empty cell.\nCreates a new Cell containing the given value.\nCreates a new RefCell containing value.\nConstructs a new instance of UnsafeCell which will wrap …\nConstructs a new instance of SyncUnsafeCell which will …\nPanics\nGets a mutable pointer to the wrapped value. The …\nGets a mutable pointer to the wrapped value.\nReplaces the contained value with val, and returns the old …\nReplaces the wrapped value with a new one, returning the …\nReplaces the wrapped value with a new one computed from f, …\nSets the contents of the cell to value.\nSets the contained value.\nSwaps the values of two Cells.\nSwaps the wrapped value of self with the wrapped value of …\nTakes the value out of this OnceCell, moving it back to an …\nTakes the value of the cell, leaving Default::default() in …\nTakes the wrapped value, leaving Default::default() in its …\nImmutably borrows the wrapped value, returning an error if …\nMutably borrows the wrapped value, returning an error if …\nImmutably borrows the wrapped value, returning an error if …\nSets the contents of the cell to value if the cell was …\nUndo the effect of leaked guards on the borrow state of …\nUpdates the contained value using a function and returns …\nThe error type returned when a conversion from u32 to char …\nAn iterator that decodes UTF-16 encoded code points from …\nAn error that can be returned when decoding UTF-16 code …\nAn iterator that yields the literal escape code of a char.\nAn iterator that yields the literal escape code of a char.\nReturns an iterator that yields the hexadecimal Unicode …\nThe highest valid code point a char can have, '\\u{10FFFF}'…\nAn error which can be returned when parsing a char.\nU+FFFD REPLACEMENT CHARACTER (�) is used in Unicode to …\nReturns an iterator that yields the lowercase equivalent …\nReturns an iterator that yields the uppercase equivalent …\nThe error type returned when a checked char conversion …\nThe version of Unicode that the Unicode parts of char and …\nCreates an iterator over the UTF-16 encoded code points in …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a digit in the given radix to a char. Use …\nConverts a u32 to a char. Use char::from_u32 instead.\nConverts a u32 to a char, ignoring validity. Use …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the unpaired surrogate which caused this error.\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nA generalization of Clone to dynamically-sized types …\nReturns a copy of the value.\nPerforms copy-assignment from source.\nPerforms copy-assignment from self to dst.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nAn ordering where a compared value is equal to another.\nAn ordering where a compared value is greater than another.\nAn ordering where a compared value is less than another.\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nAn Ordering is the result of a comparison between two …\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nA helper struct for reverse ordering.\nRestrict a value to a certain interval.\nThis method returns an Ordering between self and other.\nTests for self and other values to be equal, and is used …\nReturns the argument unchanged.\nReturns the argument unchanged.\nTests greater than or equal to (for self and other) and is …\nTests greater than (for self and other) and is used by the …\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the ordering is the Equal variant.\nReturns true if the ordering is either the Greater or Equal…\nReturns true if the ordering is the Greater variant.\nReturns true if the ordering is either the Less or Equal …\nReturns true if the ordering is the Less variant.\nReturns true if the ordering is not the Equal variant.\nTests less than or equal to (for self and other) and is …\nTests less than (for self and other) and is used by the < …\nCompares and returns the maximum of two values.\nCompares and returns the maximum of two values.\nReturns the maximum of two values with respect to the …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nCompares and returns the minimum of two values.\nReturns the minimum of two values with respect to the …\nReturns the element that gives the minimum value from the …\nCompares and sorts two values, returning minimum and …\nReturns minimum and maximum values with respect to the …\nReturns minimum and maximum values with respect to the …\nTests for !=. The default implementation is almost always …\nThis method returns an ordering between self and other …\nReverses the Ordering.\nChains two orderings.\nChains the ordering with the given function.\nThe memory allocator returned an error\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nA priority queue implemented with a binary heap.\nAn endpoint of a range of keys.\nError due to the computed capacity exceeding the collection…\nAn exclusive bound.\nA hash map implemented with quadratic probing and SIMD …\nA hash set implemented as a HashMap where the value is ().\nAn inclusive bound.\nA doubly-linked list with owned nodes.\nThe error type for try_reserve methods.\nDetails of the allocation that caused a TryReserveError\nAn infinite endpoint. Indicates that there is no bound in …\nA double-ended queue implemented with a growable ring …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nMoves all the elements of other into self, leaving other …\nMoves all elements from other into self, leaving other …\nMoves all elements from other into self, leaving other …\nMoves all elements from other to the end of the list.\nMoves all the elements of other into self, leaving other …\nReturns a pair of slices which contain, in order, the …\nReturns a slice of all values in the underlying vector, in …\nReturns a pair of slices which contain, in order, the …\nProvides a reference to the back element, or None if the …\nProvides a reference to the back element, or None if the …\nProvides a mutable reference to the back element, or None …\nProvides a mutable reference to the back element, or None …\nA priority queue implemented with a binary heap.\nBinary searches this VecDeque for a given element. If the …\nBinary searches this VecDeque with a comparator function.\nBinary searches this VecDeque with a key extraction …\nReturns the intersection of self and rhs as a new …\nReturns the intersection of self and rhs as a new …\nReturns the union of self and rhs as a new HashSet<T, S>.\nReturns the union of self and rhs as a new BTreeSet<T>.\nReturns the symmetric difference of self and rhs as a new …\nReturns the symmetric difference of self and rhs as a new …\nAn ordered map based on a B-Tree.\nAn ordered set based on a B-Tree.\nReturns the number of elements the map can hold without …\nReturns the number of elements the binary heap can hold …\nReturns the number of elements the set can hold without …\nReturns the number of elements the deque can hold without …\nClears the map, removing all key-value pairs. Keeps the …\nDrops all items from the binary heap.\nClears the map, removing all elements.\nClears the set, removing all values.\nClears the set, removing all elements.\nRemoves all elements from the LinkedList.\nClears the deque, removing all values.\nOverwrites the contents of self with a clone of the …\nOverwrites the contents of self with a clone of the …\nOverwrites the contents of self with a clone of the …\nOverwrites the contents of self with a clone of the …\nReturns true if the set contains a value.\nReturns true if the set contains an element equal to the …\nReturns true if the LinkedList contains an element equal …\nReturns true if the deque contains an element equal to the …\nReturns true if the map contains a value for the specified …\nReturns true if the map contains a value for the specified …\nProvides a cursor at the back element.\nProvides a cursor with editing operations at the back …\nProvides a cursor at the front element.\nProvides a cursor with editing operations at the front …\nCreates an empty HashMap<K, V, S>, with the Default value …\nCreates an empty BinaryHeap<T>.\nCreates an empty BTreeMap.\nCreates an empty HashSet<T, S> with the Default value for …\nCreates an empty BTreeSet.\nCreates an empty LinkedList<T>.\nCreates an empty deque.\nVisits the values representing the difference, i.e., the …\nVisits the elements representing the difference, i.e., the …\nClears the map, returning all key-value pairs as an …\nClears the binary heap, returning an iterator over the …\nClears the set, returning all elements as an iterator. …\nRemoves the specified range from the deque in bulk, …\nClears the binary heap, returning an iterator over the …\nGets the given key’s corresponding entry in the map for …\nGets the given key’s corresponding entry in the map for …\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that visits all elements (key-value …\nCreates an iterator which uses a closure to determine if a …\nCreates an iterator that visits all elements in ascending …\nCreates an iterator which uses a closure to determine if …\nReturns the contents of the “front” slice as returned …\nReturns a reference to the first element in the set, if …\nReturns the first entry in the map for in-place …\nReturns the first key-value pair in the map. The key in …\nExamples\nReturns the argument unchanged.\nConverts a Vec<T> into a BinaryHeap<T>.\nReturns the argument unchanged.\nConverts a [(K, V); N] into a BTreeMap<(K, V)>.\nReturns the argument unchanged.\nExamples\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a [T; N] into a BTreeSet<T>.\nConverts a [T; N] into a LinkedList<T>.\nReturns the argument unchanged.\nConverts a [T; N] into a VecDeque<T>.\nTurn a Vec<T> into a VecDeque<T>.\nReturns the argument unchanged.\nReturns the argument unchanged.\nAlways evaluates to TryReserveErrorKind::CapacityOverflow.\nReturns the argument unchanged.\nProvides a reference to the front element, or None if the …\nProvides a reference to the front element, or None if the …\nProvides a mutable reference to the front element, or None …\nProvides a mutable reference to the front element, or None …\nReturns a reference to the value corresponding to the key.\nReturns a reference to the value corresponding to the key.\nReturns a reference to the value in the set, if any, that …\nReturns a reference to the element in the set, if any, …\nProvides a reference to the element at the given index.\nReturns the key-value pair corresponding to the supplied …\nReturns the key-value pair corresponding to the supplied …\nAttempts to get mutable references to N values in the map …\nAttempts to get mutable references to N values in the map …\nReturns a mutable reference to the value corresponding to …\nReturns a mutable reference to the value corresponding to …\nProvides a mutable reference to the element at the given …\nInserts the given value into the set if it is not present, …\nInserts an owned copy of the given value into the set if …\nInserts a value computed from f into the set if the given …\nA hash map implemented with quadratic probing and SIMD …\nA hash set implemented as a HashMap where the value is ().\nReturns a reference to the map’s BuildHasher.\nReturns a reference to the set’s BuildHasher.\nReturns a reference to the value corresponding to the …\nReturns a reference to the value corresponding to the …\nInserts a key-value pair into the map.\nInserts a key-value pair into the map.\nAdds a value to the set.\nAdds a value to the set.\nInserts an element at index within the deque, shifting all …\nVisits the values representing the intersection, i.e., the …\nVisits the elements representing the intersection, i.e., …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreates a consuming iterator, that is, one that moves each …\nCreates a consuming iterator, that is, one that moves each …\nGets an owning iterator over the entries of the map, …\nCreates a consuming iterator, that is, one that moves each …\nGets an iterator for moving out the BTreeSet’s contents …\nConsumes the list into an iterator yielding elements by …\nConsumes the deque into a front-to-back iterator yielding …\nReturns an iterator which retrieves elements in heap order.\nCreates a consuming iterator visiting all the keys in …\nCreates a consuming iterator visiting all the keys, in …\nConsumes the BinaryHeap and returns a vector in sorted …\nCreates a consuming iterator visiting all the values in …\nCreates a consuming iterator visiting all the values, in …\nConsumes the BinaryHeap and returns the underlying vector …\nReturns true if self has no elements in common with other. …\nReturns true if self has no elements in common with other. …\nReturns true if the map contains no elements.\nChecks if the binary heap is empty.\nReturns true if the map contains no elements.\nReturns true if the set contains no elements.\nReturns true if the set contains no elements.\nReturns true if the LinkedList is empty.\nReturns true if the deque is empty.\nReturns true if the set is a subset of another, i.e., other…\nReturns true if the set is a subset of another, i.e., other…\nReturns true if the set is a superset of another, i.e., …\nReturns true if the set is a superset of another, i.e., …\nAn iterator visiting all key-value pairs in arbitrary …\nReturns an iterator visiting all values in the underlying …\nGets an iterator over the entries of the map, sorted by …\nAn iterator visiting all elements in arbitrary order. The …\nGets an iterator that visits the elements in the BTreeSet …\nProvides a forward iterator.\nReturns a front-to-back iterator.\nAn iterator visiting all key-value pairs in arbitrary …\nGets a mutable iterator over the entries of the map, …\nProvides a forward iterator with mutable references.\nReturns a front-to-back iterator that returns mutable …\nAn iterator visiting all keys in arbitrary order. The …\nGets an iterator over the keys of the map, in sorted order.\nDetails about the allocation that caused the error\nReturns a reference to the last element in the set, if any.\nReturns the last entry in the map for in-place …\nReturns the last key-value pair in the map. The key in …\nReturns the number of elements in the map.\nReturns the length of the binary heap.\nReturns the number of elements in the map.\nReturns the number of elements in the set.\nReturns the number of elements in the set.\nReturns the length of the LinkedList.\nReturns the number of elements in the deque.\nA doubly-linked list with owned nodes.\nReturns a Cursor pointing at the gap before the smallest …\nReturns a Cursor pointing at the gap before the smallest …\nReturns a CursorMut pointing at the gap before the …\nReturns a CursorMut pointing at the gap before the …\nRearranges the internal storage of this deque so it is one …\nCreates an empty HashMap.\nCreates an empty BinaryHeap as a max-heap.\nMakes a new, empty BTreeMap.\nCreates an empty HashSet.\nMakes a new, empty BTreeSet.\nCreates an empty LinkedList.\nCreates an empty deque.\nCreates an empty BinaryHeap as a max-heap, using A as …\nMakes a new empty BTreeMap with a reasonable choice for B.\nMakes a new BTreeSet with a reasonable choice of B.\nConstructs an empty LinkedList<T, A>.\nCreates an empty deque.\nReturns the index of the partition point according to the …\nReturns the greatest item in the binary heap, or None if …\nReturns a mutable reference to the greatest item in the …\nRemoves the greatest item from the binary heap and returns …\nRemoves the last element from a list and returns it, or …\nRemoves the last element from the deque and returns it, or …\nRemoves and returns the first element in the map. The key …\nRemoves the first element from the set and returns it, if …\nRemoves the first element and returns it, or None if the …\nRemoves the first element and returns it, or None if the …\nRemoves and returns the last element in the map. The key …\nRemoves the last element from the set and returns it, if …\nPushes an item onto the binary heap.\nAppends an element to the back of a list.\nAppends an element to the back of the deque.\nAdds an element first in the list.\nPrepends an element to the deque.\nConstructs a double-ended iterator over a sub-range of …\nConstructs a double-ended iterator over a sub-range of …\nCreates an iterator that covers the specified range in the …\nConstructs a mutable double-ended iterator over a …\nCreates an iterator that covers the specified mutable …\nCreates a raw immutable entry builder for the HashMap.\nCreates a raw entry builder for the HashMap.\nFill buf with the contents of the “front” slice as …\nRemoves a key from the map, returning the value at the key …\nRemoves a key from the map, returning the value at the key …\nRemoves a value from the set. Returns whether the value was\nIf the set contains an element equal to the value, removes …\nRemoves the element at the given index and returns it.\nRemoves and returns the element at index from the deque. …\nRemoves a key from the map, returning the stored key and …\nRemoves a key from the map, returning the stored key and …\nAdds a value to the set, replacing the existing value, if …\nAdds a value to the set, replacing the existing element, …\nReserves capacity for at least additional more elements to …\nReserves capacity for at least additional elements more …\nReserves capacity for at least additional more elements to …\nReserves capacity for at least additional more elements to …\nReserves the minimum capacity for at least additional …\nReserves the minimum capacity for at least additional more …\nModifies the deque in-place so that len() is equal to …\nModifies the deque in-place so that len() is equal to …\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRetains only the elements specified by the predicate.\nRotates the double-ended queue n places to the left.\nRotates the double-ended queue n places to the right.\nShrinks the capacity of the map with a lower limit. It …\nDiscards capacity with a lower bound.\nShrinks the capacity of the set with a lower limit. It …\nShrinks the capacity of the deque with a lower bound.\nShrinks the capacity of the map as much as possible. It …\nDiscards as much additional capacity as possible.\nShrinks the capacity of the set as much as possible. It …\nShrinks the capacity of the deque as much as possible.\nSplits the collection into two at the given key. Returns …\nSplits the collection into two at the value. Returns a new …\nSplits the list into two at the given index. Returns …\nSplits the deque into two at the given index.\nReturns the difference of self and rhs as a new …\nReturns the difference of self and rhs as a new BTreeSet<T>…\nSwaps elements at indices i and j.\nRemoves an element from anywhere in the deque and returns …\nRemoves an element from anywhere in the deque and returns …\nVisits the values representing the symmetric difference, …\nVisits the elements representing the symmetric difference, …\nRemoves and returns the value in the set, if any, that is …\nRemoves and returns the element in the set, if any, that …\nShortens the deque, keeping the first len elements and …\nTries to insert a key-value pair into the map, and returns …\nTries to insert a key-value pair into the map, and returns …\nTries to reserve capacity for at least additional more …\nTries to reserve capacity for at least additional elements …\nTries to reserve capacity for at least additional more …\nTries to reserve capacity for at least additional more …\nTries to reserve the minimum capacity for at least …\nTries to reserve the minimum capacity for at least …\nCreates an empty deque with space for at least capacity …\nVisits the values representing the union, i.e., all the …\nVisits the elements representing the union, i.e., all the …\nReturns a Cursor pointing at the gap after the greatest key\nReturns a Cursor pointing at the gap after the greatest …\nReturns a CursorMut pointing at the gap after the greatest …\nReturns a CursorMut pointing at the gap after the greatest …\nAn iterator visiting all values in arbitrary order. The …\nGets an iterator over the values of the map, in order by …\nAn iterator visiting all values mutably in arbitrary order.\nGets a mutable iterator over the values of the map, in …\nA double-ended queue (deque) implemented with a growable …\nCreates an empty HashMap with at least the specified …\nCreates an empty BinaryHeap with at least the specified …\nCreates an empty HashSet with at least the specified …\nCreates an empty deque with space for at least capacity …\nCreates an empty HashMap with at least the specified …\nCreates an empty HashSet with at least the specified …\nCreates an empty BinaryHeap with at least the specified …\nCreates an empty deque with space for at least capacity …\nCreates an empty HashMap which will use the given hash …\nCreates a new empty hash set which will use the given …\nThe layout of allocation request that failed\nA priority queue implemented with a binary heap.\nA draining iterator over the elements of a BinaryHeap.\nA draining iterator over the elements of a BinaryHeap.\nAn owning iterator over the elements of a BinaryHeap.\nAn iterator over the elements of a BinaryHeap.\nStructure wrapping a mutable reference to the greatest …\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nReturns a reference to the underlying allocator.\nCreates an empty binary_heap::Iter.\nCreates an empty binary_heap::IntoIter.\nRemoves heap elements in heap order.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nRemoves the peeked value from the heap and returns it.\nAn ordered map based on a B-Tree.\nA cursor over a BTreeMap.\nA cursor over a BTreeMap with editing operations.\nA cursor over a BTreeMap with editing operations, and …\nA view into a single entry in a map, which may either be …\nAn iterator produced by calling extract_if on BTreeMap.\nAn owning iterator over the entries of a BTreeMap, sorted …\nAn owning iterator over the keys of a BTreeMap.\nAn owning iterator over the values of a BTreeMap.\nAn iterator over the entries of a BTreeMap.\nA mutable iterator over the entries of a BTreeMap.\nAn iterator over the keys of a BTreeMap.\nAn occupied entry.\nA view into an occupied entry in a BTreeMap. It is part of …\nThe error returned by try_insert when the key already …\nAn iterator over a sub-range of entries in a BTreeMap.\nA mutable iterator over a sub-range of entries in a …\nError type returned by CursorMut::insert_before and …\nA vacant entry.\nA view into a vacant entry in a BTreeMap. It is part of …\nAn iterator over the values of a BTreeMap.\nA mutable iterator over the values of a BTreeMap.\nProvides in-place mutable access to an occupied entry …\nReturns a read-only cursor pointing to the same location …\nReturns a read-only cursor pointing to the same location …\nCreates an empty btree_map::Iter.\nCreates an empty btree_map::IterMut.\nCreates an empty btree_map::IntoIter.\nCreates an empty btree_map::Keys.\nCreates an empty btree_map::Values.\nCreates an empty btree_map::ValuesMut.\nCreates an empty btree_map::IntoKeys.\nCreates an empty btree_map::IntoValues.\nCreates an empty btree_map::Range.\nCreates an empty btree_map::RangeMut.\nThe entry in the map that was already occupied.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nGets a reference to the value in the entry.\nGets a mutable reference to the value in the entry.\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry with the OccupiedEntry’s key,\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nInserts a new key-value pair into the map in the gap that …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nTake ownership of the key.\nConverts the entry into a mutable reference to its value.\nReturns a reference to this entry’s key.\nGets a reference to the key that would be used when …\nGets a reference to the key in the entry.\nAdvances the cursor to the next gap, returning the key and …\nAdvances the cursor to the next gap, returning the key and …\nAdvances the cursor to the next gap, returning the key and …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the result of …\nEnsures a value is in the entry by inserting, if empty, …\nReturns a reference to the key and value of the next …\nReturns a reference to the key and value of the next …\nReturns a reference to the key and value of the next …\nReturns a reference to the key and value of the previous …\nReturns a reference to the key and value of the previous …\nReturns a reference to the key and value of the previous …\nAdvances the cursor to the previous gap, returning the key …\nAdvances the cursor to the previous gap, returning the key …\nAdvances the cursor to the previous gap, returning the key …\nTakes the value of the entry out of the map, and returns …\nTake ownership of the key and value from the map.\nRemoves the next element from the BTreeMap.\nRemoves the next element from the BTreeMap.\nRemoves the preceding element from the BTreeMap.\nRemoves the preceding element from the BTreeMap.\nThe value which was not inserted, because the entry was …\nConverts the cursor into a CursorMutKey, which allows …\nAn ordered set based on a B-Tree.\nA cursor over a BTreeSet.\nA cursor over a BTreeSet with editing operations.\nA cursor over a BTreeSet with editing operations, and …\nA lazy iterator producing elements in the difference of …\nAn iterator produced by calling extract_if on BTreeSet.\nA lazy iterator producing elements in the intersection of …\nAn owning iterator over the items of a BTreeSet in …\nAn iterator over the items of a BTreeSet.\nAn iterator over a sub-range of items in a BTreeSet.\nA lazy iterator producing elements in the symmetric …\nA lazy iterator producing elements in the union of BTreeSet…\nError type returned by CursorMut::insert_before and …\nReturns a read-only cursor pointing to the same location …\nReturns a read-only cursor pointing to the same location …\nCreates an empty btree_set::Iter.\nCreates an empty btree_set::IntoIter.\nCreates an empty btree_set::Range.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nInserts a new element into the set in the gap that the …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nAdvances the cursor to the next gap, returning the element …\nAdvances the cursor to the next gap, returning the …\nAdvances the cursor to the next gap, returning the element …\nReturns a reference to the next element without moving the …\nReturns a reference to the next element without moving the …\nReturns a reference to next element without moving the …\nReturns a reference to the previous element without moving …\nReturns a reference to the previous element without moving …\nReturns a reference to the previous element without moving …\nAdvances the cursor to the previous gap, returning the …\nAdvances the cursor to the previous gap, returning the …\nAdvances the cursor to the previous gap, returning the …\nRemoves the next element from the BTreeSet.\nRemoves the next element from the BTreeSet.\nRemoves the preceding element from the BTreeSet.\nRemoves the preceding element from the BTreeSet.\nConverts the cursor into a CursorMutKey, which allows …\nThe default Hasher used by RandomState.\nA draining iterator over the entries of a HashMap.\nA view into a single entry in a map, which may either be …\nA draining, filtering iterator over the entries of a …\nA hash map implemented with quadratic probing and SIMD …\nAn owning iterator over the entries of a HashMap.\nAn owning iterator over the keys of a HashMap.\nAn owning iterator over the values of a HashMap.\nAn iterator over the entries of a HashMap.\nA mutable iterator over the entries of a HashMap.\nAn iterator over the keys of a HashMap.\nAn occupied entry.\nAn occupied entry.\nA view into an occupied entry in a HashMap. It is part of …\nThe error returned by try_insert when the key already …\nRandomState is the default state for HashMap types.\nA builder for computing where in a HashMap a key-value …\nA builder for computing where in a HashMap a key-value …\nA view into a single entry in a map, which may either be …\nA view into an occupied entry in a HashMap. It is part of …\nA view into a vacant entry in a HashMap. It is part of the …\nA vacant entry.\nA vacant entry.\nA view into a vacant entry in a HashMap. It is part of the …\nAn iterator over the values of a HashMap.\nA mutable iterator over the values of a HashMap.\nProvides in-place mutable access to an occupied entry …\nProvides in-place mutable access to an occupied entry …\nThe entry in the map that was already occupied.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a RawEntryMut from the given hash.\nAccess an entry by hash.\nCreates a RawEntryMut from the given key.\nAccess an entry by key.\nCreates a RawEntryMut from the given key and its hash.\nAccess an entry by a key and its hash.\nGets a reference to the value in the entry.\nGets a reference to the value in the entry.\nGets a reference to the key and value in the entry.\nGets a mutable reference to the key and value in the entry.\nGets a mutable reference to the value in the entry.\nGets a mutable reference to the value in the entry.\nSets the value of the entry, and returns the entry’s old …\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry, and returns the entry’s old …\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry, and returns an OccupiedEntry.\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry with the VacantEntry’s key, …\nSets the value of the entry, and returns the entry’s old …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts the entry into a mutable reference to the key in …\nTake ownership of the key.\nConverts the OccupiedEntry into a mutable reference to the …\nConverts the OccupiedEntry into a mutable reference to the …\nConverts the OccupiedEntry into a mutable reference to the …\nGets a reference to the key in the entry.\nReturns a reference to this entry’s key.\nGets a reference to the key in the entry.\nGets a reference to the key that would be used when …\nGets a mutable reference to the key in the entry.\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the default …\nEnsures a value is in the entry by inserting the result of …\nEnsures a value is in the entry by inserting the result of …\nEnsures a value is in the entry by inserting, if empty, …\nTakes the value out of the entry, and returns it.\nTakes the value out of the entry, and returns it.\nTake the ownership of the key and value from the map.\nTake the ownership of the key and value from the map.\nReplaces the entry, returning the old key and value. The …\nReplaces the key in the hash map with the key used to …\nThe value which was not inserted, because the entry was …\nA lazy iterator producing elements in the difference of …\nA draining iterator over the items of a HashSet.\nA draining, filtering iterator over the items of a HashSet.\nA hash set implemented as a HashMap where the value is ().\nA lazy iterator producing elements in the intersection of …\nAn owning iterator over the items of a HashSet.\nAn iterator over the items of a HashSet.\nA lazy iterator producing elements in the symmetric …\nA lazy iterator producing elements in the union of HashSet…\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nA cursor over a LinkedList.\nA cursor over a LinkedList with editing operations.\nAn iterator produced by calling extract_if on LinkedList.\nAn owning iterator over the elements of a LinkedList.\nAn iterator over the elements of a LinkedList.\nA mutable iterator over the elements of a LinkedList.\nA doubly-linked list with owned nodes.\nReturns a read-only cursor pointing to the current element.\nProvides a reference to the cursor’s parent list.\nProvides a read-only reference to the cursor’s parent …\nProvides a reference to the back element of the cursor’s …\nProvides a reference to the back element of the cursor’s …\nProvides a mutable reference to back element of the cursor…\nReturns a reference to the element that the cursor is …\nReturns a reference to the element that the cursor is …\nCreates an empty linked_list::Iter.\nCreates an empty linked_list::IntoIter.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-8-.js b/search.desc/wiwi/wiwi-desc-8-.js index ad751389c..29e4094f1 100644 --- a/search.desc/wiwi/wiwi-desc-8-.js +++ b/search.desc/wiwi/wiwi-desc-8-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 8, "Equivalent to C’s signed int (int) type.\nEquivalent to C’s signed long (long) type.\nEquivalent to C’s signed long long (long long) type.\nEquivalent to C’s signed char type.\nEquivalent to C’s signed short (short) type.\nCStr, CString, and related types.\nEquivalent to C’s unsigned char type.\nEquivalent to C’s unsigned int type.\nEquivalent to C’s unsigned long type.\nEquivalent to C’s unsigned long long type.\nEquivalent to C’s unsigned short type.\nEquivalent to C’s void type when used as a pointer.\nReturns the capacity this OsString can hold without …\nTruncates the OsString to zero length.\nClones the contents of source into self.\nReturns the length of self. Like C’s strlen, this does …\nConstructs an empty OsString.\nCreates an empty OsStr.\nCreates an empty CString.\nReturns an object that implements Display for safely …\nChecks that two strings are an ASCII case-insensitive …\nConverts a PathBuf into an OsString\nReturns the argument unchanged.\nConverts a String into an OsString.\nConverts a Box<OsStr> into an OsString without copying or …\nCopies any value implementing AsRef<OsStr> into a newly …\nConverts a Cow<'a, OsStr> into an OsString, by copying the …\nReturns the argument unchanged.\nConverts a Cow<'a, CStr> into a CString, by copying the …\nReturns the argument unchanged.\nConverts a Box<CStr> into a CString without copying or …\nConverts a Vec<NonZero<u8>> into a CString without copying …\nConverts a &CStr into a CString by copying the contents …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a C string wrapper from a byte slice with any …\nCreates a C string wrapper from a byte slice with exactly …\nUnsafely creates a C string wrapper from a byte slice.\nConverts bytes to an OsString without checking that the …\nConverts a slice of bytes to an OS string slice without …\nWraps a raw C string with a safe C string wrapper.\nRetakes ownership of a CString that was transferred to C …\nCreates a C-compatible string by consuming a byte vector, …\nAttempts to converts a Vec<u8> to a CString.\nConverts a Vec<u8> to a CString without checking the …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts this CString into a boxed CStr.\nConverts this OsString into a boxed OsStr.\nConsumes the CString and returns the underlying byte …\nReturns the bytes that were attempted to convert to a …\nEquivalent to CString::into_bytes() except that the …\nConverts a Box<CStr> into a CString without copying or …\nConsumes this error, returning original CString which …\nConverts the OsString into a byte slice. To convert the …\nConverts a Box<OsStr> into an OsString without copying or …\nConsumes the CString and transfers ownership of the string …\nConverts the OsString into a String if it contains valid …\nConverts the CString into a String if it contains valid …\nConsumes this error, returning the underlying vector of …\nChecks if all characters in this string are within the …\nChecks whether the OsStr is empty.\nReturns true if self.to_bytes() has a length of 0.\nConsumes and leaks the OsString, returning a mutable …\nReturns the length of this OsStr.\nConverts this string to its ASCII lower case equivalent …\nConverts this string to its ASCII upper case equivalent …\nConstructs a new empty OsString.\nCoerces into an OsStr slice.\nCreates a new C-compatible string from a container of …\nReturns the position of the nul byte in the slice that …\nThe OsStr and OsString types and associated utilities.\nExtends the string with the given &OsStr slice.\nReserves capacity for at least additional more capacity to …\nReserves the minimum capacity for at least additional more …\nShrinks the capacity of the OsString with a lower bound.\nShrinks the capacity of the OsString to match its length.\nTakes a substring based on a range that corresponds to the …\nReturns a copy of this string where each character is …\nReturns a copy of this string where each character is …\nConverts this C string to a byte slice.\nConverts this C string to a byte slice containing the …\nCopies the slice into an owned OsString.\nYields a &str slice if the OsStr is valid Unicode.\nYields a &str slice if the CStr contains valid UTF-8.\nConverts an OsStr to a Cow<str>.\nConverts a CStr into a Cow<str>.\nTries to reserve capacity for at least additional more …\nTries to reserve the minimum capacity for at least …\nAccess the underlying UTF-8 error that was the cause of …\nCreates a new OsString with at least the given capacity.\nCopies the va_list at the current location.\nRepresentation of a borrowed C string.\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nHelper struct for safely printing an OsStr with format! …\nBorrowed reference to an OS string (see OsString).\nA type that can represent owned, mutable platform-native …\nReturns the argument unchanged.\nCalls U::from(self).\nPossible alignments returned by Formatter::align\nThis structure represents a safely precompiled version of …\nb formatting.\nIndication that contents should be center-aligned.\n? formatting.\nDerive macro generating an impl of the trait Debug.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nFormat trait for an empty format, {}.\nContains the error value\nThe error type which is returned from formatting a message …\nConfiguration for formatting.\nImplements fmt::Debug and fmt::Display using a function.\nIndication that contents should be left-aligned.\ne formatting.\nx formatting.\no formatting.\nContains the success value\np formatting.\nThe type returned by formatter methods.\nIndication that contents should be right-aligned.\nE formatting.\nX formatting.\nA trait for writing or formatting into Unicode-accepting …\nReturns a flag indicating what form of alignment was …\nDetermines if the # flag was specified.\nGets the formatted string, if it has no arguments to be …\nCreates a DebugList builder designed to assist with …\nCreates a DebugMap builder designed to assist with …\nCreates a DebugSet builder designed to assist with …\nCreates a DebugStruct builder designed to assist with …\nCreates a DebugTuple builder designed to assist with …\nAdds the contents of an iterator of entries to the set …\nAdds the contents of an iterator of entries to the list …\nAdds the contents of an iterator of entries to the map …\nAdds a new entry to the set output.\nAdds a new entry to the list output.\nAdds a new entry to the map output.\nAdds a new entry to the set output.\nAdds a new entry to the list output.\nAdds a new field to the generated struct output.\nAdds a new field to the generated tuple struct output.\nAdds a new field to the generated struct output.\nAdds a new field to the generated tuple struct output.\nReturns the character used as ‘fill’ whenever there is …\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nMarks the struct as non-exhaustive, indicating to the …\nMarks the tuple struct as non-exhaustive, indicating to …\nMarks the set as non-exhaustive, indicating to the reader …\nMarks the list as non-exhaustive, indicating to the reader …\nMarks the map as non-exhaustive, indicating to the reader …\nReturns flags for formatting.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nTakes an Arguments struct and returns the resulting …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a type whose fmt::Debug and fmt::Display impls are …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nAdds the key part of a new entry to the map output.\nAdds the key part of a new entry to the map output.\nTakes a string slice and emits it to the internal buffer …\nPerforms the correct padding for an integer which has …\nReturns the optionally specified precision for numeric …\nDetermines if the 0 flag was specified.\nDetermines if the - flag was specified.\nDetermines if the + flag was specified.\nAdds the value part of a new entry to the map output.\nAdds the value part of a new entry to the map output.\nReturns the optionally specified integer width that the …\nTakes an output stream and an Arguments struct that can be …\nWrites a char into this writer, returning whether the …\nGlue for usage of the write! macro with implementors of …\nGlue for usage of the write! macro with implementors of …\nWrites a string slice into this writer, returning whether …\nWrites some data to the underlying buffer contained within …\nA builder used to create directories in various manners.\nEntries returned by the ReadDir iterator.\nAn object providing access to an open file on the …\nRepresentation of the various timestamps on a file.\nA structure representing a type of file with accessors for …\nMetadata information about a file.\nOptions and flags which can be used to configure how a …\nRepresentation of the various permissions on a file.\nIterator over the entries in a directory.\nReturns the last access time of this metadata.\nSets the option for the append mode.\nReturns the canonical, absolute form of a path with all …\nCopies the contents of one file to another. This function …\nOpens a file in write-only mode.\nSets the option to create a new file, or open it if it …\nCreates the specified directory with the options …\nCreates a new, empty directory at the provided path\nRecursively create a directory and all of its parent …\nCreates a new file in read-write mode; error if the file …\nSets the option to create a new file, failing if it …\nReturns the creation time listed in this metadata.\nReturns Ok(true) if the path points at an existing entity.\nReturns the file name of this directory entry without any …\nReturns the file type for the file that this entry points …\nReturns the file type for this metadata.\nFlushes the file, ensuring that all intermediately …\nReturns the argument unchanged.\nReturns a File that takes ownership of the given file …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new hard link on the filesystem.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if this metadata is for a directory. The …\nTests whether this file type represents a directory. The …\nReturns true if this metadata is for a regular file. The …\nTests whether this file type represents a regular file. …\nDetermines if File has an efficient read_vectored …\nReturns true if this metadata is for a symbolic link.\nTests whether this file type represents a symbolic link. …\nDetermines if File has an efficient write_vectored …\nReturns the size of the file, in bytes, this metadata is …\nGiven a path, queries the file system to get information …\nQueries metadata about the underlying file.\nReturns the metadata for the file that this entry points …\nReturns the last modification time listed in this metadata.\nCreates a blank new set of options ready for configuration.\nCreates a new FileTimes with no times set.\nCreates a new set of options with default mode/security …\nAttempts to open a file in read-only mode.\nOpens a file at path with the options specified by self.\nReturns a new OpenOptions object.\nReturns the full path to the file that this entry …\nReturns the permissions of the file this metadata is for.\nReads the entire contents of a file into a bytes vector.\nReads some bytes from the file.\nSets the option for read access.\nReturns an iterator over the entries within a directory.\nReads a symbolic link, returning the file that the link …\nReads the entire contents of a file into a string.\nLike read, except that it reads into a slice of buffers.\nReturns true if these permissions describe a readonly …\nIndicates that directories should be created recursively, …\nRemoves an empty directory.\nRemoves a directory at this path, after removing all its …\nRemoves a file from the filesystem.\nRenames a file or directory to a new name, replacing the …\nSet the last access time of a file.\nTruncates or extends the underlying file, updating the …\nChanges the modification time of the underlying file.\nSet the last modified time of a file.\nChanges the permissions found on a file or a directory.\nChanges the permissions on the underlying file.\nModifies the readonly flag for this set of permissions. If …\nChanges the timestamps of the underlying file.\nCreates a new symbolic link on the filesystem.\nQueries the metadata about a file without following …\nAttempts to sync all OS-internal file content and metadata …\nThis function is similar to sync_all, except that it might …\nSets the option for truncating a previous file.\nCreates a new File instance that shares the same …\nWrites a slice as the entire contents of a file.\nWrites some bytes from the file.\nSets the option for write access.\nLike write, except that it writes into a slice of buffers.\nCustom code within the asynchronous destructor.\nA future returned by the async_drop_in_place.\nA future returned by the AsyncDrop::async_drop to be part …\nA future represents an asynchronous computation obtained …\nConversion into a Future.\nWhich kind of future are we turning this into?\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nCreates a future which never resolves, representing a …\nA Future that wraps a function returning Poll.\nA future that is immediately ready with a value.\nAsynchronously drops a value by running …\nConstructs the asynchronous destructor for this type.\nCreates the asynchronous destructor of the pointed-to …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreates a future from a value.\nConsumes the Ready, returning the wrapped value.\nPolls multiple futures simultaneously, returning a tuple …\nCreates a future which never resolves, representing a …\nAttempts to resolve the future to a final value, …\nCreates a future that wraps a function returning Poll.\nCreates a future that is immediately ready with a value.\nA trait for creating instances of Hasher.\nUsed to create a default BuildHasher instance for types …\nThe default Hasher used by RandomState.\nA hashable type.\nDerive macro generating an impl of the trait Hash.\nA trait for hashing an arbitrary stream of bytes.\nType of the hasher that will be created.\nRandomState is the default state for HashMap types.\nAn implementation of SipHash 2-4.\nCreates a new hasher.\nConstructs a new RandomState.\nCreates a new DefaultHasher using new. See its …\nReturns the hash value for the values written so far.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nFeeds this value into the given Hasher.\nCalculates the hash of a single value.\nFeeds a slice of this type into the given Hasher.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConstructs a new RandomState that is initialized with …\nCreates a new DefaultHasher.\nCreates a new BuildHasherDefault for Hasher H.\nCreates a new SipHasher with the two initial keys set to 0.\nCreates a SipHasher that is keyed off the provided keys.\nWrites some data into this Hasher.\nWrites a single i128 into this hasher.\nWrites a single i16 into this hasher.\nWrites a single i32 into this hasher.\nWrites a single i64 into this hasher.\nWrites a single i8 into this hasher.\nWrites a single isize into this hasher.\nWrites a length prefix into this hasher, as part of being …\nWrites a single str into this hasher.\nWrites a single u128 into this hasher.\nWrites a single u16 into this hasher.\nWrites a single u32 into this hasher.\nWrites a single u64 into this hasher.\nWrites a single u8 into this hasher.\nWrites a single usize into this hasher.\nMakes a soundness promise to the compiler that cond holds.\nAn identity function that hints to the compiler to be …\nAn identity function that causes an unused_must_use …\nEmits a machine instruction to signal the processor that …\nInforms the compiler that the site which is calling this …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAborts the execution of the process.\nPerforms checked integer addition.\nLowers in MIR to Rvalue::Aggregate with …\nCalculates the offset from a pointer, potentially wrapping.\nA guard for unsafe functions that cannot ever be executed …\nA guard for std::mem::uninitialized. This will statically …\nA guard for unsafe functions that cannot ever be executed …\nInforms the optimizer that a condition is always true. If …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMaximum with the current value.\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nReverses the bits in an integer type T.\nSee documentation of std::hint::black_box for details.\nExecutes a breakpoint trap, for inspection by a debugger.\nReverses the bytes in an integer type T.\nGets a reference to a static Location indicating where it …\nRust’s “try catch” construct for unwinding. Invokes …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nLexicographically compare [left, left + bytes) and …\nAllocates a block of memory at compile time. At runtime, …\nDeallocates a memory which allocated by …\nSelects which function to call depending on the context.\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies the sign from y to x for f128 values.\nCopies the sign from y to x for f16 values.\nCopies the sign from y to x for f32 values.\nCopies the sign from y to x for f64 values.\nReturns the cosine of an f128.\nReturns the cosine of an f16.\nReturns the cosine of an f32.\nReturns the cosine of an f64.\nReturns the number of leading unset bits (zeroes) in an …\nLike ctlz, but extra-unsafe as it returns undef when given …\nReturns the number of bits set in an integer type T\nReturns the number of trailing unset bits (zeroes) in an …\nLike cttz, but extra-unsafe as it returns undef when given …\nReturns the value of the discriminant for the variant in …\nPerforms an exact division, resulting in undefined …\nReturns 2 raised to the power of an f128.\nReturns 2 raised to the power of an f16.\nReturns 2 raised to the power of an f32.\nReturns 2 raised to the power of an f64.\nReturns the exponential of an f128.\nReturns the exponential of an f16.\nReturns the exponential of an f32.\nReturns the exponential of an f64.\nReturns the absolute value of an f128.\nReturns the absolute value of an f16.\nReturns the absolute value of an f32.\nReturns the absolute value of an f64.\nFloat addition that allows optimizations based on …\nFloat addition that allows optimizations based on …\nFloat division that allows optimizations based on …\nFloat division that allows optimizations based on …\nConverts with LLVM’s fptoui/fptosi, which may return …\nReturns the largest integer less than or equal to an f128.\nReturns the largest integer less than or equal to an f16.\nReturns the largest integer less than or equal to an f32.\nReturns the largest integer less than or equal to an f64.\nReturns a * b + c for f128 values.\nReturns a * b + c for f16 values.\nReturns a * b + c for f32 values.\nReturns a * b + c for f64 values.\nFloat multiplication that allows optimizations based on …\nFloat multiplication that allows optimizations based on …\nMoves a value out of scope without running drop glue.\nFloat remainder that allows optimizations based on …\nFloat remainder that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nReturns whether the argument’s value is statically known …\nHints to the compiler that branch condition is likely to …\nReturns the base 10 logarithm of an f128.\nReturns the base 10 logarithm of an f16.\nReturns the base 10 logarithm of an f32.\nReturns the base 10 logarithm of an f64.\nReturns the base 2 logarithm of an f128.\nReturns the base 2 logarithm of an f16.\nReturns the base 2 logarithm of an f32.\nReturns the base 2 logarithm of an f64.\nReturns the natural logarithm of an f128.\nReturns the natural logarithm of an f16.\nReturns the natural logarithm of an f32.\nReturns the natural logarithm of an f64.\nReturns the maximum of two f128 values.\nReturns the maximum of two f16 values.\nReturns the maximum of two f32 values.\nReturns the maximum of two f64 values.\nThe minimum alignment of a type.\nThe required alignment of the referenced value.\nReturns the minimum of two f128 values.\nReturns the minimum of two f16 values.\nReturns the minimum of two f32 values.\nReturns the minimum of two f64 values.\nRustc internal tooling for hand-writing MIR.\nPerforms checked integer multiplication\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nReturns true if the actual type given as T requires drop …\nEmits a nontemporal store, which gives a hint to the CPU …\nCalculates the offset from a pointer.\nRaises an f128 to an f128 power.\nRaises an f16 to an f16 power.\nRaises an f32 to an f32 power.\nRaises an f64 to an f64 power.\nRaises an f128 to an integer power.\nRaises an f16 to an integer power.\nRaises an f32 to an integer power.\nRaises an f64 to an integer power.\nThe preferred alignment of a type.\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nSee documentation of <*const T>::guaranteed_eq for details.\nMasks out bits of the pointer according to a mask.\nLowers in MIR to Rvalue::UnaryOp with UnOp::PtrMetadata.\nSee documentation of <*const T>::offset_from for details.\nSee documentation of <*const T>::sub_ptr for details.\nDetermines whether the raw bytes of the two values are …\nThis is an implementation detail of crate::ptr::read and …\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nPerforms rotate left.\nPerforms rotate right.\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nMagic intrinsic that derives its meaning from attributes …\nComputes a + b, saturating at numeric bounds.\nComputes a - b, saturating at numeric bounds.\nReturns either true_val or false_val depending on …\nSIMD compiler intrinsics.\nReturns the sine of an f128.\nReturns the sine of an f16.\nReturns the sine of an f32.\nReturns the sine of an f64.\nThe size of a type in bytes.\nThe size of the referenced value in bytes.\nReturns the square root of an f128\nReturns the square root of an f16\nReturns the square root of an f32\nReturns the square root of an f64\nPerforms checked integer subtraction\nDoes a three-way comparison between the two integer …\nReinterprets the bits of a value of one type as another …\nLike transmute, but even less checked at compile-time: …\nReturns the integer part of an f128.\nReturns the integer part of an f16.\nReturns the integer part of an f32.\nReturns the integer part of an f64.\nGets an identifier which is globally unique to the …\nGets a static string slice containing the name of a type.\nNon-overlapping typed swap of a single value.\nReturns whether we should perform some UB-checking at …\nPerforms a volatile load from the src pointer The pointer …\nPerforms a volatile store to the dst pointer. The pointer …\nReturns the result of an unchecked addition, resulting in …\nPerforms an unchecked division, resulting in undefined …\nReturns the result of an unchecked multiplication, …\nReturns the remainder of an unchecked division, resulting …\nPerforms an unchecked left shift, resulting in undefined …\nPerforms an unchecked right shift, resulting in undefined …\nReturns the result of an unchecked subtraction, resulting …\nHints to the compiler that branch condition is likely to …\nInforms the optimizer that this point in the code is not …\nReturns the number of variants of the type T cast to a …\nEquivalent to the appropriate llvm.memmove.p0i8.0i8.* …\nEquivalent to the appropriate llvm.memcpy.p0i8.0i8.* …\nPerforms a volatile load from the src pointer.\nEquivalent to the appropriate llvm.memset.p0i8.* …\nPerforms a volatile store to the dst pointer.\nThe intrinsic will return the alignment stored in that …\nThe intrinsic will return the size stored in that vtable.\nReturns (a + b) mod 2N, where N is the width of T in bits.\nReturns (a * b) mod 2N, where N is the width of T in bits.\nReturns (a - b) mod 2N, where N is the width of T in bits.\nSets count * size_of::<T>() bytes of memory starting at dst…\nThis is an implementation detail of crate::ptr::write and …\nUnwinding is just not possible given the ABI of this …\nType representing basic blocks.\nCall a function.\nEmits a CastKind::PtrToPtr cast.\nEmits a CastKind::Transmute cast.\nA basic block that lies on an unwind path.\nGets the discriminant of a place.\nDrop the contents of a place.\nAccess the field with the given index of some place.\nWe were already cleaning up for an ongoing unwind, and a …\nA non-cleanup basic block.\nCall a function.\nAn unwind action that continues execution in a given basic …\nAn unwind action that continues unwinding.\nA terminator that resumes the unwinding.\nAn unwind action that terminates the execution.\nThe reason we are terminating the process during unwinding.\nAn unwind action that triggers undefined behaviour.\nAdds a variant projection with the given index to the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nMacro for generating custom MIR.\nHelper macro that allows you to treat a value expression …\nAdds two simd vectors elementwise.\n“Ands” vectors elementwise.\nCalculates the offset from a pointer vector elementwise, …\nNumerically casts a vector, elementwise.\nTruncates an integer vector to a bitmask.\nReverses bits of each element.\nSwaps bytes of each element.\nNumerically casts a vector, elementwise.\nCasts a vector of pointers.\nRounds up each element to the next highest integer-valued …\nCounts the leading zeros of each element.\nCounts the number of ones in each element.\nCounts the trailing zeros of each element.\nDivides lhs by rhs elementwise.\nTests elementwise equality of two vectors.\nExposes a vector of pointers as a vector of addresses.\nExtracts an element from a vector.\nReturns absolute value of a vector, elementwise.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nRounds down each element to the next lowest integer-valued …\nComputes (x*y) + z for each element, but without any …\nReturns the maximum of two vectors, elementwise.\nReturns the minimum of two vectors, elementwise.\nT must be a vector of floats.\nTakes the square root of each element.\nReads a vector of pointers.\nTests if x is greater than or equal to y, elementwise.\nTests if x is greater than y, elementwise.\nInserts an element into a vector, returning the updated …\nTests if x is less than or equal to y, elementwise.\nTests if x is less than y, elementwise.\nReads a vector of pointers.\nWrites to a vector of pointers.\nMultiplies two simd vectors elementwise.\nTests elementwise inequality equality of two vectors.\nNegates a vector elementwise.\n“Ors” vectors elementwise.\nAdds elements within a vector from left to right.\nAdds elements within a vector in arbitrary order. May also …\nChecks if all mask values are true.\nLogical “ands” all elements together.\nChecks if any mask value is true.\nReturns the maximum element of a vector.\nReturns the minimum element of a vector.\nMultiplies elements within a vector from left to right.\nMultiplies elements within a vector in arbitrary order. …\nLogical “ors” all elements together.\nLogical “exclusive ors” all elements together.\nReturns remainder of two vectors elementwise.\nRounds each element to the closest integer-valued float. …\nAdds two simd vectors elementwise, with saturation.\nSubtracts two simd vectors elementwise, with saturation.\nWrites to a vector of pointers.\nSelects elements from a mask.\nSelects elements from a bitmask.\nShifts vector left elementwise, with UB on overflow.\nShifts vector right elementwise, with UB on overflow.\nShuffles two vectors by const indices.\nSubtracts rhs from lhs elementwise.\nReturns the integer part of each element as an …\nCreates a vector of pointers from a vector of addresses.\n“Exclusive ors” vectors elementwise.\nA socket address could not be bound because the address is …\nA nonexistent interface was requested or the requested …\nAn entity already exists, often a file.\nProgram argument list too long.\nA borrowed byte buffer which is incrementally filled and …\nA writeable view of the unfilled portion of a BorrowedBuf.\nThe operation failed because a pipe was closed.\nA BufRead is a type of Reader which has an internal …\nThe BufReader<R> struct adds buffering to any reader.\nWraps a writer and buffers its output.\nAn iterator over u8 values of a reader.\nAdapter to chain together two readers.\nThe connection was aborted (terminated) by the remote …\nThe connection was refused by the remote server.\nThe connection was reset by the remote server.\nCross-device or cross-filesystem (hard) link or rename.\nSets the offset to the current position plus the specified …\nA Cursor wraps an in-memory buffer and provides it with a …\nDeadlock (avoided).\nA non-empty directory was specified where an empty …\nEmpty ignores any data written via Write, and will always …\nSets the offset to the size of this object plus the …\nContains the error value\nThe error type for I/O operations of the Read, Write, Seek…\nA list specifying general categories of I/O error.\nExecutable file is busy.\nFile larger than allowed or supported.\nLoop in the filesystem or IO subsystem; often, too many …\nFilesystem quota was exceeded.\nThe remote host is not reachable.\nThis operation was interrupted.\nAn error returned by BufWriter::into_inner which combines …\nData not valid for the operation were encountered.\nA filename was invalid.\nA parameter was incorrect.\nA buffer type used with Write::write_vectored.\nA buffer type used with Read::read_vectored.\nThe filesystem object is, unexpectedly, a directory.\nTrait to determine if a descriptor/handle refers to a …\nWraps a writer and buffers output to it, flushing whenever …\nAn iterator over the lines of an instance of BufRead.\nThe system’s networking is down.\nThe network containing the remote host is not reachable.\nA filesystem object is, unexpectedly, not a directory.\nThe network operation failed because it was not connected …\nAn entity was not found, often a file.\nSeek on unseekable file.\nContains the success value\nA custom error that does not fall under any other I/O …\nAn operation could not be completed, because it failed to …\nThe operation lacked the necessary privileges to complete.\nThe type of raw OS error codes returned by …\nThe Read trait allows for reading bytes from a source.\nThe filesystem or storage medium is read-only, but a write …\nA reader which yields one byte over and over and over and …\nResource is busy.\nA specialized Result type for I/O operations.\nThe Seek trait provides a cursor which can be moved within …\nEnumeration of possible methods to seek within an I/O …\nA writer which will move data into the void.\nAn iterator over the contents of an instance of BufRead …\nStale network file handle.\nSets the offset to the provided number of bytes.\nA handle to the standard error stream of a process.\nA locked reference to the Stderr handle.\nA handle to the standard input stream of a process.\nA locked reference to the Stdin handle.\nA handle to the global standard output stream of the …\nA locked reference to the Stdout handle.\nThe underlying storage (typically, a filesystem) is full.\nReader adapter which limits the bytes read from an …\nThe I/O operation’s timeout expired, causing it to be …\nToo many (hard) links to the same filesystem object.\nAn error returned when an operation could not be completed …\nThis operation is unsupported on this platform.\nThe operation needs to block to complete, but the blocking …\nA trait for objects which are byte-oriented sinks.\nAn error returned when an operation could not be completed …\nError returned for the buffered data from …\nAdvance the internal cursor of the slice.\nAdvance the internal cursor of the slice.\nAdvances the cursor by asserting that n bytes have been …\nAdvance a slice of slices.\nAdvance a slice of slices.\nAdvances the cursor by asserting that n bytes have been …\nAppends data to the cursor, advancing position within its …\nReturns a mutable reference to the whole cursor.\nReturns a reference to the internally buffered data.\nReturns a reference to the internally buffered data.\nCreates a “by reference” adaptor for this instance of …\nCreates a “by reference” adapter for this instance of …\nTransforms this Read instance to an Iterator over its …\nReturns the number of bytes the internal buffer can hold …\nReturns the number of bytes the internal buffer can hold …\nReturns the total capacity of the buffer.\nReturns the available space in the cursor.\nCreates an adapter which will chain this stream with …\nClears the buffer, resetting the filled region to empty.\nTells this buffer that amt bytes have been consumed from …\nCopies the entire contents of a reader into a writer.\nAttempts to downcast the custom boxed error to E.\nCreates a value that is always at EOF for reads, and …\nInitializes all bytes in the cursor.\nReturns the error which caused the call to …\nReturns the contents of the internal buffer, filling it …\nReturns a shared reference to the filled portion of the …\nReturns a mutable reference to the filled portion of the …\nFlushes this output stream, ensuring that all …\nShows a human-readable description of the ErrorKind.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an ErrorKind into an Error.\nConverts TryReserveError to an error with …\nConverts a alloc::ffi::NulError into a Error.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new instance of an Error from a particular OS …\nGets a mutable reference to the underlying reader.\nGets a mutable reference to the underlying writer.\nGets a mutable reference to the underlying writer.\nReturns a mutable reference to the inner error wrapped by …\nGets a mutable reference to the underlying value in this …\nGets mutable references to the underlying readers in this …\nGets a mutable reference to the underlying reader.\nGets a reference to the underlying reader.\nGets a reference to the underlying writer.\nGets a reference to the underlying writer.\nReturns a reference to the inner error wrapped by this …\nGets a reference to the underlying value in this cursor.\nGets references to the underlying readers in this Chain.\nGets a reference to the underlying reader.\nChecks if the underlying Read has any data left to be read.\nReturns the length of the initialized part of the buffer.\nReturns a mutable reference to the initialized portion of …\nReturns a shared reference to the initialized portion of …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes the IntoInnerError and returns the error which …\nUnwraps this BufReader<R>, returning the underlying reader.\nUnwraps this BufWriter<W>, returning the underlying writer.\nReturns the perhaps-unwritten data. Some of this data may …\nUnwraps this LineWriter, returning the underlying writer.\nConsumes the Error, returning its inner error (if any).\nReturns the buffered writer instance which generated the …\nConsumes this cursor, returning the underlying value.\nConsumes the Chain, returning the wrapped readers.\nConsumes the Take, returning the wrapped reader.\nDisassembles this BufWriter<W>, returning the underlying …\nConsumes the IntoInnerError and returns the error which …\nDetermines if this Reader has an efficient read_vectored …\nReturns true if the descriptor/handle refers to a …\nDetermines if this Writer has an efficient write_vectored …\nReturns the corresponding ErrorKind for this error.\nReturns an error representing the last OS error which …\nReturns the length of the filled part of the buffer.\nReturns the number of bytes that can be read before this …\nConsumes this handle and returns an iterator over input …\nReturns an iterator over the lines of this reader.\nLocks this handle to the standard input stream, returning …\nLocks this handle to the standard output stream, returning …\nLocks this handle to the standard error stream, returning …\nCreates a new BufReader<R> with a default buffer capacity. …\nCreates a new BufWriter<W> with a default buffer capacity. …\nCreates a new LineWriter.\nCreates a new I/O error from a known kind of error as well …\nCreates a new IoSliceMut wrapping a byte slice.\nCreates a new cursor wrapping the provided underlying …\nCreates a new IoSlice wrapping a byte slice.\nCreates a new I/O error from an arbitrary error payload.\nAttempt to look ahead n bytes.\nReturns the current position of this cursor.\nThe I/O Prelude.\nReturns the OS error that this error represents (if any).\nPull some bytes from this source into the specified …\nPull some bytes from this source into the specified buffer.\nReads the exact number of bytes required to fill cursor.\nReads the exact number of bytes required to fill buf.\nLocks this handle and reads a line of input, appending it …\nReads all bytes until a newline (the 0xA byte) is reached, …\nThis function is not supported by io::Repeat, because there…\nReads all bytes until EOF in this source, placing them …\nReads all bytes from a reader into a new String.\nThis function is not supported by io::Repeat, because there…\nReads all bytes until EOF in this source, appending them …\nReads all bytes into buf until the delimiter byte or EOF …\nLike read, except that it reads into a slice of buffers.\nReborrows this cursor by cloning it with a smaller …\nCreates an instance of a reader that infinitely repeats …\nRewind to the beginning of a stream.\nSeek to an offset, in bytes, in a stream.\nSeek to an offset, in bytes, in the underlying reader.\nSeek to the offset, in bytes, in the underlying writer.\nSeeks relative to the current position. If the new …\nSeeks relative to the current position.\nSeeks relative to the current position.\nAsserts that the first n bytes of the buffer are …\nAsserts that the first n unfilled bytes of the cursor are …\nSets the number of bytes that can be read before this …\nSets the position of this cursor.\nCreates an instance of a writer which will successfully …\nSkips all bytes until the delimiter byte or EOF is reached.\nReturns an iterator over the contents of this reader split …\nSplits the underlying slice at the cursor position and …\nSplits the underlying slice at the cursor position and …\nConstructs a new handle to the standard error of the …\nConstructs a new handle to the standard input of the …\nConstructs a new handle to the standard output of the …\nReturns the length of this stream (in bytes).\nReturns the current seek position from the start of the …\nReturns the current seek position from the start of the …\nCreates an adapter which will read at most limit bytes …\nReturns a cursor over the unfilled part of the buffer.\nReturns a mutable reference to the uninitialized part of …\nCreates a new BufReader<R> with the specified buffer …\nCreates a new BufWriter<W> with at least the specified …\nCreates a new LineWriter with at least the specified …\nWrites a buffer into this writer, returning how many bytes …\nAttempts to write an entire buffer into this writer.\nAttempts to write multiple buffers into this writer.\nWrites a formatted string into this writer, returning any …\nLike write, except that it writes from a slice of buffers.\nReturns the number of bytes written to this cursor since …\nA BufRead is a type of Reader which has an internal …\nThe Read trait allows for reading bytes from a source.\nThe Seek trait provides a cursor which can be moved within …\nA trait for objects which are byte-oriented sinks.\nCreates a “by reference” adaptor for this instance of …\nCreates a “by reference” adapter for this instance of …\nTransforms this Read instance to an Iterator over its …\nCreates an adapter which will chain this stream with …\nTells this buffer that amt bytes have been consumed from …\nReturns the contents of the internal buffer, filling it …\nFlushes this output stream, ensuring that all …\nChecks if the underlying Read has any data left to be read.\nDetermines if this Reader has an efficient read_vectored …\nDetermines if this Writer has an efficient write_vectored …\nReturns an iterator over the lines of this reader.\nPull some bytes from this source into the specified …\nPull some bytes from this source into the specified buffer.\nReads the exact number of bytes required to fill cursor.\nReads the exact number of bytes required to fill buf.\nReads all bytes until a newline (the 0xA byte) is reached, …\nReads all bytes until EOF in this source, placing them …\nReads all bytes until EOF in this source, appending them …\nReads all bytes into buf until the delimiter byte or EOF …\nLike read, except that it reads into a slice of buffers.\nRewind to the beginning of a stream.\nSeek to an offset, in bytes, in a stream.\nSeeks relative to the current position.\nSkips all bytes until the delimiter byte or EOF is reached.\nReturns an iterator over the contents of this reader split …\nReturns the length of this stream (in bytes).\nReturns the current seek position from the start of the …\nCreates an adapter which will read at most limit bytes …\nWrites a buffer into this writer, returning how many bytes …\nAttempts to write an entire buffer into this writer.\nAttempts to write multiple buffers into this writer.\nWrites a formatted string into this writer, returning any …\nLike write, except that it writes from a slice of buffers.\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAn iterator over N elements of the iterator at a time.\nLike Iterator::by_ref, but requiring Sized so it can …\nAn iterator that links two iterators together, in a chain.\nAn iterator that clones the elements of an underlying …\nAn iterator that copies the elements of an underlying …\nAn iterator that repeats endlessly.\nAn iterator able to yield elements from both ends.\nAn iterator that yields nothing.\nAn iterator that yields the current count and the element …\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nAn iterator that filters the elements of iter with …\nAn iterator that uses f to both filter and map elements …\nAn iterator that maps each element to an iterator, and …\nAn iterator that flattens one level of nesting in an …\nAn iterator where each iteration calls the provided …\nConversion from an Iterator.\nAn iterator that yields None forever after the underlying …\nAn iterator that always continues to yield None when …\nAn iterator that calls a function with a reference to each …\nAn iterator adapter that places a separator between all …\nAn iterator adapter that places a separator between all …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nAn iterator that maps the values of iter with f.\nAn iterator that only accepts elements while predicate …\nAn iterator over the mapped windows of another iterator.\nAn iterator that yields an element exactly once.\nAn iterator that yields a single element of type A by …\nAn iterator with a peek() that returns an optional …\nTrait to represent types that can be created by …\nAn iterator that repeats an element endlessly.\nAn iterator that repeats an element an exact number of …\nAn iterator that repeats elements of type A endlessly by …\nA double-ended iterator with the direction inverted.\nAn iterator to maintain state while iterating another …\nAn iterator that skips over n elements of iter.\nAn iterator that rejects elements while predicate returns …\nObjects that have a notion of successor and predecessor …\nAn iterator for stepping iterators by a custom amount.\nA new iterator where each successive item is computed …\nTrait to represent types that can be created by summing up …\nAn iterator that only iterates over the first n iterations …\nAn iterator that only accepts elements while predicate …\nAn iterator that reports an accurate length using …\nA type that upholds all invariants of Step.\nAn iterator that iterates two other iterators …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nTests if every element of the iterator matches a predicate.\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nBorrows an iterator, rather than consuming it.\nConverts the arguments to iterators and links them …\nTakes two iterators and creates a new iterator over both …\nCreates an iterator which clones all of its elements.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nCreates a Flatten iterator from the default value of I.\nCreates a Chain from the default values for A and B.\nCreates a Cloned iterator from the default value of I\nCreates a Copied iterator from the default value of I\nCreates an Enumerate iterator from the default value of I\nCreates a Fuse iterator from the default value of I.\nCreates a Rev iterator from the default value of I\nCreates an iterator that yields nothing.\nCreates an iterator which gives the current iteration …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new iterator where each iteration calls the …\nCreates a new iterator where each iteration calls the …\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nDetermines if the elements of this Iterator are …\nDetermines if the elements of this Iterator are …\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreates an iterator from a value.\nReturns an iterator over the remaining elements of the …\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nOverflow Behavior\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nConsume and return the next value of this iterator if a …\nConsume and return the next item if it is equal to expected…\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nCreates an iterator that yields an element exactly once.\nCreates an iterator that lazily generates a value exactly …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nReturns a reference to the next() value without advancing …\nReturns a mutable reference to the next() value without …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nTakes an iterator and generates Self from the elements by …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nCreates a new iterator that endlessly repeats a single …\nCreates a new iterator that repeats a single element a …\nCreates a new iterator that repeats elements of type A …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nReturns the number of successor steps required to get from …\nCreates a new iterator where each successive item is …\nTakes an iterator and generates Self from the elements by …\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nConverts an iterator of pairs into a pair of containers.\nConverts the arguments to iterators and zips them.\n‘Zips up’ two iterators into a single iterator of …\nDerive macro generating an impl of the trait ConstParamTy.\nA marker for types which can be used as types of const …\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nA marker for types that can be dropped.\nThe type of the discriminant, which must satisfy the trait …\nCompiler-internal trait used to indicate the type of enum …\nA common trait implemented by all function pointers.\nUsed to determine whether a type contains any UnsafeCell …\nZero-sized type used to mark things that “act like” …\nA marker type which does not implement Unpin.\nA marker for pointer-like types.\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nDerive macro generating impls of traits related to smart …\nRequired trait for constants used in pattern matches.\nTypes for which it is safe to share references between …\nA marker for tuple types.\nTypes that do not require any pinning guarantees.\nTypes that can be “unsized” to a dynamically-sized …\nA marker for types which can be used as types of const …\nDerive macro generating an impl of the trait ConstParamTy.\nReturns the address of the function pointer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nWith this, TransmuteFrom assumes only that you have …\nConfigurable proof assumptions of TransmuteFrom.\nOpaque type representing the discriminant of an enum.\nWith this, TransmuteFrom assumes only that you have …\nA wrapper to inhibit the compiler from automatically …\nA wrapper type to construct uninitialized instances of T.\nWith this, TransmuteFrom does not assume you have ensured …\nWith this, TransmuteFrom assumes only that you have …\nMarks that Src is transmutable into Self.\nWith this, TransmuteFrom assumes only that you have …\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns the ABI-required minimum alignment of the type of …\nWhen false, TransmuteFrom is not implemented for …\nCombine the assumptions of self and other_assumptions.\nExtracts the values from an array of MaybeUninit …\nReturns the contents of this MaybeUninit as a slice of …\nReturns the contents of this MaybeUninit as a mutable …\nGets a mutable pointer to the contained value. Reading …\nGets a pointer to the contained value. Reading from this …\nExtracts the value from the MaybeUninit<T> container. This …\nDrops the contained value in place.\nGets a mutable (unique) reference to the contained value.\nReads the value from the MaybeUninit<T> container. The …\nGets a shared reference to the contained value.\nRemove other_assumptions the obligations of self; e.g.:\nClones the elements from src to this, returning a mutable …\nBitwise-copies a value.\nCopies the elements from src to this, returning a mutable …\nReturns a value uniquely identifying the enum variant in v.\nDisposes of a value.\nManually drops the contained value.\nFills this with elements by cloning value, returning a …\nFills this with elements yielded by an iterator until …\nFills this with elements returned by calling a closure …\nTakes ownership and “forgets” about the value without …\nLike forget, but also accepts unsized values.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nExtracts the value from the ManuallyDrop container.\nWhen false, TransmuteFrom is not implemented for …\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns true if dropping values of type T matters.\nWrap a value to be manually dropped.\nCreates a new MaybeUninit<T> initialized with the given …\nExpands to the offset in bytes of a field from the …\nMoves src into the referenced dest, returning the previous …\nWhen false, TransmuteFrom is not implemented for …\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nReturns the size of the pointed-to value in bytes.\nReturns the contents of this slice of MaybeUninit as a …\nReturns the contents of this mutable slice of MaybeUninit …\nGets a mutable pointer to the first element of the array.\nGets a pointer to the first element of the array.\nAssuming all the elements are initialized, get a mutable …\nAssuming all the elements are initialized, get a slice to …\nSwaps the values at two mutable locations, without …\nReplaces dest with the default value of T, returning the …\nTakes the value from the ManuallyDrop<T> container out.\nReinterprets the bits of a value of one type as another …\nTransmutes a Src value into a Self.\nInterprets src as having type &Dst, and then reads src …\nTransposes a MaybeUninit<[T; N]> into a [MaybeUninit<T>; N]…\nCreates a new MaybeUninit<T> in an uninitialized state.\nCreates a new array of MaybeUninit<T> items, in an …\nBypasses Rust’s normal memory-initialization checks by …\nWhen false, TransmuteFrom is not implemented for …\nReturns the number of variants in the enum type T.\nSets the value of the MaybeUninit<T>.\nReturns the value of type T represented by the all-zero …\nCreates a new MaybeUninit<T> in an uninitialized state, …\nAn error which can be returned when parsing an IP address …\nAdmin-Local scope.\nThe size of an IPv4 address in bits.\nThe size of an IPv6 address in bits.\nAn IPv4 address representing the broadcast address: …\nBoth the reading and the writing portions of the TcpStream …\nGlobal scope.\nAn iterator that infinitely accepts connections on a …\nInterface-Local scope.\nAn iterator that infinitely accepts connections on a …\nAn IP address, either IPv4 or IPv6.\nAn IPv4 address.\nAn IPv6 address.\nScope of an IPv6 multicast address as defined in IETF RFC …\nReturned iterator over socket addresses which this type …\nAn IPv4 address with the address pointing to localhost: …\nAn IPv6 address representing localhost: ::1.\nLink-Local scope.\nOrganization-Local scope.\nThe reading portion of the TcpStream should be shut down.\nRealm-Local scope.\nPossible values which can be passed to the …\nSite-Local scope.\nAn internet socket address, either IPv4 or IPv6.\nAn IPv4 socket address.\nAn IPv6 socket address.\nA TCP socket server, listening for connections.\nA TCP stream between a local and a remote socket.\nA trait for objects which can be converted or resolved to …\nAn IPv4 address representing an unspecified address: …\nAn IPv6 address representing the unspecified address: ::.\nA UDP socket.\nAn IPv4 address.\nAn IPv4 socket address.\nAn IPv6 address.\nAn IPv6 socket address.\nThe writing portion of the TcpStream should be shut down.\nAccept a new incoming connection from this listener.\nCreates a new TcpListener which will be bound to the …\nCreates a UDP socket from the given address.\nGets the value of the SO_BROADCAST option for this socket.\nOpens a TCP connection to a remote host.\nConnects this UDP socket to a remote address, allowing the …\nOpens a TCP connection to a remote host with a timeout.\nReturns the flow information associated with this address.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates an IpAddr::V6 from a sixteen element byte array.\nCreates an IpAddr::V6 from an eight element 16-bit array.\nReturns the argument unchanged.\nCreates an IpAddr::V4 from a four element byte array.\nCopies this address to a new IpAddr::V6.\nCopies this address to a new IpAddr::V4.\nCreates an Ipv4Addr from a four element byte array.\nUses Ipv4Addr::from_bits to convert a host byte order u32 …\nReturns the argument unchanged.\nUses Ipv6Addr::from_bits to convert a host byte order u128 …\nCreates an Ipv6Addr from a sixteen element byte array.\nCreates an Ipv6Addr from an eight element 16-bit array.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a tuple struct (Into<IpAddr>, u16) into a …\nConverts a SocketAddrV6 into a SocketAddr::V6.\nConverts a SocketAddrV4 into a SocketAddr::V4.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a native byte order u32 into an IPv4 address.\nConverts a native byte order u128 into an IPv6 address.\nReturns an iterator over the connections being received on …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nTurn this into an iterator over the connections being …\nReturns the IP address associated with this socket address.\nReturns the IP address associated with this socket address.\nReturns the IP address associated with this socket address.\nReturns true if this address is in a range designated for …\nReturns true if this address part of the 198.18.0.0/15 …\nReturns true if this is an address reserved for …\nReturns true if this is a broadcast address (…\nReturns true if this address is in a range designated for …\nReturns true if this address is in a range designated for …\nReturns true if this is an address reserved for …\nReturns true if the address appears to be globally …\nReturns true if the address appears to be globally …\nReturns true if the address appears to be globally …\nReturns true if this address is an IPv4 address, and false …\nReturns true if the IP address in this SocketAddr is an …\nReturns true if the address is an IPv4-mapped address (…\nReturns true if this address is an IPv6 address, and false …\nReturns true if the IP address in this SocketAddr is an …\nReturns true if the address is link-local (169.254.0.0/16).\nReturns true if this is a loopback address.\nReturns true if this is a loopback address (127.0.0.0/8).\nReturns true if this is the loopback address (::1), as …\nReturns true if this is a multicast address.\nReturns true if this is a multicast address (224.0.0.0/4).\nReturns true if this is a multicast address (ff00::/8).\nReturns true if this is a private address.\nReturns true if this address is reserved by IANA for …\nReturns true if this address is part of the Shared Address …\nReturns true if this is a unicast address, as defined by …\nReturns true if the address is a globally routable unicast …\nReturns true if the address is a unicast address with …\nReturns true if this is a unique local address (fc00::/7).\nReturns true for the special ‘unspecified’ address.\nReturns true for the special ‘unspecified’ address (…\nReturns true for the special ‘unspecified’ address (::…\nExecutes an operation of the IP_ADD_MEMBERSHIP type.\nExecutes an operation of the IPV6_ADD_MEMBERSHIP type.\nExecutes an operation of the IP_DROP_MEMBERSHIP type.\nExecutes an operation of the IPV6_DROP_MEMBERSHIP type.\nGets the value of the SO_LINGER option on this socket.\nReturns the socket address of the local half of this TCP …\nReturns the local socket address of this listener.\nReturns the socket address that this socket was created …\nGets the value of the IP_MULTICAST_LOOP option for this …\nGets the value of the IPV6_MULTICAST_LOOP option for this …\nReturns the address’s multicast scope if the address is …\nGets the value of the IP_MULTICAST_TTL option for this …\nCreates a new IPv4 address from four eight-bit octets.\nCreates a new IPv6 address from eight 16-bit segments.\nCreates a new socket address from an IP address and a port …\nCreates a new socket address from an IPv4 address and a …\nCreates a new socket address from an IPv6 address, a …\nGets the value of the TCP_NODELAY option on this socket.\nReturns the four eight-bit integers that make up this …\nReturns the sixteen eight-bit integers the IPv6 address …\nParse an IP address from a slice of bytes.\nParse an IPv4 address from a slice of bytes.\nParse an IPv6 address from a slice of bytes.\nParse a socket address from a slice of bytes.\nParse an IPv4 socket address from a slice of bytes.\nParse an IPv6 socket address from a slice of bytes.\nReceives data on the socket from the remote address to …\nReceives single datagram on the socket from the remote …\nReceives a single datagram message on the socket, without …\nReturns the socket address of the remote peer of this TCP …\nReturns the socket address of the remote peer this socket …\nReturns the port number associated with this socket …\nReturns the port number associated with this socket …\nReturns the port number associated with this socket …\nReturns the read timeout of this socket.\nReturns the read timeout of this socket.\nReceives a single datagram message on the socket from the …\nReceives a single datagram message on the socket. On …\nReturns the scope ID associated with this address.\nReturns the eight 16-bit segments that make up this …\nSends data on the socket to the remote address to which it …\nSends data on the socket to the given address. On success, …\nSets the value of the SO_BROADCAST option for this socket.\nChanges the flow information associated with this socket …\nChanges the IP address associated with this socket address.\nChanges the IP address associated with this socket address.\nChanges the IP address associated with this socket address.\nSets the value of the SO_LINGER option on this socket.\nSets the value of the IP_MULTICAST_LOOP option for this …\nSets the value of the IPV6_MULTICAST_LOOP option for this …\nSets the value of the IP_MULTICAST_TTL option for this …\nSets the value of the TCP_NODELAY option on this socket.\nMoves this TCP stream into or out of nonblocking mode.\nMoves this TCP stream into or out of nonblocking mode.\nMoves this UDP socket into or out of nonblocking mode.\nChanges the port number associated with this socket …\nChanges the port number associated with this socket …\nChanges the port number associated with this socket …\nSets the read timeout to the timeout specified.\nSets the read timeout to the timeout specified.\nChanges the scope ID associated with this socket address.\nSets the value for the IP_TTL option on this socket.\nSets the value for the IP_TTL option on this socket.\nSets the value for the IP_TTL option on this socket.\nSets the write timeout to the timeout specified.\nSets the write timeout to the timeout specified.\nShuts down the read, write, or both halves of this …\nGets the value of the SO_ERROR option on this socket.\nGets the value of the SO_ERROR option on this socket.\nGets the value of the SO_ERROR option on this socket.\nConverts an IPv4 address into a u32 representation using …\nConverts an IPv6 address into a u128 representation using …\nConverts this address to an IpAddr::V4 if it is an …\nConverts this address to an IpAddr::V4 if it is an …\nConverts this address to an IPv4 address if it is either …\nConverts this address to an IPv4 address if it’s an …\nConverts this address to an IPv4-compatible IPv6 address.\nConverts this address to an IPv4-mapped IPv6 address.\nConverts this object to an iterator of resolved SocketAddr…\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nGets the value of the IP_TTL option for this socket.\nGets the value of the IP_TTL option for this socket.\nGets the value of the IP_TTL option for this socket.\nReturns the write timeout of this socket.\nReturns the write timeout of this socket.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nValue being parsed is empty.\nA classification of floating point numbers.\nPositive or negative infinity, which often results from …\nEnum to store the various types of errors that can cause …\nContains an invalid digit in its context.\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nNaN (not a number): this value results from calculations …\nInteger is too small to store in target integer type.\nA value that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nA regular floating point number, not any of the …\nAn error which can be returned when parsing a float.\nAn error which can be returned when parsing an integer.\nInteger is too large to store in target integer type.\nProvides intentionally-saturating arithmetic on T.\n“Subnormal” or “denormal” floating point …\nThe error type returned when a checked integral type …\nProvides intentionally-wrapped arithmetic on T.\nValue was Zero\nPositive or negative zero.\nA marker trait for primitive types which can be zero.\nComputes the absolute value of self. See i16::abs for …\nComputes the absolute value of self. See isize::abs for …\nComputes the absolute value of self. See i64::abs for …\nComputes the absolute value of self. See i128::abs for …\nComputes the absolute value of self. See i8::abs for …\nComputes the absolute value of self. See i32::abs for …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nConverts NonZero<i8> to NonZero<i16> losslessly.\nConverts NonZero<u64> to NonZero<i128> losslessly.\nConverts NonZero<u16> to NonZero<u64> losslessly.\nConverts NonZero<u8> to NonZero<u64> losslessly.\nConverts NonZero<u8> to NonZero<u32> losslessly.\nConverts NonZero<u8> to NonZero<u16> losslessly.\nConverts NonZero<u16> to NonZero<u128> losslessly.\nConverts NonZero<u16> to NonZero<usize> losslessly.\nConverts NonZero<u16> to NonZero<u32> losslessly.\nConverts NonZero<u32> to NonZero<u64> losslessly.\nConverts NonZero<u32> to NonZero<u128> losslessly.\nConverts NonZero<u64> to NonZero<u128> losslessly.\nConverts NonZero<u8> to NonZero<usize> losslessly.\nConverts NonZero<i8> to NonZero<i32> losslessly.\nConverts NonZero<i8> to NonZero<i64> losslessly.\nConverts NonZero<i8> to NonZero<i128> losslessly.\nConverts NonZero<i8> to NonZero<isize> losslessly.\nConverts NonZero<i16> to NonZero<i32> losslessly.\nConverts NonZero<i16> to NonZero<i64> losslessly.\nConverts NonZero<i16> to NonZero<i128> losslessly.\nConverts NonZero<i16> to NonZero<isize> losslessly.\nConverts NonZero<i32> to NonZero<i64> losslessly.\nConverts NonZero<i32> to NonZero<i128> losslessly.\nConverts NonZero<i64> to NonZero<i128> losslessly.\nConverts NonZero<u8> to NonZero<i16> losslessly.\nConverts NonZero<u8> to NonZero<i32> losslessly.\nConverts NonZero<u8> to NonZero<i64> losslessly.\nConverts NonZero<u8> to NonZero<i128> losslessly.\nConverts NonZero<u8> to NonZero<isize> losslessly.\nConverts NonZero<u16> to NonZero<i32> losslessly.\nConverts NonZero<u16> to NonZero<i64> losslessly.\nConverts NonZero<u16> to NonZero<i128> losslessly.\nConverts NonZero<u32> to NonZero<i64> losslessly.\nReturns the argument unchanged.\nConverts NonZero<u32> to NonZero<i128> losslessly.\nConverts NonZero<u8> to NonZero<u128> losslessly.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts a reference to a non-zero mutable reference if …\nConverts a mutable reference to a non-zero mutable …\nReturns the contained value as a primitive type.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nOutputs the detailed cause of parsing an integer failing.\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCreates a non-zero if the given value is not zero.\nCreates a non-zero without checking whether the value is …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …") \ No newline at end of file +searchState.loadedDescShard("wiwi", 8, "Returns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nProvides a reference to the front element of the cursor’…\nProvides a reference to the front element of the cursor’…\nProvides a mutable reference to the front element of the …\nReturns the cursor position index within the LinkedList.\nReturns the cursor position index within the LinkedList.\nInserts a new element into the LinkedList after the …\nInserts a new element into the LinkedList before the …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nMoves the cursor to the next element of the LinkedList.\nMoves the cursor to the next element of the LinkedList.\nMoves the cursor to the previous element of the LinkedList.\nMoves the cursor to the previous element of the LinkedList.\nReturns a reference to the next element.\nReturns a reference to the next element.\nReturns a reference to the previous element.\nReturns a reference to the previous element.\nRemoves the last element from the cursor’s parent list …\nRemoves the first element from the cursor’s parent list …\nAppends an element to the back of the cursor’s parent …\nAppends an element to the front of the cursor’s parent …\nRemoves the current element from the LinkedList.\nRemoves the current element from the LinkedList without …\nInserts the elements from the given LinkedList after the …\nInserts the elements from the given LinkedList before the …\nSplits the list into two after the current element. This …\nSplits the list into two before the current element. This …\nA draining iterator over the elements of a VecDeque.\nAn owning iterator over the elements of a VecDeque.\nAn iterator over the elements of a VecDeque.\nA mutable iterator over the elements of a VecDeque.\nA double-ended queue implemented with a growable ring …\nCreates an empty vec_deque::IterMut.\nCreates an empty vec_deque::Iter.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nSupporting trait for inherent methods of f32 and f64 such …\nUsed to do value-to-value conversions while consuming the …\nThe error type for errors that can never happen.\nA value-to-value conversion that consumes the input value. …\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nConverts to this type from the input type.\nReturns the argument unchanged.\nThe identity function.\nConverts this type into the (usually inferred) input type.\nCalls U::from(self).\nPerforms the conversion.\nPerforms the conversion.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nReturns the “default value” for a type.\nAn iterator over the arguments of a process, yielding a …\nAn iterator over the arguments of a process, yielding an …\nThe error type for operations on the PATH variable. …\nThe specified environment variable was not present in the …\nThe specified environment variable was found, but it did …\nAn iterator that splits an environment variable into paths …\nThe error type for operations interacting with environment …\nAn iterator over a snapshot of the environment variables …\nAn iterator over a snapshot of the environment variables …\nReturns the arguments that this program was started with …\nReturns the arguments that this program was started with …\nConstants associated with the current target\nReturns the current working directory as a PathBuf.\nReturns the full filesystem path of the current running …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the path of the current user’s home directory if …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nJoins a collection of Paths appropriately for the PATH …\nRemoves an environment variable from the environment of …\nChanges the current working directory to the specified …\nSets the environment variable key to the value value for …\nParses input according to platform conventions for the PATH\nReturns the path of a temporary directory.\nFetches the environment variable key from the current …\nFetches the environment variable key from the current …\nReturns an iterator of (variable, value) pairs of strings, …\nReturns an iterator of (variable, value) pairs of OS …\nA string describing the architecture of the CPU that is …\nSpecifies the file extension used for shared libraries on …\nSpecifies the filename prefix used for shared libraries on …\nSpecifies the filename suffix used for shared libraries on …\nSpecifies the file extension, if any, used for executable …\nSpecifies the filename suffix used for executable binaries …\nThe family of the operating system. Example value is unix.\nA string describing the specific operating system in use. …\nError is a trait representing the basic expectations for …\nAn error reporter that prints an error and its sources.\nRequest supports generic, type-driven access to data. Its …\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nAttempts to downcast the box to a concrete type.\nForwards to the method defined on the type dyn Error.\nForwards to the method defined on the type dyn Error.\nReturns some mutable reference to the inner value if it is …\nReturns some reference to the inner value if it is of type …\nForwards to the method defined on the type dyn Error.\nForwards to the method defined on the type dyn Error.\nReturns the argument unchanged.\nCalls U::from(self).\nForwards to the method defined on the type dyn Error.\nForwards to the method defined on the type dyn Error.\nReturns true if the inner type is the same as T.\nCreates a new Report from an input error.\nEnable pretty-printing the report across multiple lines.\nProvides type-based access to context intended for error …\nProvides a reference. The referee type must be bounded by …\nProvides a reference computed using a closure. The referee …\nProvides a value or other type with only static lifetimes.\nProvides a value or other type with only static lifetimes …\nRequests a reference of type T from the given impl Error.\nRequests a value of type T from the given impl Error.\nDisplay backtrace if available when using pretty output …\nReturns the lower-level source of this error, if any.\nReturns an iterator starting with the current error and …\nChecks if the Request would be satisfied if provided with a\nChecks if the Request would be satisfied if provided with a\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f32. Use f32::EPSILON instead.\nInfinity (∞). Use f32::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f32 value. Use f32::MAX instead.\nMaximum possible power of 10 exponent. Use f32::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f32::MAX_EXP …\nSmallest finite f32 value. Use f32::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f32 value. Use f32::MIN_POSITIVE …\nNot a Number (NaN). Use f32::NAN instead.\nNegative infinity (−∞). Use f32::NEG_INFINITY instead.\nThe radix or base of the internal representation of f32. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nApproximate number of significant digits in base 10. Use …\nMachine epsilon value for f64. Use f64::EPSILON instead.\nInfinity (∞). Use f64::INFINITY instead.\nNumber of significant digits in base 2. Use …\nLargest finite f64 value. Use f64::MAX instead.\nMaximum possible power of 10 exponent. Use f64::MAX_10_EXP …\nMaximum possible power of 2 exponent. Use f64::MAX_EXP …\nSmallest finite f64 value. Use f64::MIN instead.\nMinimum possible normal power of 10 exponent. Use …\nOne greater than the minimum possible normal power of 2 …\nSmallest positive normal f64 value. Use f64::MIN_POSITIVE …\nNot a Number (NaN). Use f64::NAN instead.\nNegative infinity (−∞). Use f64::NEG_INFINITY instead.\nThe radix or base of the internal representation of f64. …\nBasic mathematical constants.\nEuler’s number (e)\nThe Euler-Mascheroni constant (γ)\n1/π\n1/sqrt(2)\n1/sqrt(2π)\n1/sqrt(3)\n1/sqrt(π)\n2/π\n2/sqrt(π)\nπ/2\nπ/3\nπ/4\nπ/6\nπ/8\nln(10)\nln(2)\nlog10(2)\nlog10(e)\nlog2(10)\nlog2(e)\nThe golden ratio (φ)\nArchimedes’ constant (π)\nsqrt(2)\nsqrt(3)\nThe full circle constant (τ)\nRepresentation of a borrowed C string.\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nBorrowed reference to an OS string (see OsString).\nA type that can represent owned, mutable platform-native …\nA wrapper for a va_list\nx86_64 ABI implementation of a va_list.\nAdvance to the next arg.\nReturns the contents of this CString as a slice of bytes.\nReturns a slice of u8s bytes that were attempted to …\nEquivalent to CString::as_bytes() except that the returned …\nExtracts a CStr slice containing the entire string.\nConverts an OS string slice to a byte slice. To convert …\nConverts to an OsStr slice.\nReturns the inner pointer to this C string.\nConverts a VaListImpl into a VaList that is …\nIterates over the bytes in this C string.\nEquivalent to C’s char type.\nEquivalent to C’s double type.\nEquivalent to C’s float type.\nEquivalent to C’s signed int (int) type.\nEquivalent to C’s signed long (long) type.\nEquivalent to C’s signed long long (long long) type.\nEquivalent to C’s signed char type.\nEquivalent to C’s signed short (short) type.\nCStr, CString, and related types.\nEquivalent to C’s unsigned char type.\nEquivalent to C’s unsigned int type.\nEquivalent to C’s unsigned long type.\nEquivalent to C’s unsigned long long type.\nEquivalent to C’s unsigned short type.\nEquivalent to C’s void type when used as a pointer.\nReturns the capacity this OsString can hold without …\nTruncates the OsString to zero length.\nClones the contents of source into self.\nReturns the length of self. Like C’s strlen, this does …\nConstructs an empty OsString.\nCreates an empty OsStr.\nCreates an empty CString.\nReturns an object that implements Display for safely …\nChecks that two strings are an ASCII case-insensitive …\nReturns the argument unchanged.\nConverts a Cow<'a, OsStr> into an OsString, by copying the …\nConverts a Box<OsStr> into an OsString without copying or …\nCopies any value implementing AsRef<OsStr> into a newly …\nConverts a String into an OsString.\nConverts a PathBuf into an OsString\nReturns the argument unchanged.\nConverts a &CStr into a CString by copying the contents …\nConverts a Box<CStr> into a CString without copying or …\nReturns the argument unchanged.\nConverts a Vec<NonZero<u8>> into a CString without copying …\nConverts a Cow<'a, CStr> into a CString, by copying the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a C string wrapper from a byte slice with any …\nCreates a C string wrapper from a byte slice with exactly …\nUnsafely creates a C string wrapper from a byte slice.\nConverts bytes to an OsString without checking that the …\nConverts a slice of bytes to an OS string slice without …\nWraps a raw C string with a safe C string wrapper.\nRetakes ownership of a CString that was transferred to C …\nCreates a C-compatible string by consuming a byte vector, …\nAttempts to converts a Vec<u8> to a CString.\nConverts a Vec<u8> to a CString without checking the …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts this CString into a boxed CStr.\nConverts this OsString into a boxed OsStr.\nConsumes the CString and returns the underlying byte …\nReturns the bytes that were attempted to convert to a …\nEquivalent to CString::into_bytes() except that the …\nConverts a Box<CStr> into a CString without copying or …\nConsumes this error, returning original CString which …\nConverts the OsString into a byte slice. To convert the …\nConverts a Box<OsStr> into an OsString without copying or …\nConsumes the CString and transfers ownership of the string …\nConverts the OsString into a String if it contains valid …\nConverts the CString into a String if it contains valid …\nConsumes this error, returning the underlying vector of …\nChecks if all characters in this string are within the …\nChecks whether the OsStr is empty.\nReturns true if self.to_bytes() has a length of 0.\nConsumes and leaks the OsString, returning a mutable …\nReturns the length of this OsStr.\nConverts this string to its ASCII lower case equivalent …\nConverts this string to its ASCII upper case equivalent …\nConstructs a new empty OsString.\nCoerces into an OsStr slice.\nCreates a new C-compatible string from a container of …\nReturns the position of the nul byte in the slice that …\nThe OsStr and OsString types and associated utilities.\nExtends the string with the given &OsStr slice.\nReserves capacity for at least additional more capacity to …\nReserves the minimum capacity for at least additional more …\nShrinks the capacity of the OsString with a lower bound.\nShrinks the capacity of the OsString to match its length.\nTakes a substring based on a range that corresponds to the …\nReturns a copy of this string where each character is …\nReturns a copy of this string where each character is …\nConverts this C string to a byte slice.\nConverts this C string to a byte slice containing the …\nCopies the slice into an owned OsString.\nYields a &str slice if the OsStr is valid Unicode.\nYields a &str slice if the CStr contains valid UTF-8.\nConverts an OsStr to a Cow<str>.\nConverts a CStr into a Cow<str>.\nTries to reserve capacity for at least additional more …\nTries to reserve the minimum capacity for at least …\nAccess the underlying UTF-8 error that was the cause of …\nCreates a new OsString with at least the given capacity.\nCopies the va_list at the current location.\nRepresentation of a borrowed C string.\nA type representing an owned, C-compatible, nul-terminated …\nAn error indicating that no nul byte was present.\nAn error indicating that a nul byte was not in the …\nAn error indicating that a nul byte was not in the …\nAn error indicating invalid UTF-8 when converting a CString…\nAn error indicating that an interior nul byte was found.\nHelper struct for safely printing an OsStr with format! …\nBorrowed reference to an OS string (see OsString).\nA type that can represent owned, mutable platform-native …\nReturns the argument unchanged.\nCalls U::from(self).\nPossible alignments returned by Formatter::align\nThis structure represents a safely precompiled version of …\nb formatting.\nIndication that contents should be center-aligned.\n? formatting.\nDerive macro generating an impl of the trait Debug.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nA struct to help with fmt::Debug implementations.\nFormat trait for an empty format, {}.\nContains the error value\nThe error type which is returned from formatting a message …\nConfiguration for formatting.\nImplements fmt::Debug and fmt::Display using a function.\nIndication that contents should be left-aligned.\ne formatting.\nx formatting.\no formatting.\nContains the success value\np formatting.\nThe type returned by formatter methods.\nIndication that contents should be right-aligned.\nE formatting.\nX formatting.\nA trait for writing or formatting into Unicode-accepting …\nReturns a flag indicating what form of alignment was …\nDetermines if the # flag was specified.\nGets the formatted string, if it has no arguments to be …\nCreates a DebugList builder designed to assist with …\nCreates a DebugMap builder designed to assist with …\nCreates a DebugSet builder designed to assist with …\nCreates a DebugStruct builder designed to assist with …\nCreates a DebugTuple builder designed to assist with …\nAdds the contents of an iterator of entries to the set …\nAdds the contents of an iterator of entries to the list …\nAdds the contents of an iterator of entries to the map …\nAdds a new entry to the set output.\nAdds a new entry to the list output.\nAdds a new entry to the map output.\nAdds a new entry to the set output.\nAdds a new entry to the list output.\nAdds a new field to the generated struct output.\nAdds a new field to the generated tuple struct output.\nAdds a new field to the generated struct output.\nAdds a new field to the generated tuple struct output.\nReturns the character used as ‘fill’ whenever there is …\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nFinishes output and returns any error encountered.\nMarks the struct as non-exhaustive, indicating to the …\nMarks the tuple struct as non-exhaustive, indicating to …\nMarks the set as non-exhaustive, indicating to the reader …\nMarks the list as non-exhaustive, indicating to the reader …\nMarks the map as non-exhaustive, indicating to the reader …\nReturns flags for formatting.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nFormats the value using the given formatter.\nTakes an Arguments struct and returns the resulting …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a type whose fmt::Debug and fmt::Display impls are …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nAdds the key part of a new entry to the map output.\nAdds the key part of a new entry to the map output.\nTakes a string slice and emits it to the internal buffer …\nPerforms the correct padding for an integer which has …\nReturns the optionally specified precision for numeric …\nDetermines if the 0 flag was specified.\nDetermines if the - flag was specified.\nDetermines if the + flag was specified.\nAdds the value part of a new entry to the map output.\nAdds the value part of a new entry to the map output.\nReturns the optionally specified integer width that the …\nTakes an output stream and an Arguments struct that can be …\nWrites a char into this writer, returning whether the …\nGlue for usage of the write! macro with implementors of …\nGlue for usage of the write! macro with implementors of …\nWrites a string slice into this writer, returning whether …\nWrites some data to the underlying buffer contained within …\nA builder used to create directories in various manners.\nEntries returned by the ReadDir iterator.\nAn object providing access to an open file on the …\nRepresentation of the various timestamps on a file.\nA structure representing a type of file with accessors for …\nMetadata information about a file.\nOptions and flags which can be used to configure how a …\nRepresentation of the various permissions on a file.\nIterator over the entries in a directory.\nReturns the last access time of this metadata.\nSets the option for the append mode.\nReturns the canonical, absolute form of a path with all …\nCopies the contents of one file to another. This function …\nOpens a file in write-only mode.\nSets the option to create a new file, or open it if it …\nCreates the specified directory with the options …\nCreates a new, empty directory at the provided path\nRecursively create a directory and all of its parent …\nCreates a new file in read-write mode; error if the file …\nSets the option to create a new file, failing if it …\nReturns the creation time listed in this metadata.\nReturns Ok(true) if the path points at an existing entity.\nReturns the file name of this directory entry without any …\nReturns the file type for the file that this entry points …\nReturns the file type for this metadata.\nFlushes the file, ensuring that all intermediately …\nReturns the argument unchanged.\nReturns a File that takes ownership of the given file …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new hard link on the filesystem.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if this metadata is for a directory. The …\nTests whether this file type represents a directory. The …\nReturns true if this metadata is for a regular file. The …\nTests whether this file type represents a regular file. …\nDetermines if File has an efficient read_vectored …\nReturns true if this metadata is for a symbolic link.\nTests whether this file type represents a symbolic link. …\nDetermines if File has an efficient write_vectored …\nReturns the size of the file, in bytes, this metadata is …\nGiven a path, queries the file system to get information …\nQueries metadata about the underlying file.\nReturns the metadata for the file that this entry points …\nReturns the last modification time listed in this metadata.\nCreates a blank new set of options ready for configuration.\nCreates a new FileTimes with no times set.\nCreates a new set of options with default mode/security …\nAttempts to open a file in read-only mode.\nOpens a file at path with the options specified by self.\nReturns a new OpenOptions object.\nReturns the full path to the file that this entry …\nReturns the permissions of the file this metadata is for.\nReads the entire contents of a file into a bytes vector.\nReads some bytes from the file.\nSets the option for read access.\nReturns an iterator over the entries within a directory.\nReads a symbolic link, returning the file that the link …\nReads the entire contents of a file into a string.\nLike read, except that it reads into a slice of buffers.\nReturns true if these permissions describe a readonly …\nIndicates that directories should be created recursively, …\nRemoves an empty directory.\nRemoves a directory at this path, after removing all its …\nRemoves a file from the filesystem.\nRenames a file or directory to a new name, replacing the …\nSet the last access time of a file.\nTruncates or extends the underlying file, updating the …\nChanges the modification time of the underlying file.\nSet the last modified time of a file.\nChanges the permissions found on a file or a directory.\nChanges the permissions on the underlying file.\nModifies the readonly flag for this set of permissions. If …\nChanges the timestamps of the underlying file.\nCreates a new symbolic link on the filesystem.\nQueries the metadata about a file without following …\nAttempts to sync all OS-internal file content and metadata …\nThis function is similar to sync_all, except that it might …\nSets the option for truncating a previous file.\nCreates a new File instance that shares the same …\nWrites a slice as the entire contents of a file.\nWrites some bytes from the file.\nSets the option for write access.\nLike write, except that it writes into a slice of buffers.\nCustom code within the asynchronous destructor.\nA future returned by the async_drop_in_place.\nA future returned by the AsyncDrop::async_drop to be part …\nA future represents an asynchronous computation obtained …\nConversion into a Future.\nWhich kind of future are we turning this into?\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nCreates a future which never resolves, representing a …\nA Future that wraps a function returning Poll.\nA future that is immediately ready with a value.\nAsynchronously drops a value by running …\nConstructs the asynchronous destructor for this type.\nCreates the asynchronous destructor of the pointed-to …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreates a future from a value.\nConsumes the Ready, returning the wrapped value.\nPolls multiple futures simultaneously, returning a tuple …\nCreates a future which never resolves, representing a …\nAttempts to resolve the future to a final value, …\nCreates a future that wraps a function returning Poll.\nCreates a future that is immediately ready with a value.\nA trait for creating instances of Hasher.\nUsed to create a default BuildHasher instance for types …\nThe default Hasher used by RandomState.\nA hashable type.\nDerive macro generating an impl of the trait Hash.\nA trait for hashing an arbitrary stream of bytes.\nType of the hasher that will be created.\nRandomState is the default state for HashMap types.\nAn implementation of SipHash 2-4.\nCreates a new hasher.\nConstructs a new RandomState.\nCreates a new DefaultHasher using new. See its …\nReturns the hash value for the values written so far.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nFeeds this value into the given Hasher.\nCalculates the hash of a single value.\nFeeds a slice of this type into the given Hasher.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConstructs a new RandomState that is initialized with …\nCreates a new DefaultHasher.\nCreates a new BuildHasherDefault for Hasher H.\nCreates a new SipHasher with the two initial keys set to 0.\nCreates a SipHasher that is keyed off the provided keys.\nWrites some data into this Hasher.\nWrites a single i128 into this hasher.\nWrites a single i16 into this hasher.\nWrites a single i32 into this hasher.\nWrites a single i64 into this hasher.\nWrites a single i8 into this hasher.\nWrites a single isize into this hasher.\nWrites a length prefix into this hasher, as part of being …\nWrites a single str into this hasher.\nWrites a single u128 into this hasher.\nWrites a single u16 into this hasher.\nWrites a single u32 into this hasher.\nWrites a single u64 into this hasher.\nWrites a single u8 into this hasher.\nWrites a single usize into this hasher.\nMakes a soundness promise to the compiler that cond holds.\nAn identity function that hints to the compiler to be …\nAn identity function that causes an unused_must_use …\nEmits a machine instruction to signal the processor that …\nInforms the compiler that the site which is calling this …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAborts the execution of the process.\nPerforms checked integer addition.\nLowers in MIR to Rvalue::Aggregate with …\nCalculates the offset from a pointer, potentially wrapping.\nA guard for unsafe functions that cannot ever be executed …\nA guard for std::mem::uninitialized. This will statically …\nA guard for unsafe functions that cannot ever be executed …\nInforms the optimizer that a condition is always true. If …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nBitwise and with the current value, returning the previous …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nStores a value if the current value is the same as the old …\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nAn atomic fence.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nLoads the current value of the pointer.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMaximum with the current value.\nMaximum with the current value using a signed comparison.\nMaximum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nMinimum with the current value using a signed comparison.\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise nand with the current value, returning the …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nBitwise or with the current value, returning the previous …\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nA compiler-only memory barrier.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nStores the value at the specified memory location.\nDo NOT use this intrinsic; “unordered” operations do …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMaximum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nMinimum with the current value using an unsigned …\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nAdds to the current value, returning the previous value.\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nStores the value at the specified memory location, …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nBitwise xor with the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nSubtract from the current value, returning the previous …\nReverses the bits in an integer type T.\nSee documentation of std::hint::black_box for details.\nExecutes a breakpoint trap, for inspection by a debugger.\nReverses the bytes in an integer type T.\nGets a reference to a static Location indicating where it …\nRust’s “try catch” construct for unwinding. Invokes …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nReturns the smallest integer greater than or equal to an …\nLexicographically compare [left, left + bytes) and …\nAllocates a block of memory at compile time. At runtime, …\nDeallocates a memory which allocated by …\nSelects which function to call depending on the context.\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies the sign from y to x for f128 values.\nCopies the sign from y to x for f16 values.\nCopies the sign from y to x for f32 values.\nCopies the sign from y to x for f64 values.\nReturns the cosine of an f128.\nReturns the cosine of an f16.\nReturns the cosine of an f32.\nReturns the cosine of an f64.\nReturns the number of leading unset bits (zeroes) in an …\nLike ctlz, but extra-unsafe as it returns undef when given …\nReturns the number of bits set in an integer type T\nReturns the number of trailing unset bits (zeroes) in an …\nLike cttz, but extra-unsafe as it returns undef when given …\nReturns the value of the discriminant for the variant in …\nPerforms an exact division, resulting in undefined …\nReturns 2 raised to the power of an f128.\nReturns 2 raised to the power of an f16.\nReturns 2 raised to the power of an f32.\nReturns 2 raised to the power of an f64.\nReturns the exponential of an f128.\nReturns the exponential of an f16.\nReturns the exponential of an f32.\nReturns the exponential of an f64.\nReturns the absolute value of an f128.\nReturns the absolute value of an f16.\nReturns the absolute value of an f32.\nReturns the absolute value of an f64.\nFloat addition that allows optimizations based on …\nFloat addition that allows optimizations based on …\nFloat division that allows optimizations based on …\nFloat division that allows optimizations based on …\nConverts with LLVM’s fptoui/fptosi, which may return …\nReturns the largest integer less than or equal to an f128.\nReturns the largest integer less than or equal to an f16.\nReturns the largest integer less than or equal to an f32.\nReturns the largest integer less than or equal to an f64.\nReturns a * b + c for f128 values.\nReturns a * b + c for f16 values.\nReturns a * b + c for f32 values.\nReturns a * b + c for f64 values.\nFloat multiplication that allows optimizations based on …\nFloat multiplication that allows optimizations based on …\nMoves a value out of scope without running drop glue.\nFloat remainder that allows optimizations based on …\nFloat remainder that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nFloat subtraction that allows optimizations based on …\nReturns whether the argument’s value is statically known …\nHints to the compiler that branch condition is likely to …\nReturns the base 10 logarithm of an f128.\nReturns the base 10 logarithm of an f16.\nReturns the base 10 logarithm of an f32.\nReturns the base 10 logarithm of an f64.\nReturns the base 2 logarithm of an f128.\nReturns the base 2 logarithm of an f16.\nReturns the base 2 logarithm of an f32.\nReturns the base 2 logarithm of an f64.\nReturns the natural logarithm of an f128.\nReturns the natural logarithm of an f16.\nReturns the natural logarithm of an f32.\nReturns the natural logarithm of an f64.\nReturns the maximum of two f128 values.\nReturns the maximum of two f16 values.\nReturns the maximum of two f32 values.\nReturns the maximum of two f64 values.\nThe minimum alignment of a type.\nThe required alignment of the referenced value.\nReturns the minimum of two f128 values.\nReturns the minimum of two f16 values.\nReturns the minimum of two f32 values.\nReturns the minimum of two f64 values.\nRustc internal tooling for hand-writing MIR.\nPerforms checked integer multiplication\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nReturns true if the actual type given as T requires drop …\nEmits a nontemporal store, which gives a hint to the CPU …\nCalculates the offset from a pointer.\nRaises an f128 to an f128 power.\nRaises an f16 to an f16 power.\nRaises an f32 to an f32 power.\nRaises an f64 to an f64 power.\nRaises an f128 to an integer power.\nRaises an f16 to an integer power.\nRaises an f32 to an integer power.\nRaises an f64 to an integer power.\nThe preferred alignment of a type.\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nThe prefetch intrinsic is a hint to the code generator to …\nSee documentation of <*const T>::guaranteed_eq for details.\nMasks out bits of the pointer according to a mask.\nLowers in MIR to Rvalue::UnaryOp with UnOp::PtrMetadata.\nSee documentation of <*const T>::offset_from for details.\nSee documentation of <*const T>::sub_ptr for details.\nDetermines whether the raw bytes of the two values are …\nThis is an implementation detail of crate::ptr::read and …\nReturns the nearest integer to an f128. Changing the …\nReturns the nearest integer to an f16. Changing the …\nReturns the nearest integer to an f32. Changing the …\nReturns the nearest integer to an f64. Changing the …\nPerforms rotate left.\nPerforms rotate right.\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nReturns the nearest integer to an f128. Rounds half-way …\nReturns the nearest integer to an f16. Rounds half-way …\nReturns the nearest integer to an f32. Rounds half-way …\nReturns the nearest integer to an f64. Rounds half-way …\nMagic intrinsic that derives its meaning from attributes …\nComputes a + b, saturating at numeric bounds.\nComputes a - b, saturating at numeric bounds.\nReturns either true_val or false_val depending on …\nSIMD compiler intrinsics.\nReturns the sine of an f128.\nReturns the sine of an f16.\nReturns the sine of an f32.\nReturns the sine of an f64.\nThe size of a type in bytes.\nThe size of the referenced value in bytes.\nReturns the square root of an f128\nReturns the square root of an f16\nReturns the square root of an f32\nReturns the square root of an f64\nPerforms checked integer subtraction\nDoes a three-way comparison between the two integer …\nReinterprets the bits of a value of one type as another …\nLike transmute, but even less checked at compile-time: …\nReturns the integer part of an f128.\nReturns the integer part of an f16.\nReturns the integer part of an f32.\nReturns the integer part of an f64.\nGets an identifier which is globally unique to the …\nGets a static string slice containing the name of a type.\nNon-overlapping typed swap of a single value.\nReturns whether we should perform some UB-checking at …\nPerforms a volatile load from the src pointer The pointer …\nPerforms a volatile store to the dst pointer. The pointer …\nReturns the result of an unchecked addition, resulting in …\nPerforms an unchecked division, resulting in undefined …\nReturns the result of an unchecked multiplication, …\nReturns the remainder of an unchecked division, resulting …\nPerforms an unchecked left shift, resulting in undefined …\nPerforms an unchecked right shift, resulting in undefined …\nReturns the result of an unchecked subtraction, resulting …\nHints to the compiler that branch condition is likely to …\nInforms the optimizer that this point in the code is not …\nReturns the number of variants of the type T cast to a …\nEquivalent to the appropriate llvm.memmove.p0i8.0i8.* …\nEquivalent to the appropriate llvm.memcpy.p0i8.0i8.* …\nPerforms a volatile load from the src pointer.\nEquivalent to the appropriate llvm.memset.p0i8.* …\nPerforms a volatile store to the dst pointer.\nThe intrinsic will return the alignment stored in that …\nThe intrinsic will return the size stored in that vtable.\nReturns (a + b) mod 2N, where N is the width of T in bits.\nReturns (a * b) mod 2N, where N is the width of T in bits.\nReturns (a - b) mod 2N, where N is the width of T in bits.\nSets count * size_of::<T>() bytes of memory starting at dst…\nThis is an implementation detail of crate::ptr::write and …\nUnwinding is just not possible given the ABI of this …\nType representing basic blocks.\nCall a function.\nEmits a CastKind::PtrToPtr cast.\nEmits a CastKind::Transmute cast.\nA basic block that lies on an unwind path.\nGets the discriminant of a place.\nDrop the contents of a place.\nAccess the field with the given index of some place.\nWe were already cleaning up for an ongoing unwind, and a …\nA non-cleanup basic block.\nCall a function.\nAn unwind action that continues execution in a given basic …\nAn unwind action that continues unwinding.\nA terminator that resumes the unwinding.\nAn unwind action that terminates the execution.\nThe reason we are terminating the process during unwinding.\nAn unwind action that triggers undefined behaviour.\nAdds a variant projection with the given index to the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nMacro for generating custom MIR.\nHelper macro that allows you to treat a value expression …\nAdds two simd vectors elementwise.\n“Ands” vectors elementwise.\nCalculates the offset from a pointer vector elementwise, …\nNumerically casts a vector, elementwise.\nTruncates an integer vector to a bitmask.\nReverses bits of each element.\nSwaps bytes of each element.\nNumerically casts a vector, elementwise.\nCasts a vector of pointers.\nRounds up each element to the next highest integer-valued …\nCounts the leading zeros of each element.\nCounts the number of ones in each element.\nCounts the trailing zeros of each element.\nDivides lhs by rhs elementwise.\nTests elementwise equality of two vectors.\nExposes a vector of pointers as a vector of addresses.\nExtracts an element from a vector.\nReturns absolute value of a vector, elementwise.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nT must be a vector of floats.\nRounds down each element to the next lowest integer-valued …\nComputes (x*y) + z for each element, but without any …\nReturns the maximum of two vectors, elementwise.\nReturns the minimum of two vectors, elementwise.\nT must be a vector of floats.\nTakes the square root of each element.\nReads a vector of pointers.\nTests if x is greater than or equal to y, elementwise.\nTests if x is greater than y, elementwise.\nInserts an element into a vector, returning the updated …\nTests if x is less than or equal to y, elementwise.\nTests if x is less than y, elementwise.\nReads a vector of pointers.\nWrites to a vector of pointers.\nMultiplies two simd vectors elementwise.\nTests elementwise inequality equality of two vectors.\nNegates a vector elementwise.\n“Ors” vectors elementwise.\nAdds elements within a vector from left to right.\nAdds elements within a vector in arbitrary order. May also …\nChecks if all mask values are true.\nLogical “ands” all elements together.\nChecks if any mask value is true.\nReturns the maximum element of a vector.\nReturns the minimum element of a vector.\nMultiplies elements within a vector from left to right.\nMultiplies elements within a vector in arbitrary order. …\nLogical “ors” all elements together.\nLogical “exclusive ors” all elements together.\nReturns remainder of two vectors elementwise.\nRounds each element to the closest integer-valued float. …\nAdds two simd vectors elementwise, with saturation.\nSubtracts two simd vectors elementwise, with saturation.\nWrites to a vector of pointers.\nSelects elements from a mask.\nSelects elements from a bitmask.\nShifts vector left elementwise, with UB on overflow.\nShifts vector right elementwise, with UB on overflow.\nShuffles two vectors by const indices.\nSubtracts rhs from lhs elementwise.\nReturns the integer part of each element as an …\nCreates a vector of pointers from a vector of addresses.\n“Exclusive ors” vectors elementwise.\nA socket address could not be bound because the address is …\nA nonexistent interface was requested or the requested …\nAn entity already exists, often a file.\nProgram argument list too long.\nA borrowed byte buffer which is incrementally filled and …\nA writeable view of the unfilled portion of a BorrowedBuf.\nThe operation failed because a pipe was closed.\nA BufRead is a type of Reader which has an internal …\nThe BufReader<R> struct adds buffering to any reader.\nWraps a writer and buffers its output.\nAn iterator over u8 values of a reader.\nAdapter to chain together two readers.\nThe connection was aborted (terminated) by the remote …\nThe connection was refused by the remote server.\nThe connection was reset by the remote server.\nCross-device or cross-filesystem (hard) link or rename.\nSets the offset to the current position plus the specified …\nA Cursor wraps an in-memory buffer and provides it with a …\nDeadlock (avoided).\nA non-empty directory was specified where an empty …\nEmpty ignores any data written via Write, and will always …\nSets the offset to the size of this object plus the …\nContains the error value\nThe error type for I/O operations of the Read, Write, Seek…\nA list specifying general categories of I/O error.\nExecutable file is busy.\nFile larger than allowed or supported.\nLoop in the filesystem or IO subsystem; often, too many …\nFilesystem quota was exceeded.\nThe remote host is not reachable.\nThis operation was interrupted.\nAn error returned by BufWriter::into_inner which combines …\nData not valid for the operation were encountered.\nA filename was invalid.\nA parameter was incorrect.\nA buffer type used with Write::write_vectored.\nA buffer type used with Read::read_vectored.\nThe filesystem object is, unexpectedly, a directory.\nTrait to determine if a descriptor/handle refers to a …\nWraps a writer and buffers output to it, flushing whenever …\nAn iterator over the lines of an instance of BufRead.\nThe system’s networking is down.\nThe network containing the remote host is not reachable.\nA filesystem object is, unexpectedly, not a directory.\nThe network operation failed because it was not connected …\nAn entity was not found, often a file.\nSeek on unseekable file.\nContains the success value\nA custom error that does not fall under any other I/O …\nAn operation could not be completed, because it failed to …\nThe operation lacked the necessary privileges to complete.\nThe type of raw OS error codes returned by …\nThe Read trait allows for reading bytes from a source.\nThe filesystem or storage medium is read-only, but a write …\nA reader which yields one byte over and over and over and …\nResource is busy.\nA specialized Result type for I/O operations.\nThe Seek trait provides a cursor which can be moved within …\nEnumeration of possible methods to seek within an I/O …\nA writer which will move data into the void.\nAn iterator over the contents of an instance of BufRead …\nStale network file handle.\nSets the offset to the provided number of bytes.\nA handle to the standard error stream of a process.\nA locked reference to the Stderr handle.\nA handle to the standard input stream of a process.\nA locked reference to the Stdin handle.\nA handle to the global standard output stream of the …\nA locked reference to the Stdout handle.\nThe underlying storage (typically, a filesystem) is full.\nReader adapter which limits the bytes read from an …\nThe I/O operation’s timeout expired, causing it to be …\nToo many (hard) links to the same filesystem object.\nAn error returned when an operation could not be completed …\nThis operation is unsupported on this platform.\nThe operation needs to block to complete, but the blocking …\nA trait for objects which are byte-oriented sinks.\nAn error returned when an operation could not be completed …\nError returned for the buffered data from …\nAdvance the internal cursor of the slice.\nAdvance the internal cursor of the slice.\nAdvances the cursor by asserting that n bytes have been …\nAdvance a slice of slices.\nAdvance a slice of slices.\nAdvances the cursor by asserting that n bytes have been …\nAppends data to the cursor, advancing position within its …\nReturns a mutable reference to the whole cursor.\nReturns a reference to the internally buffered data.\nReturns a reference to the internally buffered data.\nCreates a “by reference” adaptor for this instance of …\nCreates a “by reference” adapter for this instance of …\nTransforms this Read instance to an Iterator over its …\nReturns the number of bytes the internal buffer can hold …\nReturns the number of bytes the internal buffer can hold …\nReturns the total capacity of the buffer.\nReturns the available space in the cursor.\nCreates an adapter which will chain this stream with …\nClears the buffer, resetting the filled region to empty.\nTells this buffer that amt bytes have been consumed from …\nCopies the entire contents of a reader into a writer.\nAttempts to downcast the custom boxed error to E.\nCreates a value that is always at EOF for reads, and …\nInitializes all bytes in the cursor.\nReturns the error which caused the call to …\nReturns the contents of the internal buffer, filling it …\nReturns a shared reference to the filled portion of the …\nReturns a mutable reference to the filled portion of the …\nFlushes this output stream, ensuring that all …\nShows a human-readable description of the ErrorKind.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a alloc::ffi::NulError into a Error.\nReturns the argument unchanged.\nConverts TryReserveError to an error with …\nConverts an ErrorKind into an Error.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new instance of an Error from a particular OS …\nGets a mutable reference to the underlying reader.\nGets a mutable reference to the underlying writer.\nGets a mutable reference to the underlying writer.\nReturns a mutable reference to the inner error wrapped by …\nGets a mutable reference to the underlying value in this …\nGets mutable references to the underlying readers in this …\nGets a mutable reference to the underlying reader.\nGets a reference to the underlying reader.\nGets a reference to the underlying writer.\nGets a reference to the underlying writer.\nReturns a reference to the inner error wrapped by this …\nGets a reference to the underlying value in this cursor.\nGets references to the underlying readers in this Chain.\nGets a reference to the underlying reader.\nChecks if the underlying Read has any data left to be read.\nReturns the length of the initialized part of the buffer.\nReturns a mutable reference to the initialized portion of …\nReturns a shared reference to the initialized portion of …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConsumes the IntoInnerError and returns the error which …\nUnwraps this BufReader<R>, returning the underlying reader.\nUnwraps this BufWriter<W>, returning the underlying writer.\nReturns the perhaps-unwritten data. Some of this data may …\nUnwraps this LineWriter, returning the underlying writer.\nConsumes the Error, returning its inner error (if any).\nReturns the buffered writer instance which generated the …\nConsumes this cursor, returning the underlying value.\nConsumes the Chain, returning the wrapped readers.\nConsumes the Take, returning the wrapped reader.\nDisassembles this BufWriter<W>, returning the underlying …\nConsumes the IntoInnerError and returns the error which …\nDetermines if this Reader has an efficient read_vectored …\nReturns true if the descriptor/handle refers to a …\nDetermines if this Writer has an efficient write_vectored …\nReturns the corresponding ErrorKind for this error.\nReturns an error representing the last OS error which …\nReturns the length of the filled part of the buffer.\nReturns the number of bytes that can be read before this …\nConsumes this handle and returns an iterator over input …\nReturns an iterator over the lines of this reader.\nLocks this handle to the standard input stream, returning …\nLocks this handle to the standard output stream, returning …\nLocks this handle to the standard error stream, returning …\nCreates a new BufReader<R> with a default buffer capacity. …\nCreates a new BufWriter<W> with a default buffer capacity. …\nCreates a new LineWriter.\nCreates a new I/O error from a known kind of error as well …\nCreates a new IoSliceMut wrapping a byte slice.\nCreates a new cursor wrapping the provided underlying …\nCreates a new IoSlice wrapping a byte slice.\nCreates a new I/O error from an arbitrary error payload.\nAttempt to look ahead n bytes.\nReturns the current position of this cursor.\nThe I/O Prelude.\nReturns the OS error that this error represents (if any).\nPull some bytes from this source into the specified …\nPull some bytes from this source into the specified buffer.\nReads the exact number of bytes required to fill cursor.\nReads the exact number of bytes required to fill buf.\nLocks this handle and reads a line of input, appending it …\nReads all bytes until a newline (the 0xA byte) is reached, …\nThis function is not supported by io::Repeat, because there…\nReads all bytes until EOF in this source, placing them …\nReads all bytes from a reader into a new String.\nThis function is not supported by io::Repeat, because there…\nReads all bytes until EOF in this source, appending them …\nReads all bytes into buf until the delimiter byte or EOF …\nLike read, except that it reads into a slice of buffers.\nReborrows this cursor by cloning it with a smaller …\nCreates an instance of a reader that infinitely repeats …\nRewind to the beginning of a stream.\nSeek to an offset, in bytes, in a stream.\nSeek to an offset, in bytes, in the underlying reader.\nSeek to the offset, in bytes, in the underlying writer.\nSeeks relative to the current position. If the new …\nSeeks relative to the current position.\nSeeks relative to the current position.\nAsserts that the first n bytes of the buffer are …\nAsserts that the first n unfilled bytes of the cursor are …\nSets the number of bytes that can be read before this …\nSets the position of this cursor.\nCreates an instance of a writer which will successfully …\nSkips all bytes until the delimiter byte or EOF is reached.\nReturns an iterator over the contents of this reader split …\nSplits the underlying slice at the cursor position and …\nSplits the underlying slice at the cursor position and …\nConstructs a new handle to the standard error of the …\nConstructs a new handle to the standard input of the …\nConstructs a new handle to the standard output of the …\nReturns the length of this stream (in bytes).\nReturns the current seek position from the start of the …\nReturns the current seek position from the start of the …\nCreates an adapter which will read at most limit bytes …\nReturns a cursor over the unfilled part of the buffer.\nReturns a mutable reference to the uninitialized part of …\nCreates a new BufReader<R> with the specified buffer …\nCreates a new BufWriter<W> with at least the specified …\nCreates a new LineWriter with at least the specified …\nWrites a buffer into this writer, returning how many bytes …\nAttempts to write an entire buffer into this writer.\nAttempts to write multiple buffers into this writer.\nWrites a formatted string into this writer, returning any …\nLike write, except that it writes from a slice of buffers.\nReturns the number of bytes written to this cursor since …\nA BufRead is a type of Reader which has an internal …\nThe Read trait allows for reading bytes from a source.\nThe Seek trait provides a cursor which can be moved within …\nA trait for objects which are byte-oriented sinks.\nCreates a “by reference” adaptor for this instance of …\nCreates a “by reference” adapter for this instance of …\nTransforms this Read instance to an Iterator over its …\nCreates an adapter which will chain this stream with …\nTells this buffer that amt bytes have been consumed from …\nReturns the contents of the internal buffer, filling it …\nFlushes this output stream, ensuring that all …\nChecks if the underlying Read has any data left to be read.\nDetermines if this Reader has an efficient read_vectored …\nDetermines if this Writer has an efficient write_vectored …\nReturns an iterator over the lines of this reader.\nPull some bytes from this source into the specified …\nPull some bytes from this source into the specified buffer.\nReads the exact number of bytes required to fill cursor.\nReads the exact number of bytes required to fill buf.\nReads all bytes until a newline (the 0xA byte) is reached, …\nReads all bytes until EOF in this source, placing them …\nReads all bytes until EOF in this source, appending them …\nReads all bytes into buf until the delimiter byte or EOF …\nLike read, except that it reads into a slice of buffers.\nRewind to the beginning of a stream.\nSeek to an offset, in bytes, in a stream.\nSeeks relative to the current position.\nSkips all bytes until the delimiter byte or EOF is reached.\nReturns an iterator over the contents of this reader split …\nReturns the length of this stream (in bytes).\nReturns the current seek position from the start of the …\nCreates an adapter which will read at most limit bytes …\nWrites a buffer into this writer, returning how many bytes …\nAttempts to write an entire buffer into this writer.\nAttempts to write multiple buffers into this writer.\nWrites a formatted string into this writer, returning any …\nLike write, except that it writes from a slice of buffers.\nThe largest value that can be represented by this integer …\nThe smallest value that can be represented by this integer …\nAn iterator over N elements of the iterator at a time.\nLike Iterator::by_ref, but requiring Sized so it can …\nAn iterator that links two iterators together, in a chain.\nAn iterator that clones the elements of an underlying …\nAn iterator that copies the elements of an underlying …\nAn iterator that repeats endlessly.\nAn iterator able to yield elements from both ends.\nAn iterator that yields nothing.\nAn iterator that yields the current count and the element …\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nAn iterator that filters the elements of iter with …\nAn iterator that uses f to both filter and map elements …\nAn iterator that maps each element to an iterator, and …\nAn iterator that flattens one level of nesting in an …\nAn iterator where each iteration calls the provided …\nConversion from an Iterator.\nAn iterator that yields None forever after the underlying …\nAn iterator that always continues to yield None when …\nAn iterator that calls a function with a reference to each …\nAn iterator adapter that places a separator between all …\nAn iterator adapter that places a separator between all …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nAn iterator that maps the values of iter with f.\nAn iterator that only accepts elements while predicate …\nAn iterator over the mapped windows of another iterator.\nAn iterator that yields an element exactly once.\nAn iterator that yields a single element of type A by …\nAn iterator with a peek() that returns an optional …\nTrait to represent types that can be created by …\nAn iterator that repeats an element endlessly.\nAn iterator that repeats an element an exact number of …\nAn iterator that repeats elements of type A endlessly by …\nA double-ended iterator with the direction inverted.\nAn iterator to maintain state while iterating another …\nAn iterator that skips over n elements of iter.\nAn iterator that rejects elements while predicate returns …\nObjects that have a notion of successor and predecessor …\nAn iterator for stepping iterators by a custom amount.\nA new iterator where each successive item is computed …\nTrait to represent types that can be created by summing up …\nAn iterator that only iterates over the first n iterations …\nAn iterator that only accepts elements while predicate …\nAn iterator that reports an accurate length using …\nA type that upholds all invariants of Step.\nAn iterator that iterates two other iterators …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nTests if every element of the iterator matches a predicate.\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nBorrows an iterator, rather than consuming it.\nConverts the arguments to iterators and links them …\nTakes two iterators and creates a new iterator over both …\nCreates an iterator which clones all of its elements.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nCreates a Flatten iterator from the default value of I.\nCreates a Chain from the default values for A and B.\nCreates a Cloned iterator from the default value of I\nCreates a Copied iterator from the default value of I\nCreates an Enumerate iterator from the default value of I\nCreates a Fuse iterator from the default value of I.\nCreates a Rev iterator from the default value of I\nCreates an iterator that yields nothing.\nCreates an iterator which gives the current iteration …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the value that would be obtained by taking the …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCreates a new iterator where each iteration calls the …\nCreates a new iterator where each iteration calls the …\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nDetermines if the elements of this Iterator are …\nDetermines if the elements of this Iterator are …\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCreates an iterator from a value.\nReturns an iterator over the remaining elements of the …\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nOverflow Behavior\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nConsume and return the next value of this iterator if a …\nConsume and return the next item if it is equal to expected…\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nCreates an iterator that yields an element exactly once.\nCreates an iterator that lazily generates a value exactly …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nReturns a reference to the next() value without advancing …\nReturns a mutable reference to the next() value without …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nTakes an iterator and generates Self from the elements by …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nCreates a new iterator that endlessly repeats a single …\nCreates a new iterator that repeats a single element a …\nCreates a new iterator that repeats elements of type A …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nReturns the number of successor steps required to get from …\nCreates a new iterator where each successive item is …\nTakes an iterator and generates Self from the elements by …\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nConverts an iterator of pairs into a pair of containers.\nConverts the arguments to iterators and zips them.\n‘Zips up’ two iterators into a single iterator of …\nDerive macro generating an impl of the trait ConstParamTy.\nA marker for types which can be used as types of const …\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nA marker for types that can be dropped.\nThe type of the discriminant, which must satisfy the trait …\nCompiler-internal trait used to indicate the type of enum …\nA common trait implemented by all function pointers.\nUsed to determine whether a type contains any UnsafeCell …\nZero-sized type used to mark things that “act like” …\nA marker type which does not implement Unpin.\nA marker for pointer-like types.\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nDerive macro generating impls of traits related to smart …\nRequired trait for constants used in pattern matches.\nTypes for which it is safe to share references between …\nA marker for tuple types.\nTypes that do not require any pinning guarantees.\nTypes that can be “unsized” to a dynamically-sized …\nA marker for types which can be used as types of const …\nDerive macro generating an impl of the trait ConstParamTy.\nReturns the address of the function pointer.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nWith this, TransmuteFrom assumes only that you have …\nConfigurable proof assumptions of TransmuteFrom.\nOpaque type representing the discriminant of an enum.\nWith this, TransmuteFrom assumes only that you have …\nA wrapper to inhibit the compiler from automatically …\nA wrapper type to construct uninitialized instances of T.\nWith this, TransmuteFrom does not assume you have ensured …\nWith this, TransmuteFrom assumes only that you have …\nMarks that Src is transmutable into Self.\nWith this, TransmuteFrom assumes only that you have …\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns the ABI-required minimum alignment of the type of …\nWhen false, TransmuteFrom is not implemented for …\nCombine the assumptions of self and other_assumptions.\nExtracts the values from an array of MaybeUninit …\nReturns the contents of this MaybeUninit as a slice of …\nReturns the contents of this MaybeUninit as a mutable …\nGets a mutable pointer to the contained value. Reading …\nGets a pointer to the contained value. Reading from this …\nExtracts the value from the MaybeUninit<T> container. This …\nDrops the contained value in place.\nGets a mutable (unique) reference to the contained value.\nReads the value from the MaybeUninit<T> container. The …\nGets a shared reference to the contained value.\nRemove other_assumptions the obligations of self; e.g.:\nClones the elements from src to this, returning a mutable …\nBitwise-copies a value.\nCopies the elements from src to this, returning a mutable …\nReturns a value uniquely identifying the enum variant in v.\nDisposes of a value.\nManually drops the contained value.\nFills this with elements by cloning value, returning a …\nFills this with elements yielded by an iterator until …\nFills this with elements returned by calling a closure …\nTakes ownership and “forgets” about the value without …\nLike forget, but also accepts unsized values.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nExtracts the value from the ManuallyDrop container.\nWhen false, TransmuteFrom is not implemented for …\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nReturns true if dropping values of type T matters.\nWrap a value to be manually dropped.\nCreates a new MaybeUninit<T> initialized with the given …\nExpands to the offset in bytes of a field from the …\nMoves src into the referenced dest, returning the previous …\nWhen false, TransmuteFrom is not implemented for …\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nReturns the size of the pointed-to value in bytes.\nReturns the contents of this slice of MaybeUninit as a …\nReturns the contents of this mutable slice of MaybeUninit …\nGets a mutable pointer to the first element of the array.\nGets a pointer to the first element of the array.\nAssuming all the elements are initialized, get a mutable …\nAssuming all the elements are initialized, get a slice to …\nSwaps the values at two mutable locations, without …\nReplaces dest with the default value of T, returning the …\nTakes the value from the ManuallyDrop<T> container out.\nReinterprets the bits of a value of one type as another …\nTransmutes a Src value into a Self.\nInterprets src as having type &Dst, and then reads src …\nTransposes a MaybeUninit<[T; N]> into a [MaybeUninit<T>; N]…\nCreates a new MaybeUninit<T> in an uninitialized state.\nCreates a new array of MaybeUninit<T> items, in an …\nBypasses Rust’s normal memory-initialization checks by …\nWhen false, TransmuteFrom is not implemented for …\nReturns the number of variants in the enum type T.\nSets the value of the MaybeUninit<T>.\nReturns the value of type T represented by the all-zero …\nCreates a new MaybeUninit<T> in an uninitialized state, …\nAn error which can be returned when parsing an IP address …\nAdmin-Local scope.\nThe size of an IPv4 address in bits.\nThe size of an IPv6 address in bits.\nAn IPv4 address representing the broadcast address: …\nBoth the reading and the writing portions of the TcpStream …\nGlobal scope.\nAn iterator that infinitely accepts connections on a …\nInterface-Local scope.\nAn iterator that infinitely accepts connections on a …\nAn IP address, either IPv4 or IPv6.\nAn IPv4 address.\nAn IPv6 address.\nScope of an IPv6 multicast address as defined in IETF RFC …\nReturned iterator over socket addresses which this type …\nAn IPv4 address with the address pointing to localhost: …\nAn IPv6 address representing localhost: ::1.\nLink-Local scope.\nOrganization-Local scope.\nThe reading portion of the TcpStream should be shut down.\nRealm-Local scope.\nPossible values which can be passed to the …\nSite-Local scope.\nAn internet socket address, either IPv4 or IPv6.\nAn IPv4 socket address.\nAn IPv6 socket address.\nA TCP socket server, listening for connections.\nA TCP stream between a local and a remote socket.\nA trait for objects which can be converted or resolved to …\nAn IPv4 address representing an unspecified address: …\nAn IPv6 address representing the unspecified address: ::.\nA UDP socket.\nAn IPv4 address.\nAn IPv4 socket address.\nAn IPv6 address.\nAn IPv6 socket address.\nThe writing portion of the TcpStream should be shut down.\nAccept a new incoming connection from this listener.\nCreates a new TcpListener which will be bound to the …\nCreates a UDP socket from the given address.\nGets the value of the SO_BROADCAST option for this socket.\nOpens a TCP connection to a remote host.\nConnects this UDP socket to a remote address, allowing the …\nOpens a TCP connection to a remote host with a timeout.\nReturns the flow information associated with this address.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCopies this address to a new IpAddr::V4.\nCreates an IpAddr::V4 from a four element byte array.\nCopies this address to a new IpAddr::V6.\nCreates an IpAddr::V6 from a sixteen element byte array.\nCreates an IpAddr::V6 from an eight element 16-bit array.\nReturns the argument unchanged.\nUses Ipv4Addr::from_bits to convert a host byte order u32 …\nCreates an Ipv4Addr from a four element byte array.\nReturns the argument unchanged.\nCreates an Ipv6Addr from an eight element 16-bit array.\nReturns the argument unchanged.\nUses Ipv6Addr::from_bits to convert a host byte order u128 …\nCreates an Ipv6Addr from a sixteen element byte array.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a tuple struct (Into<IpAddr>, u16) into a …\nConverts a SocketAddrV6 into a SocketAddr::V6.\nConverts a SocketAddrV4 into a SocketAddr::V4.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a native byte order u32 into an IPv4 address.\nConverts a native byte order u128 into an IPv6 address.\nReturns an iterator over the connections being received on …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nTurn this into an iterator over the connections being …\nReturns the IP address associated with this socket address.\nReturns the IP address associated with this socket address.\nReturns the IP address associated with this socket address.\nReturns true if this address is in a range designated for …\nReturns true if this address part of the 198.18.0.0/15 …\nReturns true if this is an address reserved for …\nReturns true if this is a broadcast address (…\nReturns true if this address is in a range designated for …\nReturns true if this address is in a range designated for …\nReturns true if this is an address reserved for …\nReturns true if the address appears to be globally …\nReturns true if the address appears to be globally …\nReturns true if the address appears to be globally …\nReturns true if this address is an IPv4 address, and false …\nReturns true if the IP address in this SocketAddr is an …\nReturns true if the address is an IPv4-mapped address (…\nReturns true if this address is an IPv6 address, and false …\nReturns true if the IP address in this SocketAddr is an …\nReturns true if the address is link-local (169.254.0.0/16).\nReturns true if this is a loopback address.\nReturns true if this is a loopback address (127.0.0.0/8).\nReturns true if this is the loopback address (::1), as …\nReturns true if this is a multicast address.\nReturns true if this is a multicast address (224.0.0.0/4).\nReturns true if this is a multicast address (ff00::/8).\nReturns true if this is a private address.\nReturns true if this address is reserved by IANA for …\nReturns true if this address is part of the Shared Address …\nReturns true if this is a unicast address, as defined by …\nReturns true if the address is a globally routable unicast …\nReturns true if the address is a unicast address with …\nReturns true if this is a unique local address (fc00::/7).\nReturns true for the special ‘unspecified’ address.\nReturns true for the special ‘unspecified’ address (…\nReturns true for the special ‘unspecified’ address (::…\nExecutes an operation of the IP_ADD_MEMBERSHIP type.\nExecutes an operation of the IPV6_ADD_MEMBERSHIP type.\nExecutes an operation of the IP_DROP_MEMBERSHIP type.\nExecutes an operation of the IPV6_DROP_MEMBERSHIP type.\nGets the value of the SO_LINGER option on this socket.\nReturns the socket address of the local half of this TCP …\nReturns the local socket address of this listener.\nReturns the socket address that this socket was created …\nGets the value of the IP_MULTICAST_LOOP option for this …\nGets the value of the IPV6_MULTICAST_LOOP option for this …\nReturns the address’s multicast scope if the address is …\nGets the value of the IP_MULTICAST_TTL option for this …\nCreates a new IPv4 address from four eight-bit octets.\nCreates a new IPv6 address from eight 16-bit segments.\nCreates a new socket address from an IP address and a port …\nCreates a new socket address from an IPv4 address and a …\nCreates a new socket address from an IPv6 address, a …\nGets the value of the TCP_NODELAY option on this socket.\nReturns the four eight-bit integers that make up this …\nReturns the sixteen eight-bit integers the IPv6 address …\nParse an IP address from a slice of bytes.\nParse an IPv4 address from a slice of bytes.\nParse an IPv6 address from a slice of bytes.\nParse a socket address from a slice of bytes.\nParse an IPv4 socket address from a slice of bytes.\nParse an IPv6 socket address from a slice of bytes.\nReceives data on the socket from the remote address to …\nReceives single datagram on the socket from the remote …\nReceives a single datagram message on the socket, without …\nReturns the socket address of the remote peer of this TCP …\nReturns the socket address of the remote peer this socket …\nReturns the port number associated with this socket …\nReturns the port number associated with this socket …\nReturns the port number associated with this socket …\nReturns the read timeout of this socket.\nReturns the read timeout of this socket.\nReceives a single datagram message on the socket from the …\nReceives a single datagram message on the socket. On …\nReturns the scope ID associated with this address.\nReturns the eight 16-bit segments that make up this …\nSends data on the socket to the remote address to which it …\nSends data on the socket to the given address. On success, …\nSets the value of the SO_BROADCAST option for this socket.\nChanges the flow information associated with this socket …\nChanges the IP address associated with this socket address.\nChanges the IP address associated with this socket address.\nChanges the IP address associated with this socket address.\nSets the value of the SO_LINGER option on this socket.\nSets the value of the IP_MULTICAST_LOOP option for this …\nSets the value of the IPV6_MULTICAST_LOOP option for this …\nSets the value of the IP_MULTICAST_TTL option for this …\nSets the value of the TCP_NODELAY option on this socket.\nMoves this TCP stream into or out of nonblocking mode.\nMoves this TCP stream into or out of nonblocking mode.\nMoves this UDP socket into or out of nonblocking mode.\nChanges the port number associated with this socket …\nChanges the port number associated with this socket …\nChanges the port number associated with this socket …\nSets the read timeout to the timeout specified.\nSets the read timeout to the timeout specified.\nChanges the scope ID associated with this socket address.\nSets the value for the IP_TTL option on this socket.\nSets the value for the IP_TTL option on this socket.\nSets the value for the IP_TTL option on this socket.\nSets the write timeout to the timeout specified.\nSets the write timeout to the timeout specified.\nShuts down the read, write, or both halves of this …\nGets the value of the SO_ERROR option on this socket.\nGets the value of the SO_ERROR option on this socket.\nGets the value of the SO_ERROR option on this socket.\nConverts an IPv4 address into a u32 representation using …\nConverts an IPv6 address into a u128 representation using …\nConverts this address to an IpAddr::V4 if it is an …\nConverts this address to an IpAddr::V4 if it is an …\nConverts this address to an IPv4 address if it is either …\nConverts this address to an IPv4 address if it’s an …\nConverts this address to an IPv4-compatible IPv6 address.\nConverts this address to an IPv4-mapped IPv6 address.\nConverts this object to an iterator of resolved SocketAddr…\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nGets the value of the IP_TTL option for this socket.\nGets the value of the IP_TTL option for this socket.\nGets the value of the IP_TTL option for this socket.\nReturns the write timeout of this socket.\nReturns the write timeout of this socket.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nThe size of this non-zero integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nReturns the size of this integer type in bits.\nValue being parsed is empty.\nA classification of floating point numbers.\nPositive or negative infinity, which often results from …\nEnum to store the various types of errors that can cause …\nContains an invalid digit in its context.\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nThe largest value that can be represented by this non-zero …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nReturns the largest value that can be represented by this …\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nThe smallest value that can be represented by this non-zero\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nReturns the smallest value that can be represented by this …\nNaN (not a number): this value results from calculations …\nInteger is too small to store in target integer type.\nA value that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nAn integer that is known not to equal zero.\nA regular floating point number, not any of the …\nAn error which can be returned when parsing a float.\nAn error which can be returned when parsing an integer.\nInteger is too large to store in target integer type.\nProvides intentionally-saturating arithmetic on T.\n“Subnormal” or “denormal” floating point …\nThe error type returned when a checked integral type …\nProvides intentionally-wrapped arithmetic on T.\nValue was Zero\nPositive or negative zero.\nA marker trait for primitive types which can be zero.\nComputes the absolute value of self. See i64::abs for …\nComputes the absolute value of self. See i128::abs for …\nComputes the absolute value of self. See i16::abs for …\nComputes the absolute value of self. See i32::abs for …\nComputes the absolute value of self. See i8::abs for …\nComputes the absolute value of self. See isize::abs for …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nSaturating absolute value. Computes self.abs(), returning …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nComputes the absolute value of self, wrapping around at …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nChecked absolute value. Checks for overflow and returns …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nAdds an unsigned integer to a non-zero value. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nMultiplies two non-zero integers together. Checks for …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nChecked negation. Computes -self, returning None if …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nRaises non-zero value to an integer power. Checks for …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of ones in the binary representation of …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nReturns the number of zeros in the binary representation …\nConverts NonZero<u16> to NonZero<i32> losslessly.\nConverts NonZero<u16> to NonZero<u128> losslessly.\nConverts NonZero<u32> to NonZero<i128> losslessly.\nConverts NonZero<u32> to NonZero<i64> losslessly.\nConverts NonZero<u16> to NonZero<i128> losslessly.\nConverts NonZero<u16> to NonZero<i64> losslessly.\nConverts NonZero<u8> to NonZero<u16> losslessly.\nConverts NonZero<u8> to NonZero<u32> losslessly.\nConverts NonZero<u8> to NonZero<u64> losslessly.\nConverts NonZero<u8> to NonZero<u128> losslessly.\nConverts NonZero<u8> to NonZero<usize> losslessly.\nConverts NonZero<u64> to NonZero<i128> losslessly.\nConverts NonZero<u8> to NonZero<isize> losslessly.\nConverts NonZero<u8> to NonZero<i128> losslessly.\nConverts NonZero<u8> to NonZero<i64> losslessly.\nReturns the argument unchanged.\nConverts NonZero<u16> to NonZero<u32> losslessly.\nConverts NonZero<u8> to NonZero<i32> losslessly.\nConverts NonZero<u8> to NonZero<i16> losslessly.\nConverts NonZero<i64> to NonZero<i128> losslessly.\nConverts NonZero<u16> to NonZero<u64> losslessly.\nConverts NonZero<i32> to NonZero<i64> losslessly.\nConverts NonZero<i16> to NonZero<isize> losslessly.\nConverts NonZero<i16> to NonZero<i128> losslessly.\nConverts NonZero<i16> to NonZero<i64> losslessly.\nConverts NonZero<i16> to NonZero<i32> losslessly.\nConverts NonZero<i8> to NonZero<isize> losslessly.\nConverts NonZero<i8> to NonZero<i128> losslessly.\nConverts NonZero<i8> to NonZero<i64> losslessly.\nConverts NonZero<i8> to NonZero<i32> losslessly.\nConverts NonZero<i8> to NonZero<i16> losslessly.\nConverts NonZero<u64> to NonZero<u128> losslessly.\nConverts NonZero<u32> to NonZero<u128> losslessly.\nConverts NonZero<u32> to NonZero<u64> losslessly.\nConverts NonZero<u16> to NonZero<usize> losslessly.\nConverts NonZero<i32> to NonZero<i128> losslessly.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from big endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts an integer from little endian to the target’s …\nConverts a reference to a non-zero mutable reference if …\nConverts a mutable reference to a non-zero mutable …\nReturns the contained value as a primitive type.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 10 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nReturns the base 2 logarithm of the number, rounded down.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is negative and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if self is positive and false if the number …\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.") \ No newline at end of file diff --git a/search.desc/wiwi/wiwi-desc-9-.js b/search.desc/wiwi/wiwi-desc-9-.js index 4b83dce30..0149a335c 100644 --- a/search.desc/wiwi/wiwi-desc-9-.js +++ b/search.desc/wiwi/wiwi-desc-9-.js @@ -1 +1 @@ -searchState.loadedDescShard("wiwi", 9, "Shifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nSaturating absolute value, see i16::saturating_abs.\nSaturating absolute value, see i64::saturating_abs.\nSaturating absolute value, see i8::saturating_abs.\nSaturating absolute value, see isize::saturating_abs.\nSaturating absolute value, see i128::saturating_abs.\nSaturating absolute value, see i32::saturating_abs.\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nAttempts to convert NonZero<i32> to NonZero<u8>.\nAttempts to convert NonZero<u32> to NonZero<i8>.\nAttempts to convert NonZero<i64> to NonZero<i8>.\nAttempts to convert NonZero<i64> to NonZero<usize>.\nAttempts to convert NonZero<i32> to NonZero<isize>.\nAttempts to convert NonZero<i64> to NonZero<u128>.\nAttempts to convert NonZero<i128> to NonZero<u8>.\nAttempts to convert NonZero<i64> to NonZero<u64>.\nAttempts to convert NonZero<i64> to NonZero<u32>.\nAttempts to convert NonZero<i128> to NonZero<u16>.\nAttempts to convert NonZero<i64> to NonZero<u16>.\nAttempts to convert NonZero<i64> to NonZero<u8>.\nAttempts to convert NonZero<i128> to NonZero<u32>.\nAttempts to convert NonZero<i128> to NonZero<u64>.\nAttempts to convert NonZero<i128> to NonZero<u128>.\nAttempts to convert NonZero<i128> to NonZero<usize>.\nAttempts to convert NonZero<i32> to NonZero<usize>.\nAttempts to convert NonZero<i32> to NonZero<u128>.\nAttempts to convert NonZero<i32> to NonZero<u64>.\nAttempts to convert NonZero<isize> to NonZero<u8>.\nAttempts to convert NonZero<i32> to NonZero<u32>.\nAttempts to convert NonZero<isize> to NonZero<u16>.\nAttempts to convert NonZero<i32> to NonZero<u16>.\nAttempts to convert NonZero<i128> to NonZero<i16>.\nAttempts to convert NonZero<isize> to NonZero<i128>.\nAttempts to convert NonZero<i16> to NonZero<usize>.\nAttempts to convert NonZero<i64> to NonZero<isize>.\nAttempts to convert NonZero<isize> to NonZero<u32>.\nAttempts to convert NonZero<i128> to NonZero<i32>.\nAttempts to convert u8 to NonZero<u8>.\nAttempts to convert u16 to NonZero<u16>.\nAttempts to convert NonZero<isize> to NonZero<u64>.\nAttempts to convert NonZero<i16> to NonZero<u128>.\nAttempts to convert u32 to NonZero<u32>.\nAttempts to convert NonZero<i128> to NonZero<i64>.\nAttempts to convert NonZero<i16> to NonZero<u64>.\nAttempts to convert NonZero<i16> to NonZero<u32>.\nAttempts to convert NonZero<u8> to NonZero<i8>.\nAttempts to convert NonZero<i128> to NonZero<isize>.\nAttempts to convert u64 to NonZero<u64>.\nAttempts to convert u128 to NonZero<u128>.\nAttempts to convert NonZero<i16> to NonZero<u16>.\nAttempts to convert usize to NonZero<usize>.\nAttempts to convert NonZero<u16> to NonZero<i8>.\nAttempts to convert NonZero<i32> to NonZero<i16>.\nAttempts to convert NonZero<i16> to NonZero<u8>.\nAttempts to convert NonZero<i8> to NonZero<usize>.\nAttempts to convert NonZero<isize> to NonZero<i8>.\nAttempts to convert i8 to NonZero<i8>.\nAttempts to convert i16 to NonZero<i16>.\nAttempts to convert NonZero<u16> to NonZero<i16>.\nAttempts to convert i32 to NonZero<i32>.\nAttempts to convert i64 to NonZero<i64>.\nAttempts to convert NonZero<isize> to NonZero<i16>.\nAttempts to convert NonZero<i8> to NonZero<u128>.\nAttempts to convert NonZero<i8> to NonZero<u64>.\nAttempts to convert NonZero<i8> to NonZero<u32>.\nAttempts to convert NonZero<i8> to NonZero<u16>.\nAttempts to convert NonZero<i8> to NonZero<u8>.\nAttempts to convert NonZero<usize> to NonZero<isize>.\nAttempts to convert NonZero<i128> to NonZero<i8>.\nAttempts to convert NonZero<usize> to NonZero<i64>.\nAttempts to convert i128 to NonZero<i128>.\nAttempts to convert NonZero<usize> to NonZero<i32>.\nAttempts to convert NonZero<usize> to NonZero<i16>.\nAttempts to convert NonZero<usize> to NonZero<i8>.\nAttempts to convert NonZero<isize> to NonZero<i32>.\nAttempts to convert NonZero<u128> to NonZero<isize>.\nAttempts to convert isize to NonZero<isize>.\nAttempts to convert NonZero<u16> to NonZero<u8>.\nAttempts to convert NonZero<u128> to NonZero<i128>.\nAttempts to convert NonZero<u128> to NonZero<i64>.\nAttempts to convert NonZero<u128> to NonZero<i32>.\nAttempts to convert NonZero<u32> to NonZero<u8>.\nAttempts to convert NonZero<isize> to NonZero<i64>.\nAttempts to convert NonZero<u16> to NonZero<isize>.\nAttempts to convert NonZero<u32> to NonZero<u16>.\nAttempts to convert NonZero<i64> to NonZero<i16>.\nAttempts to convert NonZero<u32> to NonZero<usize>.\nAttempts to convert NonZero<u64> to NonZero<u8>.\nAttempts to convert NonZero<u64> to NonZero<u16>.\nAttempts to convert NonZero<u64> to NonZero<u32>.\nAttempts to convert NonZero<u64> to NonZero<usize>.\nAttempts to convert NonZero<u128> to NonZero<u8>.\nAttempts to convert NonZero<u128> to NonZero<i16>.\nAttempts to convert NonZero<u128> to NonZero<i8>.\nAttempts to convert NonZero<u128> to NonZero<u16>.\nAttempts to convert NonZero<u128> to NonZero<u32>.\nAttempts to convert NonZero<u64> to NonZero<isize>.\nAttempts to convert NonZero<u64> to NonZero<i64>.\nAttempts to convert NonZero<u128> to NonZero<u64>.\nAttempts to convert NonZero<u64> to NonZero<i32>.\nAttempts to convert NonZero<u128> to NonZero<usize>.\nAttempts to convert NonZero<u64> to NonZero<i16>.\nAttempts to convert NonZero<usize> to NonZero<u8>.\nAttempts to convert NonZero<usize> to NonZero<u16>.\nAttempts to convert NonZero<usize> to NonZero<u32>.\nAttempts to convert NonZero<usize> to NonZero<u64>.\nAttempts to convert NonZero<usize> to NonZero<u128>.\nAttempts to convert NonZero<i16> to NonZero<i8>.\nAttempts to convert NonZero<i32> to NonZero<i8>.\nAttempts to convert NonZero<i64> to NonZero<i32>.\nAttempts to convert NonZero<u64> to NonZero<i8>.\nAttempts to convert NonZero<u32> to NonZero<isize>.\nAttempts to convert NonZero<u32> to NonZero<i32>.\nAttempts to convert NonZero<isize> to NonZero<u128>.\nAttempts to convert NonZero<isize> to NonZero<usize>.\nAttempts to convert NonZero<u32> to NonZero<i16>.\nAttempts to convert NonZero<usize> to NonZero<i128>.\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nWrapping absolute value, see i64::wrapping_abs.\nWrapping absolute value, see i16::wrapping_abs.\nWrapping absolute value, see i32::wrapping_abs.\nWrapping absolute value, see i128::wrapping_abs.\nWrapping absolute value, see isize::wrapping_abs.\nWrapping absolute value, see i8::wrapping_abs.\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nThe addition operator +.\nThe addition assignment operator +=.\nAn async-aware version of the Fn trait.\nAn async-aware version of the FnMut trait.\nAn async-aware version of the FnOnce trait.\nThe bitwise AND operator &.\nThe bitwise AND assignment operator &=.\nThe bitwise OR operator |.\nThe bitwise OR assignment operator |=.\nThe bitwise XOR operator ^.\nThe bitwise XOR assignment operator ^=.\nAn endpoint of a range of keys.\nExit the operation without running subsequent phases.\nFuture returned by AsyncFnOnce::async_call_once.\nFuture returned by AsyncFnMut::async_call_mut and …\nTrait that indicates that this is a pointer or a wrapper …\nThe coroutine completed with a return value.\nMove on to the next phase of the operation as normal.\nUsed to tell an operation whether it should exit early or …\nThe trait implemented by builtin coroutine types.\nThe result of a coroutine resumption.\nUsed for immutable dereferencing operations, like *v.\nUsed for mutable dereferencing operations, like in *v = 1;.\nPerma-unstable marker trait. Indicates that the type has a …\nDispatchFromDyn is used in the implementation of object …\nThe division operator /.\nThe division assignment operator /=.\nCustom code within the destructor.\nAn exclusive bound.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to specify which residuals can be converted into …\nAn inclusive bound.\nUsed for indexing operations (container[index]) in …\nUsed for indexing operations (container[index]) in mutable …\nThe multiplication operator *.\nThe multiplication assignment operator *=.\nThe unary negation operator -.\nThe unary logical negation operator !.\nOneSidedRange is implemented for built-in range types that …\nThe resulting type after applying the + operator.\nThe resulting type after applying the - operator.\nThe resulting type after applying the - operator.\nOutput type of the called closure’s future.\nThe resulting type after applying the ! operator.\nThe returned type after the call operator is used.\nThe type of the value produced by ? when not …\nThe resulting type after applying the * operator.\nThe resulting type after applying the / operator.\nThe resulting type after applying the % operator.\nThe resulting type after applying the & operator.\nThe resulting type after applying the | operator.\nThe resulting type after applying the ^ operator.\nThe resulting type after applying the << operator.\nThe resulting type after applying the >> operator.\nThe returned type after indexing.\nA (half-open) range bounded inclusively below and …\nRangeBounds is implemented by Rust’s built-in range …\nA range only bounded inclusively below (start..).\nAn unbounded range (..).\nA range bounded inclusively below and above (start..=end).\nA range only bounded exclusively above (..end).\nA range only bounded inclusively above (..=end).\nThe remainder operator %.\nThe remainder assignment operator %=.\nAllows retrieving the canonical type implementing Try that …\nThe type of the value passed to FromResidual::from_residual\nThe type of value this coroutine returns.\nThe left shift operator <<. Note that because this trait …\nThe left shift assignment operator <<=.\nThe right shift operator >>. Note that because this trait …\nThe right shift assignment operator >>=.\nThe subtraction operator -.\nThe subtraction assignment operator -=.\nThe resulting type after dereferencing.\nThe ? operator and try {} blocks.\nThe “return” type of this meta-function.\nAn infinite endpoint. Indicates that there is no bound in …\nImplement FromResidual<Yeet<T>> on your type to enable …\nThe type of value this coroutine yields.\nThe coroutine suspended with a value.\nPerforms the + operation.\nPerforms the += operation.\nConverts from &mut Bound<T> to Bound<&mut T>.\nConverts from &Bound<T> to Bound<&T>.\nCall the AsyncFn, returning a future which may borrow from …\nCall the AsyncFnMut, returning a future which may borrow …\nCall the AsyncFnOnce, returning a future which may move …\nPerforms the & operation.\nPerforms the &= operation.\nPerforms the | operation.\nPerforms the |= operation.\nPerforms the ^ operation.\nPerforms the ^= operation.\nUsed in ? to decide whether the operator should produce a …\nConverts the ControlFlow into an Option which is Some if …\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nMap a Bound<&T> to a Bound<T> by cloning the contents of …\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nConverts the ControlFlow into an Option which is Some if …\nDereferences the value.\nMutably dereferences the value.\nPerforms the / operation.\nPerforms the /= operation.\nExecutes the destructor for this type.\nReturns the upper bound of the range (inclusive).\nThe upper bound of the range (exclusive).\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive)\nEnd index bound.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs the type from its Output type.\nConstructs the type from a compatible Residual type.\nPerforms the indexing (container[index]) operation.\nPerforms the mutable indexing (container[index]) operation.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nDestructures the RangeInclusive into (lower bound, upper …\nReturns true if this is a Break variant.\nReturns true if this is a Continue variant.\nReturns true if the range contains no items.\nReturns true if the range contains no items.\nMaps a Bound<T> to a Bound<U> by applying a function to …\nMaps ControlFlow<B, C> to ControlFlow<T, C> by applying a …\nMaps ControlFlow<B, C> to ControlFlow<B, T> by applying a …\nPerforms the * operation.\nPerforms the *= operation.\nPerforms the unary - operation.\nCreates a new inclusive range. Equivalent to writing …\nPerforms the unary ! operation.\nPerforms the % operation.\nPerforms the %= operation.\nResumes the execution of this coroutine.\nPerforms the << operation.\nPerforms the <<= operation.\nPerforms the >> operation.\nPerforms the >>= operation.\nReturns the lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nStart index bound.\nPerforms the - operation.\nPerforms the -= operation.\nAn iterator over the value in Some variant of an Option.\nAn iterator over a reference to the Some variant of an …\nAn iterator over a mutable reference to the Some variant …\nNo value.\nThe Option type. See the module level documentation for …\nSome value of type T.\nReturns None if the option is None, otherwise returns optb.\nReturns None if the option is None, otherwise calls f with …\nConverts from Option<T> (or &Option<T>) to …\nConverts from Option<T> (or &mut Option<T>) to …\nConverts from &mut Option<T> to Option<&mut T>.\nReturns a mutable slice of the contained value, if any. If …\nConverts from Pin<&mut Option<T>> to Option<Pin<&mut T>>.\nConverts from Pin<&Option<T>> to Option<Pin<&T>>.\nConverts from &Option<T> to Option<&T>.\nReturns a slice of the contained value, if any. If this is …\nMaps an Option<&T> to an Option<T> by cloning the contents …\nMaps an Option<&mut T> to an Option<T> by cloning the …\nMaps an Option<&mut T> to an Option<T> by copying the …\nMaps an Option<&T> to an Option<T> by copying the contents …\nReturns None.\nReturns the contained Some value, consuming the self value.\nReturns None if the option is None, otherwise calls …\nConverts from Option<Option<T>> to Option<T>.\nMoves val into a new Some.\nReturns the argument unchanged.\nConverts from &mut Option<T> to Option<&mut T>\nConverts from &Option<T> to Option<&T>.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator: if it is None, no …\nInserts value into the option if it is None, then returns …\nInserts the default value into the option if it is None, …\nInserts a value computed from f into the option if it is …\nInserts value into the option, then returns a mutable …\nCalls a function with a reference to the contained value …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns a consuming iterator over the possibly contained …\nReturns true if the option is a None value.\nReturns true if the option is a None or the value inside …\nReturns true if the option is a Some value.\nReturns true if the option is a Some and the value inside …\nReturns an iterator over the possibly contained value.\nReturns a mutable iterator over the possibly contained …\nMaps an Option<T> to Option<U> by applying a function to a …\nReturns the provided default result (if none), or applies …\nComputes a default function result (if none), or applies a …\nTransforms the Option<T> into a Result<T, E>, mapping …\nTransforms the Option<T> into a Result<T, E>, mapping …\nReturns the option if it contains a value, otherwise …\nReturns the option if it contains a value, otherwise calls …\nTakes each element in the Iterator: if it is a None, no …\nReplaces the actual value in the option by the value given …\nTakes each element in the Iterator: if it is a None, no …\nTakes the value out of the option, leaving a None in its …\nTakes the value out of the option, but only if the …\nTransposes an Option of a Result into a Result of an Option…\nReturns the contained Some value, consuming the self value.\nReturns the contained Some value or a provided default.\nReturns the contained Some value or a default.\nReturns the contained Some value or computes it from a …\nReturns the contained Some value, consuming the self value,\nUnzips an option containing a tuple of two options.\nReturns Some if exactly one of self, optb is Some, …\nZips self with another Option.\nZips self and another Option with function f.\nOwned and borrowed Unix-like file descriptors.\nLinux-specific definitions.\nCompatibility module for C platform-specific types. Use …\nPlatform-specific extensions to std for Unix platforms.\nA trait to borrow the file descriptor from an underlying …\nA trait to extract the raw file descriptor from an …\nA borrowed file descriptor.\nA trait to express the ability to construct an object from …\nA trait to express the ability to consume an object and …\nAn owned file descriptor.\nRaw file descriptors.\nBorrows the file descriptor.\nExtracts the raw file descriptor.\nReturns a BorrowedFd holding the given raw file descriptor.\nTakes ownership of a UnixStream’s socket file descriptor.\nTakes ownership of a TcpListener’s socket file …\nTakes ownership of a ChildStdin’s file descriptor.\nTakes ownership of a UnixListener’s socket file …\nTakes ownership of a ChildStdout’s file descriptor.\nTakes ownership of a ChildStderr’s file descriptor.\nTakes ownership of a UnixDatagram’s socket file …\nTakes ownership of a UdpSocket’s file descriptor.\nReturns the argument unchanged.\nTakes ownership of a File’s underlying file descriptor.\nTakes ownership of a TcpStream’s socket file descriptor.\nReturns the argument unchanged.\nConstructs a new instance of Self from the given raw file …\nConstructs a new instance of Self from the given raw file …\nCalls U::from(self).\nCalls U::from(self).\nConsumes this object, returning the raw underlying file …\nCreates a new OwnedFd instance that shares the same …\nCreates a new OwnedFd instance that shares the same …\nLinux-specific extensions to primitives in the std::fs …\nLinux-specific networking functionality.\nLinux-specific extensions to primitives in the std::process…\nLinux-specific raw type definitions.\nOS-specific extensions to fs::Metadata.\nGain a reference to the underlying stat structure which …\nReturns the last access time of the file, in seconds since …\nReturns the last access time of the file, in nanoseconds …\nReturns the “preferred” block size for efficient …\nReturns the number of blocks allocated to the file, …\nReturns the last status change time of the file, in …\nReturns the last status change time of the file, in …\nReturns the device ID on which this file resides.\nReturns the group ID of the file owner.\nReturns the inode number.\nReturns the file type and mode.\nReturns the last modification time of the file, in seconds …\nReturns the last modification time of the file, in …\nReturns the number of hard links to file.\nReturns the device ID that this file represents. Only …\nReturns the size of the file (if it is a regular file or a …\nReturns the user ID of the file owner.\nPlatform-specific extensions to SocketAddr.\nOs-specific extensions for TcpStream\nLinux-specific functionality for AF_UNIX sockets …\nReturns the contents of this address if it is in the …\nGets the accept delay value (in seconds) of the …\nCreates a Unix socket address in the abstract namespace.\nQuery the current setting of socket option SO_PASSCRED.\nGets the value of the TCP_QUICKACK option on this socket.\nA socket listener will be awakened solely when data …\nEnable or disable socket option SO_PASSCRED.\nEnable or disable TCP_QUICKACK.\nOs-specific extensions for Child\nOs-specific extensions for Command\nThis type represents a file descriptor that refers to a …\nSets whether a PidFd should be created for the Child …\nReturns the argument unchanged.\nCalls U::from(self).\nReturns the PidFd created for this Child, if available. …\nForces the child process to exit.\nObtains a reference to the PidFd created for this Child, …\nAttempts to collect the exit status of the child if it has …\nWaits for the child to exit completely, returning the …\nReturns the argument unchanged.\nCalls U::from(self).\nEquivalent to C’s char type.\nEquivalent to C’s double type.\nEquivalent to C’s float type.\nEquivalent to C’s signed int (int) type.\nEquivalent to C’s signed long (long) type.\nEquivalent to C’s signed long long (long long) type.\nEquivalent to C’s signed char type.\nEquivalent to C’s signed short (short) type.\nEquivalent to C’s unsigned char type.\nEquivalent to C’s unsigned int type.\nEquivalent to C’s unsigned long type.\nEquivalent to C’s unsigned long long type.\nEquivalent to C’s unsigned short type.\nEquivalent to C’s void type when used as a pointer.\nUnix-specific extensions to primitives in the std::ffi …\nUnix-specific extensions to primitives in the std::fs …\nUnix-specific extensions to general I/O primitives.\nUnix-specific networking functionality.\nA prelude for conveniently writing platform-specific code.\nUnix-specific extensions to primitives in the std::process …\nUnix-specific primitives available on all unix platforms.\nUnix-specific extensions to primitives in the std::thread …\nPlatform-specific extensions to OsStr.\nPlatform-specific extensions to OsString.\nGets the underlying byte view of the OsStr slice.\nCreates an OsStr from a byte slice.\nCreates an OsString from a byte vector.\nYields the underlying byte vector of this OsString.\nUnix-specific extensions to fs::DirBuilder.\nUnix-specific extension methods for fs::DirEntry.\nSealed Unix-specific extension methods for fs::DirEntry.\nUnix-specific extensions to fs::File.\nUnix-specific extensions for fs::FileType.\nUnix-specific extensions to fs::Metadata.\nUnix-specific extensions to fs::OpenOptions.\nUnix-specific extensions to fs::Permissions.\nReturns the last access time of the file, in seconds since …\nReturns the last access time of the file, in nanoseconds …\nReturns the block size for filesystem I/O.\nReturns the number of blocks allocated to the file, in …\nChange the owner and group of the specified path.\nChange the root directory of the current process to the …\nReturns the last status change time of the file, in …\nReturns the last status change time of the file, in …\nPass custom flags to the flags argument of open.\nReturns the ID of the device containing the file.\nChange the owner and group of the file referenced by the …\nReturns a reference to the underlying OsStr of this entry…\nCreates a new instance of Permissions from the given set …\nReturns the group ID of the owner of this file.\nReturns the inode number.\nReturns the underlying d_ino field in the contained dirent …\nReturns true if this file type is a block device.\nReturns true if this file type is a char device.\nReturns true if this file type is a fifo.\nReturns true if this file type is a socket.\nChange the owner and group of the specified path, without …\nReturns the underlying raw st_mode bits that contain the …\nSets the mode bits that a new file will be created with.\nReturns the rights applied to this file.\nSets the mode to create new directories with. This option …\nReturns the last modification time of the file, in seconds …\nReturns the last modification time of the file, in …\nReturns the number of hard links pointing to this file.\nReturns the device ID of this file (if it is a special …\nReads a number of bytes starting from a given offset.\nReads the exact number of bytes required to fill buf from …\nLike read_at, except that it reads into a slice of buffers.\nSets the underlying raw bits for this set of permissions.\nReturns the total size of this file in bytes.\nCreates a new symbolic link on the filesystem.\nReturns the user ID of the owner of this file.\nAttempts to write an entire buffer starting from a given …\nWrites a number of bytes starting from a given offset.\nLike write_at, except that it writes from a slice of …\nA trait to borrow the file descriptor from an underlying …\nA trait to extract the raw file descriptor from an …\nA borrowed file descriptor.\nA trait to express the ability to construct an object from …\nA trait to express the ability to consume an object and …\nAn owned file descriptor.\nRaw file descriptors.\nBorrows the file descriptor.\nExtracts the raw file descriptor.\nConstructs a new instance of Self from the given raw file …\nConsumes this object, returning the raw underlying file …\nThis enum represent one control message of variable type.\nThe error type which is returned from parsing the type a …\nAn iterator over incoming connections to a UnixListener.\nThis struct is used to iterate through the control …\nThis control message contains unix credentials.\nThis control message contains file descriptors.\nAn address associated with a Unix socket.\nA Unix socket Ancillary data struct.\nUnix credential.\nCredentials for a UNIX process for credentials passing.\nA Unix datagram socket.\nA structure representing a Unix domain socket server.\nA Unix stream socket.\nAccepts a new incoming connection to this listener.\nAdd credentials to the ancillary data.\nAdd file descriptors to the ancillary data.\nReturns the contents of this address if it is a pathname …\nCreates a Unix datagram socket bound to the given path.\nCreates a new UnixListener bound to the specified socket.\nCreates a Unix datagram socket bound to an address.\nCreates a new UnixListener bound to the specified …\nReturns the capacity of the buffer.\nClears the ancillary data, removing all values.\nConnects the socket to the specified path address.\nConnects to the socket named by path.\nConnects the socket to an address.\nConnects to the socket specified by address.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs a SockAddr with the family AF_UNIX and the …\nGets the current GID.\nGets the current PID.\nGets the current UID.\nThe GID part of the peer credential. This is the effective …\nReturns an iterator over incoming connections.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the ancillary data is empty.\nReturns true if the address is unnamed.\nReturns the number of used bytes.\nReturns the address of this socket.\nReturns the local socket address of this listener.\nReturns the socket address of the local half of this …\nReturns the iterator of the control messages.\nCreates a Unix credential struct.\nCreates an ancillary data with the given buffer.\nCreates an unnamed pair of connected sockets.\nCreates an unnamed pair of connected sockets.\nReceives data on the socket from the remote address to …\nReceives data on the socket from the remote address to …\nReceives a single datagram message on the socket, without …\nReturns the address of this socket’s peer.\nReturns the socket address of the remote half of this …\nGets the peer credentials for this Unix domain socket.\nThe PID part of the peer credential. This field is …\nReturns the read timeout of this socket.\nReturns the read timeout of this socket.\nReceives data from the socket.\nReceives data from the socket.\nReceives data and ancillary data from socket.\nReceives data and ancillary data from socket.\nReceives data and ancillary data from socket.\nSends data on the socket to the socket’s peer.\nSends data on the socket to the specified address.\nSends data on the socket to the specified SocketAddr.\nSends data and ancillary data on the socket.\nSends data and ancillary data on the socket.\nSends data and ancillary data on the socket to the …\nSet the GID.\nSet the id of the socket for network filtering purpose\nSet the id of the socket for network filtering purpose\nMoves the socket into or out of nonblocking mode.\nMoves the socket into or out of nonblocking mode.\nMoves the socket into or out of nonblocking mode.\nSet the PID.\nSets the read timeout for the socket.\nSets the read timeout for the socket.\nSet the UID.\nSets the write timeout for the socket.\nSets the write timeout for the socket.\nShut down the read, write, or both halves of this …\nShuts down the read, write, or both halves of this …\nReturns the value of the SO_ERROR option.\nReturns the value of the SO_ERROR option.\nReturns the value of the SO_ERROR option.\nIs true if during a recv operation the ancillary was …\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nThe UID part of the peer credential. This is the effective …\nCreates a Unix Datagram socket which is not bound to any …\nReturns the write timeout of this socket.\nReturns the write timeout of this socket.\nA trait to borrow the file descriptor from an underlying …\nA trait to extract the raw file descriptor from an …\nA borrowed file descriptor.\nUnix-specific extensions to the process::Command builder.\nUnix-specific extension methods for fs::DirEntry.\nUnix-specific extensions to process::ExitStatus and …\nUnix-specific extensions to fs::File.\nUnix-specific extensions for fs::FileType.\nA trait to express the ability to construct an object from …\nA trait to express the ability to consume an object and …\nUnix-specific extensions to JoinHandle.\nUnix-specific extensions to fs::Metadata.\nUnix-specific extensions to fs::OpenOptions.\nPlatform-specific extensions to OsStr.\nPlatform-specific extensions to OsString.\nAn owned file descriptor.\nUnix-specific extensions to fs::Permissions.\nRaw file descriptors.\nSet executable argument\nGets the underlying byte view of the OsStr slice.\nBorrows the file descriptor.\nExtracts the raw pthread_t without taking ownership\nExtracts the raw file descriptor.\nReturns the last access time of the file, in seconds since …\nReturns the last access time of the file, in nanoseconds …\nSchedules a closure to be run just before the exec …\nReturns the block size for filesystem I/O.\nReturns the number of blocks allocated to the file, in …\nWhether the process was continued from a stopped status.\nIf the process was terminated by a signal, says whether it …\nReturns the last status change time of the file, in …\nReturns the last status change time of the file, in …\nPass custom flags to the flags argument of open.\nReturns the ID of the device containing the file.\nPerforms all the required setup by this Command, followed …\nCreates an OsStr from a byte slice.\nCreates a new instance of Permissions from the given set …\nCreates a new ExitStatus or ExitStatusError from the raw …\nConstructs a new instance of Self from the given raw file …\nCreates an OsString from a byte vector.\nReturns the group ID of the owner of this file.\nSimilar to uid, but sets the group ID of the child …\nSets the supplementary group IDs for the calling process. …\nReturns the inode number.\nReturns the underlying d_ino field in the contained dirent …\nConsumes the thread, returning the raw pthread_t\nReturns the underlying raw wait status.\nConsumes this object, returning the raw underlying file …\nYields the underlying byte vector of this OsString.\nReturns true if this file type is a block device.\nReturns true if this file type is a char device.\nReturns true if this file type is a fifo.\nReturns true if this file type is a socket.\nReturns the underlying raw st_mode bits that contain the …\nSets the mode bits that a new file will be created with.\nReturns the rights applied to this file.\nReturns the last modification time of the file, in seconds …\nReturns the last modification time of the file, in …\nReturns the number of hard links pointing to this file.\nSchedules a closure to be run just before the exec …\nSets the process group ID (PGID) of the child process. …\nReturns the device ID of this file (if it is a special …\nReads a number of bytes starting from a given offset.\nReads the exact number of bytes required to fill buf from …\nLike read_at, except that it reads into a slice of buffers.\nSets the underlying raw bits for this set of permissions.\nIf the process was terminated by a signal, returns that …\nReturns the total size of this file in bytes.\nIf the process was stopped by a signal, returns that …\nReturns the user ID of the owner of this file.\nSets the child process’s user ID. This translates to a …\nAttempts to write an entire buffer starting from a given …\nWrites a number of bytes starting from a given offset.\nLike write_at, except that it writes from a slice of …\nUnix-specific extensions to the process::Command builder.\nUnix-specific extensions to process::ExitStatus and …\nSet executable argument\nSchedules a closure to be run just before the exec …\nWhether the process was continued from a stopped status.\nIf the process was terminated by a signal, says whether it …\nPerforms all the required setup by this Command, followed …\nCreates a new ExitStatus or ExitStatusError from the raw …\nSimilar to uid, but sets the group ID of the child …\nSets the supplementary group IDs for the calling process. …\nReturns the underlying raw wait status.\nReturns the OS-assigned process identifier associated with …\nSchedules a closure to be run just before the exec …\nSets the process group ID (PGID) of the child process. …\nIf the process was terminated by a signal, returns that …\nIf the process was stopped by a signal, returns that …\nSets the child process’s user ID. This translates to a …\nUnix-specific extensions to JoinHandle.\nExtracts the raw pthread_t without taking ownership\nConsumes the thread, returning the raw pthread_t\nA simple wrapper around a type to assert that it is unwind …\nThe configuration for whether and how the default panic …\nPrints a backtrace with all possible information.\nA struct containing information about the location of a …\nDisable collecting and displaying backtraces.\nA struct providing information about a panic.\nA struct providing information about a panic.\nA marker trait representing types where a shared reference …\nPrints a terser backtrace which ideally only contains …\nA marker trait which represents “panic safe” types in …\nMakes all future panics abort directly without running the …\nReturns the source location of the caller of this …\nReturns whether the panic handler is allowed to unwind the …\nInvokes a closure, capturing the cause of an unwinding …\nReturns the column from which the panic originated.\nReturns the name of the source file from which the panic …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nChecks whether the standard library’s panic hook will …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the line number from which the panic originated.\nReturns information about the location from which the …\nPanics the current thread with the given message as the …\nReturns the payload associated with the panic.\nReturns the payload associated with the panic, if it is a …\nTriggers a panic without invoking the panic hook.\nConfigures whether the default panic hook will capture and …\nRegisters a custom panic hook, replacing the previously …\nUnregisters the current panic hook and returns it, …\nAtomic combination of take_hook and set_hook. Use this to …\nCreates a pattern type.\nAn iterator over Path and its ancestors.\nA single component of a path.\nAn iterator over the Components of a Path.\nA reference to the current directory, i.e., ..\nDevice namespace prefix, e.g., \\\\.\\COM42.\nPrefix C: for the given disk drive.\nHelper struct for safely printing paths with format! and {}…\nAn iterator over the Components of a Path, as OsStr slices.\nThe primary separator of path components for the current …\nThe primary separator of path components for the current …\nA normal component, e.g., a and b in a/b.\nA reference to the parent directory, i.e., ...\nA slice of a path (akin to str).\nAn owned, mutable path (akin to String).\nWindows path prefixes, e.g., C: or \\\\server\\share.\nA Windows path prefix, e.g., C: or \\\\server\\share.\nA structure wrapping a Windows path prefix as well as its …\nThe root directory component, appears after any prefix and …\nAn error returned from Path::strip_prefix if the prefix …\nPrefix using Windows’ Uniform Naming Convention, e.g. …\nVerbatim prefix, e.g., \\\\?\\cat_pics.\nVerbatim disk prefix, e.g., \\\\?\\C:.\nVerbatim prefix using Windows’ Uniform Naming Convention,\nMakes the path absolute without accessing the filesystem.\nAppend self.extension with extension.\nProduces an iterator over Path and its ancestors.\nYields a mutable reference to the underlying OsStr slice.\nYields a mutable reference to the underlying OsString …\nYields the underlying OsStr slice.\nReturns the raw OsStr slice for this prefix.\nExtracts the underlying OsStr slice.\nCoerces to a Path slice.\nExtracts a slice corresponding to the portion of the path …\nExtracts a slice corresponding to the portion of the path …\nReturns the canonical, absolute form of the path with all …\nInvokes capacity on the underlying instance of OsString.\nInvokes clear on the underlying instance of OsString.\nClones the contents of source into self.\nProduces an iterator over the Components of the path.\nReturns an object that implements Display for safely …\nDetermines whether child is a suffix of self.\nReturns true if the path points at an existing entity.\nExtracts the extension (without the leading dot) of …\nReturns the final component of the Path, if there is one.\nExtracts the prefix of self.file_name.\nExtracts the stem (non-extension) portion of self.file_name…\nReturns the argument unchanged.\nConverts a Box<Path> into a PathBuf.\nConverts a clone-on-write pointer to an owned path.\nConverts a borrowed OsStr to a PathBuf.\nConverts a String into a PathBuf\nConverts an OsString into a PathBuf.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns true if the Path has a root.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts this PathBuf into a boxed Path.\nConsumes the PathBuf, yielding its internal OsString …\nConverts a Box<Path> into a PathBuf without copying or …\nReturns true if the Path is absolute, i.e., if it is …\nReturns true if the path exists on disk and is pointing at …\nReturns true if the path exists on disk and is pointing at …\nReturns true if the Path is relative, i.e., not absolute.\nDetermines whether the character is one of the permitted …\nReturns true if the path exists on disk and is pointing at …\nDetermines if the prefix is verbatim, i.e., begins with …\nProduces an iterator over the path’s components viewed …\nCreates an owned PathBuf with path adjoined to self.\nReturns the parsed prefix data.\nConsumes and leaks the PathBuf, returning a mutable …\nQueries the file system to get information about a file, …\nAllocates an empty PathBuf.\nDirectly wraps a string slice as a Path slice.\nReturns the Path without its final component, if there is …\nTruncates self to self.parent.\nExtends self with path.\nReturns an iterator over the entries within a directory.\nReads a symbolic link, returning the file that the link …\nInvokes reserve on the underlying instance of OsString.\nInvokes reserve_exact on the underlying instance of …\nUpdates self.extension to Some(extension) or to None if …\nUpdates self.file_name to file_name.\nInvokes shrink_to on the underlying instance of OsString.\nInvokes shrink_to_fit on the underlying instance of …\nDetermines whether base is a prefix of self.\nReturns a path that, when joined onto base, yields self.\nQueries the metadata about a file without following …\nConverts a Path to an owned PathBuf.\nYields a &str slice if the Path is valid unicode.\nConverts a Path to a Cow<str>.\nReturns Ok(true) if the path points at an existing entity.\nInvokes try_reserve on the underlying instance of OsString.\nInvokes try_reserve_exact on the underlying instance of …\nCreates an owned PathBuf like self but with the extension …\nCreates a new PathBuf with a given capacity used to create …\nCreates an owned PathBuf like self but with the given …\nCreates an owned PathBuf like self but with the given file …\nA pointer which pins its pointee in place.\nTrait that indicates that this is a pointer or a wrapper …\nGets Pin<&mut T> to the underlying pinned value from this …\nGets a mutable reference to the pinned value this Pin<Ptr> …\nGets a shared reference to the pinned value this Pin …\nReturns the argument unchanged.\nConverts a Box<T> into a Pin<Box<T>>. If T does not …\nGets a mutable reference to the data inside of this Pin.\nGets a shared reference out of a pin.\nGets a mutable reference to the data inside of this Pin.\nCalls U::from(self).\nUnwraps this Pin<Ptr>, returning the underlying pointer.\nUnwraps this Pin<Ptr>, returning the underlying Ptr.\nConverts this Pin<&mut T> into a Pin<&T> with the same …\nConstructs a new pin by mapping the interior value.\nConstructs a new pin by mapping the interior value.\nConstructs a new Pin<Ptr> around a pointer to some data of …\nConstructs a new Pin<Ptr> around a reference to some data …\nConstructs a Pin<&mut T>, by pinning a value: T locally.\nAssigns a new value to the memory location pointed to by …\nGets a pinning mutable reference from a static mutable …\nGets a pinning reference from a &'static reference.\nRead end of the anonymous pipe.\nWrite end of the anonymous pipe.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCreate anonymous pipe that is close-on-exec and blocking.\nCreate a new PipeReader instance that shares the same …\nCreate a new PipeWriter instance that shares the same …\nThe 2015 version of the prelude of The Rust Standard …\nThe 2018 version of the prelude of The Rust Standard …\nThe 2021 version of the prelude of The Rust Standard …\nThe 2024 version of the prelude of The Rust Standard …\nThe first version of the prelude of The Rust Standard …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nA future represents an asynchronous computation obtained …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nConversion into a Future.\nWhich kind of future are we turning this into?\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates a future from a value.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nAttempts to resolve the future to a final value, …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nRepresentation of a running or exited child process.\nA handle to a child process’s stderr.\nA handle to a child process’s standard input (stdin).\nA handle to a child process’s standard output (stdout).\nA process builder, providing fine-grained control over how …\nAn iterator over the command arguments.\nAn iterator over the command environment variables.\nThis type represents the status code the current process …\nDescribes the result of a process after it has terminated.\nDescribes the result of a process after it has failed\nThe canonical ExitCode for unsuccessful termination on …\nThe output of a finished process.\nThe canonical ExitCode for successful termination on this …\nDescribes what to do with a standard I/O stream for a …\nA trait for implementing arbitrary return types in the main…\nTerminates the process in an abnormal fashion.\nAdds an argument to pass to the program.\nAdds multiple arguments to pass to the program.\nReturns the exit code of the process, if any.\nReports the exit code, if applicable, from an …\nReports the exit code, if applicable, from an …\nSets the working directory for the child process.\nInserts or updates an explicit environment variable …\nClears all explicitly set environment variables and …\nRemoves an explicitly set environment variable and …\nInserts or updates multiple explicit environment variable …\nTerminates the current process with the specified exit …\nWas termination successful? Returns a Result.\nExit the current process with the given ExitCode.\nFormat the program and arguments of a Command for display. …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConverts a ChildStdin into a Stdio.\nRedirect command stdout/stderr to our stdout\nReturns the argument unchanged.\nConverts a ChildStdout into a Stdio.\nConverts a ChildStderr into a Stdio.\nConverts a File into a Stdio.\nTakes ownership of a file descriptor and returns a Stdio …\nRedirect command stdout/stderr to our stderr\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs an ExitCode from an arbitrary u8 value.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns an iterator of the arguments that will be passed …\nReturns the working directory for the child process.\nReturns an iterator of the environment variables …\nReturns the path to the program that was given to …\nReturns the OS-assigned process identifier associated with …\nReturns the OS-assigned process identifier associated with …\nThe child inherits from the corresponding parent …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts an ExitStatusError (back) to an ExitStatus.\nForces the child process to exit. If the child has already …\nReturns true if this requires Command to create a new pipe.\nConstructs a new Command for launching the program at path …\nThis stream will be ignored. This is the equivalent of …\nExecutes the command as a child process, waiting for it to …\nA new pipe should be arranged to connect the parent and …\nIs called to get the representation of the value as status …\nExecutes the command as a child process, returning a …\nExecutes a command as a child process, waiting for it to …\nThe status (exit code) of the process.\nConfiguration for the child process’s standard error …\nThe handle for reading from the child’s standard error …\nThe data that the process wrote to stderr.\nConfiguration for the child process’s standard input …\nThe handle for writing to the child’s standard input …\nConfiguration for the child process’s standard output …\nThe handle for reading from the child’s standard output …\nThe data that the process wrote to stdout.\nWas termination successful? Signal termination is not …\nAttempts to collect the exit status of the child if it has …\nWaits for the child to exit completely, returning the …\nSimultaneously waits for the child to exit and collect all …\nA type storing a usize which is a power of two, and thus …\nThe metadata for a Dyn = dyn SomeTrait trait object type.\nThe smallest possible alignment, 1.\nThe type for metadata in pointers and references to Self.\n*mut T but non-zero and covariant.\nProvides the pointer metadata type of any pointed-to type.\nAdds an offset to a pointer (convenience for …\nGets the “address” portion of the pointer.\nCompares the addresses of the two pointers for equality, …\nCreates a const raw pointer to a place, without creating …\nCreates a mut raw pointer to a place, without creating an …\nReturns the alignment of the type associated with this …\nComputes the offset that needs to be applied to the …\nReturns a unique reference to the value. If the value may …\nReturns a raw pointer to the slice’s buffer.\nReturns a non-null pointer to the slice’s buffer.\nReturns the alignment as a NonZero<usize>.\nAcquires the underlying *mut pointer.\nReturns a shared reference to the value. If the value may …\nReturns a unique references to the value. In contrast to …\nReturns a shared references to the value. In contrast to …\nReturns a shared reference to a slice of possibly …\nReturns a unique reference to a slice of possibly …\nReturns the alignment as a usize.\nCalculates the offset from a pointer in bytes (convenience …\nCalculates the offset from a pointer in bytes.\nCalculates the distance between two pointers. The returned …\nCalculates the offset from a pointer in bytes (convenience …\nCasts to a pointer of another type.\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of<T> bytes from src to self. The …\nCopies count * size_of<T> bytes from src to self. The …\nCopies count * size_of::<T>() bytes from src to dst. The …\nCopies count * size_of<T> bytes from self to dest. The …\nCopies count * size_of<T> bytes from self to dest. The …\nCreates a new pointer that is dangling, but well-aligned.") \ No newline at end of file +searchState.loadedDescShard("wiwi", 9, "Returns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == (1 << k) for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns true if and only if self == 2^k for some k.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nReturns the square root of the number, rounded down.\nOutputs the detailed cause of parsing an integer failing.\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nReturns the number of leading zeros in the binary …\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCalculates the middle point of self and rhs.\nCreates a non-zero if the given value is not zero.\nCreates a non-zero without checking whether the value is …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nReturns the smallest power of two greater than or equal to …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nComputes the absolute value of self, with overflow …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nNegates self, overflowing if this is equal to the minimum …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nRaises self to the power of exp, using exponentiation by …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the order of bits in the integer. The least …\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nReverses the bit pattern of the integer.\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the left by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nShifts the bits to the right by a specified amount, n, …\nSaturating absolute value, see i16::saturating_abs.\nSaturating absolute value, see i128::saturating_abs.\nSaturating absolute value, see i64::saturating_abs.\nSaturating absolute value, see isize::saturating_abs.\nSaturating absolute value, see i8::saturating_abs.\nSaturating absolute value, see i32::saturating_abs.\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nAdds an unsigned integer to a non-zero value. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nMultiplies two non-zero integers together. Return …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nSaturating negation. Computes -self, returning …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nRaise non-zero value to an integer power. Return …\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReturns a number representing sign of self.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nReverses the byte order of the integer.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to big endian from the target’s endianness.\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nConverts self to little endian from the target’s …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nReturns the number of trailing zeros in the binary …\nAttempts to convert NonZero<u8> to NonZero<i8>.\nAttempts to convert NonZero<u128> to NonZero<i16>.\nAttempts to convert i32 to NonZero<i32>.\nAttempts to convert NonZero<u64> to NonZero<i8>.\nAttempts to convert NonZero<u64> to NonZero<i16>.\nAttempts to convert NonZero<u64> to NonZero<i32>.\nAttempts to convert NonZero<u64> to NonZero<i64>.\nAttempts to convert NonZero<isize> to NonZero<usize>.\nAttempts to convert i64 to NonZero<i64>.\nAttempts to convert i128 to NonZero<i128>.\nAttempts to convert NonZero<isize> to NonZero<u128>.\nAttempts to convert NonZero<i32> to NonZero<i16>.\nAttempts to convert NonZero<i32> to NonZero<i8>.\nAttempts to convert isize to NonZero<isize>.\nAttempts to convert i8 to NonZero<i8>.\nAttempts to convert NonZero<i16> to NonZero<i8>.\nAttempts to convert NonZero<u16> to NonZero<u8>.\nAttempts to convert NonZero<isize> to NonZero<u64>.\nAttempts to convert NonZero<u32> to NonZero<u8>.\nAttempts to convert NonZero<usize> to NonZero<u128>.\nAttempts to convert NonZero<u32> to NonZero<u16>.\nAttempts to convert NonZero<isize> to NonZero<u32>.\nAttempts to convert NonZero<isize> to NonZero<u16>.\nAttempts to convert NonZero<isize> to NonZero<u8>.\nAttempts to convert NonZero<i128> to NonZero<usize>.\nAttempts to convert usize to NonZero<usize>.\nAttempts to convert u128 to NonZero<u128>.\nAttempts to convert NonZero<i128> to NonZero<u128>.\nAttempts to convert NonZero<i128> to NonZero<u64>.\nAttempts to convert NonZero<i128> to NonZero<u32>.\nAttempts to convert NonZero<i128> to NonZero<u16>.\nAttempts to convert NonZero<i128> to NonZero<u8>.\nAttempts to convert NonZero<i64> to NonZero<usize>.\nAttempts to convert u64 to NonZero<u64>.\nAttempts to convert NonZero<usize> to NonZero<u64>.\nAttempts to convert NonZero<i64> to NonZero<u128>.\nAttempts to convert NonZero<i64> to NonZero<u64>.\nAttempts to convert u32 to NonZero<u32>.\nAttempts to convert u16 to NonZero<u16>.\nAttempts to convert NonZero<i64> to NonZero<u32>.\nAttempts to convert NonZero<u32> to NonZero<isize>.\nAttempts to convert NonZero<u32> to NonZero<i32>.\nAttempts to convert u8 to NonZero<u8>.\nAttempts to convert NonZero<u32> to NonZero<i16>.\nAttempts to convert NonZero<i64> to NonZero<u16>.\nAttempts to convert NonZero<i64> to NonZero<u8>.\nAttempts to convert NonZero<u32> to NonZero<i8>.\nAttempts to convert NonZero<u16> to NonZero<isize>.\nAttempts to convert NonZero<i32> to NonZero<usize>.\nAttempts to convert NonZero<i32> to NonZero<u128>.\nAttempts to convert NonZero<i32> to NonZero<u64>.\nAttempts to convert NonZero<u16> to NonZero<i16>.\nAttempts to convert NonZero<u16> to NonZero<i8>.\nAttempts to convert NonZero<i32> to NonZero<u32>.\nAttempts to convert NonZero<i32> to NonZero<u16>.\nAttempts to convert NonZero<i32> to NonZero<u8>.\nAttempts to convert NonZero<usize> to NonZero<u32>.\nAttempts to convert NonZero<isize> to NonZero<i128>.\nAttempts to convert NonZero<u32> to NonZero<usize>.\nAttempts to convert NonZero<isize> to NonZero<i64>.\nAttempts to convert NonZero<u64> to NonZero<u8>.\nAttempts to convert NonZero<u64> to NonZero<u16>.\nAttempts to convert NonZero<isize> to NonZero<i32>.\nAttempts to convert NonZero<isize> to NonZero<i16>.\nAttempts to convert NonZero<u64> to NonZero<u32>.\nAttempts to convert NonZero<i32> to NonZero<isize>.\nAttempts to convert NonZero<u64> to NonZero<usize>.\nAttempts to convert NonZero<i16> to NonZero<usize>.\nAttempts to convert NonZero<i128> to NonZero<isize>.\nAttempts to convert NonZero<u128> to NonZero<u8>.\nAttempts to convert NonZero<u128> to NonZero<u16>.\nAttempts to convert NonZero<i16> to NonZero<u128>.\nAttempts to convert NonZero<u128> to NonZero<u32>.\nAttempts to convert NonZero<i128> to NonZero<i64>.\nAttempts to convert NonZero<i16> to NonZero<u64>.\nAttempts to convert NonZero<i128> to NonZero<i32>.\nAttempts to convert NonZero<i16> to NonZero<u32>.\nAttempts to convert NonZero<i16> to NonZero<u16>.\nAttempts to convert NonZero<i16> to NonZero<u8>.\nAttempts to convert NonZero<i8> to NonZero<usize>.\nAttempts to convert NonZero<i128> to NonZero<i16>.\nAttempts to convert NonZero<i8> to NonZero<u128>.\nAttempts to convert NonZero<i8> to NonZero<u64>.\nAttempts to convert NonZero<usize> to NonZero<u16>.\nAttempts to convert NonZero<i128> to NonZero<i8>.\nAttempts to convert NonZero<usize> to NonZero<u8>.\nAttempts to convert NonZero<u128> to NonZero<u64>.\nAttempts to convert NonZero<i64> to NonZero<isize>.\nAttempts to convert NonZero<u128> to NonZero<usize>.\nAttempts to convert NonZero<i8> to NonZero<u32>.\nAttempts to convert NonZero<i8> to NonZero<u16>.\nAttempts to convert NonZero<i8> to NonZero<u8>.\nAttempts to convert NonZero<usize> to NonZero<isize>.\nAttempts to convert NonZero<u64> to NonZero<isize>.\nAttempts to convert NonZero<i64> to NonZero<i32>.\nAttempts to convert NonZero<usize> to NonZero<i128>.\nAttempts to convert NonZero<usize> to NonZero<i64>.\nAttempts to convert NonZero<usize> to NonZero<i32>.\nAttempts to convert NonZero<usize> to NonZero<i16>.\nAttempts to convert i16 to NonZero<i16>.\nAttempts to convert NonZero<i64> to NonZero<i16>.\nAttempts to convert NonZero<usize> to NonZero<i8>.\nAttempts to convert NonZero<i64> to NonZero<i8>.\nAttempts to convert NonZero<u128> to NonZero<isize>.\nAttempts to convert NonZero<u128> to NonZero<i8>.\nAttempts to convert NonZero<u128> to NonZero<i128>.\nAttempts to convert NonZero<u128> to NonZero<i64>.\nAttempts to convert NonZero<u128> to NonZero<i32>.\nAttempts to convert NonZero<isize> to NonZero<i8>.\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nAdds an unsigned integer to a non-zero value, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nMultiplies two non-zero integers together, assuming …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nComputes the absolute value of self without any wrapping …\nWrapping absolute value, see i16::wrapping_abs.\nWrapping absolute value, see i8::wrapping_abs.\nWrapping absolute value, see i32::wrapping_abs.\nWrapping absolute value, see i128::wrapping_abs.\nWrapping absolute value, see isize::wrapping_abs.\nWrapping absolute value, see i64::wrapping_abs.\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nWrapping (modular) negation. Computes -self, wrapping …\nThe addition operator +.\nThe addition assignment operator +=.\nAn async-aware version of the Fn trait.\nAn async-aware version of the FnMut trait.\nAn async-aware version of the FnOnce trait.\nThe bitwise AND operator &.\nThe bitwise AND assignment operator &=.\nThe bitwise OR operator |.\nThe bitwise OR assignment operator |=.\nThe bitwise XOR operator ^.\nThe bitwise XOR assignment operator ^=.\nAn endpoint of a range of keys.\nExit the operation without running subsequent phases.\nFuture returned by AsyncFnOnce::async_call_once.\nFuture returned by AsyncFnMut::async_call_mut and …\nTrait that indicates that this is a pointer or a wrapper …\nThe coroutine completed with a return value.\nMove on to the next phase of the operation as normal.\nUsed to tell an operation whether it should exit early or …\nThe trait implemented by builtin coroutine types.\nThe result of a coroutine resumption.\nUsed for immutable dereferencing operations, like *v.\nUsed for mutable dereferencing operations, like in *v = 1;.\nPerma-unstable marker trait. Indicates that the type has a …\nDispatchFromDyn is used in the implementation of object …\nThe division operator /.\nThe division assignment operator /=.\nCustom code within the destructor.\nAn exclusive bound.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to specify which residuals can be converted into …\nAn inclusive bound.\nUsed for indexing operations (container[index]) in …\nUsed for indexing operations (container[index]) in mutable …\nThe multiplication operator *.\nThe multiplication assignment operator *=.\nThe unary negation operator -.\nThe unary logical negation operator !.\nOneSidedRange is implemented for built-in range types that …\nThe resulting type after applying the + operator.\nThe resulting type after applying the - operator.\nThe resulting type after applying the - operator.\nOutput type of the called closure’s future.\nThe resulting type after applying the ! operator.\nThe returned type after the call operator is used.\nThe type of the value produced by ? when not …\nThe resulting type after applying the * operator.\nThe resulting type after applying the / operator.\nThe resulting type after applying the % operator.\nThe resulting type after applying the & operator.\nThe resulting type after applying the | operator.\nThe resulting type after applying the ^ operator.\nThe resulting type after applying the << operator.\nThe resulting type after applying the >> operator.\nThe returned type after indexing.\nA (half-open) range bounded inclusively below and …\nRangeBounds is implemented by Rust’s built-in range …\nA range only bounded inclusively below (start..).\nAn unbounded range (..).\nA range bounded inclusively below and above (start..=end).\nA range only bounded exclusively above (..end).\nA range only bounded inclusively above (..=end).\nThe remainder operator %.\nThe remainder assignment operator %=.\nAllows retrieving the canonical type implementing Try that …\nThe type of the value passed to FromResidual::from_residual\nThe type of value this coroutine returns.\nThe left shift operator <<. Note that because this trait …\nThe left shift assignment operator <<=.\nThe right shift operator >>. Note that because this trait …\nThe right shift assignment operator >>=.\nThe subtraction operator -.\nThe subtraction assignment operator -=.\nThe resulting type after dereferencing.\nThe ? operator and try {} blocks.\nThe “return” type of this meta-function.\nAn infinite endpoint. Indicates that there is no bound in …\nImplement FromResidual<Yeet<T>> on your type to enable …\nThe type of value this coroutine yields.\nThe coroutine suspended with a value.\nPerforms the + operation.\nPerforms the += operation.\nConverts from &mut Bound<T> to Bound<&mut T>.\nConverts from &Bound<T> to Bound<&T>.\nCall the AsyncFn, returning a future which may borrow from …\nCall the AsyncFnMut, returning a future which may borrow …\nCall the AsyncFnOnce, returning a future which may move …\nPerforms the & operation.\nPerforms the &= operation.\nPerforms the | operation.\nPerforms the |= operation.\nPerforms the ^ operation.\nPerforms the ^= operation.\nUsed in ? to decide whether the operator should produce a …\nConverts the ControlFlow into an Option which is Some if …\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nMap a Bound<&T> to a Bound<T> by cloning the contents of …\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nReturns true if item is contained in the range.\nConverts the ControlFlow into an Option which is Some if …\nDereferences the value.\nMutably dereferences the value.\nPerforms the / operation.\nPerforms the /= operation.\nExecutes the destructor for this type.\nReturns the upper bound of the range (inclusive).\nThe upper bound of the range (exclusive).\nThe upper bound of the range (exclusive).\nThe upper bound of the range (inclusive)\nEnd index bound.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs the type from its Output type.\nConstructs the type from a compatible Residual type.\nPerforms the indexing (container[index]) operation.\nPerforms the mutable indexing (container[index]) operation.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nDestructures the RangeInclusive into (lower bound, upper …\nReturns true if this is a Break variant.\nReturns true if this is a Continue variant.\nReturns true if the range contains no items.\nReturns true if the range contains no items.\nMaps a Bound<T> to a Bound<U> by applying a function to …\nMaps ControlFlow<B, C> to ControlFlow<T, C> by applying a …\nMaps ControlFlow<B, C> to ControlFlow<B, T> by applying a …\nPerforms the * operation.\nPerforms the *= operation.\nPerforms the unary - operation.\nCreates a new inclusive range. Equivalent to writing …\nPerforms the unary ! operation.\nPerforms the % operation.\nPerforms the %= operation.\nResumes the execution of this coroutine.\nPerforms the << operation.\nPerforms the <<= operation.\nPerforms the >> operation.\nPerforms the >>= operation.\nReturns the lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nThe lower bound of the range (inclusive).\nStart index bound.\nPerforms the - operation.\nPerforms the -= operation.\nAn iterator over the value in Some variant of an Option.\nAn iterator over a reference to the Some variant of an …\nAn iterator over a mutable reference to the Some variant …\nNo value.\nThe Option type. See the module level documentation for …\nSome value of type T.\nReturns None if the option is None, otherwise returns optb.\nReturns None if the option is None, otherwise calls f with …\nConverts from Option<T> (or &Option<T>) to …\nConverts from Option<T> (or &mut Option<T>) to …\nConverts from &mut Option<T> to Option<&mut T>.\nReturns a mutable slice of the contained value, if any. If …\nConverts from Pin<&mut Option<T>> to Option<Pin<&mut T>>.\nConverts from Pin<&Option<T>> to Option<Pin<&T>>.\nConverts from &Option<T> to Option<&T>.\nReturns a slice of the contained value, if any. If this is …\nMaps an Option<&T> to an Option<T> by cloning the contents …\nMaps an Option<&mut T> to an Option<T> by cloning the …\nMaps an Option<&mut T> to an Option<T> by copying the …\nMaps an Option<&T> to an Option<T> by copying the contents …\nReturns None.\nReturns the contained Some value, consuming the self value.\nReturns None if the option is None, otherwise calls …\nConverts from Option<Option<T>> to Option<T>.\nReturns the argument unchanged.\nMoves val into a new Some.\nConverts from &Option<T> to Option<&T>.\nConverts from &mut Option<T> to Option<&mut T>\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nTakes each element in the Iterator: if it is None, no …\nInserts value into the option if it is None, then returns …\nInserts the default value into the option if it is None, …\nInserts a value computed from f into the option if it is …\nInserts value into the option, then returns a mutable …\nCalls a function with a reference to the contained value …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns a consuming iterator over the possibly contained …\nReturns true if the option is a None value.\nReturns true if the option is a None or the value inside …\nReturns true if the option is a Some value.\nReturns true if the option is a Some and the value inside …\nReturns an iterator over the possibly contained value.\nReturns a mutable iterator over the possibly contained …\nMaps an Option<T> to Option<U> by applying a function to a …\nReturns the provided default result (if none), or applies …\nComputes a default function result (if none), or applies a …\nTransforms the Option<T> into a Result<T, E>, mapping …\nTransforms the Option<T> into a Result<T, E>, mapping …\nReturns the option if it contains a value, otherwise …\nReturns the option if it contains a value, otherwise calls …\nTakes each element in the Iterator: if it is a None, no …\nReplaces the actual value in the option by the value given …\nTakes each element in the Iterator: if it is a None, no …\nTakes the value out of the option, leaving a None in its …\nTakes the value out of the option, but only if the …\nTransposes an Option of a Result into a Result of an Option…\nReturns the contained Some value, consuming the self value.\nReturns the contained Some value or a provided default.\nReturns the contained Some value or a default.\nReturns the contained Some value or computes it from a …\nReturns the contained Some value, consuming the self value,\nUnzips an option containing a tuple of two options.\nReturns Some if exactly one of self, optb is Some, …\nZips self with another Option.\nZips self and another Option with function f.\nOwned and borrowed Unix-like file descriptors.\nLinux-specific definitions.\nCompatibility module for C platform-specific types. Use …\nPlatform-specific extensions to std for Unix platforms.\nA trait to borrow the file descriptor from an underlying …\nA trait to extract the raw file descriptor from an …\nA borrowed file descriptor.\nA trait to express the ability to construct an object from …\nA trait to express the ability to consume an object and …\nAn owned file descriptor.\nRaw file descriptors.\nBorrows the file descriptor.\nExtracts the raw file descriptor.\nReturns a BorrowedFd holding the given raw file descriptor.\nTakes ownership of a ChildStderr’s file descriptor.\nTakes ownership of a TcpStream’s socket file descriptor.\nTakes ownership of a ChildStdout’s file descriptor.\nReturns the argument unchanged.\nTakes ownership of a UdpSocket’s file descriptor.\nTakes ownership of a File’s underlying file descriptor.\nTakes ownership of a ChildStdin’s file descriptor.\nTakes ownership of a UnixDatagram’s socket file …\nTakes ownership of a UnixStream’s socket file descriptor.\nTakes ownership of a UnixListener’s socket file …\nTakes ownership of a TcpListener’s socket file …\nReturns the argument unchanged.\nConstructs a new instance of Self from the given raw file …\nConstructs a new instance of Self from the given raw file …\nCalls U::from(self).\nCalls U::from(self).\nConsumes this object, returning the raw underlying file …\nCreates a new OwnedFd instance that shares the same …\nCreates a new OwnedFd instance that shares the same …\nLinux-specific extensions to primitives in the std::fs …\nLinux-specific networking functionality.\nLinux-specific extensions to primitives in the std::process…\nLinux-specific raw type definitions.\nOS-specific extensions to fs::Metadata.\nGain a reference to the underlying stat structure which …\nReturns the last access time of the file, in seconds since …\nReturns the last access time of the file, in nanoseconds …\nReturns the “preferred” block size for efficient …\nReturns the number of blocks allocated to the file, …\nReturns the last status change time of the file, in …\nReturns the last status change time of the file, in …\nReturns the device ID on which this file resides.\nReturns the group ID of the file owner.\nReturns the inode number.\nReturns the file type and mode.\nReturns the last modification time of the file, in seconds …\nReturns the last modification time of the file, in …\nReturns the number of hard links to file.\nReturns the device ID that this file represents. Only …\nReturns the size of the file (if it is a regular file or a …\nReturns the user ID of the file owner.\nPlatform-specific extensions to SocketAddr.\nOs-specific extensions for TcpStream\nLinux-specific functionality for AF_UNIX sockets …\nReturns the contents of this address if it is in the …\nGets the accept delay value (in seconds) of the …\nCreates a Unix socket address in the abstract namespace.\nQuery the current setting of socket option SO_PASSCRED.\nGets the value of the TCP_QUICKACK option on this socket.\nA socket listener will be awakened solely when data …\nEnable or disable socket option SO_PASSCRED.\nEnable or disable TCP_QUICKACK.\nOs-specific extensions for Child\nOs-specific extensions for Command\nThis type represents a file descriptor that refers to a …\nSets whether a PidFd should be created for the Child …\nReturns the argument unchanged.\nCalls U::from(self).\nReturns the PidFd created for this Child, if available. …\nForces the child process to exit.\nObtains a reference to the PidFd created for this Child, …\nAttempts to collect the exit status of the child if it has …\nWaits for the child to exit completely, returning the …\nReturns the argument unchanged.\nCalls U::from(self).\nEquivalent to C’s char type.\nEquivalent to C’s double type.\nEquivalent to C’s float type.\nEquivalent to C’s signed int (int) type.\nEquivalent to C’s signed long (long) type.\nEquivalent to C’s signed long long (long long) type.\nEquivalent to C’s signed char type.\nEquivalent to C’s signed short (short) type.\nEquivalent to C’s unsigned char type.\nEquivalent to C’s unsigned int type.\nEquivalent to C’s unsigned long type.\nEquivalent to C’s unsigned long long type.\nEquivalent to C’s unsigned short type.\nEquivalent to C’s void type when used as a pointer.\nUnix-specific extensions to primitives in the std::ffi …\nUnix-specific extensions to primitives in the std::fs …\nUnix-specific extensions to general I/O primitives.\nUnix-specific networking functionality.\nA prelude for conveniently writing platform-specific code.\nUnix-specific extensions to primitives in the std::process …\nUnix-specific primitives available on all unix platforms.\nUnix-specific extensions to primitives in the std::thread …\nPlatform-specific extensions to OsStr.\nPlatform-specific extensions to OsString.\nGets the underlying byte view of the OsStr slice.\nCreates an OsStr from a byte slice.\nCreates an OsString from a byte vector.\nYields the underlying byte vector of this OsString.\nUnix-specific extensions to fs::DirBuilder.\nUnix-specific extension methods for fs::DirEntry.\nSealed Unix-specific extension methods for fs::DirEntry.\nUnix-specific extensions to fs::File.\nUnix-specific extensions for fs::FileType.\nUnix-specific extensions to fs::Metadata.\nUnix-specific extensions to fs::OpenOptions.\nUnix-specific extensions to fs::Permissions.\nReturns the last access time of the file, in seconds since …\nReturns the last access time of the file, in nanoseconds …\nReturns the block size for filesystem I/O.\nReturns the number of blocks allocated to the file, in …\nChange the owner and group of the specified path.\nChange the root directory of the current process to the …\nReturns the last status change time of the file, in …\nReturns the last status change time of the file, in …\nPass custom flags to the flags argument of open.\nReturns the ID of the device containing the file.\nChange the owner and group of the file referenced by the …\nReturns a reference to the underlying OsStr of this entry…\nCreates a new instance of Permissions from the given set …\nReturns the group ID of the owner of this file.\nReturns the inode number.\nReturns the underlying d_ino field in the contained dirent …\nReturns true if this file type is a block device.\nReturns true if this file type is a char device.\nReturns true if this file type is a fifo.\nReturns true if this file type is a socket.\nChange the owner and group of the specified path, without …\nReturns the underlying raw st_mode bits that contain the …\nSets the mode bits that a new file will be created with.\nReturns the rights applied to this file.\nSets the mode to create new directories with. This option …\nReturns the last modification time of the file, in seconds …\nReturns the last modification time of the file, in …\nReturns the number of hard links pointing to this file.\nReturns the device ID of this file (if it is a special …\nReads a number of bytes starting from a given offset.\nReads the exact number of bytes required to fill buf from …\nLike read_at, except that it reads into a slice of buffers.\nSets the underlying raw bits for this set of permissions.\nReturns the total size of this file in bytes.\nCreates a new symbolic link on the filesystem.\nReturns the user ID of the owner of this file.\nAttempts to write an entire buffer starting from a given …\nWrites a number of bytes starting from a given offset.\nLike write_at, except that it writes from a slice of …\nA trait to borrow the file descriptor from an underlying …\nA trait to extract the raw file descriptor from an …\nA borrowed file descriptor.\nA trait to express the ability to construct an object from …\nA trait to express the ability to consume an object and …\nAn owned file descriptor.\nRaw file descriptors.\nBorrows the file descriptor.\nExtracts the raw file descriptor.\nConstructs a new instance of Self from the given raw file …\nConsumes this object, returning the raw underlying file …\nThis enum represent one control message of variable type.\nThe error type which is returned from parsing the type a …\nAn iterator over incoming connections to a UnixListener.\nThis struct is used to iterate through the control …\nThis control message contains unix credentials.\nThis control message contains file descriptors.\nAn address associated with a Unix socket.\nA Unix socket Ancillary data struct.\nUnix credential.\nCredentials for a UNIX process for credentials passing.\nA Unix datagram socket.\nA structure representing a Unix domain socket server.\nA Unix stream socket.\nAccepts a new incoming connection to this listener.\nAdd credentials to the ancillary data.\nAdd file descriptors to the ancillary data.\nReturns the contents of this address if it is a pathname …\nCreates a Unix datagram socket bound to the given path.\nCreates a new UnixListener bound to the specified socket.\nCreates a Unix datagram socket bound to an address.\nCreates a new UnixListener bound to the specified …\nReturns the capacity of the buffer.\nClears the ancillary data, removing all values.\nConnects the socket to the specified path address.\nConnects to the socket named by path.\nConnects the socket to an address.\nConnects to the socket specified by address.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nConstructs a SockAddr with the family AF_UNIX and the …\nGets the current GID.\nGets the current PID.\nGets the current UID.\nThe GID part of the peer credential. This is the effective …\nReturns an iterator over incoming connections.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns true if the ancillary data is empty.\nReturns true if the address is unnamed.\nReturns the number of used bytes.\nReturns the address of this socket.\nReturns the local socket address of this listener.\nReturns the socket address of the local half of this …\nReturns the iterator of the control messages.\nCreates a Unix credential struct.\nCreates an ancillary data with the given buffer.\nCreates an unnamed pair of connected sockets.\nCreates an unnamed pair of connected sockets.\nReceives data on the socket from the remote address to …\nReceives data on the socket from the remote address to …\nReceives a single datagram message on the socket, without …\nReturns the address of this socket’s peer.\nReturns the socket address of the remote half of this …\nGets the peer credentials for this Unix domain socket.\nThe PID part of the peer credential. This field is …\nReturns the read timeout of this socket.\nReturns the read timeout of this socket.\nReceives data from the socket.\nReceives data from the socket.\nReceives data and ancillary data from socket.\nReceives data and ancillary data from socket.\nReceives data and ancillary data from socket.\nSends data on the socket to the socket’s peer.\nSends data on the socket to the specified address.\nSends data on the socket to the specified SocketAddr.\nSends data and ancillary data on the socket.\nSends data and ancillary data on the socket.\nSends data and ancillary data on the socket to the …\nSet the GID.\nSet the id of the socket for network filtering purpose\nSet the id of the socket for network filtering purpose\nMoves the socket into or out of nonblocking mode.\nMoves the socket into or out of nonblocking mode.\nMoves the socket into or out of nonblocking mode.\nSet the PID.\nSets the read timeout for the socket.\nSets the read timeout for the socket.\nSet the UID.\nSets the write timeout for the socket.\nSets the write timeout for the socket.\nShut down the read, write, or both halves of this …\nShuts down the read, write, or both halves of this …\nReturns the value of the SO_ERROR option.\nReturns the value of the SO_ERROR option.\nReturns the value of the SO_ERROR option.\nIs true if during a recv operation the ancillary was …\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nCreates a new independently owned handle to the underlying …\nThe UID part of the peer credential. This is the effective …\nCreates a Unix Datagram socket which is not bound to any …\nReturns the write timeout of this socket.\nReturns the write timeout of this socket.\nA trait to borrow the file descriptor from an underlying …\nA trait to extract the raw file descriptor from an …\nA borrowed file descriptor.\nUnix-specific extensions to the process::Command builder.\nUnix-specific extension methods for fs::DirEntry.\nUnix-specific extensions to process::ExitStatus and …\nUnix-specific extensions to fs::File.\nUnix-specific extensions for fs::FileType.\nA trait to express the ability to construct an object from …\nA trait to express the ability to consume an object and …\nUnix-specific extensions to JoinHandle.\nUnix-specific extensions to fs::Metadata.\nUnix-specific extensions to fs::OpenOptions.\nPlatform-specific extensions to OsStr.\nPlatform-specific extensions to OsString.\nAn owned file descriptor.\nUnix-specific extensions to fs::Permissions.\nRaw file descriptors.\nSet executable argument\nGets the underlying byte view of the OsStr slice.\nBorrows the file descriptor.\nExtracts the raw pthread_t without taking ownership\nExtracts the raw file descriptor.\nReturns the last access time of the file, in seconds since …\nReturns the last access time of the file, in nanoseconds …\nSchedules a closure to be run just before the exec …\nReturns the block size for filesystem I/O.\nReturns the number of blocks allocated to the file, in …\nWhether the process was continued from a stopped status.\nIf the process was terminated by a signal, says whether it …\nReturns the last status change time of the file, in …\nReturns the last status change time of the file, in …\nPass custom flags to the flags argument of open.\nReturns the ID of the device containing the file.\nPerforms all the required setup by this Command, followed …\nCreates an OsStr from a byte slice.\nCreates a new instance of Permissions from the given set …\nCreates a new ExitStatus or ExitStatusError from the raw …\nConstructs a new instance of Self from the given raw file …\nCreates an OsString from a byte vector.\nReturns the group ID of the owner of this file.\nSimilar to uid, but sets the group ID of the child …\nSets the supplementary group IDs for the calling process. …\nReturns the inode number.\nReturns the underlying d_ino field in the contained dirent …\nConsumes the thread, returning the raw pthread_t\nReturns the underlying raw wait status.\nConsumes this object, returning the raw underlying file …\nYields the underlying byte vector of this OsString.\nReturns true if this file type is a block device.\nReturns true if this file type is a char device.\nReturns true if this file type is a fifo.\nReturns true if this file type is a socket.\nReturns the underlying raw st_mode bits that contain the …\nSets the mode bits that a new file will be created with.\nReturns the rights applied to this file.\nReturns the last modification time of the file, in seconds …\nReturns the last modification time of the file, in …\nReturns the number of hard links pointing to this file.\nSchedules a closure to be run just before the exec …\nSets the process group ID (PGID) of the child process. …\nReturns the device ID of this file (if it is a special …\nReads a number of bytes starting from a given offset.\nReads the exact number of bytes required to fill buf from …\nLike read_at, except that it reads into a slice of buffers.\nSets the underlying raw bits for this set of permissions.\nIf the process was terminated by a signal, returns that …\nReturns the total size of this file in bytes.\nIf the process was stopped by a signal, returns that …\nReturns the user ID of the owner of this file.\nSets the child process’s user ID. This translates to a …\nAttempts to write an entire buffer starting from a given …\nWrites a number of bytes starting from a given offset.\nLike write_at, except that it writes from a slice of …\nUnix-specific extensions to the process::Command builder.\nUnix-specific extensions to process::ExitStatus and …\nSet executable argument\nSchedules a closure to be run just before the exec …\nWhether the process was continued from a stopped status.\nIf the process was terminated by a signal, says whether it …\nPerforms all the required setup by this Command, followed …\nCreates a new ExitStatus or ExitStatusError from the raw …\nSimilar to uid, but sets the group ID of the child …\nSets the supplementary group IDs for the calling process. …\nReturns the underlying raw wait status.\nReturns the OS-assigned process identifier associated with …\nSchedules a closure to be run just before the exec …\nSets the process group ID (PGID) of the child process. …\nIf the process was terminated by a signal, returns that …\nIf the process was stopped by a signal, returns that …\nSets the child process’s user ID. This translates to a …\nUnix-specific extensions to JoinHandle.\nExtracts the raw pthread_t without taking ownership\nConsumes the thread, returning the raw pthread_t\nA simple wrapper around a type to assert that it is unwind …\nThe configuration for whether and how the default panic …\nPrints a backtrace with all possible information.\nA struct containing information about the location of a …\nDisable collecting and displaying backtraces.\nA struct providing information about a panic.\nA struct providing information about a panic.\nA marker trait representing types where a shared reference …\nPrints a terser backtrace which ideally only contains …\nA marker trait which represents “panic safe” types in …\nMakes all future panics abort directly without running the …\nReturns the source location of the caller of this …\nReturns whether the panic handler is allowed to unwind the …\nInvokes a closure, capturing the cause of an unwinding …\nReturns the column from which the panic originated.\nReturns the name of the source file from which the panic …\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nChecks whether the standard library’s panic hook will …\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nReturns the line number from which the panic originated.\nReturns information about the location from which the …\nPanics the current thread with the given message as the …\nReturns the payload associated with the panic.\nReturns the payload associated with the panic, if it is a …\nTriggers a panic without invoking the panic hook.\nConfigures whether the default panic hook will capture and …\nRegisters a custom panic hook, replacing the previously …\nUnregisters the current panic hook and returns it, …\nAtomic combination of take_hook and set_hook. Use this to …\nCreates a pattern type.\nAn iterator over Path and its ancestors.\nA single component of a path.\nAn iterator over the Components of a Path.\nA reference to the current directory, i.e., ..\nDevice namespace prefix, e.g., \\\\.\\COM42.\nPrefix C: for the given disk drive.\nHelper struct for safely printing paths with format! and {}…\nAn iterator over the Components of a Path, as OsStr slices.\nThe primary separator of path components for the current …\nThe primary separator of path components for the current …\nA normal component, e.g., a and b in a/b.\nA reference to the parent directory, i.e., ...\nA slice of a path (akin to str).\nAn owned, mutable path (akin to String).\nWindows path prefixes, e.g., C: or \\\\server\\share.\nA Windows path prefix, e.g., C: or \\\\server\\share.\nA structure wrapping a Windows path prefix as well as its …\nThe root directory component, appears after any prefix and …\nAn error returned from Path::strip_prefix if the prefix …\nPrefix using Windows’ Uniform Naming Convention, e.g. …\nVerbatim prefix, e.g., \\\\?\\cat_pics.\nVerbatim disk prefix, e.g., \\\\?\\C:.\nVerbatim prefix using Windows’ Uniform Naming Convention,\nMakes the path absolute without accessing the filesystem.\nAppend self.extension with extension.\nProduces an iterator over Path and its ancestors.\nYields a mutable reference to the underlying OsStr slice.\nYields a mutable reference to the underlying OsString …\nYields the underlying OsStr slice.\nReturns the raw OsStr slice for this prefix.\nExtracts the underlying OsStr slice.\nCoerces to a Path slice.\nExtracts a slice corresponding to the portion of the path …\nExtracts a slice corresponding to the portion of the path …\nReturns the canonical, absolute form of the path with all …\nInvokes capacity on the underlying instance of OsString.\nInvokes clear on the underlying instance of OsString.\nClones the contents of source into self.\nProduces an iterator over the Components of the path.\nReturns an object that implements Display for safely …\nDetermines whether child is a suffix of self.\nReturns true if the path points at an existing entity.\nExtracts the extension (without the leading dot) of …\nReturns the final component of the Path, if there is one.\nExtracts the prefix of self.file_name.\nExtracts the stem (non-extension) portion of self.file_name…\nConverts a String into a PathBuf\nConverts an OsString into a PathBuf.\nConverts a Box<Path> into a PathBuf.\nConverts a borrowed OsStr to a PathBuf.\nReturns the argument unchanged.\nConverts a clone-on-write pointer to an owned path.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns the argument unchanged.\nReturns true if the Path has a root.\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nCalls U::from(self).\nConverts this PathBuf into a boxed Path.\nConsumes the PathBuf, yielding its internal OsString …\nConverts a Box<Path> into a PathBuf without copying or …\nReturns true if the Path is absolute, i.e., if it is …\nReturns true if the path exists on disk and is pointing at …\nReturns true if the path exists on disk and is pointing at …\nReturns true if the Path is relative, i.e., not absolute.\nDetermines whether the character is one of the permitted …\nReturns true if the path exists on disk and is pointing at …\nDetermines if the prefix is verbatim, i.e., begins with …\nProduces an iterator over the path’s components viewed …\nCreates an owned PathBuf with path adjoined to self.\nReturns the parsed prefix data.\nConsumes and leaks the PathBuf, returning a mutable …\nQueries the file system to get information about a file, …\nAllocates an empty PathBuf.\nDirectly wraps a string slice as a Path slice.\nReturns the Path without its final component, if there is …\nTruncates self to self.parent.\nExtends self with path.\nReturns an iterator over the entries within a directory.\nReads a symbolic link, returning the file that the link …\nInvokes reserve on the underlying instance of OsString.\nInvokes reserve_exact on the underlying instance of …\nUpdates self.extension to Some(extension) or to None if …\nUpdates self.file_name to file_name.\nInvokes shrink_to on the underlying instance of OsString.\nInvokes shrink_to_fit on the underlying instance of …\nDetermines whether base is a prefix of self.\nReturns a path that, when joined onto base, yields self.\nQueries the metadata about a file without following …\nConverts a Path to an owned PathBuf.\nYields a &str slice if the Path is valid unicode.\nConverts a Path to a Cow<str>.\nReturns Ok(true) if the path points at an existing entity.\nInvokes try_reserve on the underlying instance of OsString.\nInvokes try_reserve_exact on the underlying instance of …\nCreates an owned PathBuf like self but with the extension …\nCreates a new PathBuf with a given capacity used to create …\nCreates an owned PathBuf like self but with the given …\nCreates an owned PathBuf like self but with the given file …\nA pointer which pins its pointee in place.\nTrait that indicates that this is a pointer or a wrapper …\nGets Pin<&mut T> to the underlying pinned value from this …\nGets a mutable reference to the pinned value this Pin<Ptr> …\nGets a shared reference to the pinned value this Pin …\nConverts a Box<T> into a Pin<Box<T>>. If T does not …\nReturns the argument unchanged.\nGets a mutable reference to the data inside of this Pin.\nGets a shared reference out of a pin.\nGets a mutable reference to the data inside of this Pin.\nCalls U::from(self).\nUnwraps this Pin<Ptr>, returning the underlying pointer.\nUnwraps this Pin<Ptr>, returning the underlying Ptr.\nConverts this Pin<&mut T> into a Pin<&T> with the same …\nConstructs a new pin by mapping the interior value.\nConstructs a new pin by mapping the interior value.\nConstructs a new Pin<Ptr> around a pointer to some data of …\nConstructs a new Pin<Ptr> around a reference to some data …\nConstructs a Pin<&mut T>, by pinning a value: T locally.\nAssigns a new value to the memory location pointed to by …\nGets a pinning mutable reference from a static mutable …\nGets a pinning reference from a &'static reference.\nRead end of the anonymous pipe.\nWrite end of the anonymous pipe.\nReturns the argument unchanged.\nReturns the argument unchanged.\nCalls U::from(self).\nCalls U::from(self).\nCreate anonymous pipe that is close-on-exec and blocking.\nCreate a new PipeReader instance that shares the same …\nCreate a new PipeWriter instance that shares the same …\nThe 2015 version of the prelude of The Rust Standard …\nThe 2018 version of the prelude of The Rust Standard …\nThe 2021 version of the prelude of The Rust Standard …\nThe 2024 version of the prelude of The Rust Standard …\nThe first version of the prelude of The Rust Standard …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nThe type returned in the event of a conversion error.\nThe type returned in the event of a conversion error.\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nConversion from an Iterator.\nA future represents an asynchronous computation obtained …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nConversion into a Future.\nWhich kind of future are we turning this into?\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe type of value produced on completion.\nThe output that the future will produce on completion.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nSimple and safe type conversions that may fail in a …\nAn attempted conversion that consumes self, which may or …\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.\nSearches for an element of an iterator that satisfies a …\nApplies function to the elements of iterator and returns …\nCreates an iterator that works like map, but flattens …\nCreates an iterator that flattens nested structure.\nFolds every element into an accumulator by applying an …\nCalls a closure on each element of an iterator.\nConstructs parameters for the other string-formatting …\nSame as format_args, but adds a newline in the end.\nConverts to this type from the input type.\nCreates a value from an iterator.\nCreates an iterator which ends after the first None.\nTests greater than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nAttribute macro applied to a static to register it as a …\nTests greater than (for self and other) and is used by the …\nDetermines if the elements of this Iterator are …\nParses a file as an expression or an item according to the …\nIncludes a file as a reference to a byte array.\nIncludes a UTF-8 encoded file as a string.\nDoes something with each element of an iterator, passing …\nCreates a new iterator which places a copy of separator …\nCreates a new iterator which places an item generated by …\nConverts this type into the (usually inferred) input type.\nCreates a future from a value.\nCreates an iterator from a value.\nReturns true if the iterator is empty.\nChecks if the elements of this iterator are partitioned …\nChecks if the elements of this iterator are sorted.\nChecks if the elements of this iterator are sorted using …\nChecks if the elements of this iterator are sorted using …\nConsumes the iterator, returning the last element.\nTests less than or equal to (for self and other) and is …\nDetermines if the elements of this Iterator are …\nReturns the exact remaining length of the iterator.\nExpands to the line number on which it was invoked.\nPrints passed tokens into the standard output.\nTests less than (for self and other) and is used by the < …\nDetermines if the elements of this Iterator are …\nTakes a closure and creates an iterator which calls that …\nCreates an iterator that both yields elements based on a …\nCalls the given function f for each contiguous window of …\nCompares and returns the maximum of two values.\nReturns the maximum element of an iterator.\nReturns the element that gives the maximum value with …\nReturns the element that gives the maximum value from the …\nCompares and returns the minimum of two values.\nReturns the minimum element of an iterator.\nReturns the element that gives the minimum value with …\nReturns the element that gives the minimum value from the …\nExpands to a string that represents the current module …\nTests for !=. The default implementation is almost always …\nDetermines if the elements of this Iterator are not equal …\nAdvances the iterator and returns the next value.\nRemoves and returns an element from the end of the …\nAdvances the iterator and returns an array containing the …\nReturns the nth element of the iterator.\nReturns the nth element from the end of the iterator.\nOptionally inspects an environment variable at compile …\nThis method returns an ordering between self and other …\nLexicographically compares the PartialOrd elements of this …\nLexicographically compares the elements of this Iterator …\nConsumes an iterator, creating two collections from it.\nReorders the elements of this iterator in-place according …\nCreates an iterator which can use the peek and peek_mut …\nAttempts to resolve the future to a final value, …\nSearches for an element in an iterator, returning its …\nIterates over the entire iterator, multiplying all the …\nReduces the elements to a single one, by repeatedly …\nReverses an iterator’s direction.\nSearches for an element of an iterator from the back that …\nAn iterator method that reduces the iterator’s elements …\nSearches for an element in an iterator from the right, …\nAn iterator adapter which, like fold, holds internal …\nReturns the bounds on the remaining length of the iterator.\nReturns the size of a type in bytes.\nReturns the size of the pointed-to value in bytes.\nCreates an iterator that skips the first n elements.\nCreates an iterator that skips elements based on a …\nCreates an iterator starting at the same point, but …\nStringifies its arguments.\nSums the elements of an iterator.\nCreates an iterator that yields the first n elements, or …\nCreates an iterator that yields elements based on a …\nAttribute macro applied to a function to turn it into a …\nAn implementation detail of the #[test] and #[bench] …\nCreates owned data from borrowed data, usually by cloning.\nConverts the given value to a String.\nEnables or disables tracing functionality used for …\nFallibly transforms an iterator into a collection, short …\nApplies function to the elements of iterator and returns …\nAn iterator method that applies a function as long as it …\nAn iterator method that applies a fallible function to …\nPerforms the conversion.\nPerforms the conversion.\nReduces the elements to a single one by repeatedly …\nThis is the reverse version of Iterator::try_fold(): it …\nUnstable placeholder for type ascription.\nConverts an iterator of pairs into a pair of containers.\n‘Zips up’ two iterators into a single iterator of …\nUsed to do a cheap mutable-to-mutable reference conversion.\nUsed to do a cheap reference-to-reference conversion.\nA pointer type that uniquely owns a heap allocation of …\nA common trait for the ability to explicitly duplicate an …\nDerive macro generating an impl of the trait Clone.\nTypes whose values can be duplicated simply by copying …\nDerive macro generating an impl of the trait Copy.\nDerive macro generating an impl of the trait Debug.\nA trait for giving a type a useful default value.\nDerive macro generating an impl of the trait Default.\nAn iterator able to yield elements from both ends.\nCustom code within the destructor.\nTrait for comparisons corresponding to equivalence …\nDerive macro generating an impl of the trait Eq.\nContains the error value\nAn iterator that knows its exact length.\nExtend a collection with the contents of an iterator.\nThe version of the call operator that takes an immutable …\nThe version of the call operator that takes a mutable …\nThe version of the call operator that takes a by-value …\nUsed to do value-to-value conversions while consuming the …\nDerive macro generating an impl of the trait Hash.\nA value-to-value conversion that consumes the input value. …\nWhich kind of iterator are we turning this into?\nConversion into an Iterator.\nThe type of the elements being iterated over.\nThe type of the elements being iterated over.\nA trait for dealing with iterators.\nNo value.\nContains the success value\nThe Option type. See the module level documentation for …\nTrait for types that form a total order.\nDerive macro generating an impl of the trait Ord. The …\nThe returned type after the call operator is used.\nThe resulting type after obtaining ownership.\nTrait for comparisons using the equality operator.\nDerive macro generating an impl of the trait PartialEq. …\nTrait for types that form a partial order.\nDerive macro generating an impl of the trait PartialOrd. …\nResult is a type that represents either success (Ok) or …\nTypes that can be transferred across thread boundaries.\nTypes with a constant size known at compile time.\nSome value of type T.\nA UTF-8–encoded, growable string.\nTypes for which it is safe to share references between …\nA generalization of Clone to borrowed data.\nA trait for converting a value to a String.\nTypes that do not require any pinning guarantees.\nA contiguous growable array type, written as Vec<T>, short …\nAdvances the iterator from the back by n elements.\nAdvances the iterator by n elements.\nReturns the ABI-required minimum alignment of a type in …\nReturns the ABI-required minimum alignment of the type of …\nTests if every element of the iterator matches a predicate.\nAttribute macro applied to a function to register it as a …\nTests if any element of the iterator matches a predicate.\nReturns an iterator over N elements of the iterator at a …\nConverts this type into a mutable reference of the …\nConverts this type into a shared reference of the (usually …\nAsserts that a boolean expression is true at runtime.\nAttribute macro applied to a function to turn it into a …\nBorrows an iterator, rather than consuming it.\nPerforms the call operation.\nPerforms the call operation.\nPerforms the call operation.\nEvaluates boolean combinations of configuration flags at …\nKeeps the item it’s applied to if the passed path is …\nExpands all #[cfg] and #[cfg_attr] attributes in the code …\nTakes two iterators and creates a new iterator over both …\nRestrict a value to a certain interval.\nReturns a copy of the value.\nPerforms copy-assignment from source.\nUses borrowed data to replace owned data, usually by …\nCreates an iterator which clones all of its elements.\nThis method returns an Ordering between self and other.\nLexicographically compares the elements of this Iterator …\nLexicographically compares the elements of this Iterator …\nTransforms an iterator into a collection.\nCollects all the items from an iterator into a collection.\nExpands to the column number at which it was invoked.\nCauses compilation to fail with the given error message …\nConcatenates literals into a static string slice.\nConcatenates literals into a byte slice.\nConcatenates identifiers into one identifier.\nCreates an iterator which copies all of its elements.\nConsumes the iterator, counting the number of iterations …\nRepeats an iterator endlessly.\nReturns the “default value” for a type.\nUnstable placeholder for deref patterns.\nAttribute macro used to apply derive macros.\nAttribute macro used to apply derive macros for …\nDisposes of a value.\nExecutes the destructor for this type.\nCreates an iterator which gives the current iteration …\nInspects an environment variable at compile time.\nTests for self and other values to be equal, and is used …\nDetermines if the elements of this Iterator are equal to …\nDetermines if the elements of this Iterator are equal to …\nExtends a collection with the contents of an iterator.\nExtends a collection with exactly one element.\nReserves capacity in a collection for the given number of …\nExpands to the file name in which it was invoked.\nCreates an iterator which uses a closure to determine if …\nCreates an iterator that both filters and maps.") \ No newline at end of file diff --git a/src-files.js b/src-files.js index d89fd55d0..5bc9a5949 100644 --- a/src-files.js +++ b/src-files.js @@ -1,3 +1,3 @@ -var srcIndex = new Map(JSON.parse('[["wiwi",["",[],["lib.rs","prelude.rs","rust_alloc.rs","rust_core.rs","rust_std.rs"]]],["wiwiwiwiwi",["",[],["lib.rs"]]]]')); +var srcIndex = new Map(JSON.parse('[["wiwi",["",[["encoding",[["hex",[],["decode.rs","encode.rs","mod.rs"]],["z85",[],["mod.rs"]]],["mod.rs"]],["h",[],["mod.rs"]],["num",[],["add_carrying.rs","add_checked.rs","add_overflowing.rs","add_regular.rs","and_regular.rs","array_conversions.rs","base.rs","count_bits.rs","div_checked.rs","div_float.rs","div_int.rs","div_overflowing.rs","div_regular.rs","from_lossless.rs","from_lossy.rs","into_lossless.rs","into_lossy.rs","mod.rs","mul_checked.rs","mul_overflowing.rs","mul_regular.rs","mul_unchecked.rs","mul_widening.rs","narrowing.rs","neg_checked.rs","neg_regular.rs","not_regular.rs","or_regular.rs","rem_checked.rs","rem_regular.rs","shl_checked.rs","shl_regular.rs","shr_checked.rs","shr_regular.rs","signedness.rs","sub_borrowing.rs","sub_checked.rs","sub_overflowing.rs","sub_regular.rs","widening.rs","xor_regular.rs"]],["util",[],["mod.rs"]],["util_unsafe",[],["encoding_utils.rs","mod.rs"]]],["lib.rs","prelude.rs","rust_alloc.rs","rust_core.rs","rust_std.rs"]]],["wiwiwiwiwi",["",[],["lib.rs"]]]]')); createSrcSidebar(); -//{"start":36,"fragment_lengths":[85,34]} \ No newline at end of file +//{"start":36,"fragment_lengths":[982,34]} \ No newline at end of file diff --git a/src/wiwi/encoding/hex/decode.rs.html b/src/wiwi/encoding/hex/decode.rs.html new file mode 100644 index 000000000..ca7263922 --- /dev/null +++ b/src/wiwi/encoding/hex/decode.rs.html @@ -0,0 +1,201 @@ +decode.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+
//! Internal decoding implementations
+
+use crate::prelude::*;
+use crate::util_unsafe::UnsafeBufWriteGuard;
+use crate::num::*;
+use super::DecodeError;
+
+/// Length of the table decoder (256)
+const TABLE_DECODER_LEN: usize = 256;
+
+/// Decoding table (with mappings for both upper and lower hex)
+// TODO: this table is mostly empty... I wonder what we could do here to shrink it,
+// without compromising speed (we could do what we did with z85 with None == 0xff)?
+static TABLE_DECODER: &[Option<u8>; TABLE_DECODER_LEN] = &[
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	Some(0x00), Some(0x01), Some(0x02), Some(0x03), Some(0x04), Some(0x05), Some(0x06), Some(0x07), Some(0x08), Some(0x09), None,       None,       None,       None,       None,       None,
+	None,       Some(0x0a), Some(0x0b), Some(0x0c), Some(0x0d), Some(0x0e), Some(0x0f), None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       Some(0x0a), Some(0x0b), Some(0x0c), Some(0x0d), Some(0x0e), Some(0x0f), None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,
+	None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None,       None
+];
+
+/// Reads `rounds * 2` bytes from bytes_ptr, encoding pairs of chars into
+/// bytes, then writes the decoded bytes into `dest`
+///
+/// # Safety
+///
+/// - `bytes_ptr` must be valid for reads for `rounds * 2` bytes
+/// - `dest` must have enough capacity to write at least `rounds` bytes
+pub(super) unsafe fn generic(
+	mut bytes_ptr: *const u8,
+	dest: &mut UnsafeBufWriteGuard,
+	rounds: usize
+) -> Result<(), DecodeError> {
+	let table_ptr = TABLE_DECODER.as_ptr();
+
+	for _ in 0..rounds {
+		// SAFETY: bytes_ptr must be valid for `rounds * 2` bytes, and we loop
+		// `rounds` times, each time reading 2 bytes (n, and n + 1)
+		let next_byte_ptr = unsafe { bytes_ptr.add(1) };
+
+		// SAFETY: caller promises `bytes_ptr` is valid for at least `rounds * 2`
+		// bytes, see prev comment for details
+		let byte1 = unsafe { (*bytes_ptr).into_usize() };
+		// SAFETY: same as above
+		let byte2 = unsafe { (*next_byte_ptr).into_usize() };
+
+		/// # Safety
+		///
+		/// The valud stored in the variable passed in must be within the range of
+		/// 0..=255 (for indexing the decode table)
+		macro_rules! decode_byte_unsafe {
+			($byte:ident) => {
+				// SAFETY: macro caller promises var is within 0..=84,
+				// ie. within range to index table ptr
+				let ptr = unsafe { table_ptr.add($byte) };
+
+				// SAFETY: as described above, ptr is valid to read
+				let $byte = unsafe { *ptr };
+
+				let $byte = match $byte {
+					Some(byte) => { byte }
+					None => { return Err(DecodeError::InvalidChar) }
+				};
+			}
+		}
+
+
+		// SAFETY: a byte can only be between `0..256`, which fits
+		// within the lookup table
+
+		// SAFETY: both vars were casted from bytes, which only has a range of 0..=255
+		decode_byte_unsafe!(byte1);
+		decode_byte_unsafe!(byte2);
+
+		let byte = (byte1 << 4) | byte2;
+
+		// SAFETY: we loop `rounds` times, and caller promises `dest` is writeable
+		// for at least `rounds` bytes, so writing 1 per iteration is good
+		unsafe { dest.write_bytes_const::<1>(&byte) }
+
+		// SAFETY: caller promises `bytes_ptr` is readable from for at least
+		// `num_rounds * 2` bytes, adding 2 per iter is sound. Also it's sound to
+		// have the pointer pointing to the end of the memory section (as long as
+		// it isn't dereferenced)
+		unsafe { bytes_ptr = bytes_ptr.add(2) }
+	}
+
+	Ok(())
+}
+
\ No newline at end of file diff --git a/src/wiwi/encoding/hex/encode.rs.html b/src/wiwi/encoding/hex/encode.rs.html new file mode 100644 index 000000000..17875b967 --- /dev/null +++ b/src/wiwi/encoding/hex/encode.rs.html @@ -0,0 +1,115 @@ +encode.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+
//! Internal encoding implementations
+
+use crate::util_unsafe::UnsafeBufWriteGuard;
+
+/// Length of encoding table (not actually used in encoding/decoding data)
+pub const TABLE_ENCODER_LEN: usize = 16;
+
+/// Encoding table of lowercased characters, length 16, mapping a value from 0-15
+/// to a hex byte (lower letters)
+///
+/// Note: this table is not actually used in the encoding/decoding implementation
+pub static TABLE_ENCODER_LOWER: [u8; TABLE_ENCODER_LEN] = *b"0123456789abcdef";
+
+/// Encoding table of uppercased characters, length 16, mapping a value from 0-15
+/// to a hex byte (upper letters)
+///
+/// Note: this table is not actually used in the encoding/decoding implementation
+pub static TABLE_ENCODER_UPPER: [u8; TABLE_ENCODER_LEN] = *b"0123456789ABCDEF";
+
+/// Reads `rounds` bytes from `bytes_ptr`, encoding them into 2 hex chars
+/// per byte, then writes the output into `dest`
+///
+/// # SAFETY
+///
+/// - `bytes_ptr` must be valid for `num_rounds` bytes of reads
+/// - `dest` must have enough capacity to write `num_rounds * 2` bytes into
+pub unsafe fn generic<const UPPER: bool>(
+	mut bytes_ptr: *const u8,
+	dest: &mut UnsafeBufWriteGuard,
+	rounds: usize
+) {
+	let char_a = if UPPER { b'A' } else { b'a' } - 10;
+	let char_0 = b'0';
+
+	for _ in 0..rounds {
+		// SAFETY: we loop `num_rounds` times only, reading a byte each time,
+		// and caller promises that `bytes_ptr` is valid to read for at least
+		// that many bytes
+		let byte = unsafe { *bytes_ptr };
+
+		// SAFETY: same invariant as above. It's sound to have the pointer pointing
+		// to the end of the memory section (as long as it isn't dereferenced)
+		bytes_ptr = unsafe { bytes_ptr.add(1) };
+
+		let char1 = byte >> 4;
+		let char2 = byte & 0xf;
+
+		let chars = [
+			if char1 > 9 { char_a } else { char_0 } + char1,
+			if char2 > 9 { char_a } else { char_0 } + char2
+		];
+
+		// SAFETY: caller guarantees `dest` is writeable to for at least
+		// `num_rounds * 2` bytes, so we can write 2 bytes every iteration
+		unsafe { dest.write_bytes_const::<2>(chars.as_ptr()) }
+	}
+}
+
\ No newline at end of file diff --git a/src/wiwi/encoding/hex/mod.rs.html b/src/wiwi/encoding/hex/mod.rs.html new file mode 100644 index 000000000..b7bd0c4ca --- /dev/null +++ b/src/wiwi/encoding/hex/mod.rs.html @@ -0,0 +1,385 @@ +mod.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+162
+163
+164
+165
+166
+167
+168
+169
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+
extern crate thiserror;
+
+use crate::prelude::*;
+use crate::util_unsafe::UnsafeBufWriteGuard;
+use rust_std::{ self as std, str };
+
+mod encode;
+mod decode;
+
+pub use self::encode::{
+	TABLE_ENCODER_LEN,
+	TABLE_ENCODER_LOWER,
+	TABLE_ENCODER_UPPER
+};
+
+/// Encodes a slice of bytes into a String, using lowercase characters
+#[inline]
+pub fn encode_hex(bytes: &[u8]) -> String {
+	_encode::<false>(bytes)
+}
+
+/// Encodes a slice of bytes into a String, using uppercase characters
+#[inline]
+pub fn encode_hex_upper(bytes: &[u8]) -> String {
+	_encode::<true>(bytes)
+}
+
+/// Inner function with const generic `UPPER`
+fn _encode<const UPPER: bool>(bytes: &[u8]) -> String {
+	debug_assert!(bytes.len() >> (usize::BITS - 1) == 0, "size overflow");
+
+	let len = bytes.len();
+	// shl 1 is same as multiplying by 2
+	let capacity = len << 1;
+	let ptr = bytes.as_ptr();
+	let mut dest = UnsafeBufWriteGuard::with_capacity(capacity);
+
+	// SAFETY: we obtained `ptr` and `len` from `bytes`, so `ptr` is valid for `len`
+	// reads, and we calculated and requested `dest` to allocate `len * 2` bytes
+	unsafe { encode::generic::<UPPER>(ptr, &mut dest, len) };
+
+	// SAFETY: we wrote into all the space we requested (`len * 2`)
+	let vec = unsafe { dest.into_full_vec() };
+
+	// SAFETY: `encode::generic` will only ever write the ASCII chars `0-9`, `a-f`,
+	// and `A-F` into vec. ASCII is valid UTF-8
+	unsafe {
+		debug_assert!(str::from_utf8(&vec).is_ok(), "output bytes are valid utf-8");
+		String::from_utf8_unchecked(vec)
+	}
+}
+
+/// Decodes a slice of hex bytes into a byte vector. This function handles and
+/// supports both uppercase and lowercase characters.
+pub fn decode_hex(bytes: &[u8]) -> Result<Vec<u8>, DecodeError> {
+	let len = bytes.len();
+
+	// `AND 0b1` is chopping off all the other bits
+	// if the last bit is 1 then it's odd, which is invalid
+	if len & 0b1 != 0 { return Err(DecodeError::InvalidLength) }
+
+	// shr 1 is same as div 2
+	let capacity = len >> 1;
+	let mut dest = UnsafeBufWriteGuard::with_capacity(capacity);
+	let ptr = bytes.as_ptr();
+
+	// SAFETY: ptr is readable for `capacity * 2` bytes (since `capacity` is
+	// `len / 2` and `ptr` is readable for `len` bytes), and we requested `capacity`
+	// bytes in `dest`
+	unsafe { decode::generic(ptr, &mut dest, capacity)? }
+
+	// SAFETY: we wrote into all the space we requested (`len / 2`)
+	Ok(unsafe { dest.into_full_vec() })
+}
+
+/// Errors that can be encountered on decoding data (encoding data does not error)
+// TODO: these errors could be improved.
+#[derive(Debug, thiserror::Error)]
+pub enum DecodeError {
+	/// Invalid length. Length is expected to be a multiple of two
+	#[error("invalid length")]
+	InvalidLength,
+	/// Invalid character. Characters are only allowed to be in `0-9`, `a-f`, `A-F`
+	#[error("invalid character")]
+	InvalidChar
+}
+
+#[cfg(test)]
+mod tests {
+	extern crate hex;
+	extern crate rand;
+
+	use super::*;
+	use rand::{ Rng, thread_rng };
+
+	#[test]
+	fn rfc_provided_examples() {
+		let examples = [
+			("", ""),
+			("f", "66"),
+			("fo", "666F"),
+			("foo", "666F6F"),
+			("foob", "666F6F62"),
+			("fooba", "666F6F6261"),
+			("foobar", "666F6F626172")
+		];
+
+		for (bytes, encoded) in examples {
+			assert_eq!(encoded, encode_hex_upper(bytes.as_bytes()));
+			assert_eq!(encoded.to_lowercase(), encode_hex(bytes.as_bytes()));
+		}
+	}
+
+	#[test]
+	fn randomised() {
+		// (in_len, out_len)
+		let expected_lengths = [
+			(0usize, 0usize),
+			(1, 2),
+			(2, 4),
+			(3, 6),
+			(4, 8),
+			(5, 10),
+			(6, 12),
+			(7, 14),
+			(8, 16),
+			(9, 18),
+			(10, 20),
+			(11, 22),
+			(12, 24),
+			(13, 26),
+			(14, 28),
+			(15, 30),
+			(16, 32),
+			(17, 34),
+			(18, 36),
+			(19, 38),
+			(20, 40),
+
+			(50, 100),
+			(100, 200),
+			(500, 1000),
+			(1000, 2000),
+			(100_000, 200_000),
+			(1_000_000, 2_000_000),
+		];
+		let mut rng = thread_rng();
+
+		for (expected_input_len, expected_output_len) in expected_lengths {
+			for _ in 0usize..5 {
+				let mut original_input = vec![0u8; expected_input_len];
+				rng.fill(&mut *original_input);
+				assert_eq!(original_input.len(), expected_input_len);
+
+				let encoded_lower = encode_hex(&original_input);
+				assert_eq!(encoded_lower.len(), expected_output_len);
+				let encoded_upper = encode_hex_upper(&original_input);
+				assert_eq!(encoded_upper.len(), expected_output_len);
+
+				let decoded_lower = decode_hex(encoded_lower.as_bytes())
+					.expect("can round trip decode just encoded data");
+				assert_eq!(decoded_lower.len(), expected_input_len);
+				assert_eq!(original_input, decoded_lower);
+
+				let decoded_upper = decode_hex(encoded_upper.as_bytes())
+					.expect("can round trip decode just encoded data");
+				assert_eq!(decoded_upper.len(), expected_input_len);
+				assert_eq!(original_input, decoded_upper);
+			}
+		}
+	}
+
+	#[test]
+	fn hex_crate_compat() {
+		let mut rng = thread_rng();
+
+		let mut bytes = vec![0u8; 1000];
+		rng.fill(&mut *bytes);
+		let bytes = &*bytes;
+
+		let wiwi_encoded = encode_hex(bytes);
+		let hex_encoded = hex::encode(bytes);
+		assert_eq!(wiwi_encoded, hex_encoded);
+
+		let wiwi_decoded_hex = decode_hex(hex_encoded.as_bytes())
+			.expect("wiwi can decode hex");
+		let hex_decoded_wiwi = hex::decode(wiwi_encoded.as_bytes())
+			.expect("hex can decode wiwi");
+
+		assert_eq!(wiwi_decoded_hex, hex_decoded_wiwi);
+	}
+}
+
\ No newline at end of file diff --git a/src/wiwi/encoding/mod.rs.html b/src/wiwi/encoding/mod.rs.html new file mode 100644 index 000000000..34f4d0684 --- /dev/null +++ b/src/wiwi/encoding/mod.rs.html @@ -0,0 +1,5 @@ +mod.rs - source
1
+2
+
pub mod hex;
+pub mod z85;
+
\ No newline at end of file diff --git a/src/wiwi/encoding/z85/mod.rs.html b/src/wiwi/encoding/z85/mod.rs.html new file mode 100644 index 000000000..4e73e6f94 --- /dev/null +++ b/src/wiwi/encoding/z85/mod.rs.html @@ -0,0 +1,1345 @@ +mod.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+162
+163
+164
+165
+166
+167
+168
+169
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+193
+194
+195
+196
+197
+198
+199
+200
+201
+202
+203
+204
+205
+206
+207
+208
+209
+210
+211
+212
+213
+214
+215
+216
+217
+218
+219
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
+235
+236
+237
+238
+239
+240
+241
+242
+243
+244
+245
+246
+247
+248
+249
+250
+251
+252
+253
+254
+255
+256
+257
+258
+259
+260
+261
+262
+263
+264
+265
+266
+267
+268
+269
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+324
+325
+326
+327
+328
+329
+330
+331
+332
+333
+334
+335
+336
+337
+338
+339
+340
+341
+342
+343
+344
+345
+346
+347
+348
+349
+350
+351
+352
+353
+354
+355
+356
+357
+358
+359
+360
+361
+362
+363
+364
+365
+366
+367
+368
+369
+370
+371
+372
+373
+374
+375
+376
+377
+378
+379
+380
+381
+382
+383
+384
+385
+386
+387
+388
+389
+390
+391
+392
+393
+394
+395
+396
+397
+398
+399
+400
+401
+402
+403
+404
+405
+406
+407
+408
+409
+410
+411
+412
+413
+414
+415
+416
+417
+418
+419
+420
+421
+422
+423
+424
+425
+426
+427
+428
+429
+430
+431
+432
+433
+434
+435
+436
+437
+438
+439
+440
+441
+442
+443
+444
+445
+446
+447
+448
+449
+450
+451
+452
+453
+454
+455
+456
+457
+458
+459
+460
+461
+462
+463
+464
+465
+466
+467
+468
+469
+470
+471
+472
+473
+474
+475
+476
+477
+478
+479
+480
+481
+482
+483
+484
+485
+486
+487
+488
+489
+490
+491
+492
+493
+494
+495
+496
+497
+498
+499
+500
+501
+502
+503
+504
+505
+506
+507
+508
+509
+510
+511
+512
+513
+514
+515
+516
+517
+518
+519
+520
+521
+522
+523
+524
+525
+526
+527
+528
+529
+530
+531
+532
+533
+534
+535
+536
+537
+538
+539
+540
+541
+542
+543
+544
+545
+546
+547
+548
+549
+550
+551
+552
+553
+554
+555
+556
+557
+558
+559
+560
+561
+562
+563
+564
+565
+566
+567
+568
+569
+570
+571
+572
+573
+574
+575
+576
+577
+578
+579
+580
+581
+582
+583
+584
+585
+586
+587
+588
+589
+590
+591
+592
+593
+594
+595
+596
+597
+598
+599
+600
+601
+602
+603
+604
+605
+606
+607
+608
+609
+610
+611
+612
+613
+614
+615
+616
+617
+618
+619
+620
+621
+622
+623
+624
+625
+626
+627
+628
+629
+630
+631
+632
+633
+634
+635
+636
+637
+638
+639
+640
+641
+642
+643
+644
+645
+646
+647
+648
+649
+650
+651
+652
+653
+654
+655
+656
+657
+658
+659
+660
+661
+662
+663
+664
+665
+666
+667
+668
+669
+670
+671
+672
+
extern crate thiserror;
+
+use crate::prelude::*;
+use crate::util_unsafe::{ ChunkedSlice, UnsafeBufWriteGuard };
+use crate::num::*;
+// TODO: `thiserror` wants `std`
+use crate::rust_std::{ self as std, slice, str };
+
+/// Length of the encoding table (ie. number of different characters)
+pub const TABLE_ENCODER_LEN: usize = 85;
+/// Table to map a number 0-84 to a Z85 character.
+pub static TABLE_ENCODER: [u8; TABLE_ENCODER_LEN] = *b"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-:+=^!/*?&<>()[]{}@%$#";
+//                                                     0123456789          0123456789          0123456789          0123456789          01234
+//                                                               0123456789          0123456789          0123456789          0123456789
+//                                                     0         10        20        30        40        50        60        70        80
+
+/// Length of the decoding table
+pub const TABLE_DECODER_LEN: usize = 256;
+
+/// Table of length 256, mapping any `u8` to the value it represents
+///
+/// `0xff` values represent `None`. Doing it this way instead of Option<u8> halves
+/// the size of this table (u8 is 1 byte, Option<u8> is 2 bytes)
+///
+/// This table could be shrinked to just 96 elements, holding the range `32..128`,
+/// but keeping it length 256 means it's possible to index into this table with
+/// any arbitrary byte value without going out of bounds, saving a check for a
+/// value to be within `32..128`.
+// generated by script `generate-z85-table-decoder`... and then manually modified
+// when we switched over from Option<u8> to just u8 with 0xff representing None
+pub static TABLE_DECODER: [u8; 256] = [
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+
+	NONE, 0x44, NONE, 0x54, 0x53, 0x52, 0x48, NONE, 0x4b, 0x4c, 0x46, 0x41, NONE, 0x3f, 0x3e, 0x45,
+	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x40, NONE, 0x49, 0x42, 0x4a, 0x47,
+	0x51, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32,
+	0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x4d, NONE, 0x4e, 0x43, NONE,
+	NONE, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,
+	0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x4f, NONE, 0x50, NONE, NONE,
+
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE,
+	NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE, NONE
+];
+/// The byte (`0xff`) used to represent a `None` value in the
+/// [table decoder](TABLE_DECODER)
+const NONE: u8 = 0xff;
+
+/// One frame of this many bytes (4) from the binary data encodes to
+/// one frame of 5 ([`STRING_FRAME_LEN`]) bytes of encoded Z85 output
+pub const BINARY_FRAME_LEN: usize = 4;
+
+/// One frame of this many bytes (5) from the encoded Z85 data decodes
+/// to one frame of 4 ([`BINARY_FRAME_LEN`]) bytes of binary data.
+pub const STRING_FRAME_LEN: usize = 5;
+
+/// Encodes a slice of bytes into a Z85 string, adding padding if necessary
+pub fn encode_z85(bytes: &[u8]) -> String {
+	// we *don't* fast path out on zero bytes, because in like, 99%
+	// of situations, the input is not 0 length, lol
+
+	let EncodedReprInfo {
+		frames,
+		remainder,
+		needed_capacity
+	} = EncodedReprInfo::for_input_len(bytes.len());
+
+	let mut frames_iter = ChunkedSlice::<BINARY_FRAME_LEN>::new(bytes);
+
+	// here we allocate enough capacity (calculated by `EncodedReprInfo`)
+	let mut dest = UnsafeBufWriteGuard::with_capacity(needed_capacity);
+
+	// this is the loop that encodes and writes all the chunks to output buffer
+	for _ in 0..frames {
+		// SAFETY: we loop `frames` times, which is calculated correctly
+		// by `EncodedReprInfo` (see its safety notes)
+		let frame = unsafe { frames_iter.next_frame_unchecked() };
+
+		// SAFETY: same as above, we will have enough bytes to write to,
+		// calculated by `EncodedReprInfo`
+		unsafe { encode_frame(frame, &mut dest) }
+	}
+
+	// this is where the remainder, if any, is encoded and stored
+	if remainder > 0 {
+		{
+			// Refactoring out the inner closure is to avoid an edge case in lints
+			// https://github.com/rust-lang/rust-clippy/issues/13134
+			let do_thing = |remainder: &_| {
+				// SAFETY: we calculated and preallocated the correct amount up front.
+				// This closure is called only once, just after this declaration. I (vt)
+				// have been extra cautious and put it in its own scope lol
+				unsafe { encode_frame(remainder, &mut dest) }
+			};
+
+			// SAFETY: this will only run if there is any remainder (guarded by if statement)
+			// All the full frames have been consumed by the previous loop, so if we do have
+			// any remainder, it will be strictly under 4
+			// This triggers, even with unsafe block on `encode_frame`, and additionally
+			// the lint for unnecessary unsafe block triggers too. I think nested unsafe
+			// is edge case that the authors of this lint have not thought about, hmm...
+			unsafe { frames_iter.with_remainder_unchecked(do_thing) }
+		}
+
+		// remainder is amount of non padding bytes in the frame
+		let padding_len = 4 - remainder;
+
+		// SAFETY: remainder will always be 1, 2, or 3 (both strictly less than 4
+		// as guaranteed by `EncodedReprInfo`, and greater than 0, by if condition),
+		// so the result of the subtraction above, will always be 3, 2, or 1, which
+		// is less than 85, so this will always be in bounds
+		let ptr = unsafe { TABLE_ENCODER.as_ptr().add(padding_len) };
+
+		// SAFETY: ptr is in bounds and valid (see above)
+		let padding_char = unsafe { *ptr };
+
+		// SAFETY: we calculated and preallocated the right amount, which if we
+		// are here, would be because we needed to encode remainder, and allocation
+		// calculation will have taken that into account would include this extra
+		// byte that is needed
+		unsafe { dest.write_bytes_const::<1>(&padding_char) }
+	}
+
+	// SAFETY: we calculated and requested the exact amount of memory we need,
+	// and have written to all of it in the loop and if statement above
+	let vec = unsafe { dest.into_full_vec() };
+
+	// SAFETY: throughout the encoding process, we only pushed characters from the
+	// encoding table, all of which are ASCII chars. If a string is valid ASCII,
+	// it is also valid UTF-8
+	unsafe {
+		debug_assert!(str::from_utf8(&vec).is_ok(), "output bytes are valid utf-8");
+		String::from_utf8_unchecked(vec)
+	}
+}
+
+/// Decodes a slice of a Z85 string back into the source bytes
+pub fn decode_z85(mut bytes: &[u8]) -> Result<Vec<u8>, DecodeError> {
+	if bytes.len() < STRING_FRAME_LEN {
+		return if bytes.is_empty() {
+			Ok(Vec::new())
+		} else {
+			// in here, bytes len is 0 < n < STRING_FRAME_LEN. we already returned
+			// on empty input (valid because empty bytes <-> empty string). at input
+			// lengths 1-3, the single frame would have been padded to a full frame
+			// and then the amount of padding appended as one more byte, for a total
+			// lenght of 6. At input length 4, it would just be the frame without
+			// any extra bytes added. so therefore the smallest valid non-zero len
+			// is 5, encoding one full frame of data or more, so this is invalid input.
+			Err(DecodeError::InvalidLength)
+		}
+	}
+
+	// `bytes.len()` will always be 5 or more, so `frames` will always
+	// be 1 or more (see comment above)
+	let frames = bytes.len() / STRING_FRAME_LEN;
+	debug_assert!(frames >= 1, "condition of \"at least one frame in input\" was checked correctly");
+
+	let remainder = bytes.len() % STRING_FRAME_LEN;
+
+	// left shift 2 is the same as multiply by 4 (BINARY_FRAME_LEN)
+	let capacity = frames << 2;
+
+	// Match statement to check remainder for that extra padding encoding byte.
+	// Either, there is 1 trailing byte, that is stritly less than 4, that
+	// encodes the amount of padding added. Or, it's a different character that
+	// doesn't decode to 0..=3 or none at all (in which case, we exit early)
+	let (capacity, added_padding) = match remainder {
+		0 => {
+			// no padding was added
+			(capacity, 0usize)
+		}
+		1 => {
+			// the singular trailing byte that encodes how much padding was added
+
+			// remainder is 1, so there will be at least 1 byte in the
+			// slice, because duh (well technically there will be at least 6
+			// bytes as established earlier, but I can still safely subtract 1).
+			// This will never overflow
+			// TODO: could be unchecked sub?
+			let one_shorter = bytes.len() - 1;
+
+			// le ptr to the input slice
+			let ptr = bytes.as_ptr();
+
+			let byte = {
+				// SAFETY: this points at the last byte, it is in bounds
+				let last_byte_ptr = unsafe { ptr.add(one_shorter) };
+
+				// SAFETY: since the ptr is in bounds and points
+				// at last byte, it is safe to dereference
+				unsafe { *last_byte_ptr }
+			};
+
+			// SAFETY:
+			// - `ptr` points at the start of the input slice
+			// - it's established above that subtracting by 1
+			//   will not overflow, if we got into this match branch
+			// - `one_shorter` is one less than the len of the input slice
+			//    (which won't overflow)
+			// this is just taking a subslice of the all the bytes except the last
+			bytes = unsafe { slice::from_raw_parts(ptr, one_shorter) };
+
+			let decoded = {
+				// SAFETY: `byte` is of type u8, which has a range of 0..=255,
+				// which will never overflow TABLE_DECODER as its len is 256
+				let table_ptr = unsafe { TABLE_DECODER.as_ptr().add(byte.into_usize()) };
+
+				// SAFETY: as established above, pointer above will not
+				// index past end of TABLE_DECODER
+				unsafe { *table_ptr }
+			};
+
+			let decoded = decoded.into_usize();
+			let added_padding = if decoded < BINARY_FRAME_LEN {
+				decoded
+			} else {
+				// invalid char in this context (too large / does not exist)
+				// does not exist is 255 so it won't pass above check either
+				return Err(DecodeError::InvalidChar)
+			};
+
+			// We established that if we got here, we need to decode at least 1
+			// full frame. `added_padding` is lte 3, which is less than the
+			// size of 1 full binary frame (4), so this won't overflow. If
+			// added_padding is 0 for some reason, this returns the same values
+			// as the 0 case (checked in unit test below)
+			// TODO: this can be unchecked sub
+			(capacity - added_padding, added_padding)
+		}
+		_n => {
+			// 2 or 3 extra bytes at end of input, not valid in any scenario
+			return Err(DecodeError::InvalidLength)
+		}
+	};
+
+	// because frames >= 1, `excluding_last_frame` will be >= 0 (ie. will not underflow).
+	let excluding_last_frame = frames - 1;
+
+	let mut frames_iter = ChunkedSlice::<STRING_FRAME_LEN>::new(bytes);
+	let mut dest = UnsafeBufWriteGuard::with_capacity(capacity);
+
+	// this loop goes over and decodees all the string chunks to output buffer
+	for _ in 0..excluding_last_frame {
+		// SAFETY: this loop loops `excluding_last_frame` times, which is the
+		// amount of times it takes to loop through all the full chunks, except
+		// the last one
+		let frame = unsafe { frames_iter.next_frame_unchecked() };
+
+		// Refactoring out the inner closure is to avoid an edge case in lints
+		// https://github.com/rust-lang/rust-clippy/issues/13134
+		let do_thing = |frame: &[_; 4]| {
+			// SAFETY: we calculated/preallocated the exact amount of
+			// memory we need up front, and we only loop one less amount
+			// of times than the number of full frames, so we won't overflow
+			unsafe { dest.write_bytes_const::<BINARY_FRAME_LEN>(frame.as_ptr()) }
+		};
+
+		// SAFETY: uhm, conservatively marked unsafe yay? lol
+		// but as established above, we won't overflow
+		unsafe { decode_frame(frame, do_thing)? }
+	}
+
+	// this is the last frame, and this frame gets decoded a bit specially.
+	// We remove the amount of padding from the amount, so we can only write
+	// the amount of actual data bytes into the output. We are still able to
+	// preallocate exact capacity we need up front!
+
+	// SAFETY: we do have one last frame left. if there was 1 remainder it was
+	// decoded and removed from the end, if there was more remainder we returned
+	// an error already, and if it were 0 then.. well, we have a perfect frame left.
+	// After this, there will be no frames left.
+	let frame = unsafe { frames_iter.next_frame_unchecked() };
+
+	// This is the amount of bytes minus the padding bytes at the end, aka, the
+	// amount of actual data bytes that were encoded.
+	// - if 0 bytes of padding were added, this is whole frame and
+	//   added_padding would be 0
+	// - if 1 to 3 bytes of padding were added, this is correct, and would be
+	//   1 to 3
+	// - 4 or more here is not possible, since if it did, full frames would have
+	//   been counted towards full frame count and strict remainder would be here
+	//   (0..=3)
+
+	// Because of all that explained above, this will also be in range of
+	// 0 <= n < 4 (BINARY_FRAME_LEN), ie. will not overflow.
+	let non_padding_bytes = BINARY_FRAME_LEN - added_padding;
+
+	let do_thing = |frame: &[_; 4]| {
+		// SAFETY: this writes the actual data bytes into the buffer. We
+		// subtracted padding bytes from the number we write already, so we
+		// write the rest of the buffer the perfect amount left
+		unsafe { dest.write_bytes(frame.as_ptr(), non_padding_bytes) }
+	};
+
+	// SAFETY: conservatively marked unsafe function aha
+	// (reasoning for other invariants detailed out above)
+	unsafe { decode_frame(frame, do_thing)? }
+
+	// SAFETY: We have consumed all the input bytes (calculated)
+	debug_assert!(frames_iter.to_slice().is_empty(), "all bytes were consumed");
+
+	// SAFETY: We have written the exact amount of bytes we preallocated (calculated)
+	Ok(unsafe { dest.into_full_vec() })
+}
+
+/// Errors that can be encountered on decoding data (encoding data does not error)
+// TODO: these errors could be improved.
+#[derive(Debug, PartialEq, thiserror::Error)]
+pub enum DecodeError {
+	/// Input data has invalid length
+	#[error("invalid length")]
+	InvalidLength,
+	/// Invalid character in input data
+	#[error("invalid character")]
+	InvalidChar,
+	/// One frame of data contains characters that are too large and would overflow
+	#[error("correct characters, but incorrect combination that would cause overflow")]
+	FrameOverflow
+}
+
+/// Various details about a slice and it's encoded output bytes, including
+/// number of full frames, remainder, and how much capacity is needed to hold
+/// all the encoded bytes
+///
+/// # Safety
+///
+/// All fields on this struct are marked `pub`, meaning anyone is allowed to
+/// directly access and modify them. Don't accept any instances of this struct
+/// from nontrusted sources, nor construct instances from raw data taken from
+/// nontrusted sources.
+///
+/// On the contrary, you can trust and rely on the output directly from the
+/// [`for_input_len`](EncodedReprInfo::for_input_len) associated function,
+/// including in unsafe contexts. The body of this function is heavily
+/// documented.
+pub struct EncodedReprInfo {
+	/// The amount of _full_ frames (eg. amount of full chunks of 4 bytes)
+	pub frames: usize,
+	/// The amount of remainder bytes, strictly less than 4 (frame size)
+	pub remainder: usize,
+	/// The amount of capacity required to fit all the encoded data into
+	///
+	/// This is calculated by summing up the following values:
+	/// - Space needed for full frames is `frames * 5`, since every frame
+	///   is a chunk of 4 bytes that gets encoded into a frame of 5 bytes
+	/// - Space needed for remainder bytes:
+	///   - If no remainder, then 0. Simple enough :p
+	///     - This also implies that if the input does not need to be padded to
+	///       a len that is a multiple of 4, no padding is needed. In this case,
+	///       the numbers/calculations here are compliant with the [Z85 spec].
+	///   - If there is remainder, it is `5 + 1`. The remainder bytes
+	///     will be padded to a full frame of 4, then encoded as a full frame,
+	///     yielding 5. Then, one extra byte is added onto the end to encode the
+	///     amount of padding we have added (ex. 1 for 3 remainder bytes and 1
+	///     padding).
+	///
+	/// [Z85 spec]: https://rfc.zeromq.org/spec/32
+	pub needed_capacity: usize
+}
+
+impl EncodedReprInfo {
+	/// Calculates the values
+	///
+	/// See documentation on [`EncodedReprInfo`] and on the individual fields
+	/// for more information.
+	#[inline]
+	pub fn for_input_len(input_len: usize) -> Self {
+		// right shift 2 is same as integer divide by 4,
+		// to get the amount of full binary frames
+		let frames = input_len >> 2;
+
+		// binary AND with 0b11 (3) is the same as rem 4,
+		// to get the amount of remainder bytes
+		let remainder = input_len & 0b11;
+
+		let needed_capacity = if remainder == 0 {
+			// each frame of 4 is encoded to a frame of
+			// 5 bytes of output. No padding needed case
+			frames * 5
+		} else {
+			// `frames` is number of *whole* binary frames, so the remainder
+			// is not included in this. adding 1 to allocate space for one more
+			// frame containing the padded remainder
+			let capacity = (frames + 1) * STRING_FRAME_LEN;
+
+			// adding 1 more byte for the last byte that
+			// encodes amount of padding added
+			capacity + 1
+		};
+
+		Self { frames, remainder, needed_capacity }
+	}
+}
+
+/// # Safety
+///
+/// Caller must guarantee dest is valid for at least `STRING_FRAME_LEN` bytes
+/// to be written.
+unsafe fn encode_frame(frame: &[u8; BINARY_FRAME_LEN], dest: &mut UnsafeBufWriteGuard) {
+	let mut int = u32::from_be_bytes(*frame).into_usize();
+
+	let byte5 = int % TABLE_ENCODER_LEN;
+	int /= TABLE_ENCODER_LEN;
+
+	let byte4 = int % TABLE_ENCODER_LEN;
+	int /= TABLE_ENCODER_LEN;
+
+	let byte3 = int % TABLE_ENCODER_LEN;
+	int /= TABLE_ENCODER_LEN;
+
+	let byte2 = int % TABLE_ENCODER_LEN;
+	int /= TABLE_ENCODER_LEN;
+
+	let byte1 = int;
+
+	debug_assert!(int % TABLE_ENCODER_LEN == int, "no remaining/unused byte information");
+	debug_assert!(int / TABLE_ENCODER_LEN == 0, "no remaining/unused byte information");
+
+	let table_ptr = TABLE_ENCODER.as_ptr();
+
+	/// # Safety
+	///
+	/// The value stored in the variable that's passed into this macro must be
+	/// within the range 0..=84, so that it can be used to index the encode table
+	macro_rules! encode_byte_unsafe {
+		($byte:ident) => {
+			{
+				// SAFETY: macro caller promises variable is within 0..=84,
+				// which can be safely used to index encode table (len 85)
+				let byte_ptr = unsafe { table_ptr.add($byte) };
+
+				// SAFETY: as described above, the pointer is valid to read from
+				unsafe { *byte_ptr }
+			}
+		}
+	}
+
+	let encoded_frame = [
+		// SAFETY: all the below macro invocations pass in variables whose value
+		// is calculating by rem 85. so they will always be strictly less than 85
+		encode_byte_unsafe!(byte1),
+		encode_byte_unsafe!(byte2),
+		encode_byte_unsafe!(byte3),
+		encode_byte_unsafe!(byte4),
+		encode_byte_unsafe!(byte5)
+	];
+
+	// SAFETY: caller guarantees that `dest` has at least
+	// `STRING_FRAME_LEN` bytes left, and that writing this won't overflow.
+	unsafe { dest.write_bytes_const::<STRING_FRAME_LEN>(encoded_frame.as_ptr()) }
+}
+
+/// # Safety
+///
+/// All possible inputs are sound. However, marking this function `unsafe` is
+/// consistent with [`encode_frame`]. This is an internal function, so doesn't
+/// matter too much.
+unsafe fn decode_frame<F>(frame: &[u8; STRING_FRAME_LEN], f: F) -> Result<(), DecodeError>
+where
+	F: FnOnce(&[u8; BINARY_FRAME_LEN])
+{
+	let [byte1, byte2, byte3, byte4, byte5] = *frame;
+	let table_ptr = TABLE_DECODER.as_ptr();
+
+	/// # Safety
+	///
+	/// The passed variable must be to a byte value, or a value within the
+	/// range `0..256`.
+	macro_rules! decode_byte_unsafe {
+		($byte:ident) => {
+			// SAFETY: caller promises that `$byte` is within range 0..=255,
+			// and the decoding table is len 256, so this will not be out of bounds
+			let ptr = unsafe { table_ptr.add($byte.into_usize()) };
+
+			// SAFETY: as established above, the ptr is within
+			// bounds and safe to dereference
+			let $byte = unsafe { *ptr };
+			if $byte == NONE { return Err(DecodeError::InvalidChar) }
+		}
+	}
+
+	// SAFETY: the byte values provided are bytes, so will guaranteed
+	// in the range 0..=255 (as larger values are not even representable)
+	// Additionally, if this comes back as Some from TABLE_DECODER, it is guaranteed
+	// to be 0 <= n <= 84, since there are no Some(n) values outside this range.
+	decode_byte_unsafe!(byte1);
+	decode_byte_unsafe!(byte2);
+	decode_byte_unsafe!(byte3);
+	decode_byte_unsafe!(byte4);
+	decode_byte_unsafe!(byte5);
+
+	// A string frame containing all valid z85 chars, can still overflow u32
+	// (u32 max is 4.294.967.295, but the result of this operation can be 4.437.053.124).
+	// However it cannot overflow u64 (u64 max is 18.446.744.073.709.551.616).
+	// So we decode in a u64 first, and then we check for overflow, then error if so
+	let mut int = byte1.into_u64();
+
+	int *= TABLE_ENCODER_LEN.into_u64();
+	int += byte2.into_u64();
+
+	int *= TABLE_ENCODER_LEN.into_u64();
+	int += byte3.into_u64();
+
+	int *= TABLE_ENCODER_LEN.into_u64();
+	int += byte4.into_u64();
+
+	int *= TABLE_ENCODER_LEN.into_u64();
+	int += byte5.into_u64();
+
+	if int >> u32::BITS != 0 { return Err(DecodeError::FrameOverflow) }
+
+	let decoded_frame = u32::to_be_bytes(int.into_u32_lossy());
+	f(&decoded_frame);
+
+	Ok(())
+}
+
+#[cfg(test)]
+mod tests {
+	extern crate rand;
+	extern crate z85;
+
+	use super::*;
+	use rand::{ Rng, thread_rng };
+
+	#[test]
+	fn provided_test_case() {
+		let bytes: &[u8] = &[
+			0x86, 0x4f, 0xd2, 0x6f,
+			0xb5, 0x59, 0xf7, 0x5b
+		];
+		let encoded = "HelloWorld";
+
+		assert_eq!(encoded, encode_z85(bytes));
+		assert_eq!(bytes, decode_z85(encoded.as_bytes()).expect("provided test case decodes properly"));
+	}
+
+	#[test]
+	fn randomised() {
+		// (bytes_len, encoded_len)
+		// (expected_input_len, expected_output_len)
+		let expected_lengths = [
+			(0usize, 0usize),
+			(1, 6),
+			(2, 6),
+			(3, 6),
+			(4, 5),
+			(5, 11),
+			(6, 11),
+			(7, 11),
+			(8, 10),
+			(9, 16),
+			(10, 16),
+			(11, 16),
+			(12, 15),
+			(13, 21),
+			(14, 21),
+			(15, 21),
+			(16, 20),
+			(17, 26),
+			(18, 26),
+			(19, 26),
+			(20, 25),
+
+			(50, 66),
+			(100, 125),
+			(500, 625),
+			(1000, 1250),
+			(100_000, 125_000),
+			(1_000_000, 1_250_000),
+		];
+		let mut rng = thread_rng();
+
+		for (expected_input_len, expected_output_len) in expected_lengths {
+			for _ in 0usize..5 {
+				let mut original_input = vec![0u8; expected_input_len];
+				rng.fill(&mut *original_input);
+				assert_eq!(original_input.len(), expected_input_len);
+
+				let encoded = encode_z85(&original_input);
+				assert_eq!(encoded.len(), expected_output_len);
+
+				let decoded = decode_z85(encoded.as_bytes())
+					.expect("can round trip decode just encoded data");
+				assert_eq!(decoded.len(), expected_input_len);
+
+				assert_eq!(original_input, decoded);
+			}
+		}
+	}
+
+	#[test]
+	fn z85_crate_nonpadded_compat() {
+		// this should work, since when bytes length is a multiple of 4
+		// we don't add any padding characters and `z85` doesn't add any
+		// either, meaning in this situation our impls are cross compatible
+
+		let mut rng = thread_rng();
+
+		let mut bytes = vec![0u8; 1000];
+		rng.fill(&mut *bytes);
+		let bytes = &*bytes;
+
+		let wiwi_encoded = encode_z85(bytes);
+		let z85_encoded = z85::encode(bytes);
+		assert_eq!(wiwi_encoded, z85_encoded);
+
+		let wiwi_decoded_z85 = decode_z85(z85_encoded.as_bytes())
+			.expect("wiwi can decode z85");
+		let z85_decoded_wiwi = z85::decode(wiwi_encoded.as_bytes())
+			.expect("z85 can decode wiwi");
+
+		assert_eq!(wiwi_decoded_z85, z85_decoded_wiwi);
+	}
+
+	#[test]
+	fn extra_zero_padding_byte() {
+		// for the case where theres an extra padding marker byte that encodes
+		// zero padding, which we don't emit because that's just a waste of space.
+		// but it doesn't break the parser, so we don't check for it.
+
+		let strs = [
+			("adfeg", "adfeg0"),
+			(
+				// len 45
+				"abcdefafuehirugehdbfntkvdneoiwr4htrugitdfkwwu",
+				"abcdefafuehirugehdbfntkvdneoiwr4htrugitdfkwwu0"
+			)
+		];
+
+		for (str1, str2) in strs {
+			let str1 = decode_z85(str1.as_bytes())
+				.expect("nonpadded z85 parses successfully");
+			let str2 = decode_z85(str2.as_bytes())
+				.expect("padded-with-0 z85 parses successfully");
+			assert_eq!(str1, str2);
+		}
+	}
+
+	#[test]
+	fn max_value() {
+		let decoded = decode_z85(b"%nSc0%nSc0%nSc0%nSc0");
+		let decoded = decoded.as_deref();
+		assert_eq!(decoded, Ok(&[255u8; 16] as &[u8]));
+	}
+
+	#[test]
+	fn rejects_too_large() {
+		let strs = [
+			//   v
+			"%nSc1",
+			//                            v
+			"%nSc0%nSc0%nSc0%nSc0%nSc0%nSc1%nSc0",
+			//          v
+			"%nSc0%nSc0%oSc0%nSc0%nSc0%nSc0%nSc0",
+			// kinda obvious
+			"#####"
+		];
+
+		for s in strs {
+			let decoded = decode_z85(s.as_bytes());
+			assert_eq!(decoded, Err(DecodeError::FrameOverflow))
+		}
+	}
+}
+
\ No newline at end of file diff --git a/src/wiwi/h/mod.rs.html b/src/wiwi/h/mod.rs.html new file mode 100644 index 000000000..8ad717a1c --- /dev/null +++ b/src/wiwi/h/mod.rs.html @@ -0,0 +1,69 @@ +mod.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+
//! h
+
+use crate::prelude::*;
+
+/// h
+#[inline]
+pub fn h() -> String {
+	"h".into()
+}
+
+/// H
+// shut
+#[allow(non_snake_case)]
+#[inline]
+pub fn H() -> String {
+	"H".into()
+}
+
+#[cfg(test)]
+mod tests {
+	use crate::prelude::*;
+
+	#[test]
+	pub fn h() {
+		assert_eq!(super::h(), "h", "h should be h");
+	}
+
+	#[test]
+	// shut
+	#[allow(non_snake_case)]
+	pub fn H() {
+		assert_eq!(super::H(), "H", "H should be H");
+	}
+}
+
\ No newline at end of file diff --git a/src/wiwi/lib.rs.html b/src/wiwi/lib.rs.html index bb2fd26c0..befccdd90 100644 --- a/src/wiwi/lib.rs.html +++ b/src/wiwi/lib.rs.html @@ -271,6 +271,24 @@ 271 272 273 +274 +275 +276 +277 +278 +279 +280 +281 +282 +283 +284 +285 +286 +287 +288 +289 +290 +291
#![no_implicit_prelude]
 
 // TODO: review these
@@ -292,6 +310,18 @@
 
 #![cfg_attr(docsrs, feature(doc_cfg))]
 
+#![cfg_attr(all(docsrs, kiwingay), doc = "")]
+#![cfg_attr(
+	all(docsrs, kiwingay),
+	doc = concat!(
+		"These docs have been built from commit [",
+		env!("KIWINGAY_DEPLOY_COMMIT_SHORT"),
+		"](https://github.com/meadowsys/wiwi/commit/",
+		env!("KIWINGAY_DEPLOY_COMMIT"),
+		")."
+	)
+)]
+
 #[cfg(target_pointer_width = "16")]
 compile_error!("16-bit platforms are not supported yet (but please do file an issue if for whatever reason you do need it, I would be happy to add support!)");
 
@@ -304,6 +334,12 @@
 pub mod rust_core;
 pub mod rust_std;
 
+pub mod encoding;
+pub mod h;
+pub mod num;
+pub mod util;
+pub mod util_unsafe;
+
 // pub mod clone;
 // pub mod compare;
 // pub mod convert;
diff --git a/src/wiwi/num/add_carrying.rs.html b/src/wiwi/num/add_carrying.rs.html
new file mode 100644
index 000000000..91ac1be43
--- /dev/null
+++ b/src/wiwi/num/add_carrying.rs.html
@@ -0,0 +1,61 @@
+add_carrying.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+
use super::AddOverflowing;
+
+/// Carrying addition
+pub trait AddCarrying: AddOverflowing {
+	/// Performs carrying add
+	///
+	/// # Examples
+	///
+	/// TODO
+	#[inline]
+	fn add_carrying(self, rhs: Self, carry: bool) -> (Self, bool) {
+		let (res, carry1) = self.add_overflowing(rhs);
+		let (res, carry2) = res.add_overflowing(Self::from_bool(carry));
+		(res, carry1 || carry2)
+	}
+}
+
+macro_rules! impl_num_trait_add_carrying {
+	{ $($num:ident)* } => {
+		$(
+			impl AddCarrying for $num {}
+		)*
+	}
+}
+
+impl_num_trait_add_carrying! {
+	u8 u16 u32 u64 u128 usize
+	// TODO: look in std, it's carrying impl is different for signed ints
+	// i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/add_checked.rs.html b/src/wiwi/num/add_checked.rs.html new file mode 100644 index 000000000..08dc6d5a5 --- /dev/null +++ b/src/wiwi/num/add_checked.rs.html @@ -0,0 +1,51 @@ +add_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+
use crate::prelude::*;
+use super::Add;
+
+/// Checked addition
+pub trait AddChecked: Add {
+	fn add_checked(self, rhs: Self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_add_checked {
+	{ $($num:ident)* } => {
+		$(
+			impl AddChecked for $num {
+				#[inline]
+				fn add_checked(self, rhs: $num) -> Option<$num> {
+					$num::checked_add(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_add_checked! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/add_overflowing.rs.html b/src/wiwi/num/add_overflowing.rs.html new file mode 100644 index 000000000..37c140835 --- /dev/null +++ b/src/wiwi/num/add_overflowing.rs.html @@ -0,0 +1,59 @@ +add_overflowing.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+
use super::Add;
+
+/// Overflowing addition
+pub trait AddOverflowing: Add {
+	/// Performs overflowing add
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn add_overflowing(self, rhs: Self) -> (Self, bool);
+}
+
+macro_rules! impl_num_trait_add_overflowing {
+	{ $($num:ident)* } => {
+		$(
+			impl AddOverflowing for $num {
+				#[inline]
+				fn add_overflowing(self, rhs: $num) -> ($num, bool) {
+					$num::overflowing_add(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_add_overflowing! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/add_regular.rs.html b/src/wiwi/num/add_regular.rs.html new file mode 100644 index 000000000..f225430ac --- /dev/null +++ b/src/wiwi/num/add_regular.rs.html @@ -0,0 +1,63 @@ +add_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+
use crate::prelude::*;
+use super::Base;
+
+/// Addition
+pub trait Add: Base + rust_std::ops::Add<Self, Output = Self> {
+	/// Performs plain addition
+	///
+	/// It does the same as what the `+` operator does
+	///
+	/// # Examples
+	///
+	/// TODO
+	#[inline]
+	fn add_regular(self, rhs: Self) -> Self {
+		self + rhs
+	}
+}
+
+macro_rules! impl_num_trait_add {
+	{ $($num:ident)* } => {
+		$(
+			impl Add for $num {}
+		)*
+	}
+}
+
+impl_num_trait_add! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/and_regular.rs.html b/src/wiwi/num/and_regular.rs.html new file mode 100644 index 000000000..361596f65 --- /dev/null +++ b/src/wiwi/num/and_regular.rs.html @@ -0,0 +1,47 @@ +and_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+
use crate::prelude::*;
+use super::Base;
+
+/// Bitwise AND
+pub trait And: Base + rust_std::ops::BitAnd<Self, Output = Self> {
+	#[inline]
+	fn and_regular(self, rhs: Self) -> Self {
+		self & rhs
+	}
+}
+
+macro_rules! impl_num_trait_and {
+	{ $($num:ident)* } => {
+		$(
+			impl And for $num {}
+		)*
+	}
+}
+
+impl_num_trait_and! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/array_conversions.rs.html b/src/wiwi/num/array_conversions.rs.html new file mode 100644 index 000000000..0dd4dc0c2 --- /dev/null +++ b/src/wiwi/num/array_conversions.rs.html @@ -0,0 +1,173 @@ +array_conversions.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+
use super::Base;
+
+/// Array conversions
+///
+/// To use this trait as a trait bound on something, also declare a `usize`
+/// const generic parameter, and then use it to specify the bound on your
+/// generic parameter. For example:
+///
+/// ```
+/// # use wiwi::num::ArrayConversions;
+/// //                 ↓ your parameter    ↓↓ const generic ↓↓
+/// fn number_function<T: ArrayConversions<BYTES>, const BYTES: usize>(num: T) {
+///    let array: [u8; BYTES] = num.into_le_bytes();
+/// }
+/// ```
+pub trait ArrayConversions<const BYTES: usize>: Base {
+	/// Converts this number into a byte array in little endian order
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn into_le_bytes(self) -> [u8; BYTES];
+
+	/// Converts this number into a byte array in big endian order
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn into_be_bytes(self) -> [u8; BYTES];
+
+	/// Converts this number into a byte array in native endian order
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn into_ne_bytes(self) -> [u8; BYTES];
+
+	/// Converts an array of bytes in little endian order to a number
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn from_le_bytes(bytes: [u8; BYTES]) -> Self;
+
+	/// Converts an array of bytes in big endian order to a number
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn from_be_bytes(bytes: [u8; BYTES]) -> Self;
+
+	/// Converts an array of bytes in native endian order to a number
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn from_ne_bytes(bytes: [u8; BYTES]) -> Self;
+}
+
+macro_rules! impl_num_trait_array_conversions {
+	{ $($num:ident)* } => {
+		$(
+			impl ArrayConversions<{ $num::BYTES_USIZE }> for $num {
+				#[inline]
+				fn into_le_bytes(self) -> [u8; $num::BYTES_USIZE] { $num::to_le_bytes(self) }
+				#[inline]
+				fn into_be_bytes(self) -> [u8; $num::BYTES_USIZE] { $num::to_be_bytes(self) }
+				#[inline]
+				fn into_ne_bytes(self) -> [u8; $num::BYTES_USIZE] { $num::to_ne_bytes(self) }
+
+				#[inline]
+				fn from_le_bytes(bytes: [u8; $num::BYTES_USIZE]) -> $num { $num::from_le_bytes(bytes) }
+				#[inline]
+				fn from_be_bytes(bytes: [u8; $num::BYTES_USIZE]) -> $num { $num::from_be_bytes(bytes) }
+				#[inline]
+				fn from_ne_bytes(bytes: [u8; $num::BYTES_USIZE]) -> $num { $num::from_ne_bytes(bytes) }
+			}
+		)*
+	}
+}
+
+impl_num_trait_array_conversions! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/base.rs.html b/src/wiwi/num/base.rs.html new file mode 100644 index 000000000..37bcdce3d --- /dev/null +++ b/src/wiwi/num/base.rs.html @@ -0,0 +1,349 @@ +base.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+162
+163
+164
+165
+166
+167
+168
+169
+170
+171
+172
+173
+174
+
use crate::prelude::*;
+
+/// Common base for all numbers
+pub trait Base: Sized + Clone + private::Sealed {
+	/// Min (finite) value of this number type
+	const MIN: Self;
+	/// Max (finite) value of this number type
+	const MAX: Self;
+	/// `0`
+	const ZERO: Self;
+	/// `1`
+	const ONE: Self;
+	/// Size of this number in bits
+	const BITS: Self;
+	/// Size of this number type in bytes
+	const BYTES: Self;
+	/// Align of this number type in bytes
+	const ALIGN: Self;
+	/// Size of this number in bits, type `usize`
+	const BITS_USIZE: usize;
+	/// Size of this number type in bytes, type `usize`
+	const BYTES_USIZE: usize;
+	/// Align of this number type in bytes, type `usize`
+	const ALIGN_USIZE: usize;
+
+	fn from_bool(b: bool) -> Self;
+}
+
+mod private {
+	pub trait Sealed {}
+}
+
+macro_rules! impl_num_trait_base {
+	{
+		int: unsigned $num:ident
+	} => {
+		impl_num_trait_base! {
+			base: $num;
+			zero: 0;
+			one: 1;
+			bits: $num::BITS as _;
+			from_bool: b => b as _;
+		}
+	};
+
+	{
+		int: signed $num:ident
+	} => {
+		impl_num_trait_base! {
+			base: $num;
+			zero: 0;
+			one: 1;
+			bits: $num::BITS as _;
+			from_bool: b => b as _;
+		}
+	};
+
+	{
+		float: $num:ident
+	} => {
+		impl_num_trait_base! {
+			base: $num;
+			zero: 0.0;
+			one: 1.0;
+			bits: (size_of::<$num>() * 8) as _;
+			from_bool: b => if b { 1.0 } else { 0.0 };
+		}
+	};
+
+	{
+		base: $num:ident;
+		zero: $zero:literal;
+		one: $one:literal;
+		bits: $bits:expr;
+		from_bool: $b:ident => $from_bool:expr;
+	} => {
+		impl private::Sealed for $num {}
+		impl Base for $num {
+			const MIN: $num = $num::MIN;
+			const MAX: $num = $num::MAX;
+			const ZERO: $num = $zero;
+			const ONE: $num = $one;
+			const BITS: $num = $bits;
+			const BYTES: $num = size_of::<$num>() as _;
+			const ALIGN: $num = align_of::<$num>() as _;
+			const BITS_USIZE: usize = Self::BITS as _;
+			const BYTES_USIZE: usize = Self::BYTES as _;
+			const ALIGN_USIZE: usize = Self::ALIGN as _;
+
+			#[inline(always)]
+			fn from_bool($b: bool) -> $num { $from_bool }
+		}
+	};
+}
+
+impl_num_trait_base! {
+	int: unsigned u8
+}
+
+impl_num_trait_base! {
+	int: unsigned u16
+}
+
+impl_num_trait_base! {
+	int: unsigned u32
+}
+
+impl_num_trait_base! {
+	int: unsigned u64
+}
+
+impl_num_trait_base! {
+	int: unsigned u128
+}
+
+impl_num_trait_base! {
+	int: unsigned usize
+}
+
+impl_num_trait_base! {
+	int: signed i8
+}
+
+impl_num_trait_base! {
+	int: signed i16
+}
+
+impl_num_trait_base! {
+	int: signed i32
+}
+
+impl_num_trait_base! {
+	int: signed i64
+}
+
+impl_num_trait_base! {
+	int: signed i128
+}
+
+impl_num_trait_base! {
+	int: signed isize
+}
+
+impl_num_trait_base! {
+	float: f32
+}
+
+impl_num_trait_base! {
+	float: f64
+}
+
+#[cfg(test)]
+mod tests {
+	use super::*;
+
+	#[test]
+	fn bits_and_bytes() {
+		fn check<I: Base + Debug + Eq>(expected_bits: I, expected_bytes: I) {
+			assert_eq!(I::BITS, expected_bits);
+			assert_eq!(I::BYTES, expected_bytes);
+		}
+
+		check(8u8, 1);
+		check(16u16, 2);
+		check(32u32, 4);
+		check(64u64, 8);
+		check(128u128, 16);
+		check(8i8, 1);
+		check(16i16, 2);
+		check(32i32, 4);
+		check(64i64, 8);
+		check(128i128, 16);
+	}
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/count_bits.rs.html b/src/wiwi/num/count_bits.rs.html new file mode 100644 index 000000000..28f9ccbe2 --- /dev/null +++ b/src/wiwi/num/count_bits.rs.html @@ -0,0 +1,107 @@ +count_bits.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+
use super::Base;
+
+pub trait CountBits: Base {
+	fn count_zeros(self) -> Self;
+	fn count_ones(self) -> Self;
+	fn leading_zeros(self) -> Self;
+	fn leading_ones(self) -> Self;
+	fn trailing_zeros(self) -> Self;
+	fn trailing_ones(self) -> Self;
+}
+
+macro_rules! impl_num_trait_count_bits {
+	{ $($num:ident)* } => {
+		$(
+			impl CountBits for $num {
+				#[inline]
+				fn count_zeros(self) -> $num {
+					$num::count_zeros(self) as _
+				}
+
+				#[inline]
+				fn count_ones(self) -> $num {
+					$num::count_ones(self) as _
+				}
+
+				#[inline]
+				fn leading_zeros(self) -> $num {
+					$num::leading_zeros(self) as _
+				}
+
+				#[inline]
+				fn leading_ones(self) -> $num {
+					$num::leading_ones(self) as _
+				}
+
+				#[inline]
+				fn trailing_zeros(self) -> $num {
+					$num::trailing_zeros(self) as _
+				}
+
+				#[inline]
+				fn trailing_ones(self) -> $num {
+					$num::trailing_ones(self) as _
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_count_bits! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/div_checked.rs.html b/src/wiwi/num/div_checked.rs.html new file mode 100644 index 000000000..d6092c603 --- /dev/null +++ b/src/wiwi/num/div_checked.rs.html @@ -0,0 +1,49 @@ +div_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+
use crate::prelude::*;
+use super::Div;
+
+pub trait DivChecked: Div {
+	fn div_checked(self, rhs: Self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_div_checked {
+	{ $($num:ident)* } => {
+		$(
+			impl DivChecked for $num {
+				#[inline]
+				fn div_checked(self, rhs: $num) -> Option<$num> {
+					$num::checked_div(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_div_checked! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/div_float.rs.html b/src/wiwi/num/div_float.rs.html new file mode 100644 index 000000000..8a2b5f113 --- /dev/null +++ b/src/wiwi/num/div_float.rs.html @@ -0,0 +1,51 @@ +div_float.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+
use super::Div;
+
+/// Floating point division
+pub trait DivFloat: Div {
+	/// Performs floating point division
+	///
+	/// This means the division operation will perform division and keep fractional
+	/// component, as you would expect with computer floating point numbers
+	#[inline]
+	fn div_float(self, rhs: Self) -> Self {
+		self / rhs
+	}
+}
+
+macro_rules! impl_num_trait_div_float {
+	{ $($num:ident)* } => {
+		$(
+			impl DivFloat for $num {}
+		)*
+	}
+}
+
+impl_num_trait_div_float! {
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/div_int.rs.html b/src/wiwi/num/div_int.rs.html new file mode 100644 index 000000000..0543aa694 --- /dev/null +++ b/src/wiwi/num/div_int.rs.html @@ -0,0 +1,87 @@ +div_int.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+
use super::Div;
+
+/// Integer division
+pub trait DivInt: Div {
+	/// Performs integer division
+	///
+	/// This means the division operation will perform division and truncate (not
+	/// round) any fractional component, as you would expect with integers
+	#[inline]
+	fn div_int(self, rhs: Self) -> Self {
+		self / rhs
+	}
+}
+
+macro_rules! impl_num_trait_div_int_ints {
+	{ $($num:ident)* } => {
+		$(
+			impl DivInt for $num {}
+		)*
+	}
+}
+
+impl_num_trait_div_int_ints! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
+macro_rules! impl_num_trait_div_int_floats {
+	{ $($num:ident)* } => {
+		$(
+			impl DivInt for $num {
+				#[inline]
+				fn div_int(self, rhs: $num) -> $num {
+					$num::floor(self / rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_div_int_floats! {
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/div_overflowing.rs.html b/src/wiwi/num/div_overflowing.rs.html new file mode 100644 index 000000000..725f2c21d --- /dev/null +++ b/src/wiwi/num/div_overflowing.rs.html @@ -0,0 +1,61 @@ +div_overflowing.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+
use super::Div;
+
+/// Overflowing division
+pub trait DivOverflowing: Div {
+	/// Performs overflowing division
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn div_overflowing(self, rhs: Self) -> (Self, bool);
+}
+
+
+macro_rules! impl_num_trait_div_overflowing {
+	{ $($num:ident)* } => {
+		$(
+			impl DivOverflowing for $num {
+				#[inline]
+				fn div_overflowing(self, rhs: $num) -> ($num, bool) {
+					$num::overflowing_div(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_div_overflowing! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/div_regular.rs.html b/src/wiwi/num/div_regular.rs.html new file mode 100644 index 000000000..18e4dc9c9 --- /dev/null +++ b/src/wiwi/num/div_regular.rs.html @@ -0,0 +1,63 @@ +div_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+
use crate::prelude::*;
+use super::Base;
+
+/// Division
+pub trait Div: Base + rust_std::ops::Div<Self, Output = Self> {
+	/// Performs regular division
+	///
+	/// It does the same as what the `/` operator does
+	///
+	/// # Examples
+	///
+	/// TODO
+	#[inline]
+	fn div_regular(self, rhs: Self) -> Self {
+		self / rhs
+	}
+}
+
+macro_rules! impl_num_trait_div {
+	{ $($num:ident)* } => {
+		$(
+			impl Div for $num {}
+		)*
+	}
+}
+
+impl_num_trait_div! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/from_lossless.rs.html b/src/wiwi/num/from_lossless.rs.html new file mode 100644 index 000000000..a624658af --- /dev/null +++ b/src/wiwi/num/from_lossless.rs.html @@ -0,0 +1,327 @@ +from_lossless.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+162
+163
+
use super::Base;
+
+macro_rules! decl_from_lossless {
+	{
+		trait_name: $trait_name:ident
+		fn_name: $fn_name:ident
+		from: $from:ident
+		$($(#[$meta:meta])* $to:ident)*
+	} => {
+		/// Lossless conversion from
+		#[doc = concat!("`", stringify!($from), "`")]
+		///
+		/// That is, this trait is implemented for a number type, when you can
+		/// convert a
+		#[doc = concat!("`", stringify!($from), "`")]
+		/// to the number type while guaranteeing absolutely no losses for all
+		/// possible values. This is not the same as an `as` cast!
+		pub trait $trait_name: Base {
+			/// Losslessly converts the provided
+			#[doc = concat!("`", stringify!($from), "`")]
+			/// into Self
+			fn $fn_name(val: $from) -> Self;
+		}
+
+		$(
+			$(#[$meta])*
+			impl $trait_name for $to {
+				/// Losslessly converts the provided
+				#[doc = concat!("`", stringify!($from), "`")]
+				/// into
+				#[doc = concat!("`", stringify!($to), "`")]
+				#[inline(always)]
+				fn $fn_name(val: $from) -> $to { val as _ }
+			}
+		)*
+	}
+}
+
+decl_from_lossless! {
+	trait_name: FromU8Lossless
+	fn_name: from_u8
+	from: u8
+	u8 u16 u32 u64 u128
+	usize
+	i16 i32 i64 i128
+	isize
+	f32 f64
+}
+
+decl_from_lossless! {
+	trait_name: FromU16Lossless
+	fn_name: from_u16
+	from: u16
+	u16 u32 u64 u128
+	usize
+	i32 i64 i128
+	#[cfg(not(target_pointer_width = "16"))] isize
+	f32 f64
+}
+
+decl_from_lossless! {
+	trait_name: FromU32Lossless
+	fn_name: from_u32
+	from: u32
+	u32 u64 u128
+	#[cfg(not(target_pointer_width = "16"))] usize
+	i64 i128
+	#[cfg(target_pointer_width = "64")] isize
+	f64
+}
+
+decl_from_lossless! {
+	trait_name: FromU64Lossless
+	fn_name: from_u64
+	from: u64
+	u64 u128
+	#[cfg(target_pointer_width = "64")] usize
+	i128
+}
+
+decl_from_lossless! {
+	trait_name: FromU128Lossless
+	fn_name: from_u128
+	from: u128
+	u128
+}
+
+decl_from_lossless! {
+	trait_name: FromUsizeLossless
+	fn_name: from_usize
+	from: usize
+	#[cfg(target_pointer_width = "16")] u16
+	#[cfg(not(target_pointer_width = "64"))] u32
+	u64 u128 usize
+	#[cfg(target_pointer_width = "16")] i32
+	#[cfg(not(target_pointer_width = "64"))] i64
+	i128
+	#[cfg(target_pointer_width = "16")] f32
+	#[cfg(not(target_pointer_width = "64"))] f64
+}
+
+decl_from_lossless! {
+	trait_name: FromI8Lossless
+	fn_name: from_i8
+	from: i8
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
+decl_from_lossless! {
+	trait_name: FromI16Lossless
+	fn_name: from_i16
+	from: i16
+	i16 i32 i64 i128 isize
+	f32 f64
+}
+
+decl_from_lossless! {
+	trait_name: FromI32Lossless
+	fn_name: from_i32
+	from: i32
+	i32 i64 i128 #[cfg(not(target_pointer_width = "16"))] isize
+	f64
+}
+
+decl_from_lossless! {
+	trait_name: FromI64Lossless
+	fn_name: from_i64
+	from: i64
+	i64 i128 #[cfg(target_pointer_width = "64")] isize
+}
+
+decl_from_lossless! {
+	trait_name: FromI128Lossless
+	fn_name: from_i128
+	from: i128
+	i128
+}
+
+decl_from_lossless! {
+	trait_name: FromIsizeLossless
+	fn_name: from_isize
+	from: isize
+	#[cfg(target_pointer_width = "16")] i16
+	#[cfg(not(target_pointer_width = "64"))] i32
+	i64 i128 isize
+	#[cfg(target_pointer_width = "16")] f32
+	#[cfg(not(target_pointer_width = "64"))] f64
+}
+
+decl_from_lossless! {
+	trait_name: FromF32Lossless
+	fn_name: from_f32
+	from: f32
+	f32 f64
+}
+
+decl_from_lossless! {
+	trait_name: FromF64Lossless
+	fn_name: from_f64
+	from: f64
+	f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/from_lossy.rs.html b/src/wiwi/num/from_lossy.rs.html new file mode 100644 index 000000000..a0a0a3402 --- /dev/null +++ b/src/wiwi/num/from_lossy.rs.html @@ -0,0 +1,231 @@ +from_lossy.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+
use super::Base;
+
+macro_rules! decl_from_lossy {
+	{
+		$(
+			trait: $trait_name:ident
+			fn: $fn_name:ident
+			from: $from:ident
+		)*
+		// trait: $($trait_name:ident)*
+	} => {
+		$(
+			/// Potentially lossy conversion from
+			#[doc = concat!("`", stringify!($from), "`")]
+			///
+			/// This trait is implemented for all number types. This is not a guaranteed
+			/// lossless conversion. It's the same as an `as` cast, but in trait form.
+			pub trait $trait_name: Base {
+				/// Converts the provided
+				#[doc = concat!("`", stringify!($from), "`")]
+				/// into Self, potentially lossily
+				fn $fn_name(val: $from) -> Self;
+			}
+
+			decl_from_lossy! {
+				@impl
+				trait: $trait_name
+				fn: $fn_name
+				from: $from
+
+				u8 u16 u32 u64 u128 usize
+				i8 i16 i32 i64 i128 isize
+				f32 f64
+			}
+		)*
+	};
+
+	{
+		@impl
+		trait: $trait_name:ident
+		fn: $fn_name:ident
+		from: $from:ident
+		$($num:ident)*
+	} => {
+		$(
+			impl $trait_name for $num {
+				/// Converts the provided
+				#[doc = concat!("`", stringify!($from), "`")]
+				/// into
+				#[doc = concat!("`", stringify!($num), "`,")]
+				/// potentially lossily
+				#[inline(always)]
+				fn $fn_name(val: $from) -> $num { val as _ }
+			}
+		)*
+	};
+}
+
+decl_from_lossy! {
+	trait: FromU8Lossy
+	fn: from_u8_lossy
+	from: u8
+
+	trait: FromU16Lossy
+	fn: from_u16_lossy
+	from: u16
+
+	trait: FromU32Lossy
+	fn: from_u32_lossy
+	from: u32
+
+	trait: FromU64Lossy
+	fn: from_u64_lossy
+	from: u64
+
+	trait: FromU128Lossy
+	fn: from_u128_lossy
+	from: u128
+
+	trait: FromUsizeLossy
+	fn: from_usize_lossy
+	from: usize
+
+	trait: FromI8Lossy
+	fn: from_i8_lossy
+	from: i8
+
+	trait: FromI16Lossy
+	fn: from_i16_lossy
+	from: i16
+
+	trait: FromI32Lossy
+	fn: from_i32_lossy
+	from: i32
+
+	trait: FromI64Lossy
+	fn: from_i64_lossy
+	from: i64
+
+	trait: FromI128Lossy
+	fn: from_i128_lossy
+	from: i128
+
+	trait: FromIsizeLossy
+	fn: from_isize_lossy
+	from: isize
+
+	trait: FromF32Lossy
+	fn: from_f32_lossy
+	from: f32
+
+	trait: FromF64Lossy
+	fn: from_f64_lossy
+	from: f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/into_lossless.rs.html b/src/wiwi/num/into_lossless.rs.html new file mode 100644 index 000000000..a7dd9af6b --- /dev/null +++ b/src/wiwi/num/into_lossless.rs.html @@ -0,0 +1,313 @@ +into_lossless.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+
use super::Base;
+
+macro_rules! decl_into_lossless {
+	{
+		trait_name: $trait_name:ident
+		fn_name: $fn_name:ident
+		into: $into:ident
+		$($(#[$meta:meta])* $from:ident)*
+	} => {
+		/// Lossless conversion into
+		#[doc = concat!("`", stringify!($into), "`")]
+		///
+		/// That is, this trait is implemented for a number type, when it can be
+		/// converted into a
+		#[doc = concat!("`", stringify!($into), "`")]
+		/// while guaranteeing absolutely no losses for all possible values. This
+		/// is not the same as an `as` cast!
+		pub trait $trait_name: Base {
+			/// Losslessly converts `self` into
+			#[doc = concat!("`", stringify!($into), "`")]
+			fn $fn_name(self) -> $into;
+		}
+
+		$(
+			$(#[$meta])*
+			impl $trait_name for $from {
+				#[inline(always)]
+				fn $fn_name(self) -> $into { self as _ }
+			}
+		)*
+	}
+}
+
+decl_into_lossless! {
+	trait_name: IntoU8Lossless
+	fn_name: into_u8
+	into: u8
+	u8
+}
+
+decl_into_lossless! {
+	trait_name: IntoU16Lossless
+	fn_name: into_u16
+	into: u16
+	u8 u16
+	#[cfg(target_pointer_width = "16")] usize
+}
+
+decl_into_lossless! {
+	trait_name: IntoU32Lossless
+	fn_name: into_u32
+	into: u32
+	u8 u16 u32
+	#[cfg(not(target_pointer_width = "64"))] usize
+}
+
+decl_into_lossless! {
+	trait_name: IntoU64Lossless
+	fn_name: into_u64
+	into: u64
+	u8 u16 u32 u64 usize
+}
+
+decl_into_lossless! {
+	trait_name: IntoU128Lossless
+	fn_name: into_u128
+	into: u128
+	u8 u16 u32 u64 u128 usize
+}
+
+decl_into_lossless! {
+	trait_name: IntoUsizeLossless
+	fn_name: into_usize
+	into: usize
+	u8 u16
+	#[cfg(not(target_pointer_width = "16"))] u32
+	#[cfg(target_pointer_width = "64")] u64
+	usize
+}
+
+decl_into_lossless! {
+	trait_name: IntoI8Lossless
+	fn_name: into_i8
+	into: i8
+	i8
+}
+
+decl_into_lossless! {
+	trait_name: IntoI16Lossless
+	fn_name: into_i16
+	into: i16
+	u8
+	i8 i16
+	#[cfg(target_pointer_width = "16")] isize
+}
+
+decl_into_lossless! {
+	trait_name: IntoI32Lossless
+	fn_name: into_i32
+	into: i32
+	u8 u16
+	#[cfg(target_pointer_width = "16")] usize
+	i8 i16 i32
+	#[cfg(not(target_pointer_width = "64"))] isize
+}
+
+decl_into_lossless! {
+	trait_name: IntoI64Lossless
+	fn_name: into_i64
+	into: i64
+	u8 u16 u32
+	i8 i16 i32 i64 isize
+}
+
+decl_into_lossless! {
+	trait_name: IntoI128Lossless
+	fn_name: into_i128
+	into: i128
+	u8 u16 u32 u64 usize
+	i8 i16 i32 i64 i128 isize
+}
+
+decl_into_lossless! {
+	trait_name: IntoIsizeLossless
+	fn_name: into_isize
+	into: isize
+	u8
+	#[cfg(not(target_pointer_width = "16"))] u16
+	#[cfg(target_pointer_width = "64")] u32
+	i8 i16
+	#[cfg(not(target_pointer_width = "16"))] i32
+	#[cfg(target_pointer_width = "64")] i64
+	isize
+}
+
+decl_into_lossless! {
+	trait_name: IntoF32Lossless
+	fn_name: into_f32
+	into: f32
+	u8 u16
+	#[cfg(target_pointer_width = "16")] usize
+	i8 i16
+	#[cfg(target_pointer_width = "16")] isize
+	f32
+}
+
+decl_into_lossless! {
+	trait_name: IntoF64Lossless
+	fn_name: into_f64
+	into: f64
+	u8 u16 u32
+	#[cfg(not(target_pointer_width = "64"))] usize
+	i8 i16 i32
+	#[cfg(not(target_pointer_width = "64"))] isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/into_lossy.rs.html b/src/wiwi/num/into_lossy.rs.html new file mode 100644 index 000000000..84c9be4e3 --- /dev/null +++ b/src/wiwi/num/into_lossy.rs.html @@ -0,0 +1,187 @@ +into_lossy.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+
use super::Base;
+
+macro_rules! decl_into_lossy {
+	{
+		$(
+			trait: $trait_name:ident
+			fn: $fn_name:ident -> $into:ident
+		)*
+		// trait: $($trait_name:ident)*
+	} => {
+		$(
+			/// Potentially lossy conversion into
+			#[doc = concat!("`", stringify!($into), "`")]
+			///
+			/// This trait is implemented for all number types. This is not a guaranteed
+			/// lossless conversion. It's the same as an `as` cast, but in trait form.
+			pub trait $trait_name: Base {
+				/// converts `self` into
+				#[doc = concat!("`", stringify!($into), "`,")]
+				/// potentially lossily
+				fn $fn_name(self) -> $into;
+			}
+
+			decl_into_lossy! {
+				@impl
+				trait: $trait_name
+				fn: $fn_name -> $into
+
+				u8 u16 u32 u64 u128 usize
+				i8 i16 i32 i64 i128 isize
+				f32 f64
+			}
+		)*
+	};
+
+	{
+		@impl
+		trait: $trait_name:ident
+		fn: $fn_name:ident -> $into:ident
+		$($num:ident)*
+	} => {
+		$(
+			impl $trait_name for $num {
+				#[inline(always)]
+				fn $fn_name(self) -> $into { self as _ }
+			}
+		)*
+	};
+}
+
+decl_into_lossy! {
+	trait: IntoU8Lossy
+	fn: into_u8_lossy -> u8
+
+	trait: IntoU16Lossy
+	fn: into_u16_lossy -> u16
+
+	trait: IntoU32Lossy
+	fn: into_u32_lossy -> u32
+
+	trait: IntoU64Lossy
+	fn: into_u64_lossy -> u64
+
+	trait: IntoU128Lossy
+	fn: into_u128_lossy -> u128
+
+	trait: IntoUsizeLossy
+	fn: into_usize_lossy -> usize
+
+	trait: IntoI8Lossy
+	fn: into_i8_lossy -> i8
+
+	trait: IntoI16Lossy
+	fn: into_i16_lossy -> i16
+
+	trait: IntoI32Lossy
+	fn: into_i32_lossy -> i32
+
+	trait: IntoI64Lossy
+	fn: into_i64_lossy -> i64
+
+	trait: IntoI128Lossy
+	fn: into_i128_lossy -> i128
+
+	trait: IntoIsizeLossy
+	fn: into_isize_lossy -> isize
+
+	trait: IntoF32Lossy
+	fn: into_f32_lossy -> f32
+
+	trait: IntoF64Lossy
+	fn: into_f64_lossy -> f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/mod.rs.html b/src/wiwi/num/mod.rs.html new file mode 100644 index 000000000..76495c559 --- /dev/null +++ b/src/wiwi/num/mod.rs.html @@ -0,0 +1,141 @@ +mod.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+
crate::export_all_submodules! {
+	base
+	// this doesn't need to be a "base"
+	// float_base
+	signedness
+	array_conversions
+
+	from_lossless
+	into_lossless
+	from_lossy
+	into_lossy
+
+	widening
+	narrowing
+
+	count_bits
+
+	add_regular
+	add_checked
+	// add_unchecked
+	// add_strict
+	add_overflowing
+	// add_saturating
+	// add_wrapping
+	add_carrying
+
+	sub_regular
+	sub_checked
+	sub_overflowing
+	sub_borrowing
+
+	mul_regular
+	mul_checked
+	mul_unchecked
+	mul_overflowing
+	mul_widening
+
+	div_regular
+	div_checked
+	div_int
+	div_float
+	div_overflowing
+
+	rem_regular
+	rem_checked
+
+	shl_regular
+	shl_checked
+
+	shr_regular
+	shr_checked
+
+	// pow_regular
+	// pow_int
+	// pow_float
+
+	neg_regular
+	neg_checked
+
+	not_regular
+
+	and_regular
+
+	or_regular
+
+	xor_regular
+}
+
+// TODO: ilog/2/10 sum(?) product(?)
+// TODO: f16 f128
+
\ No newline at end of file diff --git a/src/wiwi/num/mul_checked.rs.html b/src/wiwi/num/mul_checked.rs.html new file mode 100644 index 000000000..07bda5b08 --- /dev/null +++ b/src/wiwi/num/mul_checked.rs.html @@ -0,0 +1,49 @@ +mul_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+
use crate::prelude::*;
+use super::Mul;
+
+pub trait MulChecked: Mul {
+	fn mul_checked(self, rhs: Self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_mul_checked {
+	{ $($num:ident)* } => {
+		$(
+			impl MulChecked for $num {
+				#[inline]
+				fn mul_checked(self, rhs: $num) -> Option<$num> {
+					$num::checked_mul(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_mul_checked! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/mul_overflowing.rs.html b/src/wiwi/num/mul_overflowing.rs.html new file mode 100644 index 000000000..092713efa --- /dev/null +++ b/src/wiwi/num/mul_overflowing.rs.html @@ -0,0 +1,61 @@ +mul_overflowing.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+
use super::Mul;
+
+/// Overflowing multiplication
+pub trait MulOverflowing: Mul {
+	/// Performs overflowing multiplication
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn mul_overflowing(self, rhs: Self) -> (Self, bool);
+}
+
+
+macro_rules! impl_num_trait_mul_overflowing {
+	{ $($num:ident)* } => {
+		$(
+			impl MulOverflowing for $num {
+				#[inline]
+				fn mul_overflowing(self, rhs: $num) -> ($num, bool) {
+					$num::overflowing_mul(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_mul_overflowing! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/mul_regular.rs.html b/src/wiwi/num/mul_regular.rs.html new file mode 100644 index 000000000..06f89f227 --- /dev/null +++ b/src/wiwi/num/mul_regular.rs.html @@ -0,0 +1,63 @@ +mul_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+
use crate::prelude::*;
+use super::Base;
+
+/// Multiplication
+pub trait Mul: Base + rust_std::ops::Mul<Self, Output = Self> {
+	/// Performs plain multiplication
+	///
+	/// It does the same as what the `*` operator does
+	///
+	/// # Examples
+	///
+	/// TODO
+	#[inline]
+	fn mul_regular(self, rhs: Self) -> Self {
+		self * rhs
+	}
+}
+
+macro_rules! impl_num_trait_mul {
+	{ $($num:ident)* } => {
+		$(
+			impl Mul for $num {}
+		)*
+	}
+}
+
+impl_num_trait_mul! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/mul_unchecked.rs.html b/src/wiwi/num/mul_unchecked.rs.html new file mode 100644 index 000000000..c366ab906 --- /dev/null +++ b/src/wiwi/num/mul_unchecked.rs.html @@ -0,0 +1,69 @@ +mul_unchecked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+
use super::Mul;
+
+/// Unchecked multiplication
+pub trait MulUnchecked: Mul {
+	/// Performs unchecked multiplication
+	///
+	/// # Safety
+	///
+	/// The result of the multiplication should not overflow.
+	///
+	/// # Examples
+	///
+	/// TODO
+	unsafe fn mul_unchecked(self, rhs: Self) -> Self;
+}
+
+macro_rules! impl_num_trait_mul_unchecked {
+	{ $($num:ident)* } => {
+		$(
+			impl MulUnchecked for $num {
+				#[inline]
+				unsafe fn mul_unchecked(self, rhs: $num) -> $num {
+					// TODO: use actually unchecked mul when it's been longer in stable
+					self * rhs
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_mul_unchecked! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/mul_widening.rs.html b/src/wiwi/num/mul_widening.rs.html new file mode 100644 index 000000000..dbe40ac1b --- /dev/null +++ b/src/wiwi/num/mul_widening.rs.html @@ -0,0 +1,189 @@ +mul_widening.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+
use super::{ Mul, MulUnchecked, Widening };
+
+/// Widening multiplication
+pub trait MulWidening: Mul {
+	/// Performs widening multiplication, returning the result in two parts:
+	/// `(low, high)`
+	///
+	/// This will never overflow
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn mul_widening(self, rhs: Self) -> (Self, Self);
+}
+
+macro_rules! impl_num_trait_mul_widening {
+	{ $num:ident $wide:ident $($next_wide:ident $($rest:ident)*)? } => {
+		impl MulWidening for $num {
+			#[inline]
+			fn mul_widening(self, rhs: $num) -> ($num, $num) {
+				// SAFETY: we widen the numbers (eg. u64 -> u128), then multiply,
+				// so they have twice the bit space to multiply into, should the
+				// original multiplication have overflowed
+				let widened = unsafe {
+					$wide::mul_unchecked(
+						<$num as Widening<$wide>>::widen(self),
+						<$num as Widening<$wide>>::widen(rhs)
+					)
+				};
+				<$num as Widening<$wide>>::split(widened)
+			}
+		}
+
+		$(impl_num_trait_mul_widening! { $wide $next_wide $($rest)* })?
+	}
+}
+
+impl_num_trait_mul_widening! {
+	u8 u16 u32 u64 u128
+}
+
+#[cfg(target_pointer_width = "64")]
+impl_num_trait_mul_widening! { usize u128 }
+
+#[cfg(target_pointer_width = "32")]
+impl_num_trait_mul_widening! { usize u64 }
+
+#[cfg(target_pointer_width = "16")]
+impl_num_trait_mul_widening! { usize u32 }
+
+// TODO: needs the big num stuff I think
+// /// Widening mul is done by splitting the u128 values into two u64's each, then
+// /// multiplying those together using wiwi's `int` feature widening multiplication
+// /// implementation
+// impl MulWidening for u128 {
+// 	#[inline]
+// 	fn mul_widening(self, rhs: u128) -> (u128, u128) {
+// 		// yeah, the widening_mul impl of int does indeed depend on MulWidening trait,
+// 		// but it won't cause an infinite recursion loop, since it calls
+// 		// int::widening_mul with [u64; 2], and MulWidening for u64 doesn't depend
+// 		// on int::widening_mul
+//
+// 		let (lhs1, lhs2) = <u128 as Narrowing<u64>>::split(self);
+// 		let (rhs1, rhs2) = <u128 as Narrowing<u64>>::split(rhs);
+//
+// 		let [[lhs1, lhs2], [rhs1, rhs2]] = crate::int::mul::mul_widening(
+// 			&[lhs1, lhs2],
+// 			&[rhs1, rhs2]
+// 		);
+//
+// 		let lhs = <u128 as Narrowing<u64>>::join(lhs1, lhs2);
+// 		let rhs = <u128 as Narrowing<u64>>::join(rhs1, rhs2);
+//
+// 		(lhs, rhs)
+// 	}
+// }
+
+#[cfg(test)]
+mod tests {
+	// use super::*;
+	//
+	// #[test]
+	// fn u128_widening_mul() {
+	// 	// effectively just testing that we split/reassemble everything properly
+	// 	// (like, in the right order etc), since widening_mul from int mod is
+	// 	// tested already
+	// 	let i1 = 0xffff_ffff_ffff_ffff_ffff_ffff_ffff_ffffu128;
+	// 	let i2 = 0x1_0000_0000u128;
+	// 	let expected_res = (0xffff_ffff_ffff_ffff_ffff_ffff_0000_0000u128, 0xffff_ffffu128);
+	//
+	// 	let res = i1.mul_widening(i2);
+	// 	assert_eq!(res, expected_res);
+	// }
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/narrowing.rs.html b/src/wiwi/num/narrowing.rs.html new file mode 100644 index 000000000..2ad3cae26 --- /dev/null +++ b/src/wiwi/num/narrowing.rs.html @@ -0,0 +1,103 @@ +narrowing.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+
use super::{ Base, Widening };
+
+/// Numbers that can be "chopped in half" to two of another number type that's
+/// half its size (the inverse of [`Widening`])
+pub trait Narrowing<Narrow>: Base {
+	/// Extend `Narrow` out into `Self` (without changing its value)
+	fn widen(narrow: Narrow) -> Self;
+
+	/// Splits `self` into its lower and upper narrow parts
+	///
+	/// The returned value is (low, high), ie. first element is the lower half,
+	/// and the second element is the upper half, ie. little endian order.
+	fn split(self) -> (Narrow, Narrow);
+
+	/// Join the narrow lower and upper parts together to get `Self`
+	fn join(n_low: Narrow, n_high: Narrow) -> Self;
+}
+
+macro_rules! impl_num_trait_narrowing {
+	{ $num:ident $narrow:ident $($next_narrow:ident $($rest:ident)*)? } => {
+		impl Narrowing<$narrow> for $num {
+			#[inline]
+			fn split(self) -> ($narrow, $narrow) {
+				<$narrow as Widening<$num>>::split(self)
+			}
+
+			#[inline(always)]
+			fn widen(narrow: $narrow) -> $num {
+				<$narrow as Widening<$num>>::widen(narrow)
+			}
+
+			#[inline]
+			fn join(n_low: $narrow, n_high: $narrow) -> $num {
+				<$narrow as Widening<$num>>::join(n_low, n_high)
+			}
+		}
+
+		$(impl_num_trait_narrowing! { $narrow $next_narrow $($rest)* })?
+	}
+}
+
+impl_num_trait_narrowing! { u128 u64 u32 u16 u8 }
+
+#[cfg(target_pointer_width = "64")]
+impl_num_trait_narrowing! { u128 usize u32 }
+
+#[cfg(target_pointer_width = "32")]
+impl_num_trait_narrowing! { u64 usize u16 }
+
+#[cfg(target_pointer_width = "16")]
+impl_num_trait_narrowing! { u32 usize u8 }
+
\ No newline at end of file diff --git a/src/wiwi/num/neg_checked.rs.html b/src/wiwi/num/neg_checked.rs.html new file mode 100644 index 000000000..e95df6482 --- /dev/null +++ b/src/wiwi/num/neg_checked.rs.html @@ -0,0 +1,53 @@ +neg_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+
use crate::prelude::*;
+use super::Base;
+
+/// Checked negation
+pub trait NegChecked: Base {
+	fn neg_checked(self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_neg_checked {
+	{ $($num:ident)* } => {
+		$(
+			impl NegChecked for $num {
+				#[inline]
+				fn neg_checked(self) -> Option<$num> {
+					$num::checked_neg(self)
+				}
+			}
+		)*
+	}
+}
+
+
+impl_num_trait_neg_checked! {
+	i8 i16 i32 i64 i128 isize
+	u8 u16 u32 u64 u128 usize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/neg_regular.rs.html b/src/wiwi/num/neg_regular.rs.html new file mode 100644 index 000000000..cad2468f2 --- /dev/null +++ b/src/wiwi/num/neg_regular.rs.html @@ -0,0 +1,47 @@ +neg_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+
use crate::prelude::*;
+use super::Base;
+
+/// Negation
+pub trait Neg: Base + rust_std::ops::Neg<Output = Self> {
+	#[inline]
+	fn neg_regular(self) -> Self {
+		-self
+	}
+}
+
+macro_rules! impl_num_trait_neg {
+	{ $($num:ident)* } => {
+		$(
+			impl Neg for $num {}
+		)*
+	}
+}
+
+impl_num_trait_neg! {
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/not_regular.rs.html b/src/wiwi/num/not_regular.rs.html new file mode 100644 index 000000000..553407570 --- /dev/null +++ b/src/wiwi/num/not_regular.rs.html @@ -0,0 +1,47 @@ +not_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+
use crate::prelude::*;
+use super::Base;
+
+/// Bitwise NOT
+pub trait Not: Base + rust_std::ops::Not<Output = Self> {
+	#[inline]
+	fn not_regular(self) -> Self {
+		!self
+	}
+}
+
+macro_rules! impl_num_trait_not {
+	{ $($num:ident)* } => {
+		$(
+			impl Not for $num {}
+		)*
+	}
+}
+
+impl_num_trait_not! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/or_regular.rs.html b/src/wiwi/num/or_regular.rs.html new file mode 100644 index 000000000..d224b2754 --- /dev/null +++ b/src/wiwi/num/or_regular.rs.html @@ -0,0 +1,47 @@ +or_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+
use crate::prelude::*;
+use super::Base;
+
+/// Bitwise OR
+pub trait Or: Base + rust_std::ops::BitOr<Self, Output = Self> {
+	#[inline]
+	fn or_regular(self, rhs: Self) -> Self {
+		self | rhs
+	}
+}
+
+macro_rules! impl_num_trait_or {
+	{ $($num:ident)* } => {
+		$(
+			impl Or for $num {}
+		)*
+	}
+}
+
+impl_num_trait_or! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/rem_checked.rs.html b/src/wiwi/num/rem_checked.rs.html new file mode 100644 index 000000000..93abfde06 --- /dev/null +++ b/src/wiwi/num/rem_checked.rs.html @@ -0,0 +1,49 @@ +rem_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+
use crate::prelude::*;
+use super::Rem;
+
+pub trait RemChecked: Rem {
+	fn rem_checked(self, rhs: Self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_rem_checked {
+	{ $($num:ident)* } => {
+		$(
+			impl RemChecked for $num {
+				#[inline]
+				fn rem_checked(self, rhs: $num) -> Option<$num> {
+					$num::checked_rem(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_rem_checked! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/rem_regular.rs.html b/src/wiwi/num/rem_regular.rs.html new file mode 100644 index 000000000..e1a3f180f --- /dev/null +++ b/src/wiwi/num/rem_regular.rs.html @@ -0,0 +1,49 @@ +rem_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+
use crate::prelude::*;
+use super::Base;
+
+/// Modulo (the remainder operator)
+pub trait Rem: Base + rust_std::ops::Rem<Self, Output = Self> {
+	#[inline]
+	fn rem_regular(self, rhs: Self) -> Self {
+		self % rhs
+	}
+}
+
+macro_rules! impl_num_trait_rem {
+	{ $($num:ident)* } => {
+		$(
+			impl Rem for $num {}
+		)*
+	}
+}
+
+impl_num_trait_rem! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/shl_checked.rs.html b/src/wiwi/num/shl_checked.rs.html new file mode 100644 index 000000000..81cb9f70e --- /dev/null +++ b/src/wiwi/num/shl_checked.rs.html @@ -0,0 +1,65 @@ +shl_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+
use crate::prelude::*;
+use super::{ Base, Shl };
+
+/// Checked left shift
+pub trait ShlChecked: Shl {
+	fn shl_checked(self, rhs: Self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_shl {
+	{ $($num:ident)* } => {
+		$(
+			impl ShlChecked for $num {
+				#[inline]
+				fn shl_checked(self, rhs: $num) -> Option<$num> {
+					// std uses u32, but we have ::BITS that is Self, so it's
+					// probably more efficient to reimplement and not cast for std
+					// TODO: unchecked shl
+					if rhs < <$num as Base>::BITS {
+						Some(self.shl_regular(rhs))
+					} else {
+						None
+					}
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_shl! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/shl_regular.rs.html b/src/wiwi/num/shl_regular.rs.html new file mode 100644 index 000000000..6e5bd22a9 --- /dev/null +++ b/src/wiwi/num/shl_regular.rs.html @@ -0,0 +1,47 @@ +shl_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+
use crate::prelude::*;
+use super::Base;
+
+/// Left shift
+pub trait Shl: Base + rust_std::ops::Shl<Self, Output = Self> {
+	#[inline]
+	fn shl_regular(self, rhs: Self) -> Self {
+		self << rhs
+	}
+}
+
+macro_rules! impl_num_trait_shl {
+	{ $($num:ident)* } => {
+		$(
+			impl Shl for $num {}
+		)*
+	}
+}
+
+impl_num_trait_shl! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/shr_checked.rs.html b/src/wiwi/num/shr_checked.rs.html new file mode 100644 index 000000000..ab16b77b3 --- /dev/null +++ b/src/wiwi/num/shr_checked.rs.html @@ -0,0 +1,61 @@ +shr_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+
use crate::prelude::*;
+use super::{ Base, Shr };
+
+/// Checked right shift
+pub trait ShrChecked: Shr {
+	fn shr_checked(self, rhs: Self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_shr {
+	{ $($num:ident)* } => {
+		$(
+			impl ShrChecked for $num {
+				#[inline]
+				fn shr_checked(self, rhs: $num) -> Option<$num> {
+					if rhs < <$num as Base>::BITS {
+						// TODO: use unchecked
+						Some(self.shr_regular(rhs))
+					} else {
+						None
+					}
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_shr! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/shr_regular.rs.html b/src/wiwi/num/shr_regular.rs.html new file mode 100644 index 000000000..a82cd1746 --- /dev/null +++ b/src/wiwi/num/shr_regular.rs.html @@ -0,0 +1,47 @@ +shr_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+
use crate::prelude::*;
+use super::Base;
+
+/// Right shift
+pub trait Shr: Base + rust_std::ops::Shr<Self, Output = Self> {
+	#[inline]
+	fn shr_regular(self, rhs: Self) -> Self {
+		self >> rhs
+	}
+}
+
+macro_rules! impl_num_trait_shr {
+	{ $($num:ident)* } => {
+		$(
+			impl Shr for $num {}
+		)*
+	}
+}
+
+impl_num_trait_shr! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/signedness.rs.html b/src/wiwi/num/signedness.rs.html new file mode 100644 index 000000000..b14266eba --- /dev/null +++ b/src/wiwi/num/signedness.rs.html @@ -0,0 +1,81 @@ +signedness.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+
use super::Base;
+
+/// Signed integers with an unsigned variant
+pub trait IntSigned: Base {
+	type Unsigned: IntUnsigned<Signed = Self>;
+
+	fn cast_unsigned(self) -> Self::Unsigned;
+}
+
+/// Unsigned integers with a signed variant
+pub trait IntUnsigned: Base {
+	type Signed: IntSigned<Unsigned = Self>;
+
+	fn cast_signed(self) -> Self::Signed;
+}
+
+macro_rules! impl_signed {
+	{ $signed:ident $unsigned:ident } => {
+		impl IntSigned for $signed {
+			type Unsigned = $unsigned;
+
+			#[inline(always)]
+			fn cast_unsigned(self) -> $unsigned { self as _ }
+		}
+
+		impl IntUnsigned for $unsigned {
+			type Signed = $signed;
+
+			#[inline(always)]
+			fn cast_signed(self) -> $signed { self as _ }
+		}
+	}
+}
+
+impl_signed! { i8 u8 }
+impl_signed! { i16 u16 }
+impl_signed! { i32 u32 }
+impl_signed! { i64 u64 }
+impl_signed! { i128 u128 }
+impl_signed! { isize usize }
+
\ No newline at end of file diff --git a/src/wiwi/num/sub_borrowing.rs.html b/src/wiwi/num/sub_borrowing.rs.html new file mode 100644 index 000000000..af3d03e55 --- /dev/null +++ b/src/wiwi/num/sub_borrowing.rs.html @@ -0,0 +1,61 @@ +sub_borrowing.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+
use super::SubOverflowing;
+
+/// Borrowing subtraction
+pub trait SubBorrowing: SubOverflowing {
+	/// Performs borrowing subtraction
+	///
+	/// # Examples
+	///
+	/// TODO
+	#[inline]
+	fn sub_borrowing(self, rhs: Self, borrow: bool) -> (Self, bool) {
+		let (res, borrow1) = self.sub_overflowing(rhs);
+		let (res, borrow2) = res.sub_overflowing(Self::from_bool(borrow));
+		(res, borrow1 || borrow2)
+	}
+}
+
+macro_rules! impl_num_trait_sub_borrowing {
+	{ $($num:ident)* } => {
+		$(
+			impl SubBorrowing for $num {}
+		)*
+	}
+}
+
+impl_num_trait_sub_borrowing! {
+	u8 u16 u32 u64 u128 usize
+	// TODO: look in std, it's borrowing impl is different for signed ints
+	// i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/sub_checked.rs.html b/src/wiwi/num/sub_checked.rs.html new file mode 100644 index 000000000..616054de3 --- /dev/null +++ b/src/wiwi/num/sub_checked.rs.html @@ -0,0 +1,49 @@ +sub_checked.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+
use crate::prelude::*;
+use super::Sub;
+
+pub trait SubChecked: Sub {
+	fn sub_checked(self, rhs: Self) -> Option<Self>;
+}
+
+macro_rules! impl_num_trait_sub_checked {
+	{ $($num:ident)* } => {
+		$(
+			impl SubChecked for $num {
+				#[inline]
+				fn sub_checked(self, rhs: $num) -> Option<$num> {
+					$num::checked_sub(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_sub_checked! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/sub_overflowing.rs.html b/src/wiwi/num/sub_overflowing.rs.html new file mode 100644 index 000000000..8c1358ab4 --- /dev/null +++ b/src/wiwi/num/sub_overflowing.rs.html @@ -0,0 +1,61 @@ +sub_overflowing.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+
use super::Sub;
+
+/// Overflowing subtraction
+pub trait SubOverflowing: Sub {
+	/// Performs overflowing subtraction
+	///
+	/// # Examples
+	///
+	/// TODO
+	fn sub_overflowing(self, rhs: Self) -> (Self, bool);
+}
+
+
+macro_rules! impl_num_trait_sub_overflowing {
+	{ $($num:ident)* } => {
+		$(
+			impl SubOverflowing for $num {
+				#[inline]
+				fn sub_overflowing(self, rhs: $num) -> ($num, bool) {
+					$num::overflowing_sub(self, rhs)
+				}
+			}
+		)*
+	}
+}
+
+impl_num_trait_sub_overflowing! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/sub_regular.rs.html b/src/wiwi/num/sub_regular.rs.html new file mode 100644 index 000000000..18872a319 --- /dev/null +++ b/src/wiwi/num/sub_regular.rs.html @@ -0,0 +1,63 @@ +sub_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+
use crate::prelude::*;
+use super::Base;
+
+/// Subtraction
+pub trait Sub: Base + rust_std::ops::Sub<Self, Output = Self> {
+	/// Performs plain subtraction
+	///
+	/// It does the same as what the `-` operator does
+	///
+	/// # Examples
+	///
+	/// TODO
+	#[inline]
+	fn sub_regular(self, rhs: Self) -> Self {
+		self - rhs
+	}
+}
+
+macro_rules! impl_num_trait_sub {
+	{ $($num:ident)* } => {
+		$(
+			impl Sub for $num {}
+		)*
+	}
+}
+
+impl_num_trait_sub! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+	f32 f64
+}
+
\ No newline at end of file diff --git a/src/wiwi/num/widening.rs.html b/src/wiwi/num/widening.rs.html new file mode 100644 index 000000000..98652570e --- /dev/null +++ b/src/wiwi/num/widening.rs.html @@ -0,0 +1,101 @@ +widening.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+
use super::Base;
+
+/// Numbers that can be "widened" to another number type that's double its size
+pub trait Widening<Wide>: Base {
+	/// Extend `self` out into the widened type (without changing its value)
+	fn widen(self) -> Wide;
+
+	/// Splits the wide integer into its lower and upper `Self` parts
+	///
+	/// The returned value is (low, high), ie. first element is the lower half,
+	/// and the second element is the upper half, ie. little endian order.
+	fn split(wide: Wide) -> (Self, Self);
+
+	/// Joins `self` with an upper value, to give a widened value
+	fn join(self, n_high: Self) -> Wide;
+}
+
+macro_rules! impl_num_trait_widening {
+	{ $num:ident $wide:ident $($next_wide:ident $($rest:ident)*)? } => {
+		impl Widening<$wide> for $num {
+			#[inline(always)]
+			fn widen(self) -> $wide { self as _ }
+
+			#[inline]
+			fn split(wide: $wide) -> ($num, $num) {
+				(wide as _, (wide >> <$num as Base>::BITS) as _)
+			}
+
+			#[inline]
+			fn join(self, n_high: $num) -> $wide {
+				let l = <$num as Widening<$wide>>::widen(self);
+				let h = <$num as Widening<$wide>>::widen(n_high);
+				l | (h << <$num as Base>::BITS)
+			}
+		}
+
+		$(impl_num_trait_widening! { $wide $next_wide $($rest)* })?
+	}
+}
+
+impl_num_trait_widening! { u8 u16 u32 u64 u128 }
+
+#[cfg(target_pointer_width = "64")]
+impl_num_trait_widening! { u32 usize u128 }
+
+#[cfg(target_pointer_width = "32")]
+impl_num_trait_widening! { u16 usize u64 }
+
+#[cfg(target_pointer_width = "16")]
+impl_num_trait_widening! { u8 usize u32 }
+
\ No newline at end of file diff --git a/src/wiwi/num/xor_regular.rs.html b/src/wiwi/num/xor_regular.rs.html new file mode 100644 index 000000000..5b5dc4fd0 --- /dev/null +++ b/src/wiwi/num/xor_regular.rs.html @@ -0,0 +1,47 @@ +xor_regular.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+
use crate::prelude::*;
+use super::Base;
+
+/// Bitwise XOR
+pub trait Xor: Base + rust_std::ops::BitXor<Self, Output = Self> {
+	#[inline]
+	fn xor_regular(self, rhs: Self) -> Self {
+		self ^ rhs
+	}
+}
+
+macro_rules! impl_num_trait_xor {
+	{ $($num:ident)* } => {
+		$(
+			impl Xor for $num {}
+		)*
+	}
+}
+
+impl_num_trait_xor! {
+	u8 u16 u32 u64 u128 usize
+	i8 i16 i32 i64 i128 isize
+}
+
\ No newline at end of file diff --git a/src/wiwi/prelude.rs.html b/src/wiwi/prelude.rs.html index 7869f8fcf..df5f98fa3 100644 --- a/src/wiwi/prelude.rs.html +++ b/src/wiwi/prelude.rs.html @@ -101,9 +101,29 @@ 101 102 103 +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119
//! Prelude module, exporting commonly-used items
 
-use crate::rust_std;
+pub use crate::{
+	rust_alloc,
+	rust_core,
+	rust_std
+};
 
 pub use rust_std::{
 	assert,
@@ -126,12 +146,20 @@
 	column,
 	format,
 	format_args,
-	stringify
+	stringify,
+	vec
 };
 pub use rust_std::borrow::{
 	Cow,
 	ToOwned
 };
+pub use rust_std::clone::Clone;
+pub use rust_std::cmp::{
+	PartialEq,
+	Eq,
+	PartialOrd,
+	Ord
+};
 pub use rust_std::convert::{
 	From,
 	Into,
@@ -141,6 +169,10 @@
 	AsRef,
 	identity
 };
+pub use rust_std::fmt::{
+	Debug,
+	Display
+};
 pub use rust_std::future::{
 	Future,
 	IntoFuture
diff --git a/src/wiwi/util/mod.rs.html b/src/wiwi/util/mod.rs.html
new file mode 100644
index 000000000..ecdf49897
--- /dev/null
+++ b/src/wiwi/util/mod.rs.html
@@ -0,0 +1,29 @@
+mod.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+
/// Convenience macro that declares many private submodules, and glob reexports
+/// all items from them
+///
+/// See [module docs](self) for more info
+#[macro_export]
+macro_rules! export_all_submodules {
+	{ $($mod:ident)* } => {
+		$(
+			mod $mod;
+			pub use self::$mod::*;
+		)*
+	}
+}
+pub use export_all_submodules;
+
\ No newline at end of file diff --git a/src/wiwi/util_unsafe/encoding_utils.rs.html b/src/wiwi/util_unsafe/encoding_utils.rs.html new file mode 100644 index 000000000..ec3bad40f --- /dev/null +++ b/src/wiwi/util_unsafe/encoding_utils.rs.html @@ -0,0 +1,675 @@ +encoding_utils.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+162
+163
+164
+165
+166
+167
+168
+169
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+193
+194
+195
+196
+197
+198
+199
+200
+201
+202
+203
+204
+205
+206
+207
+208
+209
+210
+211
+212
+213
+214
+215
+216
+217
+218
+219
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
+235
+236
+237
+238
+239
+240
+241
+242
+243
+244
+245
+246
+247
+248
+249
+250
+251
+252
+253
+254
+255
+256
+257
+258
+259
+260
+261
+262
+263
+264
+265
+266
+267
+268
+269
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+324
+325
+326
+327
+328
+329
+330
+331
+332
+333
+334
+335
+336
+337
+
use crate::prelude::*;
+use crate::rust_std::{ ptr, slice };
+
+// TODO: I don't think this file structure is finalised,
+// maybe move each struct to its own file, or all in same file? I dunno
+
+/// Helper for unsafe buffer operations, when the _exact_ total capacity needed
+/// is known ahead of time and requested up front
+///
+/// Calling [`Vec::extend_from_slice`] on a vec would be the equivalent safe
+/// version of this struct. The reason this struct exists then, is because
+/// anything that pushes to a vec checks to make sure there is enough capacity.
+/// That cost is probably negligible, but added up could be noticeable
+/// (especially in hot loops), and if you can guarantee you know / can calculate
+/// the exact amount you need, then allocate it all up front, you no longer need
+/// those checks, so why even bother running those checks?
+///
+/// With debug assertions enabled, this struct will keep track of the amount of
+/// bytes written and assert unsafe preconditions, like not overflowing the
+/// allocated capacity, as well as having all preallocated capacity filled.
+/// However, with debug assertions off (release mode has it off by default),
+/// these checks are not run (the `bytes_written` field that tracks it is
+/// gated behind `cfg(debug_assertions)`, so doesn't even exist!), and it becomes
+/// essentially just a wrapper around a vec, its ptr, raw ptr copying operations,
+/// and a method that unsafely sets the len of the vec before unwrapping it.
+///
+/// Creating one of these structs is not unsafe, but you can't
+/// really do much with it in safe only code :p
+pub struct UnsafeBufWriteGuard {
+	/// The [`Vec`] that's being written to
+	///
+	/// Note: if `self` is prematurely dropped, this vec will be dropped by it's
+	/// normal drop implementation. Additionally, `u8` is plain old data, so
+	/// doesn't have any special drop behaviour (it's just bytes), so it's safe
+	/// that the length is still set to 0.
+	vec: Vec<u8>,
+	/// The pointer into the vec
+	///
+	/// This pointer is set to the start of the `vec` upon creation, and is
+	/// shifted forward with every write operation to it.
+	///
+	/// This pointer is guaranteed not to move throughout the lifespan of `self`,
+	/// because as far as the vec itself is aware, we request it to allocate some
+	/// memory, it gives us at least that much, then we are not touching it, until
+	/// `self` gets unwrapped using [`into_full_vec`](Self::into_full_vec). After
+	/// that, we will never use this pointer again. We are then (unsafely) setting
+	/// the len of the vec to the initially requested amount of capacity, which
+	/// the caller of that method promises is initialised, since it is a safety
+	/// invariant of [`into_full_vec`]. What happens to the vec after we hand it's
+	/// ownership back to caller, is no longer on us to handle. The pointer has
+	/// been dropped, and our job is done.
+	ptr: *mut u8,
+	/// The amount of capacity that the caller initially requested
+	///
+	/// # Safety
+	///
+	/// Previously, in the unwrapping operation, we used the value returned by
+	/// [`Vec::capacity`] to set the len of the vec. This is unsound, since
+	/// [`Vec::with_capacity`] is allowed to over allocate (but not under, so
+	/// we're safe there). Because of this fact, we must store the initial
+	/// requested capacity (that the caller promises to fill before taking the vec),
+	/// and use that value to set the len instead.
+	requested_capacity: usize,
+	/// In debug mode, tracks the amount of bytes written, and uses it to perform
+	/// assertions on preconditions. In release mode, this is not present
+	///
+	/// Because this value is not present, memory usage is theoretically reduced
+	/// by a word size. Unless you're relying on the size of `Self`, and/or having
+	/// this struct as a field of another struct where size matters, this field
+	/// not being present in release mode should not be an issue.
+	///
+	/// # Safety
+	///
+	/// You shouldn't be relying on the layout of this struct anyways.
+	#[cfg(debug_assertions)]
+	bytes_written: usize
+}
+
+impl UnsafeBufWriteGuard {
+	/// Create a new [`UnsafeBufWriteGuard`] with specified capacity
+	///
+	/// The amount of capacity specified must be _exactly_ calculated, and _all_
+	/// capacity allocated here _must_ be initialised before calling
+	/// [`into_full_vec`](Self::into_full_vec). See that function for more details
+	/// and safety notes.
+	///
+	/// The act of creating one of these structs is not unsafe, but you can't
+	/// really do much with it in safe only code :p
+	#[inline]
+	pub fn with_capacity(capacity: usize) -> Self {
+		let mut vec = Vec::new();
+		vec.reserve_exact(capacity);
+
+		debug_assert!(vec.capacity() >= capacity);
+
+		let ptr = vec.as_mut_ptr();
+
+		Self {
+			vec,
+			ptr,
+			requested_capacity: capacity,
+			#[cfg(debug_assertions)]
+			bytes_written: 0
+		}
+	}
+
+	/// Writes an amount of bytes into `self`, determined by const param `N`
+	///
+	/// This does the same as [`write_bytes`](Self::write_bytes) in functionality,
+	/// but maybe the const generic param `N` will enable more optimisations?
+	///
+	/// # Safety
+	///
+	/// You must not write, in total, more than the amount of capacity that you
+	/// requested when creating `self`.
+	#[inline]
+	pub unsafe fn write_bytes_const<const N: usize>(&mut self, src: *const u8) {
+		#[cfg(debug_assertions)] {
+			// this has to be behind cfg because self.bytes_written
+			// doesn't exist in not(debug_assertions)
+			self.bytes_written += N;
+			assert!(self.bytes_written <= self.requested_capacity)
+		}
+
+		// SAFETY: caller promises not to write more bytes than they requested
+		// up front, which is what we also requested from the vec
+		unsafe { ptr::copy_nonoverlapping(src, self.ptr, N) }
+
+		// SAFETY: caller promises not to write more bytes than they requested
+		// up front. In the case of this invocation writing the exact amount to
+		// fill the remaining bytes, the pointer could be set to the end of the
+		// allocation, which is valid
+		unsafe { self.ptr = self.ptr.add(N) }
+	}
+
+	/// Writes an amount of bytes into `self`
+	///
+	/// # Safety
+	///
+	/// You must not write, in total, more than the amount of capacity that you
+	/// requested when creating `self`.
+	#[inline]
+	pub unsafe fn write_bytes(&mut self, src: *const u8, n: usize) {
+		#[cfg(debug_assertions)] {
+			// this has to be behind cfg because self.bytes_written
+			// doesn't exist in not(debug_assertions)
+			self.bytes_written += n;
+			assert!(self.bytes_written <= self.requested_capacity)
+		}
+
+		// SAFETY: caller promises not to write more bytes than they requested
+		// up front, which is what we also requested from the vec
+		unsafe { ptr::copy_nonoverlapping(src, self.ptr, n) }
+
+		// SAFETY: caller promises not to write more bytes than they requested
+		// up front. In the case of this invocation writing the exact amount to
+		// fill the remaining bytes, the pointer could be set to the end of the
+		// allocation, which is valid
+		unsafe { self.ptr = self.ptr.add(n) }
+	}
+
+	/// Get the pointer pointing to the start of the uninitialised memory in the
+	/// buffer (to operate on the raw pointer directly)
+	///
+	/// If/when you are done writing to the pointer, you should call
+	/// [`add_byte_count`](Self::add_byte_count). This offsets the internally
+	/// stored pointer by that amount. If you don't, calling any other write
+	/// function on this struct will clobber over what you just wrote.
+	///
+	///
+	/// # Safety
+	///
+	/// As with the rest of the write functions, you must not write, in total,
+	/// more than the amount of capacity that you requested when creating `self`.
+	/// Additionally, you should call [`add_byte_count`](Self::add_byte_count).
+	///
+	/// This function is technically safe to call if you don't do anything with
+	/// the returned pointer. All pointer operations are unsafe already. `std`
+	/// has many `as_ptr` and `as_mut_ptr` APIs that aren't `unsafe`, but still,
+	/// this function is conservatively marked unsafe. Even though it probably
+	/// doesn't need to be.
+	#[inline]
+	pub unsafe fn as_mut_ptr(&mut self) -> *mut u8 {
+		self.ptr
+	}
+
+	/// Declare that `n` bytes have been written
+	///
+	/// Call this after writing to the raw pointer (which you can get using
+	/// [`as_mut_ptr`](Self::as_mut_ptr)), ensuring the pointer stored internally
+	/// is still going to point at the start of the uninitialised chunk (or the end).
+	///
+	/// # Safety
+	///
+	/// You must have written the amount of bytes that you say you have written,
+	/// and that you have not written too many bytes.
+	///
+	/// Calling this function without writing to the amount of memory you say you
+	/// did will leave uninitialised memory "holes", which will cause undefined
+	/// behaviour when you unwrap the vec.
+	#[inline]
+	pub unsafe fn add_byte_count(&mut self, n: usize) {
+		#[cfg(debug_assertions)] {
+			// this has to be behind cfg because self.bytes_written
+			// doesn't exist in not(debug_assertions)
+			self.bytes_written += n;
+			assert!(self.bytes_written <= self.requested_capacity)
+		}
+
+		// SAFETY: caller promises to have written the amount
+		// of bytes that they say they did
+		unsafe { self.ptr = self.ptr.add(n) }
+	}
+
+	/// Declare that the amount of bytes requested up front, has been written to,
+	/// then unwraps and returns the internal vec
+	///
+	/// # Safety
+	///
+	/// You must have written to all the bytes that you have requested up front.
+	/// Calling this function without doing so will leave a "tail" of uninitialised
+	/// bytes in the vec, causing undefined behaviour.
+	#[inline]
+	pub unsafe fn into_full_vec(mut self) -> Vec<u8> {
+		#[cfg(debug_assertions)] {
+			// this has to be behind cfg because self.bytes_written
+			// doesn't exist in not(debug_assertions)
+			assert!(self.bytes_written == self.requested_capacity);
+		}
+
+		// SAFETY: caller promises to have written to all
+		// the capacity they requested
+		unsafe { self.vec.set_len(self.requested_capacity) }
+
+		self.vec
+	}
+}
+
+/// Utility to emit fixed size (const) chunks, in an unchecked manner, from
+/// a slice
+///
+/// Contains debug assertions to assert preconditions.
+// I cannot remember if I rely on this being repr(transparent) anywhere
+#[repr(transparent)]
+pub struct ChunkedSlice<'h, const N: usize> {
+	/// The slice to pull bytes from
+	bytes: &'h [u8]
+}
+
+impl<'h, const N: usize> ChunkedSlice<'h, N> {
+	/// Creates a new [`ChunkedSlice`] instance from the given
+	/// borrowed, byte slice
+	#[inline]
+	pub fn new(bytes: &'h [u8]) -> Self {
+		Self { bytes }
+	}
+
+	/// Removes, without checking, `N` bytes off the front of the internal slice,
+	/// then returns a reference to that slice
+	///
+	/// I believe the reason this function returns a reference rather than an
+	/// array by value is performance? if I remember correctly, changing it to
+	/// return the array by value caused a quite heavy performance regression
+	/// in z85 encode speed. My not-very-educated guess is the alignment? since
+	/// references are aligned to word size, which the CPU likes, while the byte
+	/// array is only aligned to 1 ~vt
+	///
+	/// # Safety
+	///
+	/// There must be at least `N` bytes left, otherwise a reference to invalid
+	/// memory will be created, causing undefined behaviour.
+	#[inline]
+	pub unsafe fn next_frame_unchecked(&mut self) -> &'h [u8; N] {
+		debug_assert!(self.bytes.len() >= N, "enough bytes left to form another whole frame");
+
+		let self_ptr = self.bytes.as_ptr();
+		let self_len = self.bytes.len();
+
+		// SAFETY: caller asserts there is at least `N` bytes left,
+		// so this reference will point to valid memory
+		let new_slice = unsafe { &*self_ptr.cast::<[u8; N]>() };
+
+		// SAFETY: caller asserts there is at least `N` bytes left,
+		// so this ptr will still point in range
+		let self_ptr = unsafe { self_ptr.add(N) };
+
+		// SAFETY: caller asserts there is at least `N` bytes left,
+		// so the subtraction won't overflow (pointer is offset above)
+		self.bytes = unsafe { slice::from_raw_parts(self_ptr, self_len - N) };
+
+		new_slice
+	}
+
+	/// Consumes self, takes the remainder slice, copies it into a temporary
+	/// buffer of length `N`, and calls the provided closure with the temporary
+	/// buffer
+	///
+	/// This does _not_ indicate anywhere how many were padding bytes vs actual
+	/// data. In the few places that this utility struct is used, the remainder
+	/// has been calculated already, so the returned value goes unused.
+	///
+	/// # Safety
+	///
+	/// There must be strictly N or less bytes left, otherwise invalid memory
+	/// (past the end of the temporary buffer created) will be written to.
+	#[inline]
+	pub unsafe fn with_remainder_unchecked<F>(self, f: F)
+	where
+		F: FnOnce(&[u8; N])
+	{
+		let len = self.bytes.len();
+
+		debug_assert!(len < N, "(strictly) less than a whole frame remaining");
+
+		// temp buffer of correct length, to add padding
+		let mut slice = [0u8; N];
+
+		// ptr to self
+		let self_ptr = self.bytes.as_ptr();
+		// ptr to temp buffer
+		let slice_ptr = slice.as_mut_ptr();
+
+		// SAFETY: caller promises that there is strictly less than N bytes
+		// remaining, so the amount of data copied will always be less than
+		// the temp buffer length. `len` comes from the same slice we are
+		// copying from, so we must be able to copy that much over
+		unsafe { ptr::copy_nonoverlapping(self_ptr, slice_ptr, len) }
+
+		f(&slice);
+	}
+
+	/// Returns the slice left in `self`
+	#[inline]
+	pub fn to_slice(&self) -> &'h [u8] {
+		self.bytes
+	}
+}
+
\ No newline at end of file diff --git a/src/wiwi/util_unsafe/mod.rs.html b/src/wiwi/util_unsafe/mod.rs.html new file mode 100644 index 000000000..9ffac1dc6 --- /dev/null +++ b/src/wiwi/util_unsafe/mod.rs.html @@ -0,0 +1,5 @@ +mod.rs - source
1
+2
+
mod encoding_utils;
+pub use encoding_utils::{ ChunkedSlice, UnsafeBufWriteGuard };
+
\ No newline at end of file diff --git a/trait.impl/core/cmp/trait.PartialEq.js b/trait.impl/core/cmp/trait.PartialEq.js index d93a52e88..ef4edfd52 100644 --- a/trait.impl/core/cmp/trait.PartialEq.js +++ b/trait.impl/core/cmp/trait.PartialEq.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl PartialEq for DecodeError"]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[282]} \ No newline at end of file diff --git a/trait.impl/core/error/trait.Error.js b/trait.impl/core/error/trait.Error.js index d93a52e88..19e3a1e8f 100644 --- a/trait.impl/core/error/trait.Error.js +++ b/trait.impl/core/error/trait.Error.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl Error for DecodeError"],["impl Error for DecodeError"]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[538]} \ No newline at end of file diff --git a/trait.impl/core/fmt/trait.Debug.js b/trait.impl/core/fmt/trait.Debug.js index d93a52e88..e32bfbbfc 100644 --- a/trait.impl/core/fmt/trait.Debug.js +++ b/trait.impl/core/fmt/trait.Debug.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl Debug for DecodeError"],["impl Debug for DecodeError"]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[530]} \ No newline at end of file diff --git a/trait.impl/core/fmt/trait.Display.js b/trait.impl/core/fmt/trait.Display.js index d93a52e88..a7ab373a1 100644 --- a/trait.impl/core/fmt/trait.Display.js +++ b/trait.impl/core/fmt/trait.Display.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl Display for DecodeError"],["impl Display for DecodeError"]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[542]} \ No newline at end of file diff --git a/trait.impl/core/marker/trait.Freeze.js b/trait.impl/core/marker/trait.Freeze.js index d93a52e88..92ad6fb80 100644 --- a/trait.impl/core/marker/trait.Freeze.js +++ b/trait.impl/core/marker/trait.Freeze.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl Freeze for DecodeError",1,["wiwi::encoding::hex::DecodeError"]],["impl Freeze for DecodeError",1,["wiwi::encoding::z85::DecodeError"]],["impl Freeze for EncodedReprInfo",1,["wiwi::encoding::z85::EncodedReprInfo"]],["impl Freeze for UnsafeBufWriteGuard",1,["wiwi::util_unsafe::encoding_utils::UnsafeBufWriteGuard"]],["impl<'h, const N: usize> Freeze for ChunkedSlice<'h, N>",1,["wiwi::util_unsafe::encoding_utils::ChunkedSlice"]]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[1776]} \ No newline at end of file diff --git a/trait.impl/core/marker/trait.Send.js b/trait.impl/core/marker/trait.Send.js index d93a52e88..881e98ea2 100644 --- a/trait.impl/core/marker/trait.Send.js +++ b/trait.impl/core/marker/trait.Send.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl !Send for UnsafeBufWriteGuard",1,["wiwi::util_unsafe::encoding_utils::UnsafeBufWriteGuard"]],["impl Send for DecodeError",1,["wiwi::encoding::hex::DecodeError"]],["impl Send for DecodeError",1,["wiwi::encoding::z85::DecodeError"]],["impl Send for EncodedReprInfo",1,["wiwi::encoding::z85::EncodedReprInfo"]],["impl<'h, const N: usize> Send for ChunkedSlice<'h, N>",1,["wiwi::util_unsafe::encoding_utils::ChunkedSlice"]]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[1747]} \ No newline at end of file diff --git a/trait.impl/core/marker/trait.StructuralPartialEq.js b/trait.impl/core/marker/trait.StructuralPartialEq.js index d93a52e88..ba2bb9edf 100644 --- a/trait.impl/core/marker/trait.StructuralPartialEq.js +++ b/trait.impl/core/marker/trait.StructuralPartialEq.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl StructuralPartialEq for DecodeError"]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[318]} \ No newline at end of file diff --git a/trait.impl/core/marker/trait.Sync.js b/trait.impl/core/marker/trait.Sync.js index d93a52e88..09866d78f 100644 --- a/trait.impl/core/marker/trait.Sync.js +++ b/trait.impl/core/marker/trait.Sync.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl !Sync for UnsafeBufWriteGuard",1,["wiwi::util_unsafe::encoding_utils::UnsafeBufWriteGuard"]],["impl Sync for DecodeError",1,["wiwi::encoding::hex::DecodeError"]],["impl Sync for DecodeError",1,["wiwi::encoding::z85::DecodeError"]],["impl Sync for EncodedReprInfo",1,["wiwi::encoding::z85::EncodedReprInfo"]],["impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>",1,["wiwi::util_unsafe::encoding_utils::ChunkedSlice"]]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[1747]} \ No newline at end of file diff --git a/trait.impl/core/marker/trait.Unpin.js b/trait.impl/core/marker/trait.Unpin.js index d93a52e88..e80c41466 100644 --- a/trait.impl/core/marker/trait.Unpin.js +++ b/trait.impl/core/marker/trait.Unpin.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl Unpin for DecodeError",1,["wiwi::encoding::hex::DecodeError"]],["impl Unpin for DecodeError",1,["wiwi::encoding::z85::DecodeError"]],["impl Unpin for EncodedReprInfo",1,["wiwi::encoding::z85::EncodedReprInfo"]],["impl Unpin for UnsafeBufWriteGuard",1,["wiwi::util_unsafe::encoding_utils::UnsafeBufWriteGuard"]],["impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>",1,["wiwi::util_unsafe::encoding_utils::ChunkedSlice"]]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[1761]} \ No newline at end of file diff --git a/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js b/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js index d93a52e88..173111b21 100644 --- a/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js +++ b/trait.impl/core/panic/unwind_safe/trait.RefUnwindSafe.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl RefUnwindSafe for DecodeError",1,["wiwi::encoding::hex::DecodeError"]],["impl RefUnwindSafe for DecodeError",1,["wiwi::encoding::z85::DecodeError"]],["impl RefUnwindSafe for EncodedReprInfo",1,["wiwi::encoding::z85::EncodedReprInfo"]],["impl RefUnwindSafe for UnsafeBufWriteGuard",1,["wiwi::util_unsafe::encoding_utils::UnsafeBufWriteGuard"]],["impl<'h, const N: usize> RefUnwindSafe for ChunkedSlice<'h, N>",1,["wiwi::util_unsafe::encoding_utils::ChunkedSlice"]]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[1871]} \ No newline at end of file diff --git a/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js b/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js index d93a52e88..f0756faa1 100644 --- a/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js +++ b/trait.impl/core/panic/unwind_safe/trait.UnwindSafe.js @@ -1,9 +1,9 @@ (function() { - var implementors = Object.fromEntries([["wiwi",[]]]); + var implementors = Object.fromEntries([["wiwi",[["impl UnwindSafe for DecodeError",1,["wiwi::encoding::hex::DecodeError"]],["impl UnwindSafe for DecodeError",1,["wiwi::encoding::z85::DecodeError"]],["impl UnwindSafe for EncodedReprInfo",1,["wiwi::encoding::z85::EncodedReprInfo"]],["impl UnwindSafe for UnsafeBufWriteGuard",1,["wiwi::util_unsafe::encoding_utils::UnsafeBufWriteGuard"]],["impl<'h, const N: usize> UnwindSafe for ChunkedSlice<'h, N>",1,["wiwi::util_unsafe::encoding_utils::ChunkedSlice"]]]]]); if (window.register_implementors) { window.register_implementors(implementors); } else { window.pending_implementors = implementors; } })() -//{"start":57,"fragment_lengths":[11]} \ No newline at end of file +//{"start":57,"fragment_lengths":[1826]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/add_carrying/trait.AddCarrying.js b/trait.impl/wiwi/num/add_carrying/trait.AddCarrying.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/add_carrying/trait.AddCarrying.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/add_checked/trait.AddChecked.js b/trait.impl/wiwi/num/add_checked/trait.AddChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/add_checked/trait.AddChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/add_overflowing/trait.AddOverflowing.js b/trait.impl/wiwi/num/add_overflowing/trait.AddOverflowing.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/add_overflowing/trait.AddOverflowing.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/add_regular/trait.Add.js b/trait.impl/wiwi/num/add_regular/trait.Add.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/add_regular/trait.Add.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/and_regular/trait.And.js b/trait.impl/wiwi/num/and_regular/trait.And.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/and_regular/trait.And.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/array_conversions/trait.ArrayConversions.js b/trait.impl/wiwi/num/array_conversions/trait.ArrayConversions.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/array_conversions/trait.ArrayConversions.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/base/trait.Base.js b/trait.impl/wiwi/num/base/trait.Base.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/base/trait.Base.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/count_bits/trait.CountBits.js b/trait.impl/wiwi/num/count_bits/trait.CountBits.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/count_bits/trait.CountBits.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/div_checked/trait.DivChecked.js b/trait.impl/wiwi/num/div_checked/trait.DivChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/div_checked/trait.DivChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/div_float/trait.DivFloat.js b/trait.impl/wiwi/num/div_float/trait.DivFloat.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/div_float/trait.DivFloat.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/div_int/trait.DivInt.js b/trait.impl/wiwi/num/div_int/trait.DivInt.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/div_int/trait.DivInt.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/div_overflowing/trait.DivOverflowing.js b/trait.impl/wiwi/num/div_overflowing/trait.DivOverflowing.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/div_overflowing/trait.DivOverflowing.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/div_regular/trait.Div.js b/trait.impl/wiwi/num/div_regular/trait.Div.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/div_regular/trait.Div.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromF32Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromF32Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromF32Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromF64Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromF64Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromF64Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromI128Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromI128Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromI128Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromI16Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromI16Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromI16Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromI32Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromI32Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromI32Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromI64Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromI64Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromI64Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromI8Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromI8Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromI8Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromIsizeLossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromIsizeLossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromIsizeLossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromU128Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromU128Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromU128Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromU16Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromU16Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromU16Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromU32Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromU32Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromU32Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromU64Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromU64Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromU64Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromU8Lossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromU8Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromU8Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossless/trait.FromUsizeLossless.js b/trait.impl/wiwi/num/from_lossless/trait.FromUsizeLossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossless/trait.FromUsizeLossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromF32Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromF32Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromF32Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromF64Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromF64Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromF64Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromI128Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromI128Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromI128Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromI16Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromI16Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromI16Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromI32Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromI32Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromI32Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromI64Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromI64Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromI64Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromI8Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromI8Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromI8Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromIsizeLossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromIsizeLossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromIsizeLossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromU128Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromU128Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromU128Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromU16Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromU16Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromU16Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromU32Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromU32Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromU32Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromU64Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromU64Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromU64Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromU8Lossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromU8Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromU8Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/from_lossy/trait.FromUsizeLossy.js b/trait.impl/wiwi/num/from_lossy/trait.FromUsizeLossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/from_lossy/trait.FromUsizeLossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoF32Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoF32Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoF32Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoF64Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoF64Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoF64Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoI128Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoI128Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoI128Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoI16Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoI16Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoI16Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoI32Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoI32Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoI32Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoI64Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoI64Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoI64Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoI8Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoI8Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoI8Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoIsizeLossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoIsizeLossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoIsizeLossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoU128Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoU128Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoU128Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoU16Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoU16Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoU16Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoU32Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoU32Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoU32Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoU64Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoU64Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoU64Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoU8Lossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoU8Lossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoU8Lossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossless/trait.IntoUsizeLossless.js b/trait.impl/wiwi/num/into_lossless/trait.IntoUsizeLossless.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossless/trait.IntoUsizeLossless.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoF32Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoF32Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoF32Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoF64Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoF64Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoF64Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoI128Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoI128Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoI128Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoI16Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoI16Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoI16Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoI32Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoI32Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoI32Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoI64Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoI64Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoI64Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoI8Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoI8Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoI8Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoIsizeLossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoIsizeLossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoIsizeLossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoU128Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoU128Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoU128Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoU16Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoU16Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoU16Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoU32Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoU32Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoU32Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoU64Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoU64Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoU64Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoU8Lossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoU8Lossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoU8Lossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/into_lossy/trait.IntoUsizeLossy.js b/trait.impl/wiwi/num/into_lossy/trait.IntoUsizeLossy.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/into_lossy/trait.IntoUsizeLossy.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/mul_checked/trait.MulChecked.js b/trait.impl/wiwi/num/mul_checked/trait.MulChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/mul_checked/trait.MulChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/mul_overflowing/trait.MulOverflowing.js b/trait.impl/wiwi/num/mul_overflowing/trait.MulOverflowing.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/mul_overflowing/trait.MulOverflowing.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/mul_regular/trait.Mul.js b/trait.impl/wiwi/num/mul_regular/trait.Mul.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/mul_regular/trait.Mul.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/mul_unchecked/trait.MulUnchecked.js b/trait.impl/wiwi/num/mul_unchecked/trait.MulUnchecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/mul_unchecked/trait.MulUnchecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/mul_widening/trait.MulWidening.js b/trait.impl/wiwi/num/mul_widening/trait.MulWidening.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/mul_widening/trait.MulWidening.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/narrowing/trait.Narrowing.js b/trait.impl/wiwi/num/narrowing/trait.Narrowing.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/narrowing/trait.Narrowing.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/neg_checked/trait.NegChecked.js b/trait.impl/wiwi/num/neg_checked/trait.NegChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/neg_checked/trait.NegChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/neg_regular/trait.Neg.js b/trait.impl/wiwi/num/neg_regular/trait.Neg.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/neg_regular/trait.Neg.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/not_regular/trait.Not.js b/trait.impl/wiwi/num/not_regular/trait.Not.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/not_regular/trait.Not.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/or_regular/trait.Or.js b/trait.impl/wiwi/num/or_regular/trait.Or.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/or_regular/trait.Or.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/rem_checked/trait.RemChecked.js b/trait.impl/wiwi/num/rem_checked/trait.RemChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/rem_checked/trait.RemChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/rem_regular/trait.Rem.js b/trait.impl/wiwi/num/rem_regular/trait.Rem.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/rem_regular/trait.Rem.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/shl_checked/trait.ShlChecked.js b/trait.impl/wiwi/num/shl_checked/trait.ShlChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/shl_checked/trait.ShlChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/shl_regular/trait.Shl.js b/trait.impl/wiwi/num/shl_regular/trait.Shl.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/shl_regular/trait.Shl.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/shr_checked/trait.ShrChecked.js b/trait.impl/wiwi/num/shr_checked/trait.ShrChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/shr_checked/trait.ShrChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/shr_regular/trait.Shr.js b/trait.impl/wiwi/num/shr_regular/trait.Shr.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/shr_regular/trait.Shr.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/signedness/trait.IntSigned.js b/trait.impl/wiwi/num/signedness/trait.IntSigned.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/signedness/trait.IntSigned.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/signedness/trait.IntUnsigned.js b/trait.impl/wiwi/num/signedness/trait.IntUnsigned.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/signedness/trait.IntUnsigned.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/sub_borrowing/trait.SubBorrowing.js b/trait.impl/wiwi/num/sub_borrowing/trait.SubBorrowing.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/sub_borrowing/trait.SubBorrowing.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/sub_checked/trait.SubChecked.js b/trait.impl/wiwi/num/sub_checked/trait.SubChecked.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/sub_checked/trait.SubChecked.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/sub_overflowing/trait.SubOverflowing.js b/trait.impl/wiwi/num/sub_overflowing/trait.SubOverflowing.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/sub_overflowing/trait.SubOverflowing.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/sub_regular/trait.Sub.js b/trait.impl/wiwi/num/sub_regular/trait.Sub.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/sub_regular/trait.Sub.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/widening/trait.Widening.js b/trait.impl/wiwi/num/widening/trait.Widening.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/widening/trait.Widening.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/trait.impl/wiwi/num/xor_regular/trait.Xor.js b/trait.impl/wiwi/num/xor_regular/trait.Xor.js new file mode 100644 index 000000000..d93a52e88 --- /dev/null +++ b/trait.impl/wiwi/num/xor_regular/trait.Xor.js @@ -0,0 +1,9 @@ +(function() { + var implementors = Object.fromEntries([["wiwi",[]]]); + if (window.register_implementors) { + window.register_implementors(implementors); + } else { + window.pending_implementors = implementors; + } +})() +//{"start":57,"fragment_lengths":[11]} \ No newline at end of file diff --git a/type.impl/std/primitive.f32.js b/type.impl/std/primitive.f32.js index c8677486c..1b8bc65e1 100644 --- a/type.impl/std/primitive.f32.js +++ b/type.impl/std/primitive.f32.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&f32> for f32

source§

type Output = <f32 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &f32) -> <f32 as Add>::Output

Performs the + operation. Read more
","Add<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Add for f32

source§

type Output = f32

The resulting type after applying the + operator.
source§

fn add(self, other: f32) -> f32

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl AddAssign<&f32> for f32

source§

fn add_assign(&mut self, other: &f32)

Performs the += operation. Read more
","AddAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl AddAssign for f32

source§

fn add_assign(&mut self, other: f32)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Clone for f32

source§

fn clone(&self) -> f32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Debug for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Default for f32

source§

fn default() -> f32

Returns the default value of 0.0

\n
","Default","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Display for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Div<&f32> for f32

source§

type Output = <f32 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &f32) -> <f32 as Div>::Output

Performs the / operation. Read more
","Div<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Div for f32

source§

type Output = f32

The resulting type after applying the / operator.
source§

fn div(self, other: f32) -> f32

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl DivAssign<&f32> for f32

source§

fn div_assign(&mut self, other: &f32)

Performs the /= operation. Read more
","DivAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl DivAssign for f32

source§

fn div_assign(&mut self, other: f32)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.68.0 · source§

impl From<bool> for f32

source§

fn from(small: bool) -> f32

Converts a bool to f32 losslessly.\nThe resulting value is positive 0.0 for false and 1.0 for true values.

\n
§Examples
\n
let x: f32 = false.into();\nassert_eq!(x, 0.0);\nassert!(x.is_sign_positive());\n\nlet y: f32 = true.into();\nassert_eq!(y, 1.0);
\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<i16> for f32

source§

fn from(small: i16) -> f32

Converts i16 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<i8> for f32

source§

fn from(small: i8) -> f32

Converts i8 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<u16> for f32

source§

fn from(small: u16) -> f32

Converts u16 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<u8> for f32

source§

fn from(small: u8) -> f32

Converts u8 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl FromStr for f32

source§

fn from_str(src: &str) -> Result<f32, ParseFloatError>

Converts a string in base 10 to a float.\nAccepts an optional decimal exponent.

\n

This function accepts strings such as

\n
    \n
  • ‘3.14’
  • \n
  • ‘-3.14’
  • \n
  • ‘2.5E10’, or equivalently, ‘2.5e10’
  • \n
  • ‘2.5E-10’
  • \n
  • ‘5.’
  • \n
  • ‘.5’, or, equivalently, ‘0.5’
  • \n
  • ‘inf’, ‘-inf’, ‘+infinity’, ‘NaN’
  • \n
\n

Note that alphabetical characters are not case-sensitive.

\n

Leading and trailing whitespace represent an error.

\n
§Grammar
\n

All strings that adhere to the following EBNF grammar when\nlowercased will result in an Ok being returned:

\n
Float  ::= Sign? ( 'inf' | 'infinity' | 'nan' | Number )\nNumber ::= ( Digit+ |\n             Digit+ '.' Digit* |\n             Digit* '.' Digit+ ) Exp?\nExp    ::= 'e' Sign? Digit+\nSign   ::= [+-]\nDigit  ::= [0-9]\n
§Arguments
\n
    \n
  • src - A string
  • \n
\n
§Return value
\n

Err(ParseFloatError) if the string did not represent a valid\nnumber. Otherwise, Ok(n) where n is the closest\nrepresentable floating-point number to the number represented\nby src (following the same rules for rounding as for the\nresults of primitive operations).

\n
source§

type Err = ParseFloatError

The associated error which can be returned from parsing.
","FromStr","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl LowerExp for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Mul<&f32> for f32

source§

type Output = <f32 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &f32) -> <f32 as Mul>::Output

Performs the * operation. Read more
","Mul<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Mul for f32

source§

type Output = f32

The resulting type after applying the * operator.
source§

fn mul(self, other: f32) -> f32

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl MulAssign<&f32> for f32

source§

fn mul_assign(&mut self, other: &f32)

Performs the *= operation. Read more
","MulAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl MulAssign for f32

source§

fn mul_assign(&mut self, other: f32)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Neg for f32

source§

type Output = f32

The resulting type after applying the - operator.
source§

fn neg(self) -> f32

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl PartialEq for f32

source§

fn eq(&self, other: &f32) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &f32) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl PartialOrd for f32

source§

fn partial_cmp(&self, other: &f32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &f32) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &f32) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &f32) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &f32) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl<'a> Product<&'a f32> for f32

source§

fn product<I>(iter: I) -> f32
where\n I: Iterator<Item = &'a f32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl Product for f32

source§

fn product<I>(iter: I) -> f32
where\n I: Iterator<Item = f32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Rem<&f32> for f32

source§

type Output = <f32 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &f32) -> <f32 as Rem>::Output

Performs the % operation. Read more
","Rem<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Rem for f32

The remainder from the division of two floats.

\n

The remainder has the same sign as the dividend and is computed as:\nx - (x / y).trunc() * y.

\n

§Examples

\n
let x: f32 = 50.50;\nlet y: f32 = 8.125;\nlet remainder = x - (x / y).trunc() * y;\n\n// The answer to both operations is 1.75\nassert_eq!(x % y, remainder);
\n
source§

type Output = f32

The resulting type after applying the % operator.
source§

fn rem(self, other: f32) -> f32

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl RemAssign<&f32> for f32

source§

fn rem_assign(&mut self, other: &f32)

Performs the %= operation. Read more
","RemAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl RemAssign for f32

source§

fn rem_assign(&mut self, other: f32)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl SimdElement for f32

source§

type Mask = i32

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Sub<&f32> for f32

source§

type Output = <f32 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &f32) -> <f32 as Sub>::Output

Performs the - operation. Read more
","Sub<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Sub for f32

source§

type Output = f32

The resulting type after applying the - operator.
source§

fn sub(self, other: f32) -> f32

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl SubAssign<&f32> for f32

source§

fn sub_assign(&mut self, other: &f32)

Performs the -= operation. Read more
","SubAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl SubAssign for f32

source§

fn sub_assign(&mut self, other: f32)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl<'a> Sum<&'a f32> for f32

source§

fn sum<I>(iter: I) -> f32
where\n I: Iterator<Item = &'a f32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl Sum for f32

source§

fn sum<I>(iter: I) -> f32
where\n I: Iterator<Item = f32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl UpperExp for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Copy for f32

","Copy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i128> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i16> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i32> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i64> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i8> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<isize> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u128> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u16> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u32> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u64> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u8> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<usize> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl SimdCast for f32

","SimdCast","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&f32> for f32

source§

type Output = <f32 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &f32) -> <f32 as Add>::Output

Performs the + operation. Read more
","Add<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl Add for f32

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Add for f32

source§

type Output = f32

The resulting type after applying the + operator.
source§

fn add(self, other: f32) -> f32

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl AddAssign<&f32> for f32

source§

fn add_assign(&mut self, other: &f32)

Performs the += operation. Read more
","AddAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl AddAssign for f32

source§

fn add_assign(&mut self, other: f32)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for f32

source§

fn into_le_bytes(self) -> [u8; 4]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 4]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 4]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 4]) -> f32

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 4]) -> f32

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 4]) -> f32

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl Base for f32

source§

const MIN: f32 = -3.40282347E+38f32

Min (finite) value of this number type
source§

const MAX: f32 = 3.40282347E+38f32

Max (finite) value of this number type
source§

const ZERO: f32 = 0f32

0
source§

const ONE: f32 = 1f32

1
source§

const BITS: f32 = 32f32

Size of this number in bits
source§

const BYTES: f32 = 4f32

Size of this number type in bytes
source§

const ALIGN: f32 = 4f32

Align of this number type in bytes
source§

const BITS_USIZE: usize = 32usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 4usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 4usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> f32

","Base","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Clone for f32

source§

fn clone(&self) -> f32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Debug for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Default for f32

source§

fn default() -> f32

Returns the default value of 0.0

\n
","Default","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Display for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Div<&f32> for f32

source§

type Output = <f32 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &f32) -> <f32 as Div>::Output

Performs the / operation. Read more
","Div<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl Div for f32

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Div for f32

source§

type Output = f32

The resulting type after applying the / operator.
source§

fn div(self, other: f32) -> f32

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl DivAssign<&f32> for f32

source§

fn div_assign(&mut self, other: &f32)

Performs the /= operation. Read more
","DivAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl DivAssign for f32

source§

fn div_assign(&mut self, other: f32)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl DivFloat for f32

source§

fn div_float(self, rhs: Self) -> Self

Performs floating point division Read more
","DivFloat","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl DivInt for f32

source§

fn div_int(self, rhs: f32) -> f32

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.68.0 · source§

impl From<bool> for f32

source§

fn from(small: bool) -> f32

Converts a bool to f32 losslessly.\nThe resulting value is positive 0.0 for false and 1.0 for true values.

\n
§Examples
\n
let x: f32 = false.into();\nassert_eq!(x, 0.0);\nassert!(x.is_sign_positive());\n\nlet y: f32 = true.into();\nassert_eq!(y, 1.0);
\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<i16> for f32

source§

fn from(small: i16) -> f32

Converts i16 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<i8> for f32

source§

fn from(small: i8) -> f32

Converts i8 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<u16> for f32

source§

fn from(small: u16) -> f32

Converts u16 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.6.0 · source§

impl From<u8> for f32

source§

fn from(small: u8) -> f32

Converts u8 to f32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromF32Lossless for f32

source§

fn from_f32(val: f32) -> f32

Losslessly converts the provided\nf32\ninto\nf32

\n
","FromF32Lossless","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromF32Lossy for f32

source§

fn from_f32_lossy(val: f32) -> f32

Converts the provided\nf32\ninto\nf32,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromF64Lossy for f32

source§

fn from_f64_lossy(val: f64) -> f32

Converts the provided\nf64\ninto\nf32,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromI128Lossy for f32

source§

fn from_i128_lossy(val: i128) -> f32

Converts the provided\ni128\ninto\nf32,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromI16Lossless for f32

source§

fn from_i16(val: i16) -> f32

Losslessly converts the provided\ni16\ninto\nf32

\n
","FromI16Lossless","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromI16Lossy for f32

source§

fn from_i16_lossy(val: i16) -> f32

Converts the provided\ni16\ninto\nf32,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromI32Lossy for f32

source§

fn from_i32_lossy(val: i32) -> f32

Converts the provided\ni32\ninto\nf32,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromI64Lossy for f32

source§

fn from_i64_lossy(val: i64) -> f32

Converts the provided\ni64\ninto\nf32,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromI8Lossless for f32

source§

fn from_i8(val: i8) -> f32

Losslessly converts the provided\ni8\ninto\nf32

\n
","FromI8Lossless","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromI8Lossy for f32

source§

fn from_i8_lossy(val: i8) -> f32

Converts the provided\ni8\ninto\nf32,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromIsizeLossy for f32

source§

fn from_isize_lossy(val: isize) -> f32

Converts the provided\nisize\ninto\nf32,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl FromStr for f32

source§

fn from_str(src: &str) -> Result<f32, ParseFloatError>

Converts a string in base 10 to a float.\nAccepts an optional decimal exponent.

\n

This function accepts strings such as

\n
    \n
  • ‘3.14’
  • \n
  • ‘-3.14’
  • \n
  • ‘2.5E10’, or equivalently, ‘2.5e10’
  • \n
  • ‘2.5E-10’
  • \n
  • ‘5.’
  • \n
  • ‘.5’, or, equivalently, ‘0.5’
  • \n
  • ‘inf’, ‘-inf’, ‘+infinity’, ‘NaN’
  • \n
\n

Note that alphabetical characters are not case-sensitive.

\n

Leading and trailing whitespace represent an error.

\n
§Grammar
\n

All strings that adhere to the following EBNF grammar when\nlowercased will result in an Ok being returned:

\n
Float  ::= Sign? ( 'inf' | 'infinity' | 'nan' | Number )\nNumber ::= ( Digit+ |\n             Digit+ '.' Digit* |\n             Digit* '.' Digit+ ) Exp?\nExp    ::= 'e' Sign? Digit+\nSign   ::= [+-]\nDigit  ::= [0-9]\n
§Arguments
\n
    \n
  • src - A string
  • \n
\n
§Return value
\n

Err(ParseFloatError) if the string did not represent a valid\nnumber. Otherwise, Ok(n) where n is the closest\nrepresentable floating-point number to the number represented\nby src (following the same rules for rounding as for the\nresults of primitive operations).

\n
source§

type Err = ParseFloatError

The associated error which can be returned from parsing.
","FromStr","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromU128Lossy for f32

source§

fn from_u128_lossy(val: u128) -> f32

Converts the provided\nu128\ninto\nf32,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromU16Lossless for f32

source§

fn from_u16(val: u16) -> f32

Losslessly converts the provided\nu16\ninto\nf32

\n
","FromU16Lossless","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromU16Lossy for f32

source§

fn from_u16_lossy(val: u16) -> f32

Converts the provided\nu16\ninto\nf32,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromU32Lossy for f32

source§

fn from_u32_lossy(val: u32) -> f32

Converts the provided\nu32\ninto\nf32,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromU64Lossy for f32

source§

fn from_u64_lossy(val: u64) -> f32

Converts the provided\nu64\ninto\nf32,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromU8Lossless for f32

source§

fn from_u8(val: u8) -> f32

Losslessly converts the provided\nu8\ninto\nf32

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromU8Lossy for f32

source§

fn from_u8_lossy(val: u8) -> f32

Converts the provided\nu8\ninto\nf32,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FromUsizeLossy for f32

source§

fn from_usize_lossy(val: usize) -> f32

Converts the provided\nusize\ninto\nf32,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoF32Lossless for f32

source§

fn into_f32(self) -> f32

Losslessly converts self into\nf32
","IntoF32Lossless","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoF32Lossy for f32

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoF64Lossless for f32

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoF64Lossy for f32

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoI128Lossy for f32

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoI16Lossy for f32

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoI32Lossy for f32

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoI64Lossy for f32

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoI8Lossy for f32

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoIsizeLossy for f32

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoU128Lossy for f32

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoU16Lossy for f32

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoU32Lossy for f32

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoU64Lossy for f32

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoU8Lossy for f32

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl IntoUsizeLossy for f32

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl LowerExp for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Mul<&f32> for f32

source§

type Output = <f32 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &f32) -> <f32 as Mul>::Output

Performs the * operation. Read more
","Mul<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl Mul for f32

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Mul for f32

source§

type Output = f32

The resulting type after applying the * operator.
source§

fn mul(self, other: f32) -> f32

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl MulAssign<&f32> for f32

source§

fn mul_assign(&mut self, other: &f32)

Performs the *= operation. Read more
","MulAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl MulAssign for f32

source§

fn mul_assign(&mut self, other: f32)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl Neg for f32

source§

fn neg_regular(self) -> Self

","Neg","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Neg for f32

source§

type Output = f32

The resulting type after applying the - operator.
source§

fn neg(self) -> f32

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl PartialEq for f32

source§

fn eq(&self, other: &f32) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &f32) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl PartialOrd for f32

source§

fn partial_cmp(&self, other: &f32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &f32) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &f32) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &f32) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &f32) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl<'a> Product<&'a f32> for f32

source§

fn product<I>(iter: I) -> f32
where\n I: Iterator<Item = &'a f32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl Product for f32

source§

fn product<I>(iter: I) -> f32
where\n I: Iterator<Item = f32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Rem<&f32> for f32

source§

type Output = <f32 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &f32) -> <f32 as Rem>::Output

Performs the % operation. Read more
","Rem<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl Rem for f32

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Rem for f32

The remainder from the division of two floats.

\n

The remainder has the same sign as the dividend and is computed as:\nx - (x / y).trunc() * y.

\n

§Examples

\n
let x: f32 = 50.50;\nlet y: f32 = 8.125;\nlet remainder = x - (x / y).trunc() * y;\n\n// The answer to both operations is 1.75\nassert_eq!(x % y, remainder);
\n
source§

type Output = f32

The resulting type after applying the % operator.
source§

fn rem(self, other: f32) -> f32

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl RemAssign<&f32> for f32

source§

fn rem_assign(&mut self, other: &f32)

Performs the %= operation. Read more
","RemAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl RemAssign for f32

source§

fn rem_assign(&mut self, other: f32)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl SimdElement for f32

source§

type Mask = i32

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Sub<&f32> for f32

source§

type Output = <f32 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &f32) -> <f32 as Sub>::Output

Performs the - operation. Read more
","Sub<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl Sub for f32

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Sub for f32

source§

type Output = f32

The resulting type after applying the - operator.
source§

fn sub(self, other: f32) -> f32

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.22.0 · source§

impl SubAssign<&f32> for f32

source§

fn sub_assign(&mut self, other: &f32)

Performs the -= operation. Read more
","SubAssign<&f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.8.0 · source§

impl SubAssign for f32

source§

fn sub_assign(&mut self, other: f32)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl<'a> Sum<&'a f32> for f32

source§

fn sum<I>(iter: I) -> f32
where\n I: Iterator<Item = &'a f32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a f32>","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.12.0 · source§

impl Sum for f32

source§

fn sum<I>(iter: I) -> f32
where\n I: Iterator<Item = f32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl UpperExp for f32

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
1.0.0 · source§

impl Copy for f32

","Copy","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i128> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i16> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i32> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i64> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<i8> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<isize> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u128> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u16> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u32> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u64> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<u8> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl FloatToInt<usize> for f32

","FloatToInt","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"],["
source§

impl SimdCast for f32

","SimdCast","wiwi::rust_std::ffi::c_float","wiwi::rust_std::os::raw::c_float"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[95223]} \ No newline at end of file +//{"start":55,"fragment_lengths":[165323]} \ No newline at end of file diff --git a/type.impl/std/primitive.f64.js b/type.impl/std/primitive.f64.js index 424313e90..e9e3c0031 100644 --- a/type.impl/std/primitive.f64.js +++ b/type.impl/std/primitive.f64.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&f64> for f64

source§

type Output = <f64 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &f64) -> <f64 as Add>::Output

Performs the + operation. Read more
","Add<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Add for f64

source§

type Output = f64

The resulting type after applying the + operator.
source§

fn add(self, other: f64) -> f64

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl AddAssign<&f64> for f64

source§

fn add_assign(&mut self, other: &f64)

Performs the += operation. Read more
","AddAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl AddAssign for f64

source§

fn add_assign(&mut self, other: f64)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Clone for f64

source§

fn clone(&self) -> f64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Debug for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Default for f64

source§

fn default() -> f64

Returns the default value of 0.0

\n
","Default","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Display for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Div<&f64> for f64

source§

type Output = <f64 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &f64) -> <f64 as Div>::Output

Performs the / operation. Read more
","Div<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Div for f64

source§

type Output = f64

The resulting type after applying the / operator.
source§

fn div(self, other: f64) -> f64

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl DivAssign<&f64> for f64

source§

fn div_assign(&mut self, other: &f64)

Performs the /= operation. Read more
","DivAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl DivAssign for f64

source§

fn div_assign(&mut self, other: f64)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.68.0 · source§

impl From<bool> for f64

source§

fn from(small: bool) -> f64

Converts a bool to f64 losslessly.\nThe resulting value is positive 0.0 for false and 1.0 for true values.

\n
§Examples
\n
let x: f64 = false.into();\nassert_eq!(x, 0.0);\nassert!(x.is_sign_positive());\n\nlet y: f64 = true.into();\nassert_eq!(y, 1.0);
\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<f16> for f64

source§

fn from(small: f16) -> f64

Converts f16 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<f32> for f64

source§

fn from(small: f32) -> f64

Converts f32 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<i16> for f64

source§

fn from(small: i16) -> f64

Converts i16 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<i32> for f64

source§

fn from(small: i32) -> f64

Converts i32 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<i8> for f64

source§

fn from(small: i8) -> f64

Converts i8 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<u16> for f64

source§

fn from(small: u16) -> f64

Converts u16 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<u32> for f64

source§

fn from(small: u32) -> f64

Converts u32 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<u8> for f64

source§

fn from(small: u8) -> f64

Converts u8 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl FromStr for f64

source§

fn from_str(src: &str) -> Result<f64, ParseFloatError>

Converts a string in base 10 to a float.\nAccepts an optional decimal exponent.

\n

This function accepts strings such as

\n
    \n
  • ‘3.14’
  • \n
  • ‘-3.14’
  • \n
  • ‘2.5E10’, or equivalently, ‘2.5e10’
  • \n
  • ‘2.5E-10’
  • \n
  • ‘5.’
  • \n
  • ‘.5’, or, equivalently, ‘0.5’
  • \n
  • ‘inf’, ‘-inf’, ‘+infinity’, ‘NaN’
  • \n
\n

Note that alphabetical characters are not case-sensitive.

\n

Leading and trailing whitespace represent an error.

\n
§Grammar
\n

All strings that adhere to the following EBNF grammar when\nlowercased will result in an Ok being returned:

\n
Float  ::= Sign? ( 'inf' | 'infinity' | 'nan' | Number )\nNumber ::= ( Digit+ |\n             Digit+ '.' Digit* |\n             Digit* '.' Digit+ ) Exp?\nExp    ::= 'e' Sign? Digit+\nSign   ::= [+-]\nDigit  ::= [0-9]\n
§Arguments
\n
    \n
  • src - A string
  • \n
\n
§Return value
\n

Err(ParseFloatError) if the string did not represent a valid\nnumber. Otherwise, Ok(n) where n is the closest\nrepresentable floating-point number to the number represented\nby src (following the same rules for rounding as for the\nresults of primitive operations).

\n
source§

type Err = ParseFloatError

The associated error which can be returned from parsing.
","FromStr","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl LowerExp for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Mul<&f64> for f64

source§

type Output = <f64 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &f64) -> <f64 as Mul>::Output

Performs the * operation. Read more
","Mul<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Mul for f64

source§

type Output = f64

The resulting type after applying the * operator.
source§

fn mul(self, other: f64) -> f64

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl MulAssign<&f64> for f64

source§

fn mul_assign(&mut self, other: &f64)

Performs the *= operation. Read more
","MulAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl MulAssign for f64

source§

fn mul_assign(&mut self, other: f64)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Neg for f64

source§

type Output = f64

The resulting type after applying the - operator.
source§

fn neg(self) -> f64

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl PartialEq for f64

source§

fn eq(&self, other: &f64) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &f64) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl PartialOrd for f64

source§

fn partial_cmp(&self, other: &f64) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &f64) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &f64) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &f64) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &f64) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl<'a> Product<&'a f64> for f64

source§

fn product<I>(iter: I) -> f64
where\n I: Iterator<Item = &'a f64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl Product for f64

source§

fn product<I>(iter: I) -> f64
where\n I: Iterator<Item = f64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Rem<&f64> for f64

source§

type Output = <f64 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &f64) -> <f64 as Rem>::Output

Performs the % operation. Read more
","Rem<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Rem for f64

The remainder from the division of two floats.

\n

The remainder has the same sign as the dividend and is computed as:\nx - (x / y).trunc() * y.

\n

§Examples

\n
let x: f32 = 50.50;\nlet y: f32 = 8.125;\nlet remainder = x - (x / y).trunc() * y;\n\n// The answer to both operations is 1.75\nassert_eq!(x % y, remainder);
\n
source§

type Output = f64

The resulting type after applying the % operator.
source§

fn rem(self, other: f64) -> f64

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl RemAssign<&f64> for f64

source§

fn rem_assign(&mut self, other: &f64)

Performs the %= operation. Read more
","RemAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl RemAssign for f64

source§

fn rem_assign(&mut self, other: f64)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl SimdElement for f64

source§

type Mask = i64

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Sub<&f64> for f64

source§

type Output = <f64 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &f64) -> <f64 as Sub>::Output

Performs the - operation. Read more
","Sub<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Sub for f64

source§

type Output = f64

The resulting type after applying the - operator.
source§

fn sub(self, other: f64) -> f64

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl SubAssign<&f64> for f64

source§

fn sub_assign(&mut self, other: &f64)

Performs the -= operation. Read more
","SubAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl SubAssign for f64

source§

fn sub_assign(&mut self, other: f64)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl<'a> Sum<&'a f64> for f64

source§

fn sum<I>(iter: I) -> f64
where\n I: Iterator<Item = &'a f64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl Sum for f64

source§

fn sum<I>(iter: I) -> f64
where\n I: Iterator<Item = f64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl UpperExp for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Copy for f64

","Copy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i128> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i16> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i32> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i64> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i8> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<isize> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u128> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u16> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u32> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u64> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u8> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<usize> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl SimdCast for f64

","SimdCast","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&f64> for f64

source§

type Output = <f64 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &f64) -> <f64 as Add>::Output

Performs the + operation. Read more
","Add<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl Add for f64

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Add for f64

source§

type Output = f64

The resulting type after applying the + operator.
source§

fn add(self, other: f64) -> f64

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl AddAssign<&f64> for f64

source§

fn add_assign(&mut self, other: &f64)

Performs the += operation. Read more
","AddAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl AddAssign for f64

source§

fn add_assign(&mut self, other: f64)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for f64

source§

fn into_le_bytes(self) -> [u8; 8]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 8]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 8]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 8]) -> f64

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 8]) -> f64

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 8]) -> f64

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl Base for f64

source§

const MIN: f64 = -1.7976931348623157E+308f64

Min (finite) value of this number type
source§

const MAX: f64 = 1.7976931348623157E+308f64

Max (finite) value of this number type
source§

const ZERO: f64 = 0f64

0
source§

const ONE: f64 = 1f64

1
source§

const BITS: f64 = 64f64

Size of this number in bits
source§

const BYTES: f64 = 8f64

Size of this number type in bytes
source§

const ALIGN: f64 = 8f64

Align of this number type in bytes
source§

const BITS_USIZE: usize = 64usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 8usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 8usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> f64

","Base","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Clone for f64

source§

fn clone(&self) -> f64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Debug for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Default for f64

source§

fn default() -> f64

Returns the default value of 0.0

\n
","Default","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Display for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Div<&f64> for f64

source§

type Output = <f64 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &f64) -> <f64 as Div>::Output

Performs the / operation. Read more
","Div<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl Div for f64

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Div for f64

source§

type Output = f64

The resulting type after applying the / operator.
source§

fn div(self, other: f64) -> f64

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl DivAssign<&f64> for f64

source§

fn div_assign(&mut self, other: &f64)

Performs the /= operation. Read more
","DivAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl DivAssign for f64

source§

fn div_assign(&mut self, other: f64)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl DivFloat for f64

source§

fn div_float(self, rhs: Self) -> Self

Performs floating point division Read more
","DivFloat","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl DivInt for f64

source§

fn div_int(self, rhs: f64) -> f64

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.68.0 · source§

impl From<bool> for f64

source§

fn from(small: bool) -> f64

Converts a bool to f64 losslessly.\nThe resulting value is positive 0.0 for false and 1.0 for true values.

\n
§Examples
\n
let x: f64 = false.into();\nassert_eq!(x, 0.0);\nassert!(x.is_sign_positive());\n\nlet y: f64 = true.into();\nassert_eq!(y, 1.0);
\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<f16> for f64

source§

fn from(small: f16) -> f64

Converts f16 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<f32> for f64

source§

fn from(small: f32) -> f64

Converts f32 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<i16> for f64

source§

fn from(small: i16) -> f64

Converts i16 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<i32> for f64

source§

fn from(small: i32) -> f64

Converts i32 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<i8> for f64

source§

fn from(small: i8) -> f64

Converts i8 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<u16> for f64

source§

fn from(small: u16) -> f64

Converts u16 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<u32> for f64

source§

fn from(small: u32) -> f64

Converts u32 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.6.0 · source§

impl From<u8> for f64

source§

fn from(small: u8) -> f64

Converts u8 to f64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromF32Lossless for f64

source§

fn from_f32(val: f32) -> f64

Losslessly converts the provided\nf32\ninto\nf64

\n
","FromF32Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromF32Lossy for f64

source§

fn from_f32_lossy(val: f32) -> f64

Converts the provided\nf32\ninto\nf64,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromF64Lossless for f64

source§

fn from_f64(val: f64) -> f64

Losslessly converts the provided\nf64\ninto\nf64

\n
","FromF64Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromF64Lossy for f64

source§

fn from_f64_lossy(val: f64) -> f64

Converts the provided\nf64\ninto\nf64,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI128Lossy for f64

source§

fn from_i128_lossy(val: i128) -> f64

Converts the provided\ni128\ninto\nf64,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI16Lossless for f64

source§

fn from_i16(val: i16) -> f64

Losslessly converts the provided\ni16\ninto\nf64

\n
","FromI16Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI16Lossy for f64

source§

fn from_i16_lossy(val: i16) -> f64

Converts the provided\ni16\ninto\nf64,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI32Lossless for f64

source§

fn from_i32(val: i32) -> f64

Losslessly converts the provided\ni32\ninto\nf64

\n
","FromI32Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI32Lossy for f64

source§

fn from_i32_lossy(val: i32) -> f64

Converts the provided\ni32\ninto\nf64,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI64Lossy for f64

source§

fn from_i64_lossy(val: i64) -> f64

Converts the provided\ni64\ninto\nf64,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI8Lossless for f64

source§

fn from_i8(val: i8) -> f64

Losslessly converts the provided\ni8\ninto\nf64

\n
","FromI8Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromI8Lossy for f64

source§

fn from_i8_lossy(val: i8) -> f64

Converts the provided\ni8\ninto\nf64,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromIsizeLossy for f64

source§

fn from_isize_lossy(val: isize) -> f64

Converts the provided\nisize\ninto\nf64,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl FromStr for f64

source§

fn from_str(src: &str) -> Result<f64, ParseFloatError>

Converts a string in base 10 to a float.\nAccepts an optional decimal exponent.

\n

This function accepts strings such as

\n
    \n
  • ‘3.14’
  • \n
  • ‘-3.14’
  • \n
  • ‘2.5E10’, or equivalently, ‘2.5e10’
  • \n
  • ‘2.5E-10’
  • \n
  • ‘5.’
  • \n
  • ‘.5’, or, equivalently, ‘0.5’
  • \n
  • ‘inf’, ‘-inf’, ‘+infinity’, ‘NaN’
  • \n
\n

Note that alphabetical characters are not case-sensitive.

\n

Leading and trailing whitespace represent an error.

\n
§Grammar
\n

All strings that adhere to the following EBNF grammar when\nlowercased will result in an Ok being returned:

\n
Float  ::= Sign? ( 'inf' | 'infinity' | 'nan' | Number )\nNumber ::= ( Digit+ |\n             Digit+ '.' Digit* |\n             Digit* '.' Digit+ ) Exp?\nExp    ::= 'e' Sign? Digit+\nSign   ::= [+-]\nDigit  ::= [0-9]\n
§Arguments
\n
    \n
  • src - A string
  • \n
\n
§Return value
\n

Err(ParseFloatError) if the string did not represent a valid\nnumber. Otherwise, Ok(n) where n is the closest\nrepresentable floating-point number to the number represented\nby src (following the same rules for rounding as for the\nresults of primitive operations).

\n
source§

type Err = ParseFloatError

The associated error which can be returned from parsing.
","FromStr","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU128Lossy for f64

source§

fn from_u128_lossy(val: u128) -> f64

Converts the provided\nu128\ninto\nf64,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU16Lossless for f64

source§

fn from_u16(val: u16) -> f64

Losslessly converts the provided\nu16\ninto\nf64

\n
","FromU16Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU16Lossy for f64

source§

fn from_u16_lossy(val: u16) -> f64

Converts the provided\nu16\ninto\nf64,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU32Lossless for f64

source§

fn from_u32(val: u32) -> f64

Losslessly converts the provided\nu32\ninto\nf64

\n
","FromU32Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU32Lossy for f64

source§

fn from_u32_lossy(val: u32) -> f64

Converts the provided\nu32\ninto\nf64,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU64Lossy for f64

source§

fn from_u64_lossy(val: u64) -> f64

Converts the provided\nu64\ninto\nf64,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU8Lossless for f64

source§

fn from_u8(val: u8) -> f64

Losslessly converts the provided\nu8\ninto\nf64

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromU8Lossy for f64

source§

fn from_u8_lossy(val: u8) -> f64

Converts the provided\nu8\ninto\nf64,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FromUsizeLossy for f64

source§

fn from_usize_lossy(val: usize) -> f64

Converts the provided\nusize\ninto\nf64,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoF32Lossy for f64

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoF64Lossless for f64

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoF64Lossy for f64

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoI128Lossy for f64

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoI16Lossy for f64

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoI32Lossy for f64

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoI64Lossy for f64

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoI8Lossy for f64

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoIsizeLossy for f64

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoU128Lossy for f64

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoU16Lossy for f64

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoU32Lossy for f64

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoU64Lossy for f64

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoU8Lossy for f64

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl IntoUsizeLossy for f64

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl LowerExp for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Mul<&f64> for f64

source§

type Output = <f64 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &f64) -> <f64 as Mul>::Output

Performs the * operation. Read more
","Mul<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl Mul for f64

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Mul for f64

source§

type Output = f64

The resulting type after applying the * operator.
source§

fn mul(self, other: f64) -> f64

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl MulAssign<&f64> for f64

source§

fn mul_assign(&mut self, other: &f64)

Performs the *= operation. Read more
","MulAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl MulAssign for f64

source§

fn mul_assign(&mut self, other: f64)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl Neg for f64

source§

fn neg_regular(self) -> Self

","Neg","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Neg for f64

source§

type Output = f64

The resulting type after applying the - operator.
source§

fn neg(self) -> f64

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl PartialEq for f64

source§

fn eq(&self, other: &f64) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &f64) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl PartialOrd for f64

source§

fn partial_cmp(&self, other: &f64) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &f64) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &f64) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &f64) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &f64) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl<'a> Product<&'a f64> for f64

source§

fn product<I>(iter: I) -> f64
where\n I: Iterator<Item = &'a f64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl Product for f64

source§

fn product<I>(iter: I) -> f64
where\n I: Iterator<Item = f64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Rem<&f64> for f64

source§

type Output = <f64 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &f64) -> <f64 as Rem>::Output

Performs the % operation. Read more
","Rem<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl Rem for f64

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Rem for f64

The remainder from the division of two floats.

\n

The remainder has the same sign as the dividend and is computed as:\nx - (x / y).trunc() * y.

\n

§Examples

\n
let x: f32 = 50.50;\nlet y: f32 = 8.125;\nlet remainder = x - (x / y).trunc() * y;\n\n// The answer to both operations is 1.75\nassert_eq!(x % y, remainder);
\n
source§

type Output = f64

The resulting type after applying the % operator.
source§

fn rem(self, other: f64) -> f64

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl RemAssign<&f64> for f64

source§

fn rem_assign(&mut self, other: &f64)

Performs the %= operation. Read more
","RemAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl RemAssign for f64

source§

fn rem_assign(&mut self, other: f64)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl SimdElement for f64

source§

type Mask = i64

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Sub<&f64> for f64

source§

type Output = <f64 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &f64) -> <f64 as Sub>::Output

Performs the - operation. Read more
","Sub<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl Sub for f64

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Sub for f64

source§

type Output = f64

The resulting type after applying the - operator.
source§

fn sub(self, other: f64) -> f64

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.22.0 · source§

impl SubAssign<&f64> for f64

source§

fn sub_assign(&mut self, other: &f64)

Performs the -= operation. Read more
","SubAssign<&f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.8.0 · source§

impl SubAssign for f64

source§

fn sub_assign(&mut self, other: f64)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl<'a> Sum<&'a f64> for f64

source§

fn sum<I>(iter: I) -> f64
where\n I: Iterator<Item = &'a f64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a f64>","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.12.0 · source§

impl Sum for f64

source§

fn sum<I>(iter: I) -> f64
where\n I: Iterator<Item = f64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl UpperExp for f64

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
1.0.0 · source§

impl Copy for f64

","Copy","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i128> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i16> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i32> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i64> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<i8> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<isize> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u128> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u16> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u32> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u64> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<u8> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl FloatToInt<usize> for f64

","FloatToInt","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"],["
source§

impl SimdCast for f64

","SimdCast","wiwi::rust_std::ffi::c_double","wiwi::rust_std::os::raw::c_double"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[102623]} \ No newline at end of file +//{"start":55,"fragment_lengths":[175787]} \ No newline at end of file diff --git a/type.impl/std/primitive.i16.js b/type.impl/std/primitive.i16.js index 53b92d933..2fda9538a 100644 --- a/type.impl/std/primitive.i16.js +++ b/type.impl/std/primitive.i16.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i16> for i16

source§

type Output = <i16 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i16) -> <i16 as Add>::Output

Performs the + operation. Read more
","Add<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Add for i16

source§

type Output = i16

The resulting type after applying the + operator.
source§

fn add(self, other: i16) -> i16

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl AddAssign<&i16> for i16

source§

fn add_assign(&mut self, other: &i16)

Performs the += operation. Read more
","AddAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl AddAssign for i16

source§

fn add_assign(&mut self, other: i16)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Binary for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitAnd<&i16> for i16

source§

type Output = <i16 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i16) -> <i16 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitAnd for i16

source§

type Output = i16

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i16) -> i16

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl BitAndAssign<&i16> for i16

source§

fn bitand_assign(&mut self, other: &i16)

Performs the &= operation. Read more
","BitAndAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl BitAndAssign for i16

source§

fn bitand_assign(&mut self, other: i16)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitOr<&i16> for i16

source§

type Output = <i16 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i16) -> <i16 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitOr for i16

source§

type Output = i16

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i16) -> i16

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl BitOrAssign<&i16> for i16

source§

fn bitor_assign(&mut self, other: &i16)

Performs the |= operation. Read more
","BitOrAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl BitOrAssign for i16

source§

fn bitor_assign(&mut self, other: i16)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitXor<&i16> for i16

source§

type Output = <i16 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i16) -> <i16 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitXor for i16

source§

type Output = i16

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i16) -> i16

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl BitXorAssign<&i16> for i16

source§

fn bitxor_assign(&mut self, other: &i16)

Performs the ^= operation. Read more
","BitXorAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl BitXorAssign for i16

source§

fn bitxor_assign(&mut self, other: i16)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Clone for i16

source§

fn clone(&self) -> i16

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Debug for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Default for i16

source§

fn default() -> i16

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Display for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Div<&i16> for i16

source§

type Output = <i16 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i16) -> <i16 as Div>::Output

Performs the / operation. Read more
","Div<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Div for i16

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i16

The resulting type after applying the / operator.
source§

fn div(self, other: i16) -> i16

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl DivAssign<&i16> for i16

source§

fn div_assign(&mut self, other: &i16)

Performs the /= operation. Read more
","DivAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl DivAssign for i16

source§

fn div_assign(&mut self, other: i16)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.28.0 · source§

impl From<bool> for i16

source§

fn from(small: bool) -> i16

Converts a bool to i16 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i16::from(true), 1);\nassert_eq!(i16::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.5.0 · source§

impl From<i8> for i16

source§

fn from(small: i8) -> i16

Converts i8 to i16 losslessly.

\n
","From","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.5.0 · source§

impl From<u8> for i16

source§

fn from(small: u8) -> i16

Converts u8 to i16 losslessly.

\n
","From","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl FromStr for i16

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i16, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Hash for i16

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i16], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.42.0 · source§

impl LowerExp for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl LowerHex for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Mul<&i16> for i16

source§

type Output = <i16 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i16) -> <i16 as Mul>::Output

Performs the * operation. Read more
","Mul<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Mul for i16

source§

type Output = i16

The resulting type after applying the * operator.
source§

fn mul(self, other: i16) -> i16

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl MulAssign<&i16> for i16

source§

fn mul_assign(&mut self, other: &i16)

Performs the *= operation. Read more
","MulAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl MulAssign for i16

source§

fn mul_assign(&mut self, other: i16)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Neg for i16

source§

type Output = i16

The resulting type after applying the - operator.
source§

fn neg(self) -> i16

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Not for i16

source§

type Output = i16

The resulting type after applying the ! operator.
source§

fn not(self) -> i16

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Octal for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Ord for i16

source§

fn cmp(&self, other: &i16) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl PartialEq for i16

source§

fn eq(&self, other: &i16) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i16) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl PartialOrd for i16

source§

fn partial_cmp(&self, other: &i16) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i16) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i16) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i16) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i16) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl<'a> Product<&'a i16> for i16

source§

fn product<I>(iter: I) -> i16
where\n I: Iterator<Item = &'a i16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl Product for i16

source§

fn product<I>(iter: I) -> i16
where\n I: Iterator<Item = i16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Rem<&i16> for i16

source§

type Output = <i16 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i16) -> <i16 as Rem>::Output

Performs the % operation. Read more
","Rem<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Rem for i16

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i16

The resulting type after applying the % operator.
source§

fn rem(self, other: i16) -> i16

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl RemAssign<&i16> for i16

source§

fn rem_assign(&mut self, other: &i16)

Performs the %= operation. Read more
","RemAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl RemAssign for i16

source§

fn rem_assign(&mut self, other: i16)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i128> for i16

source§

type Output = <i16 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i16 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i16> for i16

source§

type Output = <i16 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i16 as Shl>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i32> for i16

source§

type Output = <i16 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i16 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i64> for i16

source§

type Output = <i16 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i16 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i8> for i16

source§

type Output = <i16 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i16 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&isize> for i16

source§

type Output = <i16 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i16 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u128> for i16

source§

type Output = <i16 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i16 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u16> for i16

source§

type Output = <i16 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i16 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u32> for i16

source§

type Output = <i16 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i16 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u64> for i16

source§

type Output = <i16 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i16 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u8> for i16

source§

type Output = <i16 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i16 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&usize> for i16

source§

type Output = <i16 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i16 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i128> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i32> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i64> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i8> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<isize> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u128> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u16> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u32> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u64> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u8> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<usize> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i128> for i16

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i16> for i16

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i32> for i16

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i64> for i16

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i8> for i16

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&isize> for i16

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u128> for i16

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u16> for i16

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u32> for i16

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u64> for i16

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u8> for i16

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&usize> for i16

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i128> for i16

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i32> for i16

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i64> for i16

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i8> for i16

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<isize> for i16

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u128> for i16

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u16> for i16

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u32> for i16

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u64> for i16

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u8> for i16

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<usize> for i16

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign for i16

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i128> for i16

source§

type Output = <i16 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i16 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i16> for i16

source§

type Output = <i16 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i16 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i32> for i16

source§

type Output = <i16 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i16 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i64> for i16

source§

type Output = <i16 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i16 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i8> for i16

source§

type Output = <i16 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i16 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&isize> for i16

source§

type Output = <i16 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i16 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u128> for i16

source§

type Output = <i16 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i16 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u16> for i16

source§

type Output = <i16 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i16 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u32> for i16

source§

type Output = <i16 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i16 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u64> for i16

source§

type Output = <i16 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i16 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u8> for i16

source§

type Output = <i16 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i16 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&usize> for i16

source§

type Output = <i16 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i16 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i128> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i32> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i64> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i8> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<isize> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u128> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u16> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u32> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u64> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u8> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<usize> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i128> for i16

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i16> for i16

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i32> for i16

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i64> for i16

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i8> for i16

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&isize> for i16

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u128> for i16

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u16> for i16

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u32> for i16

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u64> for i16

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u8> for i16

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&usize> for i16

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i128> for i16

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i32> for i16

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i64> for i16

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i8> for i16

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<isize> for i16

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u128> for i16

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u16> for i16

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u32> for i16

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u64> for i16

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u8> for i16

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<usize> for i16

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign for i16

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl SimdElement for i16

source§

type Mask = i16

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Step for i16

source§

fn forward(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i16, end: &i16) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i16, n: usize) -> Option<i16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i16, n: usize) -> Option<i16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Sub<&i16> for i16

source§

type Output = <i16 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i16) -> <i16 as Sub>::Output

Performs the - operation. Read more
","Sub<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Sub for i16

source§

type Output = i16

The resulting type after applying the - operator.
source§

fn sub(self, other: i16) -> i16

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl SubAssign<&i16> for i16

source§

fn sub_assign(&mut self, other: &i16)

Performs the -= operation. Read more
","SubAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl SubAssign for i16

source§

fn sub_assign(&mut self, other: i16)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl<'a> Sum<&'a i16> for i16

source§

fn sum<I>(iter: I) -> i16
where\n I: Iterator<Item = &'a i16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl Sum for i16

source§

fn sum<I>(iter: I) -> i16
where\n I: Iterator<Item = i16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<i128> for i16

source§

fn try_from(u: i128) -> Result<i16, <i16 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<i32> for i16

source§

fn try_from(u: i32) -> Result<i16, <i16 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<i64> for i16

source§

fn try_from(u: i64) -> Result<i16, <i16 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<isize> for i16

source§

fn try_from(u: isize) -> Result<i16, <i16 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u128> for i16

source§

fn try_from(u: u128) -> Result<i16, <i16 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u16> for i16

source§

fn try_from(u: u16) -> Result<i16, <i16 as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u32> for i16

source§

fn try_from(u: u32) -> Result<i16, <i16 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u64> for i16

source§

fn try_from(u: u64) -> Result<i16, <i16 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<usize> for i16

source§

fn try_from(u: usize) -> Result<i16, <i16 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.42.0 · source§

impl UpperExp for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl UpperHex for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl ConstParamTy_ for i16

","ConstParamTy_","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Copy for i16

","Copy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Eq for i16

","Eq","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl MaskElement for i16

","MaskElement","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl SimdCast for i16

","SimdCast","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl StructuralPartialEq for i16

","StructuralPartialEq","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl TrustedStep for i16

","TrustedStep","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl UnsizedConstParamTy for i16

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl ZeroablePrimitive for i16

","ZeroablePrimitive","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i16> for i16

source§

type Output = <i16 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i16) -> <i16 as Add>::Output

Performs the + operation. Read more
","Add<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Add for i16

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Add for i16

source§

type Output = i16

The resulting type after applying the + operator.
source§

fn add(self, other: i16) -> i16

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl AddAssign<&i16> for i16

source§

fn add_assign(&mut self, other: &i16)

Performs the += operation. Read more
","AddAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl AddAssign for i16

source§

fn add_assign(&mut self, other: i16)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl AddChecked for i16

source§

fn add_checked(self, rhs: i16) -> Option<i16>

","AddChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl AddOverflowing for i16

source§

fn add_overflowing(self, rhs: i16) -> (i16, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl And for i16

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for i16

source§

fn into_le_bytes(self) -> [u8; 2]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 2]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 2]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 2]) -> i16

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 2]) -> i16

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 2]) -> i16

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Base for i16

source§

const MIN: i16 = -32_768i16

Min (finite) value of this number type
source§

const MAX: i16 = 32_767i16

Max (finite) value of this number type
source§

const ZERO: i16 = 0i16

0
source§

const ONE: i16 = 1i16

1
source§

const BITS: i16 = 16i16

Size of this number in bits
source§

const BYTES: i16 = 2i16

Size of this number type in bytes
source§

const ALIGN: i16 = 2i16

Align of this number type in bytes
source§

const BITS_USIZE: usize = 16usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 2usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 2usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> i16

","Base","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Binary for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitAnd<&i16> for i16

source§

type Output = <i16 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i16) -> <i16 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitAnd for i16

source§

type Output = i16

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i16) -> i16

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl BitAndAssign<&i16> for i16

source§

fn bitand_assign(&mut self, other: &i16)

Performs the &= operation. Read more
","BitAndAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl BitAndAssign for i16

source§

fn bitand_assign(&mut self, other: i16)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitOr<&i16> for i16

source§

type Output = <i16 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i16) -> <i16 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitOr for i16

source§

type Output = i16

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i16) -> i16

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl BitOrAssign<&i16> for i16

source§

fn bitor_assign(&mut self, other: &i16)

Performs the |= operation. Read more
","BitOrAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl BitOrAssign for i16

source§

fn bitor_assign(&mut self, other: i16)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitXor<&i16> for i16

source§

type Output = <i16 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i16) -> <i16 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl BitXor for i16

source§

type Output = i16

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i16) -> i16

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl BitXorAssign<&i16> for i16

source§

fn bitxor_assign(&mut self, other: &i16)

Performs the ^= operation. Read more
","BitXorAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl BitXorAssign for i16

source§

fn bitxor_assign(&mut self, other: i16)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Clone for i16

source§

fn clone(&self) -> i16

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl CountBits for i16

","CountBits","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Debug for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Default for i16

source§

fn default() -> i16

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Display for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Div<&i16> for i16

source§

type Output = <i16 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i16) -> <i16 as Div>::Output

Performs the / operation. Read more
","Div<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Div for i16

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Div for i16

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i16

The resulting type after applying the / operator.
source§

fn div(self, other: i16) -> i16

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl DivAssign<&i16> for i16

source§

fn div_assign(&mut self, other: &i16)

Performs the /= operation. Read more
","DivAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl DivAssign for i16

source§

fn div_assign(&mut self, other: i16)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl DivChecked for i16

source§

fn div_checked(self, rhs: i16) -> Option<i16>

","DivChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl DivInt for i16

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl DivOverflowing for i16

source§

fn div_overflowing(self, rhs: i16) -> (i16, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.28.0 · source§

impl From<bool> for i16

source§

fn from(small: bool) -> i16

Converts a bool to i16 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i16::from(true), 1);\nassert_eq!(i16::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.5.0 · source§

impl From<i8> for i16

source§

fn from(small: i8) -> i16

Converts i8 to i16 losslessly.

\n
","From","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.5.0 · source§

impl From<u8> for i16

source§

fn from(small: u8) -> i16

Converts u8 to i16 losslessly.

\n
","From","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromF32Lossy for i16

source§

fn from_f32_lossy(val: f32) -> i16

Converts the provided\nf32\ninto\ni16,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromF64Lossy for i16

source§

fn from_f64_lossy(val: f64) -> i16

Converts the provided\nf64\ninto\ni16,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromI128Lossy for i16

source§

fn from_i128_lossy(val: i128) -> i16

Converts the provided\ni128\ninto\ni16,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromI16Lossless for i16

source§

fn from_i16(val: i16) -> i16

Losslessly converts the provided\ni16\ninto\ni16

\n
","FromI16Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromI16Lossy for i16

source§

fn from_i16_lossy(val: i16) -> i16

Converts the provided\ni16\ninto\ni16,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromI32Lossy for i16

source§

fn from_i32_lossy(val: i32) -> i16

Converts the provided\ni32\ninto\ni16,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromI64Lossy for i16

source§

fn from_i64_lossy(val: i64) -> i16

Converts the provided\ni64\ninto\ni16,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromI8Lossless for i16

source§

fn from_i8(val: i8) -> i16

Losslessly converts the provided\ni8\ninto\ni16

\n
","FromI8Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromI8Lossy for i16

source§

fn from_i8_lossy(val: i8) -> i16

Converts the provided\ni8\ninto\ni16,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromIsizeLossy for i16

source§

fn from_isize_lossy(val: isize) -> i16

Converts the provided\nisize\ninto\ni16,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl FromStr for i16

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i16, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromU128Lossy for i16

source§

fn from_u128_lossy(val: u128) -> i16

Converts the provided\nu128\ninto\ni16,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromU16Lossy for i16

source§

fn from_u16_lossy(val: u16) -> i16

Converts the provided\nu16\ninto\ni16,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromU32Lossy for i16

source§

fn from_u32_lossy(val: u32) -> i16

Converts the provided\nu32\ninto\ni16,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromU64Lossy for i16

source§

fn from_u64_lossy(val: u64) -> i16

Converts the provided\nu64\ninto\ni16,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromU8Lossless for i16

source§

fn from_u8(val: u8) -> i16

Losslessly converts the provided\nu8\ninto\ni16

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromU8Lossy for i16

source§

fn from_u8_lossy(val: u8) -> i16

Converts the provided\nu8\ninto\ni16,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl FromUsizeLossy for i16

source§

fn from_usize_lossy(val: usize) -> i16

Converts the provided\nusize\ninto\ni16,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Hash for i16

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i16], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntSigned for i16

","IntSigned","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoF32Lossless for i16

source§

fn into_f32(self) -> f32

Losslessly converts self into\nf32
","IntoF32Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoF32Lossy for i16

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoF64Lossless for i16

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoF64Lossy for i16

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI128Lossless for i16

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI128Lossy for i16

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI16Lossless for i16

source§

fn into_i16(self) -> i16

Losslessly converts self into\ni16
","IntoI16Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI16Lossy for i16

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI32Lossless for i16

source§

fn into_i32(self) -> i32

Losslessly converts self into\ni32
","IntoI32Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI32Lossy for i16

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI64Lossless for i16

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI64Lossy for i16

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoI8Lossy for i16

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoIsizeLossless for i16

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoIsizeLossy for i16

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoU128Lossy for i16

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoU16Lossy for i16

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoU32Lossy for i16

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoU64Lossy for i16

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoU8Lossy for i16

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl IntoUsizeLossy for i16

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.42.0 · source§

impl LowerExp for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl LowerHex for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Mul<&i16> for i16

source§

type Output = <i16 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i16) -> <i16 as Mul>::Output

Performs the * operation. Read more
","Mul<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Mul for i16

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Mul for i16

source§

type Output = i16

The resulting type after applying the * operator.
source§

fn mul(self, other: i16) -> i16

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl MulAssign<&i16> for i16

source§

fn mul_assign(&mut self, other: &i16)

Performs the *= operation. Read more
","MulAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl MulAssign for i16

source§

fn mul_assign(&mut self, other: i16)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl MulChecked for i16

source§

fn mul_checked(self, rhs: i16) -> Option<i16>

","MulChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl MulOverflowing for i16

source§

fn mul_overflowing(self, rhs: i16) -> (i16, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl MulUnchecked for i16

source§

unsafe fn mul_unchecked(self, rhs: i16) -> i16

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Neg for i16

source§

fn neg_regular(self) -> Self

","Neg","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Neg for i16

source§

type Output = i16

The resulting type after applying the - operator.
source§

fn neg(self) -> i16

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl NegChecked for i16

","NegChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Not for i16

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Not for i16

source§

type Output = i16

The resulting type after applying the ! operator.
source§

fn not(self) -> i16

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Octal for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Or for i16

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Ord for i16

source§

fn cmp(&self, other: &i16) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl PartialEq for i16

source§

fn eq(&self, other: &i16) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i16) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl PartialOrd for i16

source§

fn partial_cmp(&self, other: &i16) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i16) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i16) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i16) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i16) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl<'a> Product<&'a i16> for i16

source§

fn product<I>(iter: I) -> i16
where\n I: Iterator<Item = &'a i16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl Product for i16

source§

fn product<I>(iter: I) -> i16
where\n I: Iterator<Item = i16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Rem<&i16> for i16

source§

type Output = <i16 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i16) -> <i16 as Rem>::Output

Performs the % operation. Read more
","Rem<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Rem for i16

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Rem for i16

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i16

The resulting type after applying the % operator.
source§

fn rem(self, other: i16) -> i16

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl RemAssign<&i16> for i16

source§

fn rem_assign(&mut self, other: &i16)

Performs the %= operation. Read more
","RemAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl RemAssign for i16

source§

fn rem_assign(&mut self, other: i16)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl RemChecked for i16

source§

fn rem_checked(self, rhs: i16) -> Option<i16>

","RemChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i128> for i16

source§

type Output = <i16 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i16 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i16> for i16

source§

type Output = <i16 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i16 as Shl>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i32> for i16

source§

type Output = <i16 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i16 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i64> for i16

source§

type Output = <i16 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i16 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&i8> for i16

source§

type Output = <i16 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i16 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&isize> for i16

source§

type Output = <i16 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i16 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u128> for i16

source§

type Output = <i16 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i16 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u16> for i16

source§

type Output = <i16 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i16 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u32> for i16

source§

type Output = <i16 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i16 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u64> for i16

source§

type Output = <i16 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i16 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&u8> for i16

source§

type Output = <i16 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i16 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<&usize> for i16

source§

type Output = <i16 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i16 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i128> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i32> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i64> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<i8> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<isize> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u128> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u16> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u32> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u64> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<u8> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl<usize> for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Shl for i16

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shl for i16

source§

type Output = i16

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i128> for i16

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i16> for i16

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i32> for i16

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i64> for i16

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&i8> for i16

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&isize> for i16

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u128> for i16

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u16> for i16

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u32> for i16

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u64> for i16

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&u8> for i16

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShlAssign<&usize> for i16

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i128> for i16

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i32> for i16

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i64> for i16

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<i8> for i16

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<isize> for i16

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u128> for i16

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u16> for i16

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u32> for i16

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u64> for i16

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<u8> for i16

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign<usize> for i16

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShlAssign for i16

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl ShlChecked for i16

source§

fn shl_checked(self, rhs: i16) -> Option<i16>

","ShlChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i128> for i16

source§

type Output = <i16 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i16 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i16> for i16

source§

type Output = <i16 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i16 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i32> for i16

source§

type Output = <i16 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i16 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i64> for i16

source§

type Output = <i16 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i16 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&i8> for i16

source§

type Output = <i16 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i16 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&isize> for i16

source§

type Output = <i16 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i16 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u128> for i16

source§

type Output = <i16 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i16 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u16> for i16

source§

type Output = <i16 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i16 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u32> for i16

source§

type Output = <i16 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i16 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u64> for i16

source§

type Output = <i16 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i16 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&u8> for i16

source§

type Output = <i16 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i16 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<&usize> for i16

source§

type Output = <i16 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i16 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i128> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i32> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i64> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<i8> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<isize> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u128> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u16> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u32> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u64> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<u8> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr<usize> for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Shr for i16

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Shr for i16

source§

type Output = i16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i128> for i16

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i16> for i16

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i32> for i16

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i64> for i16

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&i8> for i16

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&isize> for i16

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u128> for i16

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u16> for i16

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u32> for i16

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u64> for i16

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&u8> for i16

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl ShrAssign<&usize> for i16

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i128> for i16

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i32> for i16

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i64> for i16

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<i8> for i16

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<isize> for i16

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u128> for i16

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u16> for i16

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u32> for i16

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u64> for i16

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<u8> for i16

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign<usize> for i16

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl ShrAssign for i16

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl ShrChecked for i16

source§

fn shr_checked(self, rhs: i16) -> Option<i16>

","ShrChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl SimdElement for i16

source§

type Mask = i16

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Step for i16

source§

fn forward(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i16, n: usize) -> i16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i16, end: &i16) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i16, n: usize) -> Option<i16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i16, n: usize) -> Option<i16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Sub<&i16> for i16

source§

type Output = <i16 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i16) -> <i16 as Sub>::Output

Performs the - operation. Read more
","Sub<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Sub for i16

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Sub for i16

source§

type Output = i16

The resulting type after applying the - operator.
source§

fn sub(self, other: i16) -> i16

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.22.0 · source§

impl SubAssign<&i16> for i16

source§

fn sub_assign(&mut self, other: &i16)

Performs the -= operation. Read more
","SubAssign<&i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.8.0 · source§

impl SubAssign for i16

source§

fn sub_assign(&mut self, other: i16)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl SubChecked for i16

source§

fn sub_checked(self, rhs: i16) -> Option<i16>

","SubChecked","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl SubOverflowing for i16

source§

fn sub_overflowing(self, rhs: i16) -> (i16, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl<'a> Sum<&'a i16> for i16

source§

fn sum<I>(iter: I) -> i16
where\n I: Iterator<Item = &'a i16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i16>","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.12.0 · source§

impl Sum for i16

source§

fn sum<I>(iter: I) -> i16
where\n I: Iterator<Item = i16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<i128> for i16

source§

fn try_from(u: i128) -> Result<i16, <i16 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<i32> for i16

source§

fn try_from(u: i32) -> Result<i16, <i16 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<i64> for i16

source§

fn try_from(u: i64) -> Result<i16, <i16 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<isize> for i16

source§

fn try_from(u: isize) -> Result<i16, <i16 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u128> for i16

source§

fn try_from(u: u128) -> Result<i16, <i16 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u16> for i16

source§

fn try_from(u: u16) -> Result<i16, <i16 as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u32> for i16

source§

fn try_from(u: u32) -> Result<i16, <i16 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<u64> for i16

source§

fn try_from(u: u64) -> Result<i16, <i16 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.34.0 · source§

impl TryFrom<usize> for i16

source§

fn try_from(u: usize) -> Result<i16, <i16 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.42.0 · source§

impl UpperExp for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl UpperHex for i16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl Xor for i16

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl ConstParamTy_ for i16

","ConstParamTy_","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Copy for i16

","Copy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
1.0.0 · source§

impl Eq for i16

","Eq","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl MaskElement for i16

","MaskElement","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl SimdCast for i16

","SimdCast","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl StructuralPartialEq for i16

","StructuralPartialEq","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl TrustedStep for i16

","TrustedStep","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl UnsizedConstParamTy for i16

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"],["
source§

impl ZeroablePrimitive for i16

","ZeroablePrimitive","wiwi::rust_std::ffi::c_short","wiwi::rust_std::os::raw::c_short"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[371611]} \ No newline at end of file +//{"start":55,"fragment_lengths":[473020]} \ No newline at end of file diff --git a/type.impl/std/primitive.i32.js b/type.impl/std/primitive.i32.js index 2947cd72a..c6ce591f0 100644 --- a/type.impl/std/primitive.i32.js +++ b/type.impl/std/primitive.i32.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i32> for i32

source§

type Output = <i32 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i32) -> <i32 as Add>::Output

Performs the + operation. Read more
","Add<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Add for i32

source§

type Output = i32

The resulting type after applying the + operator.
source§

fn add(self, other: i32) -> i32

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl AddAssign<&i32> for i32

source§

fn add_assign(&mut self, other: &i32)

Performs the += operation. Read more
","AddAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl AddAssign for i32

source§

fn add_assign(&mut self, other: i32)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.48.0 · source§

impl AsRawFd for i32

source§

fn as_raw_fd(&self) -> i32

Extracts the raw file descriptor. Read more
","AsRawFd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Binary for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitAnd<&i32> for i32

source§

type Output = <i32 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i32) -> <i32 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitAnd for i32

source§

type Output = i32

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i32) -> i32

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl BitAndAssign<&i32> for i32

source§

fn bitand_assign(&mut self, other: &i32)

Performs the &= operation. Read more
","BitAndAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl BitAndAssign for i32

source§

fn bitand_assign(&mut self, other: i32)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitOr<&i32> for i32

source§

type Output = <i32 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i32) -> <i32 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitOr for i32

source§

type Output = i32

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i32) -> i32

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl BitOrAssign<&i32> for i32

source§

fn bitor_assign(&mut self, other: &i32)

Performs the |= operation. Read more
","BitOrAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl BitOrAssign for i32

source§

fn bitor_assign(&mut self, other: i32)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitXor<&i32> for i32

source§

type Output = <i32 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i32) -> <i32 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitXor for i32

source§

type Output = i32

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i32) -> i32

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl BitXorAssign<&i32> for i32

source§

fn bitxor_assign(&mut self, other: &i32)

Performs the ^= operation. Read more
","BitXorAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl BitXorAssign for i32

source§

fn bitxor_assign(&mut self, other: i32)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Clone for i32

source§

fn clone(&self) -> i32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Debug for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Default for i32

source§

fn default() -> i32

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Display for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Div<&i32> for i32

source§

type Output = <i32 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i32) -> <i32 as Div>::Output

Performs the / operation. Read more
","Div<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Div for i32

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i32

The resulting type after applying the / operator.
source§

fn div(self, other: i32) -> i32

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl DivAssign<&i32> for i32

source§

fn div_assign(&mut self, other: &i32)

Performs the /= operation. Read more
","DivAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl DivAssign for i32

source§

fn div_assign(&mut self, other: i32)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.28.0 · source§

impl From<bool> for i32

source§

fn from(small: bool) -> i32

Converts a bool to i32 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i32::from(true), 1);\nassert_eq!(i32::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<i16> for i32

source§

fn from(small: i16) -> i32

Converts i16 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<i8> for i32

source§

fn from(small: i8) -> i32

Converts i8 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<u16> for i32

source§

fn from(small: u16) -> i32

Converts u16 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<u8> for i32

source§

fn from(small: u8) -> i32

Converts u8 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.48.0 · source§

impl FromRawFd for i32

source§

unsafe fn from_raw_fd(fd: i32) -> i32

Constructs a new instance of Self from the given raw file\ndescriptor. Read more
","FromRawFd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl FromStr for i32

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i32, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Hash for i32

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i32], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.48.0 · source§

impl IntoRawFd for i32

source§

fn into_raw_fd(self) -> i32

Consumes this object, returning the raw underlying file descriptor. Read more
","IntoRawFd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.42.0 · source§

impl LowerExp for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl LowerHex for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Mul<&i32> for i32

source§

type Output = <i32 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i32) -> <i32 as Mul>::Output

Performs the * operation. Read more
","Mul<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Mul for i32

source§

type Output = i32

The resulting type after applying the * operator.
source§

fn mul(self, other: i32) -> i32

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl MulAssign<&i32> for i32

source§

fn mul_assign(&mut self, other: &i32)

Performs the *= operation. Read more
","MulAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl MulAssign for i32

source§

fn mul_assign(&mut self, other: i32)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Neg for i32

source§

type Output = i32

The resulting type after applying the - operator.
source§

fn neg(self) -> i32

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Not for i32

source§

type Output = i32

The resulting type after applying the ! operator.
source§

fn not(self) -> i32

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Octal for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Ord for i32

source§

fn cmp(&self, other: &i32) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl PartialEq for i32

source§

fn eq(&self, other: &i32) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i32) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl PartialOrd for i32

source§

fn partial_cmp(&self, other: &i32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i32) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i32) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i32) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i32) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl<'a> Product<&'a i32> for i32

source§

fn product<I>(iter: I) -> i32
where\n I: Iterator<Item = &'a i32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl Product for i32

source§

fn product<I>(iter: I) -> i32
where\n I: Iterator<Item = i32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Rem<&i32> for i32

source§

type Output = <i32 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i32) -> <i32 as Rem>::Output

Performs the % operation. Read more
","Rem<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Rem for i32

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i32

The resulting type after applying the % operator.
source§

fn rem(self, other: i32) -> i32

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl RemAssign<&i32> for i32

source§

fn rem_assign(&mut self, other: &i32)

Performs the %= operation. Read more
","RemAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl RemAssign for i32

source§

fn rem_assign(&mut self, other: i32)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i128> for i32

source§

type Output = <i32 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i32 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i16> for i32

source§

type Output = <i32 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i32 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i32> for i32

source§

type Output = <i32 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i32 as Shl>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i64> for i32

source§

type Output = <i32 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i32 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i8> for i32

source§

type Output = <i32 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i32 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&isize> for i32

source§

type Output = <i32 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i32 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u128> for i32

source§

type Output = <i32 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i32 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u16> for i32

source§

type Output = <i32 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i32 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u32> for i32

source§

type Output = <i32 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i32 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u64> for i32

source§

type Output = <i32 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i32 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u8> for i32

source§

type Output = <i32 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i32 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&usize> for i32

source§

type Output = <i32 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i32 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i128> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i16> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i64> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i8> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<isize> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u128> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u16> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u32> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u64> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u8> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<usize> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for i32

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for i32

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for i32

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for i32

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for i32

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for i32

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for i32

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for i32

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for i32

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for i32

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for i32

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for i32

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i128> for i32

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i16> for i32

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i64> for i32

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i8> for i32

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<isize> for i32

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u128> for i32

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u16> for i32

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u32> for i32

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u64> for i32

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u8> for i32

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<usize> for i32

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign for i32

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i128> for i32

source§

type Output = <i32 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i32 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i16> for i32

source§

type Output = <i32 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i32 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i32> for i32

source§

type Output = <i32 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i32 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i64> for i32

source§

type Output = <i32 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i32 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i8> for i32

source§

type Output = <i32 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i32 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&isize> for i32

source§

type Output = <i32 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i32 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u128> for i32

source§

type Output = <i32 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i32 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u16> for i32

source§

type Output = <i32 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i32 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u32> for i32

source§

type Output = <i32 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i32 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u64> for i32

source§

type Output = <i32 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i32 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u8> for i32

source§

type Output = <i32 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i32 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&usize> for i32

source§

type Output = <i32 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i32 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i128> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i16> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i64> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i8> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<isize> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u128> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u16> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u32> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u64> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u8> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<usize> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for i32

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for i32

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for i32

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for i32

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for i32

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for i32

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for i32

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for i32

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for i32

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for i32

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for i32

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for i32

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i128> for i32

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i16> for i32

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i64> for i32

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i8> for i32

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<isize> for i32

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u128> for i32

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u16> for i32

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u32> for i32

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u64> for i32

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u8> for i32

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<usize> for i32

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign for i32

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl SimdElement for i32

source§

type Mask = i32

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Step for i32

source§

fn forward(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i32, end: &i32) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i32, n: usize) -> Option<i32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i32, n: usize) -> Option<i32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Sub<&i32> for i32

source§

type Output = <i32 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i32) -> <i32 as Sub>::Output

Performs the - operation. Read more
","Sub<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Sub for i32

source§

type Output = i32

The resulting type after applying the - operator.
source§

fn sub(self, other: i32) -> i32

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl SubAssign<&i32> for i32

source§

fn sub_assign(&mut self, other: &i32)

Performs the -= operation. Read more
","SubAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl SubAssign for i32

source§

fn sub_assign(&mut self, other: i32)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl<'a> Sum<&'a i32> for i32

source§

fn sum<I>(iter: I) -> i32
where\n I: Iterator<Item = &'a i32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl Sum for i32

source§

fn sum<I>(iter: I) -> i32
where\n I: Iterator<Item = i32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<i128> for i32

source§

fn try_from(u: i128) -> Result<i32, <i32 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<i64> for i32

source§

fn try_from(u: i64) -> Result<i32, <i32 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<isize> for i32

source§

fn try_from(u: isize) -> Result<i32, <i32 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<u128> for i32

source§

fn try_from(u: u128) -> Result<i32, <i32 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<u32> for i32

source§

fn try_from(u: u32) -> Result<i32, <i32 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<u64> for i32

source§

fn try_from(u: u64) -> Result<i32, <i32 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<usize> for i32

source§

fn try_from(u: usize) -> Result<i32, <i32 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.42.0 · source§

impl UpperExp for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl UpperHex for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl ConstParamTy_ for i32

","ConstParamTy_","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Copy for i32

","Copy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Eq for i32

","Eq","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl MaskElement for i32

","MaskElement","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl SimdCast for i32

","SimdCast","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl StructuralPartialEq for i32

","StructuralPartialEq","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl TrustedStep for i32

","TrustedStep","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl UnsizedConstParamTy for i32

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl ZeroablePrimitive for i32

","ZeroablePrimitive","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i32> for i32

source§

type Output = <i32 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i32) -> <i32 as Add>::Output

Performs the + operation. Read more
","Add<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Add for i32

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Add for i32

source§

type Output = i32

The resulting type after applying the + operator.
source§

fn add(self, other: i32) -> i32

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl AddAssign<&i32> for i32

source§

fn add_assign(&mut self, other: &i32)

Performs the += operation. Read more
","AddAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl AddAssign for i32

source§

fn add_assign(&mut self, other: i32)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl AddChecked for i32

source§

fn add_checked(self, rhs: i32) -> Option<i32>

","AddChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl AddOverflowing for i32

source§

fn add_overflowing(self, rhs: i32) -> (i32, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl And for i32

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for i32

source§

fn into_le_bytes(self) -> [u8; 4]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 4]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 4]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 4]) -> i32

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 4]) -> i32

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 4]) -> i32

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.48.0 · source§

impl AsRawFd for i32

source§

fn as_raw_fd(&self) -> i32

Extracts the raw file descriptor. Read more
","AsRawFd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Base for i32

source§

const MIN: i32 = -2_147_483_648i32

Min (finite) value of this number type
source§

const MAX: i32 = 2_147_483_647i32

Max (finite) value of this number type
source§

const ZERO: i32 = 0i32

0
source§

const ONE: i32 = 1i32

1
source§

const BITS: i32 = 32i32

Size of this number in bits
source§

const BYTES: i32 = 4i32

Size of this number type in bytes
source§

const ALIGN: i32 = 4i32

Align of this number type in bytes
source§

const BITS_USIZE: usize = 32usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 4usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 4usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> i32

","Base","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Binary for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitAnd<&i32> for i32

source§

type Output = <i32 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i32) -> <i32 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitAnd for i32

source§

type Output = i32

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i32) -> i32

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl BitAndAssign<&i32> for i32

source§

fn bitand_assign(&mut self, other: &i32)

Performs the &= operation. Read more
","BitAndAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl BitAndAssign for i32

source§

fn bitand_assign(&mut self, other: i32)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitOr<&i32> for i32

source§

type Output = <i32 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i32) -> <i32 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitOr for i32

source§

type Output = i32

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i32) -> i32

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl BitOrAssign<&i32> for i32

source§

fn bitor_assign(&mut self, other: &i32)

Performs the |= operation. Read more
","BitOrAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl BitOrAssign for i32

source§

fn bitor_assign(&mut self, other: i32)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitXor<&i32> for i32

source§

type Output = <i32 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i32) -> <i32 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl BitXor for i32

source§

type Output = i32

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i32) -> i32

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl BitXorAssign<&i32> for i32

source§

fn bitxor_assign(&mut self, other: &i32)

Performs the ^= operation. Read more
","BitXorAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl BitXorAssign for i32

source§

fn bitxor_assign(&mut self, other: i32)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Clone for i32

source§

fn clone(&self) -> i32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl CountBits for i32

","CountBits","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Debug for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Default for i32

source§

fn default() -> i32

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Display for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Div<&i32> for i32

source§

type Output = <i32 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i32) -> <i32 as Div>::Output

Performs the / operation. Read more
","Div<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Div for i32

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Div for i32

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i32

The resulting type after applying the / operator.
source§

fn div(self, other: i32) -> i32

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl DivAssign<&i32> for i32

source§

fn div_assign(&mut self, other: &i32)

Performs the /= operation. Read more
","DivAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl DivAssign for i32

source§

fn div_assign(&mut self, other: i32)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl DivChecked for i32

source§

fn div_checked(self, rhs: i32) -> Option<i32>

","DivChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl DivInt for i32

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl DivOverflowing for i32

source§

fn div_overflowing(self, rhs: i32) -> (i32, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.28.0 · source§

impl From<bool> for i32

source§

fn from(small: bool) -> i32

Converts a bool to i32 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i32::from(true), 1);\nassert_eq!(i32::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<i16> for i32

source§

fn from(small: i16) -> i32

Converts i16 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<i8> for i32

source§

fn from(small: i8) -> i32

Converts i8 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<u16> for i32

source§

fn from(small: u16) -> i32

Converts u16 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.5.0 · source§

impl From<u8> for i32

source§

fn from(small: u8) -> i32

Converts u8 to i32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromF32Lossy for i32

source§

fn from_f32_lossy(val: f32) -> i32

Converts the provided\nf32\ninto\ni32,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromF64Lossy for i32

source§

fn from_f64_lossy(val: f64) -> i32

Converts the provided\nf64\ninto\ni32,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI128Lossy for i32

source§

fn from_i128_lossy(val: i128) -> i32

Converts the provided\ni128\ninto\ni32,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI16Lossless for i32

source§

fn from_i16(val: i16) -> i32

Losslessly converts the provided\ni16\ninto\ni32

\n
","FromI16Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI16Lossy for i32

source§

fn from_i16_lossy(val: i16) -> i32

Converts the provided\ni16\ninto\ni32,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI32Lossless for i32

source§

fn from_i32(val: i32) -> i32

Losslessly converts the provided\ni32\ninto\ni32

\n
","FromI32Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI32Lossy for i32

source§

fn from_i32_lossy(val: i32) -> i32

Converts the provided\ni32\ninto\ni32,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI64Lossy for i32

source§

fn from_i64_lossy(val: i64) -> i32

Converts the provided\ni64\ninto\ni32,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI8Lossless for i32

source§

fn from_i8(val: i8) -> i32

Losslessly converts the provided\ni8\ninto\ni32

\n
","FromI8Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromI8Lossy for i32

source§

fn from_i8_lossy(val: i8) -> i32

Converts the provided\ni8\ninto\ni32,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromIsizeLossy for i32

source§

fn from_isize_lossy(val: isize) -> i32

Converts the provided\nisize\ninto\ni32,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.48.0 · source§

impl FromRawFd for i32

source§

unsafe fn from_raw_fd(fd: i32) -> i32

Constructs a new instance of Self from the given raw file\ndescriptor. Read more
","FromRawFd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl FromStr for i32

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i32, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromU128Lossy for i32

source§

fn from_u128_lossy(val: u128) -> i32

Converts the provided\nu128\ninto\ni32,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromU16Lossless for i32

source§

fn from_u16(val: u16) -> i32

Losslessly converts the provided\nu16\ninto\ni32

\n
","FromU16Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromU16Lossy for i32

source§

fn from_u16_lossy(val: u16) -> i32

Converts the provided\nu16\ninto\ni32,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromU32Lossy for i32

source§

fn from_u32_lossy(val: u32) -> i32

Converts the provided\nu32\ninto\ni32,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromU64Lossy for i32

source§

fn from_u64_lossy(val: u64) -> i32

Converts the provided\nu64\ninto\ni32,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromU8Lossless for i32

source§

fn from_u8(val: u8) -> i32

Losslessly converts the provided\nu8\ninto\ni32

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromU8Lossy for i32

source§

fn from_u8_lossy(val: u8) -> i32

Converts the provided\nu8\ninto\ni32,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl FromUsizeLossy for i32

source§

fn from_usize_lossy(val: usize) -> i32

Converts the provided\nusize\ninto\ni32,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Hash for i32

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i32], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntSigned for i32

","IntSigned","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoF32Lossy for i32

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoF64Lossless for i32

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoF64Lossy for i32

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI128Lossless for i32

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI128Lossy for i32

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI16Lossy for i32

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI32Lossless for i32

source§

fn into_i32(self) -> i32

Losslessly converts self into\ni32
","IntoI32Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI32Lossy for i32

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI64Lossless for i32

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI64Lossy for i32

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoI8Lossy for i32

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoIsizeLossless for i32

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoIsizeLossy for i32

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.48.0 · source§

impl IntoRawFd for i32

source§

fn into_raw_fd(self) -> i32

Consumes this object, returning the raw underlying file descriptor. Read more
","IntoRawFd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoU128Lossy for i32

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoU16Lossy for i32

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoU32Lossy for i32

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoU64Lossy for i32

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoU8Lossy for i32

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl IntoUsizeLossy for i32

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.42.0 · source§

impl LowerExp for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl LowerHex for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Mul<&i32> for i32

source§

type Output = <i32 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i32) -> <i32 as Mul>::Output

Performs the * operation. Read more
","Mul<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Mul for i32

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Mul for i32

source§

type Output = i32

The resulting type after applying the * operator.
source§

fn mul(self, other: i32) -> i32

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl MulAssign<&i32> for i32

source§

fn mul_assign(&mut self, other: &i32)

Performs the *= operation. Read more
","MulAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl MulAssign for i32

source§

fn mul_assign(&mut self, other: i32)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl MulChecked for i32

source§

fn mul_checked(self, rhs: i32) -> Option<i32>

","MulChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl MulOverflowing for i32

source§

fn mul_overflowing(self, rhs: i32) -> (i32, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl MulUnchecked for i32

source§

unsafe fn mul_unchecked(self, rhs: i32) -> i32

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Neg for i32

source§

fn neg_regular(self) -> Self

","Neg","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Neg for i32

source§

type Output = i32

The resulting type after applying the - operator.
source§

fn neg(self) -> i32

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl NegChecked for i32

","NegChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Not for i32

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Not for i32

source§

type Output = i32

The resulting type after applying the ! operator.
source§

fn not(self) -> i32

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Octal for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Or for i32

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Ord for i32

source§

fn cmp(&self, other: &i32) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl PartialEq for i32

source§

fn eq(&self, other: &i32) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i32) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl PartialOrd for i32

source§

fn partial_cmp(&self, other: &i32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i32) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i32) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i32) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i32) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl<'a> Product<&'a i32> for i32

source§

fn product<I>(iter: I) -> i32
where\n I: Iterator<Item = &'a i32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl Product for i32

source§

fn product<I>(iter: I) -> i32
where\n I: Iterator<Item = i32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Rem<&i32> for i32

source§

type Output = <i32 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i32) -> <i32 as Rem>::Output

Performs the % operation. Read more
","Rem<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Rem for i32

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Rem for i32

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i32

The resulting type after applying the % operator.
source§

fn rem(self, other: i32) -> i32

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl RemAssign<&i32> for i32

source§

fn rem_assign(&mut self, other: &i32)

Performs the %= operation. Read more
","RemAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl RemAssign for i32

source§

fn rem_assign(&mut self, other: i32)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl RemChecked for i32

source§

fn rem_checked(self, rhs: i32) -> Option<i32>

","RemChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i128> for i32

source§

type Output = <i32 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i32 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i16> for i32

source§

type Output = <i32 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i32 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i32> for i32

source§

type Output = <i32 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i32 as Shl>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i64> for i32

source§

type Output = <i32 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i32 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&i8> for i32

source§

type Output = <i32 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i32 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&isize> for i32

source§

type Output = <i32 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i32 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u128> for i32

source§

type Output = <i32 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i32 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u16> for i32

source§

type Output = <i32 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i32 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u32> for i32

source§

type Output = <i32 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i32 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u64> for i32

source§

type Output = <i32 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i32 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&u8> for i32

source§

type Output = <i32 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i32 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<&usize> for i32

source§

type Output = <i32 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i32 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i128> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i16> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i64> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<i8> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<isize> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u128> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u16> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u32> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u64> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<u8> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl<usize> for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Shl for i32

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shl for i32

source§

type Output = i32

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for i32

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for i32

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for i32

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for i32

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for i32

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for i32

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for i32

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for i32

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for i32

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for i32

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for i32

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for i32

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i128> for i32

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i16> for i32

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i64> for i32

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<i8> for i32

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<isize> for i32

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u128> for i32

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u16> for i32

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u32> for i32

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u64> for i32

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<u8> for i32

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign<usize> for i32

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShlAssign for i32

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl ShlChecked for i32

source§

fn shl_checked(self, rhs: i32) -> Option<i32>

","ShlChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i128> for i32

source§

type Output = <i32 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i32 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i16> for i32

source§

type Output = <i32 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i32 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i32> for i32

source§

type Output = <i32 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i32 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i64> for i32

source§

type Output = <i32 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i32 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&i8> for i32

source§

type Output = <i32 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i32 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&isize> for i32

source§

type Output = <i32 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i32 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u128> for i32

source§

type Output = <i32 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i32 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u16> for i32

source§

type Output = <i32 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i32 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u32> for i32

source§

type Output = <i32 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i32 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u64> for i32

source§

type Output = <i32 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i32 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&u8> for i32

source§

type Output = <i32 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i32 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<&usize> for i32

source§

type Output = <i32 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i32 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i128> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i16> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i64> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<i8> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<isize> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u128> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u16> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u32> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u64> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<u8> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr<usize> for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Shr for i32

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Shr for i32

source§

type Output = i32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for i32

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for i32

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for i32

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for i32

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for i32

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for i32

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for i32

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for i32

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for i32

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for i32

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for i32

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for i32

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i128> for i32

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i16> for i32

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i64> for i32

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<i8> for i32

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<isize> for i32

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u128> for i32

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u16> for i32

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u32> for i32

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u64> for i32

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<u8> for i32

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign<usize> for i32

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl ShrAssign for i32

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl ShrChecked for i32

source§

fn shr_checked(self, rhs: i32) -> Option<i32>

","ShrChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl SimdElement for i32

source§

type Mask = i32

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Step for i32

source§

fn forward(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i32, n: usize) -> i32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i32, end: &i32) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i32, n: usize) -> Option<i32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i32, n: usize) -> Option<i32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Sub<&i32> for i32

source§

type Output = <i32 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i32) -> <i32 as Sub>::Output

Performs the - operation. Read more
","Sub<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Sub for i32

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Sub for i32

source§

type Output = i32

The resulting type after applying the - operator.
source§

fn sub(self, other: i32) -> i32

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.22.0 · source§

impl SubAssign<&i32> for i32

source§

fn sub_assign(&mut self, other: &i32)

Performs the -= operation. Read more
","SubAssign<&i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.8.0 · source§

impl SubAssign for i32

source§

fn sub_assign(&mut self, other: i32)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl SubChecked for i32

source§

fn sub_checked(self, rhs: i32) -> Option<i32>

","SubChecked","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl SubOverflowing for i32

source§

fn sub_overflowing(self, rhs: i32) -> (i32, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl<'a> Sum<&'a i32> for i32

source§

fn sum<I>(iter: I) -> i32
where\n I: Iterator<Item = &'a i32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i32>","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.12.0 · source§

impl Sum for i32

source§

fn sum<I>(iter: I) -> i32
where\n I: Iterator<Item = i32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<i128> for i32

source§

fn try_from(u: i128) -> Result<i32, <i32 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<i64> for i32

source§

fn try_from(u: i64) -> Result<i32, <i32 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<isize> for i32

source§

fn try_from(u: isize) -> Result<i32, <i32 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<u128> for i32

source§

fn try_from(u: u128) -> Result<i32, <i32 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<u32> for i32

source§

fn try_from(u: u32) -> Result<i32, <i32 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<u64> for i32

source§

fn try_from(u: u64) -> Result<i32, <i32 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.34.0 · source§

impl TryFrom<usize> for i32

source§

fn try_from(u: usize) -> Result<i32, <i32 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.42.0 · source§

impl UpperExp for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl UpperHex for i32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl Xor for i32

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl ConstParamTy_ for i32

","ConstParamTy_","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Copy for i32

","Copy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
1.0.0 · source§

impl Eq for i32

","Eq","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl MaskElement for i32

","MaskElement","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl SimdCast for i32

","SimdCast","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl StructuralPartialEq for i32

","StructuralPartialEq","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl TrustedStep for i32

","TrustedStep","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl UnsizedConstParamTy for i32

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"],["
source§

impl ZeroablePrimitive for i32

","ZeroablePrimitive","wiwi::rust_std::ffi::c_int","wiwi::rust_std::arch::x86_64::_MM_CMPINT_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_NORM_ENUM","wiwi::rust_std::arch::x86_64::_MM_MANTISSA_SIGN_ENUM","wiwi::rust_std::arch::x86_64::_MM_PERM_ENUM","wiwi::rust_std::io::RawOsError","wiwi::rust_std::os::raw::c_int","wiwi::rust_std::os::fd::RawFd","wiwi::rust_std::os::unix::raw::pid_t"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[426976]} \ No newline at end of file +//{"start":55,"fragment_lengths":[549315]} \ No newline at end of file diff --git a/type.impl/std/primitive.i64.js b/type.impl/std/primitive.i64.js index 167d63874..231877711 100644 --- a/type.impl/std/primitive.i64.js +++ b/type.impl/std/primitive.i64.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i64> for i64

source§

type Output = <i64 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i64) -> <i64 as Add>::Output

Performs the + operation. Read more
","Add<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Add for i64

source§

type Output = i64

The resulting type after applying the + operator.
source§

fn add(self, other: i64) -> i64

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl AddAssign<&i64> for i64

source§

fn add_assign(&mut self, other: &i64)

Performs the += operation. Read more
","AddAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl AddAssign for i64

source§

fn add_assign(&mut self, other: i64)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Binary for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitAnd<&i64> for i64

source§

type Output = <i64 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i64) -> <i64 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitAnd for i64

source§

type Output = i64

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i64) -> i64

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl BitAndAssign<&i64> for i64

source§

fn bitand_assign(&mut self, other: &i64)

Performs the &= operation. Read more
","BitAndAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl BitAndAssign for i64

source§

fn bitand_assign(&mut self, other: i64)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitOr<&i64> for i64

source§

type Output = <i64 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i64) -> <i64 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitOr for i64

source§

type Output = i64

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i64) -> i64

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl BitOrAssign<&i64> for i64

source§

fn bitor_assign(&mut self, other: &i64)

Performs the |= operation. Read more
","BitOrAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl BitOrAssign for i64

source§

fn bitor_assign(&mut self, other: i64)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitXor<&i64> for i64

source§

type Output = <i64 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i64) -> <i64 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitXor for i64

source§

type Output = i64

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i64) -> i64

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl BitXorAssign<&i64> for i64

source§

fn bitxor_assign(&mut self, other: &i64)

Performs the ^= operation. Read more
","BitXorAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl BitXorAssign for i64

source§

fn bitxor_assign(&mut self, other: i64)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Clone for i64

source§

fn clone(&self) -> i64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Debug for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Default for i64

source§

fn default() -> i64

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Display for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Div<&i64> for i64

source§

type Output = <i64 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i64) -> <i64 as Div>::Output

Performs the / operation. Read more
","Div<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Div for i64

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i64

The resulting type after applying the / operator.
source§

fn div(self, other: i64) -> i64

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl DivAssign<&i64> for i64

source§

fn div_assign(&mut self, other: &i64)

Performs the /= operation. Read more
","DivAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl DivAssign for i64

source§

fn div_assign(&mut self, other: i64)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.28.0 · source§

impl From<bool> for i64

source§

fn from(small: bool) -> i64

Converts a bool to i64 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i64::from(true), 1);\nassert_eq!(i64::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<i16> for i64

source§

fn from(small: i16) -> i64

Converts i16 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<i32> for i64

source§

fn from(small: i32) -> i64

Converts i32 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<i8> for i64

source§

fn from(small: i8) -> i64

Converts i8 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<u16> for i64

source§

fn from(small: u16) -> i64

Converts u16 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<u32> for i64

source§

fn from(small: u32) -> i64

Converts u32 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<u8> for i64

source§

fn from(small: u8) -> i64

Converts u8 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl FromStr for i64

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i64, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Hash for i64

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i64], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.42.0 · source§

impl LowerExp for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl LowerHex for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Mul<&i64> for i64

source§

type Output = <i64 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i64) -> <i64 as Mul>::Output

Performs the * operation. Read more
","Mul<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Mul for i64

source§

type Output = i64

The resulting type after applying the * operator.
source§

fn mul(self, other: i64) -> i64

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl MulAssign<&i64> for i64

source§

fn mul_assign(&mut self, other: &i64)

Performs the *= operation. Read more
","MulAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl MulAssign for i64

source§

fn mul_assign(&mut self, other: i64)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Neg for i64

source§

type Output = i64

The resulting type after applying the - operator.
source§

fn neg(self) -> i64

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Not for i64

source§

type Output = i64

The resulting type after applying the ! operator.
source§

fn not(self) -> i64

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Octal for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Ord for i64

source§

fn cmp(&self, other: &i64) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl PartialEq for i64

source§

fn eq(&self, other: &i64) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i64) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl PartialOrd for i64

source§

fn partial_cmp(&self, other: &i64) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i64) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i64) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i64) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i64) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl<'a> Product<&'a i64> for i64

source§

fn product<I>(iter: I) -> i64
where\n I: Iterator<Item = &'a i64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl Product for i64

source§

fn product<I>(iter: I) -> i64
where\n I: Iterator<Item = i64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Rem<&i64> for i64

source§

type Output = <i64 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i64) -> <i64 as Rem>::Output

Performs the % operation. Read more
","Rem<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Rem for i64

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i64

The resulting type after applying the % operator.
source§

fn rem(self, other: i64) -> i64

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl RemAssign<&i64> for i64

source§

fn rem_assign(&mut self, other: &i64)

Performs the %= operation. Read more
","RemAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl RemAssign for i64

source§

fn rem_assign(&mut self, other: i64)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i128> for i64

source§

type Output = <i64 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i64 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i16> for i64

source§

type Output = <i64 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i64 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i32> for i64

source§

type Output = <i64 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i64 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i64> for i64

source§

type Output = <i64 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i64 as Shl>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i8> for i64

source§

type Output = <i64 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i64 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&isize> for i64

source§

type Output = <i64 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i64 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u128> for i64

source§

type Output = <i64 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i64 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u16> for i64

source§

type Output = <i64 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i64 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u32> for i64

source§

type Output = <i64 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i64 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u64> for i64

source§

type Output = <i64 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i64 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u8> for i64

source§

type Output = <i64 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i64 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&usize> for i64

source§

type Output = <i64 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i64 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i128> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i16> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i32> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i8> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<isize> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u128> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u16> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u32> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u64> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u8> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<usize> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for i64

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for i64

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for i64

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for i64

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for i64

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for i64

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for i64

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for i64

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for i64

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for i64

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for i64

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for i64

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i128> for i64

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i16> for i64

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i32> for i64

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i8> for i64

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<isize> for i64

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u128> for i64

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u16> for i64

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u32> for i64

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u64> for i64

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u8> for i64

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<usize> for i64

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign for i64

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i128> for i64

source§

type Output = <i64 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i64 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i16> for i64

source§

type Output = <i64 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i64 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i32> for i64

source§

type Output = <i64 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i64 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i64> for i64

source§

type Output = <i64 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i64 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i8> for i64

source§

type Output = <i64 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i64 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&isize> for i64

source§

type Output = <i64 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i64 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u128> for i64

source§

type Output = <i64 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i64 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u16> for i64

source§

type Output = <i64 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i64 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u32> for i64

source§

type Output = <i64 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i64 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u64> for i64

source§

type Output = <i64 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i64 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u8> for i64

source§

type Output = <i64 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i64 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&usize> for i64

source§

type Output = <i64 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i64 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i128> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i16> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i32> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i8> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<isize> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u128> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u16> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u32> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u64> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u8> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<usize> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for i64

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for i64

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for i64

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for i64

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for i64

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for i64

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for i64

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for i64

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for i64

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for i64

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for i64

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for i64

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i128> for i64

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i16> for i64

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i32> for i64

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i8> for i64

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<isize> for i64

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u128> for i64

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u16> for i64

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u32> for i64

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u64> for i64

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u8> for i64

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<usize> for i64

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign for i64

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl SimdElement for i64

source§

type Mask = i64

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Step for i64

source§

fn forward(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i64, end: &i64) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i64, n: usize) -> Option<i64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i64, n: usize) -> Option<i64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Sub<&i64> for i64

source§

type Output = <i64 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i64) -> <i64 as Sub>::Output

Performs the - operation. Read more
","Sub<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Sub for i64

source§

type Output = i64

The resulting type after applying the - operator.
source§

fn sub(self, other: i64) -> i64

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl SubAssign<&i64> for i64

source§

fn sub_assign(&mut self, other: &i64)

Performs the -= operation. Read more
","SubAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl SubAssign for i64

source§

fn sub_assign(&mut self, other: i64)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl<'a> Sum<&'a i64> for i64

source§

fn sum<I>(iter: I) -> i64
where\n I: Iterator<Item = &'a i64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl Sum for i64

source§

fn sum<I>(iter: I) -> i64
where\n I: Iterator<Item = i64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<i128> for i64

source§

fn try_from(u: i128) -> Result<i64, <i64 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<isize> for i64

source§

fn try_from(value: isize) -> Result<i64, <i64 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<u128> for i64

source§

fn try_from(u: u128) -> Result<i64, <i64 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<u64> for i64

source§

fn try_from(u: u64) -> Result<i64, <i64 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<usize> for i64

source§

fn try_from(u: usize) -> Result<i64, <i64 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.42.0 · source§

impl UpperExp for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl UpperHex for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl ConstParamTy_ for i64

","ConstParamTy_","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Copy for i64

","Copy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Eq for i64

","Eq","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl MaskElement for i64

","MaskElement","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl SimdCast for i64

","SimdCast","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl StructuralPartialEq for i64

","StructuralPartialEq","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl TrustedStep for i64

","TrustedStep","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl UnsizedConstParamTy for i64

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl ZeroablePrimitive for i64

","ZeroablePrimitive","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i64> for i64

source§

type Output = <i64 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i64) -> <i64 as Add>::Output

Performs the + operation. Read more
","Add<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Add for i64

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Add for i64

source§

type Output = i64

The resulting type after applying the + operator.
source§

fn add(self, other: i64) -> i64

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl AddAssign<&i64> for i64

source§

fn add_assign(&mut self, other: &i64)

Performs the += operation. Read more
","AddAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl AddAssign for i64

source§

fn add_assign(&mut self, other: i64)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl AddChecked for i64

source§

fn add_checked(self, rhs: i64) -> Option<i64>

","AddChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl AddOverflowing for i64

source§

fn add_overflowing(self, rhs: i64) -> (i64, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl And for i64

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for i64

source§

fn into_le_bytes(self) -> [u8; 8]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 8]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 8]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 8]) -> i64

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 8]) -> i64

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 8]) -> i64

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Base for i64

source§

const MIN: i64 = -9_223_372_036_854_775_808i64

Min (finite) value of this number type
source§

const MAX: i64 = 9_223_372_036_854_775_807i64

Max (finite) value of this number type
source§

const ZERO: i64 = 0i64

0
source§

const ONE: i64 = 1i64

1
source§

const BITS: i64 = 64i64

Size of this number in bits
source§

const BYTES: i64 = 8i64

Size of this number type in bytes
source§

const ALIGN: i64 = 8i64

Align of this number type in bytes
source§

const BITS_USIZE: usize = 64usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 8usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 8usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> i64

","Base","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Binary for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitAnd<&i64> for i64

source§

type Output = <i64 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i64) -> <i64 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitAnd for i64

source§

type Output = i64

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i64) -> i64

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl BitAndAssign<&i64> for i64

source§

fn bitand_assign(&mut self, other: &i64)

Performs the &= operation. Read more
","BitAndAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl BitAndAssign for i64

source§

fn bitand_assign(&mut self, other: i64)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitOr<&i64> for i64

source§

type Output = <i64 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i64) -> <i64 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitOr for i64

source§

type Output = i64

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i64) -> i64

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl BitOrAssign<&i64> for i64

source§

fn bitor_assign(&mut self, other: &i64)

Performs the |= operation. Read more
","BitOrAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl BitOrAssign for i64

source§

fn bitor_assign(&mut self, other: i64)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitXor<&i64> for i64

source§

type Output = <i64 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i64) -> <i64 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl BitXor for i64

source§

type Output = i64

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i64) -> i64

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl BitXorAssign<&i64> for i64

source§

fn bitxor_assign(&mut self, other: &i64)

Performs the ^= operation. Read more
","BitXorAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl BitXorAssign for i64

source§

fn bitxor_assign(&mut self, other: i64)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Clone for i64

source§

fn clone(&self) -> i64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl CountBits for i64

","CountBits","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Debug for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Default for i64

source§

fn default() -> i64

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Display for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Div<&i64> for i64

source§

type Output = <i64 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i64) -> <i64 as Div>::Output

Performs the / operation. Read more
","Div<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Div for i64

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Div for i64

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i64

The resulting type after applying the / operator.
source§

fn div(self, other: i64) -> i64

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl DivAssign<&i64> for i64

source§

fn div_assign(&mut self, other: &i64)

Performs the /= operation. Read more
","DivAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl DivAssign for i64

source§

fn div_assign(&mut self, other: i64)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl DivChecked for i64

source§

fn div_checked(self, rhs: i64) -> Option<i64>

","DivChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl DivInt for i64

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl DivOverflowing for i64

source§

fn div_overflowing(self, rhs: i64) -> (i64, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.28.0 · source§

impl From<bool> for i64

source§

fn from(small: bool) -> i64

Converts a bool to i64 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i64::from(true), 1);\nassert_eq!(i64::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<i16> for i64

source§

fn from(small: i16) -> i64

Converts i16 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<i32> for i64

source§

fn from(small: i32) -> i64

Converts i32 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<i8> for i64

source§

fn from(small: i8) -> i64

Converts i8 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<u16> for i64

source§

fn from(small: u16) -> i64

Converts u16 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<u32> for i64

source§

fn from(small: u32) -> i64

Converts u32 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.5.0 · source§

impl From<u8> for i64

source§

fn from(small: u8) -> i64

Converts u8 to i64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromF32Lossy for i64

source§

fn from_f32_lossy(val: f32) -> i64

Converts the provided\nf32\ninto\ni64,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromF64Lossy for i64

source§

fn from_f64_lossy(val: f64) -> i64

Converts the provided\nf64\ninto\ni64,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI128Lossy for i64

source§

fn from_i128_lossy(val: i128) -> i64

Converts the provided\ni128\ninto\ni64,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI16Lossless for i64

source§

fn from_i16(val: i16) -> i64

Losslessly converts the provided\ni16\ninto\ni64

\n
","FromI16Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI16Lossy for i64

source§

fn from_i16_lossy(val: i16) -> i64

Converts the provided\ni16\ninto\ni64,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI32Lossless for i64

source§

fn from_i32(val: i32) -> i64

Losslessly converts the provided\ni32\ninto\ni64

\n
","FromI32Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI32Lossy for i64

source§

fn from_i32_lossy(val: i32) -> i64

Converts the provided\ni32\ninto\ni64,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI64Lossless for i64

source§

fn from_i64(val: i64) -> i64

Losslessly converts the provided\ni64\ninto\ni64

\n
","FromI64Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI64Lossy for i64

source§

fn from_i64_lossy(val: i64) -> i64

Converts the provided\ni64\ninto\ni64,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI8Lossless for i64

source§

fn from_i8(val: i8) -> i64

Losslessly converts the provided\ni8\ninto\ni64

\n
","FromI8Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromI8Lossy for i64

source§

fn from_i8_lossy(val: i8) -> i64

Converts the provided\ni8\ninto\ni64,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromIsizeLossless for i64

source§

fn from_isize(val: isize) -> i64

Losslessly converts the provided\nisize\ninto\ni64

\n
","FromIsizeLossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromIsizeLossy for i64

source§

fn from_isize_lossy(val: isize) -> i64

Converts the provided\nisize\ninto\ni64,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl FromStr for i64

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i64, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU128Lossy for i64

source§

fn from_u128_lossy(val: u128) -> i64

Converts the provided\nu128\ninto\ni64,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU16Lossless for i64

source§

fn from_u16(val: u16) -> i64

Losslessly converts the provided\nu16\ninto\ni64

\n
","FromU16Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU16Lossy for i64

source§

fn from_u16_lossy(val: u16) -> i64

Converts the provided\nu16\ninto\ni64,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU32Lossless for i64

source§

fn from_u32(val: u32) -> i64

Losslessly converts the provided\nu32\ninto\ni64

\n
","FromU32Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU32Lossy for i64

source§

fn from_u32_lossy(val: u32) -> i64

Converts the provided\nu32\ninto\ni64,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU64Lossy for i64

source§

fn from_u64_lossy(val: u64) -> i64

Converts the provided\nu64\ninto\ni64,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU8Lossless for i64

source§

fn from_u8(val: u8) -> i64

Losslessly converts the provided\nu8\ninto\ni64

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromU8Lossy for i64

source§

fn from_u8_lossy(val: u8) -> i64

Converts the provided\nu8\ninto\ni64,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl FromUsizeLossy for i64

source§

fn from_usize_lossy(val: usize) -> i64

Converts the provided\nusize\ninto\ni64,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Hash for i64

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i64], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntSigned for i64

","IntSigned","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoF32Lossy for i64

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoF64Lossy for i64

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoI128Lossless for i64

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoI128Lossy for i64

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoI16Lossy for i64

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoI32Lossy for i64

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoI64Lossless for i64

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoI64Lossy for i64

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoI8Lossy for i64

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoIsizeLossless for i64

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoIsizeLossy for i64

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoU128Lossy for i64

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoU16Lossy for i64

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoU32Lossy for i64

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoU64Lossy for i64

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoU8Lossy for i64

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl IntoUsizeLossy for i64

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.42.0 · source§

impl LowerExp for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl LowerHex for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Mul<&i64> for i64

source§

type Output = <i64 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i64) -> <i64 as Mul>::Output

Performs the * operation. Read more
","Mul<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Mul for i64

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Mul for i64

source§

type Output = i64

The resulting type after applying the * operator.
source§

fn mul(self, other: i64) -> i64

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl MulAssign<&i64> for i64

source§

fn mul_assign(&mut self, other: &i64)

Performs the *= operation. Read more
","MulAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl MulAssign for i64

source§

fn mul_assign(&mut self, other: i64)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl MulChecked for i64

source§

fn mul_checked(self, rhs: i64) -> Option<i64>

","MulChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl MulOverflowing for i64

source§

fn mul_overflowing(self, rhs: i64) -> (i64, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl MulUnchecked for i64

source§

unsafe fn mul_unchecked(self, rhs: i64) -> i64

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Neg for i64

source§

fn neg_regular(self) -> Self

","Neg","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Neg for i64

source§

type Output = i64

The resulting type after applying the - operator.
source§

fn neg(self) -> i64

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl NegChecked for i64

","NegChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Not for i64

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Not for i64

source§

type Output = i64

The resulting type after applying the ! operator.
source§

fn not(self) -> i64

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Octal for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Or for i64

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Ord for i64

source§

fn cmp(&self, other: &i64) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl PartialEq for i64

source§

fn eq(&self, other: &i64) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i64) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl PartialOrd for i64

source§

fn partial_cmp(&self, other: &i64) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i64) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i64) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i64) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i64) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl<'a> Product<&'a i64> for i64

source§

fn product<I>(iter: I) -> i64
where\n I: Iterator<Item = &'a i64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl Product for i64

source§

fn product<I>(iter: I) -> i64
where\n I: Iterator<Item = i64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Rem<&i64> for i64

source§

type Output = <i64 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i64) -> <i64 as Rem>::Output

Performs the % operation. Read more
","Rem<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Rem for i64

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Rem for i64

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i64

The resulting type after applying the % operator.
source§

fn rem(self, other: i64) -> i64

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl RemAssign<&i64> for i64

source§

fn rem_assign(&mut self, other: &i64)

Performs the %= operation. Read more
","RemAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl RemAssign for i64

source§

fn rem_assign(&mut self, other: i64)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl RemChecked for i64

source§

fn rem_checked(self, rhs: i64) -> Option<i64>

","RemChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i128> for i64

source§

type Output = <i64 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i64 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i16> for i64

source§

type Output = <i64 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i64 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i32> for i64

source§

type Output = <i64 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i64 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i64> for i64

source§

type Output = <i64 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i64 as Shl>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&i8> for i64

source§

type Output = <i64 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i64 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&isize> for i64

source§

type Output = <i64 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i64 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u128> for i64

source§

type Output = <i64 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i64 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u16> for i64

source§

type Output = <i64 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i64 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u32> for i64

source§

type Output = <i64 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i64 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u64> for i64

source§

type Output = <i64 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i64 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&u8> for i64

source§

type Output = <i64 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i64 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<&usize> for i64

source§

type Output = <i64 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i64 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i128> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i16> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i32> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<i8> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<isize> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u128> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u16> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u32> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u64> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<u8> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl<usize> for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Shl for i64

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shl for i64

source§

type Output = i64

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for i64

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for i64

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for i64

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for i64

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for i64

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for i64

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for i64

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for i64

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for i64

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for i64

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for i64

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for i64

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i128> for i64

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i16> for i64

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i32> for i64

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<i8> for i64

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<isize> for i64

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u128> for i64

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u16> for i64

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u32> for i64

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u64> for i64

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<u8> for i64

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign<usize> for i64

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShlAssign for i64

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl ShlChecked for i64

source§

fn shl_checked(self, rhs: i64) -> Option<i64>

","ShlChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i128> for i64

source§

type Output = <i64 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i64 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i16> for i64

source§

type Output = <i64 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i64 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i32> for i64

source§

type Output = <i64 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i64 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i64> for i64

source§

type Output = <i64 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i64 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&i8> for i64

source§

type Output = <i64 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i64 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&isize> for i64

source§

type Output = <i64 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i64 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u128> for i64

source§

type Output = <i64 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i64 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u16> for i64

source§

type Output = <i64 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i64 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u32> for i64

source§

type Output = <i64 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i64 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u64> for i64

source§

type Output = <i64 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i64 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&u8> for i64

source§

type Output = <i64 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i64 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<&usize> for i64

source§

type Output = <i64 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i64 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i128> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i16> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i32> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<i8> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<isize> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u128> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u16> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u32> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u64> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<u8> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr<usize> for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Shr for i64

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Shr for i64

source§

type Output = i64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for i64

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for i64

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for i64

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for i64

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for i64

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for i64

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for i64

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for i64

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for i64

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for i64

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for i64

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for i64

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i128> for i64

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i16> for i64

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i32> for i64

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<i8> for i64

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<isize> for i64

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u128> for i64

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u16> for i64

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u32> for i64

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u64> for i64

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<u8> for i64

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign<usize> for i64

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl ShrAssign for i64

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl ShrChecked for i64

source§

fn shr_checked(self, rhs: i64) -> Option<i64>

","ShrChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl SimdElement for i64

source§

type Mask = i64

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Step for i64

source§

fn forward(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i64, n: usize) -> i64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i64, end: &i64) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i64, n: usize) -> Option<i64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i64, n: usize) -> Option<i64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Sub<&i64> for i64

source§

type Output = <i64 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i64) -> <i64 as Sub>::Output

Performs the - operation. Read more
","Sub<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Sub for i64

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Sub for i64

source§

type Output = i64

The resulting type after applying the - operator.
source§

fn sub(self, other: i64) -> i64

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.22.0 · source§

impl SubAssign<&i64> for i64

source§

fn sub_assign(&mut self, other: &i64)

Performs the -= operation. Read more
","SubAssign<&i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.8.0 · source§

impl SubAssign for i64

source§

fn sub_assign(&mut self, other: i64)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl SubChecked for i64

source§

fn sub_checked(self, rhs: i64) -> Option<i64>

","SubChecked","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl SubOverflowing for i64

source§

fn sub_overflowing(self, rhs: i64) -> (i64, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl<'a> Sum<&'a i64> for i64

source§

fn sum<I>(iter: I) -> i64
where\n I: Iterator<Item = &'a i64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i64>","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.12.0 · source§

impl Sum for i64

source§

fn sum<I>(iter: I) -> i64
where\n I: Iterator<Item = i64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<i128> for i64

source§

fn try_from(u: i128) -> Result<i64, <i64 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<isize> for i64

source§

fn try_from(value: isize) -> Result<i64, <i64 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<u128> for i64

source§

fn try_from(u: u128) -> Result<i64, <i64 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<u64> for i64

source§

fn try_from(u: u64) -> Result<i64, <i64 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.34.0 · source§

impl TryFrom<usize> for i64

source§

fn try_from(u: usize) -> Result<i64, <i64 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.42.0 · source§

impl UpperExp for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl UpperHex for i64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl Xor for i64

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl ConstParamTy_ for i64

","ConstParamTy_","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Copy for i64

","Copy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
1.0.0 · source§

impl Eq for i64

","Eq","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl MaskElement for i64

","MaskElement","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl SimdCast for i64

","SimdCast","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl StructuralPartialEq for i64

","StructuralPartialEq","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl TrustedStep for i64

","TrustedStep","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl UnsizedConstParamTy for i64

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"],["
source§

impl ZeroablePrimitive for i64

","ZeroablePrimitive","wiwi::rust_std::ffi::c_long","wiwi::rust_std::ffi::c_longlong","wiwi::rust_std::os::raw::c_long","wiwi::rust_std::os::raw::c_longlong","wiwi::rust_std::os::linux::raw::time_t"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[385656]} \ No newline at end of file +//{"start":55,"fragment_lengths":[496693]} \ No newline at end of file diff --git a/type.impl/std/primitive.i8.js b/type.impl/std/primitive.i8.js index 33b2512f7..7de6361be 100644 --- a/type.impl/std/primitive.i8.js +++ b/type.impl/std/primitive.i8.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i8> for i8

source§

type Output = <i8 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i8) -> <i8 as Add>::Output

Performs the + operation. Read more
","Add<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Add for i8

source§

type Output = i8

The resulting type after applying the + operator.
source§

fn add(self, other: i8) -> i8

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl AddAssign<&i8> for i8

source§

fn add_assign(&mut self, other: &i8)

Performs the += operation. Read more
","AddAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl AddAssign for i8

source§

fn add_assign(&mut self, other: i8)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Binary for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitAnd<&i8> for i8

source§

type Output = <i8 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i8) -> <i8 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitAnd for i8

source§

type Output = i8

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i8) -> i8

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl BitAndAssign<&i8> for i8

source§

fn bitand_assign(&mut self, other: &i8)

Performs the &= operation. Read more
","BitAndAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl BitAndAssign for i8

source§

fn bitand_assign(&mut self, other: i8)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitOr<&i8> for i8

source§

type Output = <i8 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i8) -> <i8 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitOr for i8

source§

type Output = i8

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i8) -> i8

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl BitOrAssign<&i8> for i8

source§

fn bitor_assign(&mut self, other: &i8)

Performs the |= operation. Read more
","BitOrAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl BitOrAssign for i8

source§

fn bitor_assign(&mut self, other: i8)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitXor<&i8> for i8

source§

type Output = <i8 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i8) -> <i8 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitXor for i8

source§

type Output = i8

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i8) -> i8

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl BitXorAssign<&i8> for i8

source§

fn bitxor_assign(&mut self, other: &i8)

Performs the ^= operation. Read more
","BitXorAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl BitXorAssign for i8

source§

fn bitxor_assign(&mut self, other: i8)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Clone for i8

source§

fn clone(&self) -> i8

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Debug for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Default for i8

source§

fn default() -> i8

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Display for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Div<&i8> for i8

source§

type Output = <i8 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i8) -> <i8 as Div>::Output

Performs the / operation. Read more
","Div<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Div for i8

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i8

The resulting type after applying the / operator.
source§

fn div(self, other: i8) -> i8

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl DivAssign<&i8> for i8

source§

fn div_assign(&mut self, other: &i8)

Performs the /= operation. Read more
","DivAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl DivAssign for i8

source§

fn div_assign(&mut self, other: i8)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.28.0 · source§

impl From<bool> for i8

source§

fn from(small: bool) -> i8

Converts a bool to i8 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i8::from(true), 1);\nassert_eq!(i8::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl FromStr for i8

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i8, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Hash for i8

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i8], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.42.0 · source§

impl LowerExp for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl LowerHex for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Mul<&i8> for i8

source§

type Output = <i8 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i8) -> <i8 as Mul>::Output

Performs the * operation. Read more
","Mul<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Mul for i8

source§

type Output = i8

The resulting type after applying the * operator.
source§

fn mul(self, other: i8) -> i8

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl MulAssign<&i8> for i8

source§

fn mul_assign(&mut self, other: &i8)

Performs the *= operation. Read more
","MulAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl MulAssign for i8

source§

fn mul_assign(&mut self, other: i8)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Neg for i8

source§

type Output = i8

The resulting type after applying the - operator.
source§

fn neg(self) -> i8

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Not for i8

source§

type Output = i8

The resulting type after applying the ! operator.
source§

fn not(self) -> i8

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Octal for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Ord for i8

source§

fn cmp(&self, other: &i8) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl PartialEq for i8

source§

fn eq(&self, other: &i8) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i8) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl PartialOrd for i8

source§

fn partial_cmp(&self, other: &i8) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i8) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i8) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i8) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i8) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl<'a> Product<&'a i8> for i8

source§

fn product<I>(iter: I) -> i8
where\n I: Iterator<Item = &'a i8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl Product for i8

source§

fn product<I>(iter: I) -> i8
where\n I: Iterator<Item = i8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Rem<&i8> for i8

source§

type Output = <i8 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i8) -> <i8 as Rem>::Output

Performs the % operation. Read more
","Rem<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Rem for i8

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i8

The resulting type after applying the % operator.
source§

fn rem(self, other: i8) -> i8

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl RemAssign<&i8> for i8

source§

fn rem_assign(&mut self, other: &i8)

Performs the %= operation. Read more
","RemAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl RemAssign for i8

source§

fn rem_assign(&mut self, other: i8)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i128> for i8

source§

type Output = <i8 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i8 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i16> for i8

source§

type Output = <i8 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i8 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i32> for i8

source§

type Output = <i8 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i8 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i64> for i8

source§

type Output = <i8 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i8 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i8> for i8

source§

type Output = <i8 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i8 as Shl>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&isize> for i8

source§

type Output = <i8 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i8 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u128> for i8

source§

type Output = <i8 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i8 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u16> for i8

source§

type Output = <i8 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i8 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u32> for i8

source§

type Output = <i8 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i8 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u64> for i8

source§

type Output = <i8 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i8 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u8> for i8

source§

type Output = <i8 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i8 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&usize> for i8

source§

type Output = <i8 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i8 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i128> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i16> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i32> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i64> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<isize> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u128> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u16> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u32> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u64> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u8> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<usize> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i128> for i8

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i16> for i8

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i32> for i8

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i64> for i8

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i8> for i8

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&isize> for i8

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u128> for i8

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u16> for i8

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u32> for i8

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u64> for i8

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u8> for i8

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&usize> for i8

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i128> for i8

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i16> for i8

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i32> for i8

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i64> for i8

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<isize> for i8

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u128> for i8

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u16> for i8

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u32> for i8

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u64> for i8

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u8> for i8

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<usize> for i8

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign for i8

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i128> for i8

source§

type Output = <i8 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i8 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i16> for i8

source§

type Output = <i8 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i8 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i32> for i8

source§

type Output = <i8 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i8 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i64> for i8

source§

type Output = <i8 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i8 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i8> for i8

source§

type Output = <i8 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i8 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&isize> for i8

source§

type Output = <i8 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i8 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u128> for i8

source§

type Output = <i8 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i8 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u16> for i8

source§

type Output = <i8 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i8 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u32> for i8

source§

type Output = <i8 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i8 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u64> for i8

source§

type Output = <i8 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i8 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u8> for i8

source§

type Output = <i8 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i8 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&usize> for i8

source§

type Output = <i8 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i8 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i128> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i16> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i32> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i64> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<isize> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u128> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u16> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u32> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u64> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u8> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<usize> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i128> for i8

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i16> for i8

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i32> for i8

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i64> for i8

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i8> for i8

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&isize> for i8

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u128> for i8

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u16> for i8

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u32> for i8

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u64> for i8

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u8> for i8

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&usize> for i8

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i128> for i8

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i16> for i8

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i32> for i8

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i64> for i8

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<isize> for i8

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u128> for i8

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u16> for i8

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u32> for i8

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u64> for i8

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u8> for i8

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<usize> for i8

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign for i8

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl SimdElement for i8

source§

type Mask = i8

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Step for i8

source§

fn forward(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i8, end: &i8) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i8, n: usize) -> Option<i8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i8, n: usize) -> Option<i8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Sub<&i8> for i8

source§

type Output = <i8 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i8) -> <i8 as Sub>::Output

Performs the - operation. Read more
","Sub<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Sub for i8

source§

type Output = i8

The resulting type after applying the - operator.
source§

fn sub(self, other: i8) -> i8

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl SubAssign<&i8> for i8

source§

fn sub_assign(&mut self, other: &i8)

Performs the -= operation. Read more
","SubAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl SubAssign for i8

source§

fn sub_assign(&mut self, other: i8)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl<'a> Sum<&'a i8> for i8

source§

fn sum<I>(iter: I) -> i8
where\n I: Iterator<Item = &'a i8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl Sum for i8

source§

fn sum<I>(iter: I) -> i8
where\n I: Iterator<Item = i8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i128> for i8

source§

fn try_from(u: i128) -> Result<i8, <i8 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i16> for i8

source§

fn try_from(u: i16) -> Result<i8, <i8 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i32> for i8

source§

fn try_from(u: i32) -> Result<i8, <i8 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i64> for i8

source§

fn try_from(u: i64) -> Result<i8, <i8 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<isize> for i8

source§

fn try_from(u: isize) -> Result<i8, <i8 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u128> for i8

source§

fn try_from(u: u128) -> Result<i8, <i8 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u16> for i8

source§

fn try_from(u: u16) -> Result<i8, <i8 as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u32> for i8

source§

fn try_from(u: u32) -> Result<i8, <i8 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u64> for i8

source§

fn try_from(u: u64) -> Result<i8, <i8 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u8> for i8

source§

fn try_from(u: u8) -> Result<i8, <i8 as TryFrom<u8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<usize> for i8

source§

fn try_from(u: usize) -> Result<i8, <i8 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.42.0 · source§

impl UpperExp for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl UpperHex for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl ConstParamTy_ for i8

","ConstParamTy_","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Copy for i8

","Copy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Eq for i8

","Eq","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl MaskElement for i8

","MaskElement","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl SimdCast for i8

","SimdCast","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl StructuralPartialEq for i8

","StructuralPartialEq","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl TrustedStep for i8

","TrustedStep","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl UnsizedConstParamTy for i8

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl ZeroablePrimitive for i8

","ZeroablePrimitive","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&i8> for i8

source§

type Output = <i8 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &i8) -> <i8 as Add>::Output

Performs the + operation. Read more
","Add<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Add for i8

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Add for i8

source§

type Output = i8

The resulting type after applying the + operator.
source§

fn add(self, other: i8) -> i8

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl AddAssign<&i8> for i8

source§

fn add_assign(&mut self, other: &i8)

Performs the += operation. Read more
","AddAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl AddAssign for i8

source§

fn add_assign(&mut self, other: i8)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl AddChecked for i8

source§

fn add_checked(self, rhs: i8) -> Option<i8>

","AddChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl AddOverflowing for i8

source§

fn add_overflowing(self, rhs: i8) -> (i8, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl And for i8

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for i8

source§

fn into_le_bytes(self) -> [u8; 1]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 1]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 1]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 1]) -> i8

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 1]) -> i8

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 1]) -> i8

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Base for i8

source§

const MIN: i8 = -128i8

Min (finite) value of this number type
source§

const MAX: i8 = 127i8

Max (finite) value of this number type
source§

const ZERO: i8 = 0i8

0
source§

const ONE: i8 = 1i8

1
source§

const BITS: i8 = 8i8

Size of this number in bits
source§

const BYTES: i8 = 1i8

Size of this number type in bytes
source§

const ALIGN: i8 = 1i8

Align of this number type in bytes
source§

const BITS_USIZE: usize = 8usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 1usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 1usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> i8

","Base","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Binary for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitAnd<&i8> for i8

source§

type Output = <i8 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &i8) -> <i8 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitAnd for i8

source§

type Output = i8

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: i8) -> i8

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl BitAndAssign<&i8> for i8

source§

fn bitand_assign(&mut self, other: &i8)

Performs the &= operation. Read more
","BitAndAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl BitAndAssign for i8

source§

fn bitand_assign(&mut self, other: i8)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitOr<&i8> for i8

source§

type Output = <i8 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &i8) -> <i8 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitOr for i8

source§

type Output = i8

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: i8) -> i8

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl BitOrAssign<&i8> for i8

source§

fn bitor_assign(&mut self, other: &i8)

Performs the |= operation. Read more
","BitOrAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl BitOrAssign for i8

source§

fn bitor_assign(&mut self, other: i8)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitXor<&i8> for i8

source§

type Output = <i8 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &i8) -> <i8 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl BitXor for i8

source§

type Output = i8

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: i8) -> i8

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl BitXorAssign<&i8> for i8

source§

fn bitxor_assign(&mut self, other: &i8)

Performs the ^= operation. Read more
","BitXorAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl BitXorAssign for i8

source§

fn bitxor_assign(&mut self, other: i8)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Clone for i8

source§

fn clone(&self) -> i8

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl CountBits for i8

","CountBits","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Debug for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Default for i8

source§

fn default() -> i8

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Display for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Div<&i8> for i8

source§

type Output = <i8 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &i8) -> <i8 as Div>::Output

Performs the / operation. Read more
","Div<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Div for i8

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Div for i8

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = i8

The resulting type after applying the / operator.
source§

fn div(self, other: i8) -> i8

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl DivAssign<&i8> for i8

source§

fn div_assign(&mut self, other: &i8)

Performs the /= operation. Read more
","DivAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl DivAssign for i8

source§

fn div_assign(&mut self, other: i8)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl DivChecked for i8

source§

fn div_checked(self, rhs: i8) -> Option<i8>

","DivChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl DivInt for i8

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl DivOverflowing for i8

source§

fn div_overflowing(self, rhs: i8) -> (i8, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.28.0 · source§

impl From<bool> for i8

source§

fn from(small: bool) -> i8

Converts a bool to i8 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(i8::from(true), 1);\nassert_eq!(i8::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromF32Lossy for i8

source§

fn from_f32_lossy(val: f32) -> i8

Converts the provided\nf32\ninto\ni8,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromF64Lossy for i8

source§

fn from_f64_lossy(val: f64) -> i8

Converts the provided\nf64\ninto\ni8,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromI128Lossy for i8

source§

fn from_i128_lossy(val: i128) -> i8

Converts the provided\ni128\ninto\ni8,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromI16Lossy for i8

source§

fn from_i16_lossy(val: i16) -> i8

Converts the provided\ni16\ninto\ni8,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromI32Lossy for i8

source§

fn from_i32_lossy(val: i32) -> i8

Converts the provided\ni32\ninto\ni8,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromI64Lossy for i8

source§

fn from_i64_lossy(val: i64) -> i8

Converts the provided\ni64\ninto\ni8,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromI8Lossless for i8

source§

fn from_i8(val: i8) -> i8

Losslessly converts the provided\ni8\ninto\ni8

\n
","FromI8Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromI8Lossy for i8

source§

fn from_i8_lossy(val: i8) -> i8

Converts the provided\ni8\ninto\ni8,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromIsizeLossy for i8

source§

fn from_isize_lossy(val: isize) -> i8

Converts the provided\nisize\ninto\ni8,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl FromStr for i8

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<i8, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromU128Lossy for i8

source§

fn from_u128_lossy(val: u128) -> i8

Converts the provided\nu128\ninto\ni8,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromU16Lossy for i8

source§

fn from_u16_lossy(val: u16) -> i8

Converts the provided\nu16\ninto\ni8,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromU32Lossy for i8

source§

fn from_u32_lossy(val: u32) -> i8

Converts the provided\nu32\ninto\ni8,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromU64Lossy for i8

source§

fn from_u64_lossy(val: u64) -> i8

Converts the provided\nu64\ninto\ni8,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromU8Lossy for i8

source§

fn from_u8_lossy(val: u8) -> i8

Converts the provided\nu8\ninto\ni8,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl FromUsizeLossy for i8

source§

fn from_usize_lossy(val: usize) -> i8

Converts the provided\nusize\ninto\ni8,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Hash for i8

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[i8], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntSigned for i8

","IntSigned","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoF32Lossless for i8

source§

fn into_f32(self) -> f32

Losslessly converts self into\nf32
","IntoF32Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoF32Lossy for i8

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoF64Lossless for i8

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoF64Lossy for i8

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI128Lossless for i8

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI128Lossy for i8

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI16Lossless for i8

source§

fn into_i16(self) -> i16

Losslessly converts self into\ni16
","IntoI16Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI16Lossy for i8

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI32Lossless for i8

source§

fn into_i32(self) -> i32

Losslessly converts self into\ni32
","IntoI32Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI32Lossy for i8

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI64Lossless for i8

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI64Lossy for i8

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI8Lossless for i8

source§

fn into_i8(self) -> i8

Losslessly converts self into\ni8
","IntoI8Lossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoI8Lossy for i8

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoIsizeLossless for i8

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoIsizeLossy for i8

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoU128Lossy for i8

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoU16Lossy for i8

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoU32Lossy for i8

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoU64Lossy for i8

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoU8Lossy for i8

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl IntoUsizeLossy for i8

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.42.0 · source§

impl LowerExp for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl LowerHex for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Mul<&i8> for i8

source§

type Output = <i8 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &i8) -> <i8 as Mul>::Output

Performs the * operation. Read more
","Mul<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Mul for i8

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Mul for i8

source§

type Output = i8

The resulting type after applying the * operator.
source§

fn mul(self, other: i8) -> i8

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl MulAssign<&i8> for i8

source§

fn mul_assign(&mut self, other: &i8)

Performs the *= operation. Read more
","MulAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl MulAssign for i8

source§

fn mul_assign(&mut self, other: i8)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl MulChecked for i8

source§

fn mul_checked(self, rhs: i8) -> Option<i8>

","MulChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl MulOverflowing for i8

source§

fn mul_overflowing(self, rhs: i8) -> (i8, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl MulUnchecked for i8

source§

unsafe fn mul_unchecked(self, rhs: i8) -> i8

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Neg for i8

source§

fn neg_regular(self) -> Self

","Neg","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Neg for i8

source§

type Output = i8

The resulting type after applying the - operator.
source§

fn neg(self) -> i8

Performs the unary - operation. Read more
","Neg","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl NegChecked for i8

","NegChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Not for i8

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Not for i8

source§

type Output = i8

The resulting type after applying the ! operator.
source§

fn not(self) -> i8

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Octal for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Or for i8

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Ord for i8

source§

fn cmp(&self, other: &i8) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl PartialEq for i8

source§

fn eq(&self, other: &i8) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &i8) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl PartialOrd for i8

source§

fn partial_cmp(&self, other: &i8) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &i8) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &i8) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &i8) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &i8) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl<'a> Product<&'a i8> for i8

source§

fn product<I>(iter: I) -> i8
where\n I: Iterator<Item = &'a i8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl Product for i8

source§

fn product<I>(iter: I) -> i8
where\n I: Iterator<Item = i8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Rem<&i8> for i8

source§

type Output = <i8 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &i8) -> <i8 as Rem>::Output

Performs the % operation. Read more
","Rem<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Rem for i8

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Rem for i8

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = i8

The resulting type after applying the % operator.
source§

fn rem(self, other: i8) -> i8

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl RemAssign<&i8> for i8

source§

fn rem_assign(&mut self, other: &i8)

Performs the %= operation. Read more
","RemAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl RemAssign for i8

source§

fn rem_assign(&mut self, other: i8)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl RemChecked for i8

source§

fn rem_checked(self, rhs: i8) -> Option<i8>

","RemChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i128> for i8

source§

type Output = <i8 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <i8 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i16> for i8

source§

type Output = <i8 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <i8 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i32> for i8

source§

type Output = <i8 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <i8 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i64> for i8

source§

type Output = <i8 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <i8 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&i8> for i8

source§

type Output = <i8 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <i8 as Shl>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&isize> for i8

source§

type Output = <i8 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <i8 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u128> for i8

source§

type Output = <i8 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <i8 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u16> for i8

source§

type Output = <i8 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <i8 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u32> for i8

source§

type Output = <i8 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <i8 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u64> for i8

source§

type Output = <i8 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <i8 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&u8> for i8

source§

type Output = <i8 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <i8 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<&usize> for i8

source§

type Output = <i8 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <i8 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i128> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i16> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i32> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<i64> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<isize> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u128> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u16> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u32> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u64> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<u8> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl<usize> for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Shl for i8

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shl for i8

source§

type Output = i8

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> i8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i128> for i8

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i16> for i8

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i32> for i8

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i64> for i8

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&i8> for i8

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&isize> for i8

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u128> for i8

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u16> for i8

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u32> for i8

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u64> for i8

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&u8> for i8

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShlAssign<&usize> for i8

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i128> for i8

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i16> for i8

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i32> for i8

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<i64> for i8

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<isize> for i8

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u128> for i8

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u16> for i8

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u32> for i8

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u64> for i8

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<u8> for i8

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign<usize> for i8

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShlAssign for i8

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl ShlChecked for i8

source§

fn shl_checked(self, rhs: i8) -> Option<i8>

","ShlChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i128> for i8

source§

type Output = <i8 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <i8 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i16> for i8

source§

type Output = <i8 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <i8 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i32> for i8

source§

type Output = <i8 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <i8 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i64> for i8

source§

type Output = <i8 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <i8 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&i8> for i8

source§

type Output = <i8 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <i8 as Shr>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&isize> for i8

source§

type Output = <i8 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <i8 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u128> for i8

source§

type Output = <i8 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <i8 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u16> for i8

source§

type Output = <i8 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <i8 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u32> for i8

source§

type Output = <i8 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <i8 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u64> for i8

source§

type Output = <i8 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <i8 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&u8> for i8

source§

type Output = <i8 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <i8 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<&usize> for i8

source§

type Output = <i8 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <i8 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i128> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i16> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i32> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<i64> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<isize> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u128> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u16> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u32> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u64> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<u8> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr<usize> for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Shr for i8

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Shr for i8

source§

type Output = i8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> i8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i128> for i8

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i16> for i8

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i32> for i8

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i64> for i8

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&i8> for i8

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&isize> for i8

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u128> for i8

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u16> for i8

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u32> for i8

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u64> for i8

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&u8> for i8

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl ShrAssign<&usize> for i8

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i128> for i8

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i16> for i8

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i32> for i8

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<i64> for i8

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<isize> for i8

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u128> for i8

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u16> for i8

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u32> for i8

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u64> for i8

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<u8> for i8

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign<usize> for i8

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl ShrAssign for i8

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl ShrChecked for i8

source§

fn shr_checked(self, rhs: i8) -> Option<i8>

","ShrChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl SimdElement for i8

source§

type Mask = i8

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Step for i8

source§

fn forward(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: i8, n: usize) -> i8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &i8, end: &i8) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: i8, n: usize) -> Option<i8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: i8, n: usize) -> Option<i8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Sub<&i8> for i8

source§

type Output = <i8 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &i8) -> <i8 as Sub>::Output

Performs the - operation. Read more
","Sub<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Sub for i8

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Sub for i8

source§

type Output = i8

The resulting type after applying the - operator.
source§

fn sub(self, other: i8) -> i8

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.22.0 · source§

impl SubAssign<&i8> for i8

source§

fn sub_assign(&mut self, other: &i8)

Performs the -= operation. Read more
","SubAssign<&i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.8.0 · source§

impl SubAssign for i8

source§

fn sub_assign(&mut self, other: i8)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl SubChecked for i8

source§

fn sub_checked(self, rhs: i8) -> Option<i8>

","SubChecked","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl SubOverflowing for i8

source§

fn sub_overflowing(self, rhs: i8) -> (i8, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl<'a> Sum<&'a i8> for i8

source§

fn sum<I>(iter: I) -> i8
where\n I: Iterator<Item = &'a i8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a i8>","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.12.0 · source§

impl Sum for i8

source§

fn sum<I>(iter: I) -> i8
where\n I: Iterator<Item = i8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i128> for i8

source§

fn try_from(u: i128) -> Result<i8, <i8 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i16> for i8

source§

fn try_from(u: i16) -> Result<i8, <i8 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i32> for i8

source§

fn try_from(u: i32) -> Result<i8, <i8 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<i64> for i8

source§

fn try_from(u: i64) -> Result<i8, <i8 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<isize> for i8

source§

fn try_from(u: isize) -> Result<i8, <i8 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u128> for i8

source§

fn try_from(u: u128) -> Result<i8, <i8 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u16> for i8

source§

fn try_from(u: u16) -> Result<i8, <i8 as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u32> for i8

source§

fn try_from(u: u32) -> Result<i8, <i8 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u64> for i8

source§

fn try_from(u: u64) -> Result<i8, <i8 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<u8> for i8

source§

fn try_from(u: u8) -> Result<i8, <i8 as TryFrom<u8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.34.0 · source§

impl TryFrom<usize> for i8

source§

fn try_from(u: usize) -> Result<i8, <i8 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.42.0 · source§

impl UpperExp for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl UpperHex for i8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl Xor for i8

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl ConstParamTy_ for i8

","ConstParamTy_","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Copy for i8

","Copy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
1.0.0 · source§

impl Eq for i8

","Eq","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl MaskElement for i8

","MaskElement","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl SimdCast for i8

","SimdCast","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl StructuralPartialEq for i8

","StructuralPartialEq","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl TrustedStep for i8

","TrustedStep","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl UnsizedConstParamTy for i8

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"],["
source§

impl ZeroablePrimitive for i8

","ZeroablePrimitive","wiwi::rust_std::ffi::c_char","wiwi::rust_std::ffi::c_schar","wiwi::rust_std::os::raw::c_char","wiwi::rust_std::os::raw::c_schar"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[383957]} \ No newline at end of file +//{"start":55,"fragment_lengths":[487699]} \ No newline at end of file diff --git a/type.impl/std/primitive.isize.js b/type.impl/std/primitive.isize.js index 372f7d334..cd1ca1a6c 100644 --- a/type.impl/std/primitive.isize.js +++ b/type.impl/std/primitive.isize.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&isize> for isize

source§

type Output = <isize as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &isize) -> <isize as Add>::Output

Performs the + operation. Read more
","Add<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Add for isize

source§

type Output = isize

The resulting type after applying the + operator.
source§

fn add(self, other: isize) -> isize

Performs the + operation. Read more
","Add","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl AddAssign<&isize> for isize

source§

fn add_assign(&mut self, other: &isize)

Performs the += operation. Read more
","AddAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl AddAssign for isize

source§

fn add_assign(&mut self, other: isize)

Performs the += operation. Read more
","AddAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Binary for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitAnd<&isize> for isize

source§

type Output = <isize as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &isize) -> <isize as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitAnd for isize

source§

type Output = isize

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: isize) -> isize

Performs the & operation. Read more
","BitAnd","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl BitAndAssign<&isize> for isize

source§

fn bitand_assign(&mut self, other: &isize)

Performs the &= operation. Read more
","BitAndAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl BitAndAssign for isize

source§

fn bitand_assign(&mut self, other: isize)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitOr<&isize> for isize

source§

type Output = <isize as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &isize) -> <isize as BitOr>::Output

Performs the | operation. Read more
","BitOr<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitOr for isize

source§

type Output = isize

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: isize) -> isize

Performs the | operation. Read more
","BitOr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl BitOrAssign<&isize> for isize

source§

fn bitor_assign(&mut self, other: &isize)

Performs the |= operation. Read more
","BitOrAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl BitOrAssign for isize

source§

fn bitor_assign(&mut self, other: isize)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitXor<&isize> for isize

source§

type Output = <isize as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &isize) -> <isize as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitXor for isize

source§

type Output = isize

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: isize) -> isize

Performs the ^ operation. Read more
","BitXor","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl BitXorAssign<&isize> for isize

source§

fn bitxor_assign(&mut self, other: &isize)

Performs the ^= operation. Read more
","BitXorAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl BitXorAssign for isize

source§

fn bitxor_assign(&mut self, other: isize)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Clone for isize

source§

fn clone(&self) -> isize

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Debug for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Default for isize

source§

fn default() -> isize

Returns the default value of 0

\n
","Default","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Display for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Div<&isize> for isize

source§

type Output = <isize as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &isize) -> <isize as Div>::Output

Performs the / operation. Read more
","Div<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Div for isize

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = isize

The resulting type after applying the / operator.
source§

fn div(self, other: isize) -> isize

Performs the / operation. Read more
","Div","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl DivAssign<&isize> for isize

source§

fn div_assign(&mut self, other: &isize)

Performs the /= operation. Read more
","DivAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl DivAssign for isize

source§

fn div_assign(&mut self, other: isize)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.28.0 · source§

impl From<bool> for isize

source§

fn from(small: bool) -> isize

Converts a bool to isize losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(isize::from(true), 1);\nassert_eq!(isize::from(false), 0);
\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.26.0 · source§

impl From<i16> for isize

source§

fn from(small: i16) -> isize

Converts i16 to isize losslessly.

\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.5.0 · source§

impl From<i8> for isize

source§

fn from(small: i8) -> isize

Converts i8 to isize losslessly.

\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.26.0 · source§

impl From<u8> for isize

source§

fn from(small: u8) -> isize

Converts u8 to isize losslessly.

\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl FromStr for isize

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<isize, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Hash for isize

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[isize], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.42.0 · source§

impl LowerExp for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl LowerHex for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Mul<&isize> for isize

source§

type Output = <isize as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &isize) -> <isize as Mul>::Output

Performs the * operation. Read more
","Mul<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Mul for isize

source§

type Output = isize

The resulting type after applying the * operator.
source§

fn mul(self, other: isize) -> isize

Performs the * operation. Read more
","Mul","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl MulAssign<&isize> for isize

source§

fn mul_assign(&mut self, other: &isize)

Performs the *= operation. Read more
","MulAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl MulAssign for isize

source§

fn mul_assign(&mut self, other: isize)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Neg for isize

source§

type Output = isize

The resulting type after applying the - operator.
source§

fn neg(self) -> isize

Performs the unary - operation. Read more
","Neg","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Not for isize

source§

type Output = isize

The resulting type after applying the ! operator.
source§

fn not(self) -> isize

Performs the unary ! operation. Read more
","Not","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Octal for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Ord for isize

source§

fn cmp(&self, other: &isize) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl PartialEq for isize

source§

fn eq(&self, other: &isize) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &isize) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl PartialOrd for isize

source§

fn partial_cmp(&self, other: &isize) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &isize) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &isize) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &isize) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &isize) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl<'a> Product<&'a isize> for isize

source§

fn product<I>(iter: I) -> isize
where\n I: Iterator<Item = &'a isize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl Product for isize

source§

fn product<I>(iter: I) -> isize
where\n I: Iterator<Item = isize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Rem<&isize> for isize

source§

type Output = <isize as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &isize) -> <isize as Rem>::Output

Performs the % operation. Read more
","Rem<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Rem for isize

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = isize

The resulting type after applying the % operator.
source§

fn rem(self, other: isize) -> isize

Performs the % operation. Read more
","Rem","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl RemAssign<&isize> for isize

source§

fn rem_assign(&mut self, other: &isize)

Performs the %= operation. Read more
","RemAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl RemAssign for isize

source§

fn rem_assign(&mut self, other: isize)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i128> for isize

source§

type Output = <isize as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <isize as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i16> for isize

source§

type Output = <isize as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <isize as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i32> for isize

source§

type Output = <isize as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <isize as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i64> for isize

source§

type Output = <isize as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <isize as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i8> for isize

source§

type Output = <isize as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <isize as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&isize> for isize

source§

type Output = <isize as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <isize as Shl>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u128> for isize

source§

type Output = <isize as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <isize as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u16> for isize

source§

type Output = <isize as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <isize as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u32> for isize

source§

type Output = <isize as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <isize as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u64> for isize

source§

type Output = <isize as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <isize as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u8> for isize

source§

type Output = <isize as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <isize as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&usize> for isize

source§

type Output = <isize as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <isize as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i128> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i16> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i32> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i64> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i8> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u128> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u16> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u32> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u64> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u8> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<usize> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for isize

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for isize

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for isize

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for isize

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for isize

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for isize

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for isize

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for isize

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for isize

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for isize

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for isize

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for isize

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i128> for isize

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i16> for isize

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i32> for isize

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i64> for isize

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i8> for isize

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u128> for isize

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u16> for isize

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u32> for isize

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u64> for isize

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u8> for isize

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<usize> for isize

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign for isize

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i128> for isize

source§

type Output = <isize as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <isize as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i16> for isize

source§

type Output = <isize as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <isize as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i32> for isize

source§

type Output = <isize as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <isize as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i64> for isize

source§

type Output = <isize as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <isize as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i8> for isize

source§

type Output = <isize as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <isize as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&isize> for isize

source§

type Output = <isize as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <isize as Shr>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u128> for isize

source§

type Output = <isize as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <isize as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u16> for isize

source§

type Output = <isize as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <isize as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u32> for isize

source§

type Output = <isize as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <isize as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u64> for isize

source§

type Output = <isize as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <isize as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u8> for isize

source§

type Output = <isize as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <isize as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&usize> for isize

source§

type Output = <isize as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <isize as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i128> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i16> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i32> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i64> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i8> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u128> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u16> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u32> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u64> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u8> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<usize> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for isize

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for isize

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for isize

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for isize

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for isize

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for isize

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for isize

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for isize

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for isize

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for isize

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for isize

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for isize

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i128> for isize

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i16> for isize

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i32> for isize

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i64> for isize

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i8> for isize

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u128> for isize

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u16> for isize

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u32> for isize

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u64> for isize

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u8> for isize

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<usize> for isize

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign for isize

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl SimdElement for isize

source§

type Mask = isize

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Step for isize

source§

fn forward(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &isize, end: &isize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: isize, n: usize) -> Option<isize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: isize, n: usize) -> Option<isize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Sub<&isize> for isize

source§

type Output = <isize as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &isize) -> <isize as Sub>::Output

Performs the - operation. Read more
","Sub<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Sub for isize

source§

type Output = isize

The resulting type after applying the - operator.
source§

fn sub(self, other: isize) -> isize

Performs the - operation. Read more
","Sub","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl SubAssign<&isize> for isize

source§

fn sub_assign(&mut self, other: &isize)

Performs the -= operation. Read more
","SubAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl SubAssign for isize

source§

fn sub_assign(&mut self, other: isize)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl<'a> Sum<&'a isize> for isize

source§

fn sum<I>(iter: I) -> isize
where\n I: Iterator<Item = &'a isize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl Sum for isize

source§

fn sum<I>(iter: I) -> isize
where\n I: Iterator<Item = isize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<i128> for isize

source§

fn try_from(u: i128) -> Result<isize, <isize as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<i32> for isize

source§

fn try_from(value: i32) -> Result<isize, <isize as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<i64> for isize

source§

fn try_from(value: i64) -> Result<isize, <isize as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u128> for isize

source§

fn try_from(u: u128) -> Result<isize, <isize as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u16> for isize

source§

fn try_from(value: u16) -> Result<isize, <isize as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u32> for isize

source§

fn try_from(value: u32) -> Result<isize, <isize as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u64> for isize

source§

fn try_from(u: u64) -> Result<isize, <isize as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<usize> for isize

source§

fn try_from(u: usize) -> Result<isize, <isize as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.42.0 · source§

impl UpperExp for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl UpperHex for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl ConstParamTy_ for isize

","ConstParamTy_","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Copy for isize

","Copy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Eq for isize

","Eq","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl MaskElement for isize

","MaskElement","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl SimdCast for isize

","SimdCast","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl StructuralPartialEq for isize

","StructuralPartialEq","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl TrustedStep for isize

","TrustedStep","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl UnsizedConstParamTy for isize

","UnsizedConstParamTy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl ZeroablePrimitive for isize

","ZeroablePrimitive","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&isize> for isize

source§

type Output = <isize as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &isize) -> <isize as Add>::Output

Performs the + operation. Read more
","Add<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Add for isize

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Add for isize

source§

type Output = isize

The resulting type after applying the + operator.
source§

fn add(self, other: isize) -> isize

Performs the + operation. Read more
","Add","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl AddAssign<&isize> for isize

source§

fn add_assign(&mut self, other: &isize)

Performs the += operation. Read more
","AddAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl AddAssign for isize

source§

fn add_assign(&mut self, other: isize)

Performs the += operation. Read more
","AddAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl AddChecked for isize

","AddChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl AddOverflowing for isize

source§

fn add_overflowing(self, rhs: isize) -> (isize, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl And for isize

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for isize

source§

fn into_le_bytes(self) -> [u8; 8]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 8]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 8]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 8]) -> isize

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 8]) -> isize

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 8]) -> isize

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Base for isize

source§

const MIN: isize = -9_223_372_036_854_775_808isize

Min (finite) value of this number type
source§

const MAX: isize = 9_223_372_036_854_775_807isize

Max (finite) value of this number type
source§

const ZERO: isize = 0isize

0
source§

const ONE: isize = 1isize

1
source§

const BITS: isize = 64isize

Size of this number in bits
source§

const BYTES: isize = 8isize

Size of this number type in bytes
source§

const ALIGN: isize = 8isize

Align of this number type in bytes
source§

const BITS_USIZE: usize = 64usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 8usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 8usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> isize

","Base","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Binary for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitAnd<&isize> for isize

source§

type Output = <isize as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &isize) -> <isize as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitAnd for isize

source§

type Output = isize

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: isize) -> isize

Performs the & operation. Read more
","BitAnd","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl BitAndAssign<&isize> for isize

source§

fn bitand_assign(&mut self, other: &isize)

Performs the &= operation. Read more
","BitAndAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl BitAndAssign for isize

source§

fn bitand_assign(&mut self, other: isize)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitOr<&isize> for isize

source§

type Output = <isize as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &isize) -> <isize as BitOr>::Output

Performs the | operation. Read more
","BitOr<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitOr for isize

source§

type Output = isize

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: isize) -> isize

Performs the | operation. Read more
","BitOr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl BitOrAssign<&isize> for isize

source§

fn bitor_assign(&mut self, other: &isize)

Performs the |= operation. Read more
","BitOrAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl BitOrAssign for isize

source§

fn bitor_assign(&mut self, other: isize)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitXor<&isize> for isize

source§

type Output = <isize as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &isize) -> <isize as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl BitXor for isize

source§

type Output = isize

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: isize) -> isize

Performs the ^ operation. Read more
","BitXor","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl BitXorAssign<&isize> for isize

source§

fn bitxor_assign(&mut self, other: &isize)

Performs the ^= operation. Read more
","BitXorAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl BitXorAssign for isize

source§

fn bitxor_assign(&mut self, other: isize)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Clone for isize

source§

fn clone(&self) -> isize

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl CountBits for isize

","CountBits","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Debug for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Default for isize

source§

fn default() -> isize

Returns the default value of 0

\n
","Default","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Display for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Div<&isize> for isize

source§

type Output = <isize as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &isize) -> <isize as Div>::Output

Performs the / operation. Read more
","Div<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Div for isize

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Div for isize

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0 or the division results in overflow.

\n
source§

type Output = isize

The resulting type after applying the / operator.
source§

fn div(self, other: isize) -> isize

Performs the / operation. Read more
","Div","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl DivAssign<&isize> for isize

source§

fn div_assign(&mut self, other: &isize)

Performs the /= operation. Read more
","DivAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl DivAssign for isize

source§

fn div_assign(&mut self, other: isize)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl DivChecked for isize

","DivChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl DivInt for isize

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl DivOverflowing for isize

source§

fn div_overflowing(self, rhs: isize) -> (isize, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.28.0 · source§

impl From<bool> for isize

source§

fn from(small: bool) -> isize

Converts a bool to isize losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(isize::from(true), 1);\nassert_eq!(isize::from(false), 0);
\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.26.0 · source§

impl From<i16> for isize

source§

fn from(small: i16) -> isize

Converts i16 to isize losslessly.

\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.5.0 · source§

impl From<i8> for isize

source§

fn from(small: i8) -> isize

Converts i8 to isize losslessly.

\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.26.0 · source§

impl From<u8> for isize

source§

fn from(small: u8) -> isize

Converts u8 to isize losslessly.

\n
","From","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromF32Lossy for isize

source§

fn from_f32_lossy(val: f32) -> isize

Converts the provided\nf32\ninto\nisize,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromF64Lossy for isize

source§

fn from_f64_lossy(val: f64) -> isize

Converts the provided\nf64\ninto\nisize,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI128Lossy for isize

source§

fn from_i128_lossy(val: i128) -> isize

Converts the provided\ni128\ninto\nisize,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI16Lossless for isize

source§

fn from_i16(val: i16) -> isize

Losslessly converts the provided\ni16\ninto\nisize

\n
","FromI16Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI16Lossy for isize

source§

fn from_i16_lossy(val: i16) -> isize

Converts the provided\ni16\ninto\nisize,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI32Lossless for isize

source§

fn from_i32(val: i32) -> isize

Losslessly converts the provided\ni32\ninto\nisize

\n
","FromI32Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI32Lossy for isize

source§

fn from_i32_lossy(val: i32) -> isize

Converts the provided\ni32\ninto\nisize,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI64Lossless for isize

source§

fn from_i64(val: i64) -> isize

Losslessly converts the provided\ni64\ninto\nisize

\n
","FromI64Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI64Lossy for isize

source§

fn from_i64_lossy(val: i64) -> isize

Converts the provided\ni64\ninto\nisize,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI8Lossless for isize

source§

fn from_i8(val: i8) -> isize

Losslessly converts the provided\ni8\ninto\nisize

\n
","FromI8Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromI8Lossy for isize

source§

fn from_i8_lossy(val: i8) -> isize

Converts the provided\ni8\ninto\nisize,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromIsizeLossless for isize

source§

fn from_isize(val: isize) -> isize

Losslessly converts the provided\nisize\ninto\nisize

\n
","FromIsizeLossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromIsizeLossy for isize

source§

fn from_isize_lossy(val: isize) -> isize

Converts the provided\nisize\ninto\nisize,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl FromStr for isize

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<isize, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU128Lossy for isize

source§

fn from_u128_lossy(val: u128) -> isize

Converts the provided\nu128\ninto\nisize,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU16Lossless for isize

source§

fn from_u16(val: u16) -> isize

Losslessly converts the provided\nu16\ninto\nisize

\n
","FromU16Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU16Lossy for isize

source§

fn from_u16_lossy(val: u16) -> isize

Converts the provided\nu16\ninto\nisize,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU32Lossless for isize

source§

fn from_u32(val: u32) -> isize

Losslessly converts the provided\nu32\ninto\nisize

\n
","FromU32Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU32Lossy for isize

source§

fn from_u32_lossy(val: u32) -> isize

Converts the provided\nu32\ninto\nisize,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU64Lossy for isize

source§

fn from_u64_lossy(val: u64) -> isize

Converts the provided\nu64\ninto\nisize,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU8Lossless for isize

source§

fn from_u8(val: u8) -> isize

Losslessly converts the provided\nu8\ninto\nisize

\n
","FromU8Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromU8Lossy for isize

source§

fn from_u8_lossy(val: u8) -> isize

Converts the provided\nu8\ninto\nisize,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl FromUsizeLossy for isize

source§

fn from_usize_lossy(val: usize) -> isize

Converts the provided\nusize\ninto\nisize,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Hash for isize

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[isize], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntSigned for isize

","IntSigned","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoF32Lossy for isize

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoF64Lossy for isize

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoI128Lossless for isize

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoI128Lossy for isize

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoI16Lossy for isize

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoI32Lossy for isize

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoI64Lossless for isize

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoI64Lossy for isize

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoI8Lossy for isize

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoIsizeLossless for isize

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoIsizeLossy for isize

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoU128Lossy for isize

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoU16Lossy for isize

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoU32Lossy for isize

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoU64Lossy for isize

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoU8Lossy for isize

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl IntoUsizeLossy for isize

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.42.0 · source§

impl LowerExp for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl LowerHex for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Mul<&isize> for isize

source§

type Output = <isize as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &isize) -> <isize as Mul>::Output

Performs the * operation. Read more
","Mul<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Mul for isize

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Mul for isize

source§

type Output = isize

The resulting type after applying the * operator.
source§

fn mul(self, other: isize) -> isize

Performs the * operation. Read more
","Mul","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl MulAssign<&isize> for isize

source§

fn mul_assign(&mut self, other: &isize)

Performs the *= operation. Read more
","MulAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl MulAssign for isize

source§

fn mul_assign(&mut self, other: isize)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl MulChecked for isize

","MulChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl MulOverflowing for isize

source§

fn mul_overflowing(self, rhs: isize) -> (isize, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl MulUnchecked for isize

source§

unsafe fn mul_unchecked(self, rhs: isize) -> isize

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Neg for isize

source§

fn neg_regular(self) -> Self

","Neg","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Neg for isize

source§

type Output = isize

The resulting type after applying the - operator.
source§

fn neg(self) -> isize

Performs the unary - operation. Read more
","Neg","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl NegChecked for isize

","NegChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Not for isize

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Not for isize

source§

type Output = isize

The resulting type after applying the ! operator.
source§

fn not(self) -> isize

Performs the unary ! operation. Read more
","Not","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Octal for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Or for isize

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Ord for isize

source§

fn cmp(&self, other: &isize) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl PartialEq for isize

source§

fn eq(&self, other: &isize) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &isize) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl PartialOrd for isize

source§

fn partial_cmp(&self, other: &isize) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &isize) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &isize) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &isize) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &isize) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl<'a> Product<&'a isize> for isize

source§

fn product<I>(iter: I) -> isize
where\n I: Iterator<Item = &'a isize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl Product for isize

source§

fn product<I>(iter: I) -> isize
where\n I: Iterator<Item = isize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Rem<&isize> for isize

source§

type Output = <isize as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &isize) -> <isize as Rem>::Output

Performs the % operation. Read more
","Rem<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Rem for isize

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Rem for isize

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0 or if self / other results in overflow.

\n
source§

type Output = isize

The resulting type after applying the % operator.
source§

fn rem(self, other: isize) -> isize

Performs the % operation. Read more
","Rem","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl RemAssign<&isize> for isize

source§

fn rem_assign(&mut self, other: &isize)

Performs the %= operation. Read more
","RemAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl RemAssign for isize

source§

fn rem_assign(&mut self, other: isize)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl RemChecked for isize

","RemChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i128> for isize

source§

type Output = <isize as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <isize as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i16> for isize

source§

type Output = <isize as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <isize as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i32> for isize

source§

type Output = <isize as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <isize as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i64> for isize

source§

type Output = <isize as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <isize as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&i8> for isize

source§

type Output = <isize as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <isize as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&isize> for isize

source§

type Output = <isize as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <isize as Shl>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u128> for isize

source§

type Output = <isize as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <isize as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u16> for isize

source§

type Output = <isize as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <isize as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u32> for isize

source§

type Output = <isize as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <isize as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u64> for isize

source§

type Output = <isize as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <isize as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&u8> for isize

source§

type Output = <isize as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <isize as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<&usize> for isize

source§

type Output = <isize as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <isize as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i128> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i16> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i32> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i64> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<i8> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u128> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u16> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u32> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u64> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<u8> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl<usize> for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Shl for isize

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shl for isize

source§

type Output = isize

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> isize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for isize

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for isize

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for isize

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for isize

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for isize

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for isize

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for isize

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for isize

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for isize

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for isize

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for isize

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for isize

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i128> for isize

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i16> for isize

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i32> for isize

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i64> for isize

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<i8> for isize

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u128> for isize

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u16> for isize

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u32> for isize

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u64> for isize

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<u8> for isize

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign<usize> for isize

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShlAssign for isize

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl ShlChecked for isize

","ShlChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i128> for isize

source§

type Output = <isize as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <isize as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i16> for isize

source§

type Output = <isize as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <isize as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i32> for isize

source§

type Output = <isize as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <isize as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i64> for isize

source§

type Output = <isize as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <isize as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&i8> for isize

source§

type Output = <isize as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <isize as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&isize> for isize

source§

type Output = <isize as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <isize as Shr>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u128> for isize

source§

type Output = <isize as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <isize as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u16> for isize

source§

type Output = <isize as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <isize as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u32> for isize

source§

type Output = <isize as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <isize as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u64> for isize

source§

type Output = <isize as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <isize as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&u8> for isize

source§

type Output = <isize as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <isize as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<&usize> for isize

source§

type Output = <isize as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <isize as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i128> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i16> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i32> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i64> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<i8> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u128> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u16> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u32> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u64> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<u8> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr<usize> for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Shr for isize

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Shr for isize

source§

type Output = isize

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> isize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for isize

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for isize

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for isize

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for isize

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for isize

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for isize

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for isize

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for isize

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for isize

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for isize

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for isize

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for isize

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i128> for isize

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i16> for isize

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i32> for isize

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i64> for isize

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<i8> for isize

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u128> for isize

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u16> for isize

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u32> for isize

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u64> for isize

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<u8> for isize

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign<usize> for isize

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl ShrAssign for isize

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl ShrChecked for isize

","ShrChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl SimdElement for isize

source§

type Mask = isize

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Step for isize

source§

fn forward(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: isize, n: usize) -> isize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &isize, end: &isize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: isize, n: usize) -> Option<isize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: isize, n: usize) -> Option<isize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Sub<&isize> for isize

source§

type Output = <isize as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &isize) -> <isize as Sub>::Output

Performs the - operation. Read more
","Sub<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Sub for isize

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Sub for isize

source§

type Output = isize

The resulting type after applying the - operator.
source§

fn sub(self, other: isize) -> isize

Performs the - operation. Read more
","Sub","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.22.0 · source§

impl SubAssign<&isize> for isize

source§

fn sub_assign(&mut self, other: &isize)

Performs the -= operation. Read more
","SubAssign<&isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.8.0 · source§

impl SubAssign for isize

source§

fn sub_assign(&mut self, other: isize)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl SubChecked for isize

","SubChecked","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl SubOverflowing for isize

source§

fn sub_overflowing(self, rhs: isize) -> (isize, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl<'a> Sum<&'a isize> for isize

source§

fn sum<I>(iter: I) -> isize
where\n I: Iterator<Item = &'a isize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a isize>","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.12.0 · source§

impl Sum for isize

source§

fn sum<I>(iter: I) -> isize
where\n I: Iterator<Item = isize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<i128> for isize

source§

fn try_from(u: i128) -> Result<isize, <isize as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<i32> for isize

source§

fn try_from(value: i32) -> Result<isize, <isize as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<i64> for isize

source§

fn try_from(value: i64) -> Result<isize, <isize as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u128> for isize

source§

fn try_from(u: u128) -> Result<isize, <isize as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u16> for isize

source§

fn try_from(value: u16) -> Result<isize, <isize as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u32> for isize

source§

fn try_from(value: u32) -> Result<isize, <isize as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<u64> for isize

source§

fn try_from(u: u64) -> Result<isize, <isize as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.34.0 · source§

impl TryFrom<usize> for isize

source§

fn try_from(u: usize) -> Result<isize, <isize as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.42.0 · source§

impl UpperExp for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl UpperHex for isize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl Xor for isize

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl ConstParamTy_ for isize

","ConstParamTy_","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Copy for isize

","Copy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
1.0.0 · source§

impl Eq for isize

","Eq","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl MaskElement for isize

","MaskElement","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl SimdCast for isize

","SimdCast","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl StructuralPartialEq for isize

","StructuralPartialEq","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl TrustedStep for isize

","TrustedStep","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl UnsizedConstParamTy for isize

","UnsizedConstParamTy","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"],["
source§

impl ZeroablePrimitive for isize

","ZeroablePrimitive","wiwi::rust_core::ffi::c_ptrdiff_t","wiwi::rust_core::ffi::c_ssize_t"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[373443]} \ No newline at end of file +//{"start":55,"fragment_lengths":[477971]} \ No newline at end of file diff --git a/type.impl/std/primitive.u16.js b/type.impl/std/primitive.u16.js index f5ac07c5d..9be1459e7 100644 --- a/type.impl/std/primitive.u16.js +++ b/type.impl/std/primitive.u16.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u16> for u16

source§

type Output = <u16 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u16) -> <u16 as Add>::Output

Performs the + operation. Read more
","Add<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Add for u16

source§

type Output = u16

The resulting type after applying the + operator.
source§

fn add(self, other: u16) -> u16

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl AddAssign<&u16> for u16

source§

fn add_assign(&mut self, other: &u16)

Performs the += operation. Read more
","AddAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl AddAssign for u16

source§

fn add_assign(&mut self, other: u16)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Binary for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitAnd<&u16> for u16

source§

type Output = <u16 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u16) -> <u16 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitAnd for u16

source§

type Output = u16

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u16) -> u16

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl BitAndAssign<&u16> for u16

source§

fn bitand_assign(&mut self, other: &u16)

Performs the &= operation. Read more
","BitAndAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl BitAndAssign for u16

source§

fn bitand_assign(&mut self, other: u16)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitOr<&u16> for u16

source§

type Output = <u16 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u16) -> <u16 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitOr for u16

source§

type Output = u16

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u16) -> u16

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl BitOrAssign<&u16> for u16

source§

fn bitor_assign(&mut self, other: &u16)

Performs the |= operation. Read more
","BitOrAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl BitOrAssign for u16

source§

fn bitor_assign(&mut self, other: u16)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitXor<&u16> for u16

source§

type Output = <u16 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u16) -> <u16 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitXor for u16

source§

type Output = u16

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u16) -> u16

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl BitXorAssign<&u16> for u16

source§

fn bitxor_assign(&mut self, other: &u16)

Performs the ^= operation. Read more
","BitXorAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl BitXorAssign for u16

source§

fn bitxor_assign(&mut self, other: u16)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Clone for u16

source§

fn clone(&self) -> u16

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Debug for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Default for u16

source§

fn default() -> u16

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Display for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Div<&u16> for u16

source§

type Output = <u16 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u16) -> <u16 as Div>::Output

Performs the / operation. Read more
","Div<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.51.0 · source§

impl Div<NonZero<u16>> for u16

source§

fn div(self, other: NonZero<u16>) -> u16

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u16

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Div for u16

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u16

The resulting type after applying the / operator.
source§

fn div(self, other: u16) -> u16

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl DivAssign<&u16> for u16

source§

fn div_assign(&mut self, other: &u16)

Performs the /= operation. Read more
","DivAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.79.0 · source§

impl DivAssign<NonZero<u16>> for u16

source§

fn div_assign(&mut self, other: NonZero<u16>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl DivAssign for u16

source§

fn div_assign(&mut self, other: u16)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl From<AsciiChar> for u16

source§

fn from(chr: AsciiChar) -> u16

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.28.0 · source§

impl From<bool> for u16

source§

fn from(small: bool) -> u16

Converts a bool to u16 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u16::from(true), 1);\nassert_eq!(u16::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.5.0 · source§

impl From<u8> for u16

source§

fn from(small: u8) -> u16

Converts u8 to u16 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl FromStr for u16

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u16, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Hash for u16

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u16], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.42.0 · source§

impl LowerExp for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl LowerHex for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Mul<&u16> for u16

source§

type Output = <u16 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u16) -> <u16 as Mul>::Output

Performs the * operation. Read more
","Mul<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Mul for u16

source§

type Output = u16

The resulting type after applying the * operator.
source§

fn mul(self, other: u16) -> u16

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl MulAssign<&u16> for u16

source§

fn mul_assign(&mut self, other: &u16)

Performs the *= operation. Read more
","MulAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl MulAssign for u16

source§

fn mul_assign(&mut self, other: u16)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Not for u16

source§

type Output = u16

The resulting type after applying the ! operator.
source§

fn not(self) -> u16

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Octal for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Ord for u16

source§

fn cmp(&self, other: &u16) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl PartialEq for u16

source§

fn eq(&self, other: &u16) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u16) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl PartialOrd for u16

source§

fn partial_cmp(&self, other: &u16) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u16) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u16) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u16) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u16) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl<'a> Product<&'a u16> for u16

source§

fn product<I>(iter: I) -> u16
where\n I: Iterator<Item = &'a u16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl Product for u16

source§

fn product<I>(iter: I) -> u16
where\n I: Iterator<Item = u16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Rem<&u16> for u16

source§

type Output = <u16 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u16) -> <u16 as Rem>::Output

Performs the % operation. Read more
","Rem<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.51.0 · source§

impl Rem<NonZero<u16>> for u16

source§

fn rem(self, other: NonZero<u16>) -> u16

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u16

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Rem for u16

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u16

The resulting type after applying the % operator.
source§

fn rem(self, other: u16) -> u16

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl RemAssign<&u16> for u16

source§

fn rem_assign(&mut self, other: &u16)

Performs the %= operation. Read more
","RemAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.79.0 · source§

impl RemAssign<NonZero<u16>> for u16

source§

fn rem_assign(&mut self, other: NonZero<u16>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl RemAssign for u16

source§

fn rem_assign(&mut self, other: u16)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i128> for u16

source§

type Output = <u16 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u16 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i16> for u16

source§

type Output = <u16 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u16 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i32> for u16

source§

type Output = <u16 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u16 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i64> for u16

source§

type Output = <u16 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u16 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i8> for u16

source§

type Output = <u16 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u16 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&isize> for u16

source§

type Output = <u16 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u16 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u128> for u16

source§

type Output = <u16 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u16 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u16> for u16

source§

type Output = <u16 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u16 as Shl>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u32> for u16

source§

type Output = <u16 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u16 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u64> for u16

source§

type Output = <u16 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u16 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u8> for u16

source§

type Output = <u16 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u16 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&usize> for u16

source§

type Output = <u16 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u16 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i128> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i16> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i32> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i64> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i8> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<isize> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u128> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u32> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u64> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u8> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<usize> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i128> for u16

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i16> for u16

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i32> for u16

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i64> for u16

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i8> for u16

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&isize> for u16

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u128> for u16

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u16> for u16

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u32> for u16

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u64> for u16

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u8> for u16

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&usize> for u16

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i128> for u16

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i16> for u16

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i32> for u16

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i64> for u16

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i8> for u16

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<isize> for u16

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u128> for u16

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u32> for u16

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u64> for u16

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u8> for u16

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<usize> for u16

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign for u16

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i128> for u16

source§

type Output = <u16 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u16 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i16> for u16

source§

type Output = <u16 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u16 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i32> for u16

source§

type Output = <u16 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u16 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i64> for u16

source§

type Output = <u16 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u16 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i8> for u16

source§

type Output = <u16 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u16 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&isize> for u16

source§

type Output = <u16 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u16 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u128> for u16

source§

type Output = <u16 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u16 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u16> for u16

source§

type Output = <u16 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u16 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u32> for u16

source§

type Output = <u16 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u16 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u64> for u16

source§

type Output = <u16 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u16 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u8> for u16

source§

type Output = <u16 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u16 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&usize> for u16

source§

type Output = <u16 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u16 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i128> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i16> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i32> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i64> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i8> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<isize> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u128> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u32> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u64> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u8> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<usize> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i128> for u16

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i16> for u16

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i32> for u16

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i64> for u16

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i8> for u16

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&isize> for u16

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u128> for u16

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u16> for u16

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u32> for u16

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u64> for u16

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u8> for u16

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&usize> for u16

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i128> for u16

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i16> for u16

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i32> for u16

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i64> for u16

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i8> for u16

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<isize> for u16

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u128> for u16

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u32> for u16

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u64> for u16

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u8> for u16

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<usize> for u16

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign for u16

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl SimdElement for u16

source§

type Mask = i16

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Step for u16

source§

fn forward(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u16, end: &u16) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u16, n: usize) -> Option<u16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u16, n: usize) -> Option<u16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Sub<&u16> for u16

source§

type Output = <u16 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u16) -> <u16 as Sub>::Output

Performs the - operation. Read more
","Sub<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Sub for u16

source§

type Output = u16

The resulting type after applying the - operator.
source§

fn sub(self, other: u16) -> u16

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl SubAssign<&u16> for u16

source§

fn sub_assign(&mut self, other: &u16)

Performs the -= operation. Read more
","SubAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl SubAssign for u16

source§

fn sub_assign(&mut self, other: u16)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl<'a> Sum<&'a u16> for u16

source§

fn sum<I>(iter: I) -> u16
where\n I: Iterator<Item = &'a u16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl Sum for u16

source§

fn sum<I>(iter: I) -> u16
where\n I: Iterator<Item = u16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.74.0 · source§

impl TryFrom<char> for u16

Maps a char with code point in U+0000..=U+FFFF to a u16 in 0x0000..=0xFFFF with same value,\nfailing if the code point is greater than U+FFFF.

\n

This corresponds to the UCS-2 encoding, as specified in ISO/IEC 10646:2003.

\n
source§

fn try_from(c: char) -> Result<u16, <u16 as TryFrom<char>>::Error>

Tries to convert a char into a u16.

\n
§Examples
\n
let trans_rights = '⚧'; // U+26A7\nlet ninjas = '🥷'; // U+1F977\nassert_eq!(u16::try_from(trans_rights), Ok(0x26A7_u16));\nassert!(u16::try_from(ninjas).is_err());
\n
source§

type Error = TryFromCharError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i128> for u16

source§

fn try_from(u: i128) -> Result<u16, <u16 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i16> for u16

source§

fn try_from(u: i16) -> Result<u16, <u16 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i32> for u16

source§

fn try_from(u: i32) -> Result<u16, <u16 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i64> for u16

source§

fn try_from(u: i64) -> Result<u16, <u16 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i8> for u16

source§

fn try_from(u: i8) -> Result<u16, <u16 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<isize> for u16

source§

fn try_from(u: isize) -> Result<u16, <u16 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<u128> for u16

source§

fn try_from(u: u128) -> Result<u16, <u16 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<u32> for u16

source§

fn try_from(u: u32) -> Result<u16, <u16 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<u64> for u16

source§

fn try_from(u: u64) -> Result<u16, <u16 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<usize> for u16

source§

fn try_from(u: usize) -> Result<u16, <u16 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.42.0 · source§

impl UpperExp for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl UpperHex for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl ConstParamTy_ for u16

","ConstParamTy_","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Copy for u16

","Copy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Eq for u16

","Eq","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl SimdCast for u16

","SimdCast","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl StructuralPartialEq for u16

","StructuralPartialEq","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl TrustedStep for u16

","TrustedStep","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl UnsizedConstParamTy for u16

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl ZeroablePrimitive for u16

","ZeroablePrimitive","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u16> for u16

source§

type Output = <u16 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u16) -> <u16 as Add>::Output

Performs the + operation. Read more
","Add<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Add for u16

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Add for u16

source§

type Output = u16

The resulting type after applying the + operator.
source§

fn add(self, other: u16) -> u16

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl AddAssign<&u16> for u16

source§

fn add_assign(&mut self, other: &u16)

Performs the += operation. Read more
","AddAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl AddAssign for u16

source§

fn add_assign(&mut self, other: u16)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl AddCarrying for u16

source§

fn add_carrying(self, rhs: Self, carry: bool) -> (Self, bool)

Performs carrying add Read more
","AddCarrying","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl AddChecked for u16

source§

fn add_checked(self, rhs: u16) -> Option<u16>

","AddChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl AddOverflowing for u16

source§

fn add_overflowing(self, rhs: u16) -> (u16, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl And for u16

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for u16

source§

fn into_le_bytes(self) -> [u8; 2]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 2]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 2]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 2]) -> u16

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 2]) -> u16

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 2]) -> u16

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Base for u16

source§

const MIN: u16 = 0u16

Min (finite) value of this number type
source§

const MAX: u16 = 65_535u16

Max (finite) value of this number type
source§

const ZERO: u16 = 0u16

0
source§

const ONE: u16 = 1u16

1
source§

const BITS: u16 = 16u16

Size of this number in bits
source§

const BYTES: u16 = 2u16

Size of this number type in bytes
source§

const ALIGN: u16 = 2u16

Align of this number type in bytes
source§

const BITS_USIZE: usize = 16usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 2usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 2usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> u16

","Base","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Binary for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitAnd<&u16> for u16

source§

type Output = <u16 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u16) -> <u16 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitAnd for u16

source§

type Output = u16

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u16) -> u16

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl BitAndAssign<&u16> for u16

source§

fn bitand_assign(&mut self, other: &u16)

Performs the &= operation. Read more
","BitAndAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl BitAndAssign for u16

source§

fn bitand_assign(&mut self, other: u16)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitOr<&u16> for u16

source§

type Output = <u16 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u16) -> <u16 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitOr for u16

source§

type Output = u16

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u16) -> u16

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl BitOrAssign<&u16> for u16

source§

fn bitor_assign(&mut self, other: &u16)

Performs the |= operation. Read more
","BitOrAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl BitOrAssign for u16

source§

fn bitor_assign(&mut self, other: u16)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitXor<&u16> for u16

source§

type Output = <u16 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u16) -> <u16 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl BitXor for u16

source§

type Output = u16

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u16) -> u16

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl BitXorAssign<&u16> for u16

source§

fn bitxor_assign(&mut self, other: &u16)

Performs the ^= operation. Read more
","BitXorAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl BitXorAssign for u16

source§

fn bitxor_assign(&mut self, other: u16)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Clone for u16

source§

fn clone(&self) -> u16

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl CountBits for u16

","CountBits","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Debug for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Default for u16

source§

fn default() -> u16

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Display for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Div<&u16> for u16

source§

type Output = <u16 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u16) -> <u16 as Div>::Output

Performs the / operation. Read more
","Div<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.51.0 · source§

impl Div<NonZero<u16>> for u16

source§

fn div(self, other: NonZero<u16>) -> u16

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u16

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Div for u16

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Div for u16

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u16

The resulting type after applying the / operator.
source§

fn div(self, other: u16) -> u16

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl DivAssign<&u16> for u16

source§

fn div_assign(&mut self, other: &u16)

Performs the /= operation. Read more
","DivAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.79.0 · source§

impl DivAssign<NonZero<u16>> for u16

source§

fn div_assign(&mut self, other: NonZero<u16>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl DivAssign for u16

source§

fn div_assign(&mut self, other: u16)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl DivChecked for u16

source§

fn div_checked(self, rhs: u16) -> Option<u16>

","DivChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl DivInt for u16

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl DivOverflowing for u16

source§

fn div_overflowing(self, rhs: u16) -> (u16, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl From<AsciiChar> for u16

source§

fn from(chr: AsciiChar) -> u16

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.28.0 · source§

impl From<bool> for u16

source§

fn from(small: bool) -> u16

Converts a bool to u16 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u16::from(true), 1);\nassert_eq!(u16::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.5.0 · source§

impl From<u8> for u16

source§

fn from(small: u8) -> u16

Converts u8 to u16 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromF32Lossy for u16

source§

fn from_f32_lossy(val: f32) -> u16

Converts the provided\nf32\ninto\nu16,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromF64Lossy for u16

source§

fn from_f64_lossy(val: f64) -> u16

Converts the provided\nf64\ninto\nu16,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromI128Lossy for u16

source§

fn from_i128_lossy(val: i128) -> u16

Converts the provided\ni128\ninto\nu16,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromI16Lossy for u16

source§

fn from_i16_lossy(val: i16) -> u16

Converts the provided\ni16\ninto\nu16,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromI32Lossy for u16

source§

fn from_i32_lossy(val: i32) -> u16

Converts the provided\ni32\ninto\nu16,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromI64Lossy for u16

source§

fn from_i64_lossy(val: i64) -> u16

Converts the provided\ni64\ninto\nu16,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromI8Lossy for u16

source§

fn from_i8_lossy(val: i8) -> u16

Converts the provided\ni8\ninto\nu16,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromIsizeLossy for u16

source§

fn from_isize_lossy(val: isize) -> u16

Converts the provided\nisize\ninto\nu16,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl FromStr for u16

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u16, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromU128Lossy for u16

source§

fn from_u128_lossy(val: u128) -> u16

Converts the provided\nu128\ninto\nu16,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromU16Lossless for u16

source§

fn from_u16(val: u16) -> u16

Losslessly converts the provided\nu16\ninto\nu16

\n
","FromU16Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromU16Lossy for u16

source§

fn from_u16_lossy(val: u16) -> u16

Converts the provided\nu16\ninto\nu16,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromU32Lossy for u16

source§

fn from_u32_lossy(val: u32) -> u16

Converts the provided\nu32\ninto\nu16,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromU64Lossy for u16

source§

fn from_u64_lossy(val: u64) -> u16

Converts the provided\nu64\ninto\nu16,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromU8Lossless for u16

source§

fn from_u8(val: u8) -> u16

Losslessly converts the provided\nu8\ninto\nu16

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromU8Lossy for u16

source§

fn from_u8_lossy(val: u8) -> u16

Converts the provided\nu8\ninto\nu16,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl FromUsizeLossy for u16

source§

fn from_usize_lossy(val: usize) -> u16

Converts the provided\nusize\ninto\nu16,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Hash for u16

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u16], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntUnsigned for u16

","IntUnsigned","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoF32Lossless for u16

source§

fn into_f32(self) -> f32

Losslessly converts self into\nf32
","IntoF32Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoF32Lossy for u16

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoF64Lossless for u16

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoF64Lossy for u16

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI128Lossless for u16

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI128Lossy for u16

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI16Lossy for u16

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI32Lossless for u16

source§

fn into_i32(self) -> i32

Losslessly converts self into\ni32
","IntoI32Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI32Lossy for u16

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI64Lossless for u16

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI64Lossy for u16

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoI8Lossy for u16

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoIsizeLossless for u16

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoIsizeLossy for u16

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU128Lossless for u16

source§

fn into_u128(self) -> u128

Losslessly converts self into\nu128
","IntoU128Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU128Lossy for u16

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU16Lossless for u16

source§

fn into_u16(self) -> u16

Losslessly converts self into\nu16
","IntoU16Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU16Lossy for u16

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU32Lossless for u16

source§

fn into_u32(self) -> u32

Losslessly converts self into\nu32
","IntoU32Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU32Lossy for u16

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU64Lossless for u16

source§

fn into_u64(self) -> u64

Losslessly converts self into\nu64
","IntoU64Lossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU64Lossy for u16

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoU8Lossy for u16

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoUsizeLossless for u16

source§

fn into_usize(self) -> usize

Losslessly converts self into\nusize
","IntoUsizeLossless","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl IntoUsizeLossy for u16

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.42.0 · source§

impl LowerExp for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl LowerHex for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Mul<&u16> for u16

source§

type Output = <u16 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u16) -> <u16 as Mul>::Output

Performs the * operation. Read more
","Mul<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Mul for u16

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Mul for u16

source§

type Output = u16

The resulting type after applying the * operator.
source§

fn mul(self, other: u16) -> u16

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl MulAssign<&u16> for u16

source§

fn mul_assign(&mut self, other: &u16)

Performs the *= operation. Read more
","MulAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl MulAssign for u16

source§

fn mul_assign(&mut self, other: u16)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl MulChecked for u16

source§

fn mul_checked(self, rhs: u16) -> Option<u16>

","MulChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl MulOverflowing for u16

source§

fn mul_overflowing(self, rhs: u16) -> (u16, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl MulUnchecked for u16

source§

unsafe fn mul_unchecked(self, rhs: u16) -> u16

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl MulWidening for u16

source§

fn mul_widening(self, rhs: u16) -> (u16, u16)

Performs widening multiplication, returning the result in two parts:\n(low, high) Read more
","MulWidening","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Narrowing<u8> for u16

source§

fn split(self) -> (u8, u8)

Splits self into its lower and upper narrow parts Read more
source§

fn widen(narrow: u8) -> u16

Extend Narrow out into Self (without changing its value)
source§

fn join(n_low: u8, n_high: u8) -> u16

Join the narrow lower and upper parts together to get Self
","Narrowing","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl NegChecked for u16

","NegChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Not for u16

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Not for u16

source§

type Output = u16

The resulting type after applying the ! operator.
source§

fn not(self) -> u16

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Octal for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Or for u16

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Ord for u16

source§

fn cmp(&self, other: &u16) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl PartialEq for u16

source§

fn eq(&self, other: &u16) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u16) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl PartialOrd for u16

source§

fn partial_cmp(&self, other: &u16) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u16) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u16) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u16) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u16) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl<'a> Product<&'a u16> for u16

source§

fn product<I>(iter: I) -> u16
where\n I: Iterator<Item = &'a u16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl Product for u16

source§

fn product<I>(iter: I) -> u16
where\n I: Iterator<Item = u16>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Rem<&u16> for u16

source§

type Output = <u16 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u16) -> <u16 as Rem>::Output

Performs the % operation. Read more
","Rem<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.51.0 · source§

impl Rem<NonZero<u16>> for u16

source§

fn rem(self, other: NonZero<u16>) -> u16

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u16

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Rem for u16

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Rem for u16

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u16

The resulting type after applying the % operator.
source§

fn rem(self, other: u16) -> u16

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl RemAssign<&u16> for u16

source§

fn rem_assign(&mut self, other: &u16)

Performs the %= operation. Read more
","RemAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.79.0 · source§

impl RemAssign<NonZero<u16>> for u16

source§

fn rem_assign(&mut self, other: NonZero<u16>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl RemAssign for u16

source§

fn rem_assign(&mut self, other: u16)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl RemChecked for u16

source§

fn rem_checked(self, rhs: u16) -> Option<u16>

","RemChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i128> for u16

source§

type Output = <u16 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u16 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i16> for u16

source§

type Output = <u16 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u16 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i32> for u16

source§

type Output = <u16 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u16 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i64> for u16

source§

type Output = <u16 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u16 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&i8> for u16

source§

type Output = <u16 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u16 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&isize> for u16

source§

type Output = <u16 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u16 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u128> for u16

source§

type Output = <u16 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u16 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u16> for u16

source§

type Output = <u16 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u16 as Shl>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u32> for u16

source§

type Output = <u16 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u16 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u64> for u16

source§

type Output = <u16 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u16 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&u8> for u16

source§

type Output = <u16 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u16 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<&usize> for u16

source§

type Output = <u16 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u16 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i128> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i16> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i32> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i64> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<i8> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<isize> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u128> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u32> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u64> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<u8> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl<usize> for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Shl for u16

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shl for u16

source§

type Output = u16

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u16

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i128> for u16

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i16> for u16

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i32> for u16

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i64> for u16

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&i8> for u16

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&isize> for u16

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u128> for u16

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u16> for u16

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u32> for u16

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u64> for u16

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&u8> for u16

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShlAssign<&usize> for u16

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i128> for u16

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i16> for u16

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i32> for u16

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i64> for u16

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<i8> for u16

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<isize> for u16

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u128> for u16

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u32> for u16

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u64> for u16

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<u8> for u16

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign<usize> for u16

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShlAssign for u16

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl ShlChecked for u16

source§

fn shl_checked(self, rhs: u16) -> Option<u16>

","ShlChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i128> for u16

source§

type Output = <u16 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u16 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i16> for u16

source§

type Output = <u16 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u16 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i32> for u16

source§

type Output = <u16 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u16 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i64> for u16

source§

type Output = <u16 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u16 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&i8> for u16

source§

type Output = <u16 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u16 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&isize> for u16

source§

type Output = <u16 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u16 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u128> for u16

source§

type Output = <u16 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u16 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u16> for u16

source§

type Output = <u16 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u16 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u32> for u16

source§

type Output = <u16 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u16 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u64> for u16

source§

type Output = <u16 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u16 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&u8> for u16

source§

type Output = <u16 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u16 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<&usize> for u16

source§

type Output = <u16 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u16 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i128> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i16> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i32> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i64> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<i8> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<isize> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u128> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u32> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u64> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<u8> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr<usize> for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Shr for u16

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Shr for u16

source§

type Output = u16

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u16

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i128> for u16

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i16> for u16

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i32> for u16

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i64> for u16

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&i8> for u16

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&isize> for u16

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u128> for u16

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u16> for u16

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u32> for u16

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u64> for u16

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&u8> for u16

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl ShrAssign<&usize> for u16

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i128> for u16

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i16> for u16

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i32> for u16

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i64> for u16

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<i8> for u16

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<isize> for u16

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u128> for u16

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u32> for u16

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u64> for u16

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<u8> for u16

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign<usize> for u16

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl ShrAssign for u16

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl ShrChecked for u16

source§

fn shr_checked(self, rhs: u16) -> Option<u16>

","ShrChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl SimdElement for u16

source§

type Mask = i16

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Step for u16

source§

fn forward(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u16, n: usize) -> u16

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u16, end: &u16) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u16, n: usize) -> Option<u16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u16, n: usize) -> Option<u16>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Sub<&u16> for u16

source§

type Output = <u16 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u16) -> <u16 as Sub>::Output

Performs the - operation. Read more
","Sub<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Sub for u16

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Sub for u16

source§

type Output = u16

The resulting type after applying the - operator.
source§

fn sub(self, other: u16) -> u16

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.22.0 · source§

impl SubAssign<&u16> for u16

source§

fn sub_assign(&mut self, other: &u16)

Performs the -= operation. Read more
","SubAssign<&u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.8.0 · source§

impl SubAssign for u16

source§

fn sub_assign(&mut self, other: u16)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl SubBorrowing for u16

source§

fn sub_borrowing(self, rhs: Self, borrow: bool) -> (Self, bool)

Performs borrowing subtraction Read more
","SubBorrowing","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl SubChecked for u16

source§

fn sub_checked(self, rhs: u16) -> Option<u16>

","SubChecked","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl SubOverflowing for u16

source§

fn sub_overflowing(self, rhs: u16) -> (u16, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl<'a> Sum<&'a u16> for u16

source§

fn sum<I>(iter: I) -> u16
where\n I: Iterator<Item = &'a u16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u16>","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.12.0 · source§

impl Sum for u16

source§

fn sum<I>(iter: I) -> u16
where\n I: Iterator<Item = u16>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.74.0 · source§

impl TryFrom<char> for u16

Maps a char with code point in U+0000..=U+FFFF to a u16 in 0x0000..=0xFFFF with same value,\nfailing if the code point is greater than U+FFFF.

\n

This corresponds to the UCS-2 encoding, as specified in ISO/IEC 10646:2003.

\n
source§

fn try_from(c: char) -> Result<u16, <u16 as TryFrom<char>>::Error>

Tries to convert a char into a u16.

\n
§Examples
\n
let trans_rights = '⚧'; // U+26A7\nlet ninjas = '🥷'; // U+1F977\nassert_eq!(u16::try_from(trans_rights), Ok(0x26A7_u16));\nassert!(u16::try_from(ninjas).is_err());
\n
source§

type Error = TryFromCharError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i128> for u16

source§

fn try_from(u: i128) -> Result<u16, <u16 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i16> for u16

source§

fn try_from(u: i16) -> Result<u16, <u16 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i32> for u16

source§

fn try_from(u: i32) -> Result<u16, <u16 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i64> for u16

source§

fn try_from(u: i64) -> Result<u16, <u16 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<i8> for u16

source§

fn try_from(u: i8) -> Result<u16, <u16 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<isize> for u16

source§

fn try_from(u: isize) -> Result<u16, <u16 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<u128> for u16

source§

fn try_from(u: u128) -> Result<u16, <u16 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<u32> for u16

source§

fn try_from(u: u32) -> Result<u16, <u16 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<u64> for u16

source§

fn try_from(u: u64) -> Result<u16, <u16 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.34.0 · source§

impl TryFrom<usize> for u16

source§

fn try_from(u: usize) -> Result<u16, <u16 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.42.0 · source§

impl UpperExp for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl UpperHex for u16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Widening<u32> for u16

source§

fn widen(self) -> u32

Extend self out into the widened type (without changing its value)
source§

fn split(wide: u32) -> (u16, u16)

Splits the wide integer into its lower and upper Self parts Read more
source§

fn join(self, n_high: u16) -> u32

Joins self with an upper value, to give a widened value
","Widening","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl Xor for u16

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl ConstParamTy_ for u16

","ConstParamTy_","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Copy for u16

","Copy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
1.0.0 · source§

impl Eq for u16

","Eq","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl SimdCast for u16

","SimdCast","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl StructuralPartialEq for u16

","StructuralPartialEq","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl TrustedStep for u16

","TrustedStep","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl UnsizedConstParamTy for u16

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"],["
source§

impl ZeroablePrimitive for u16

","ZeroablePrimitive","wiwi::rust_std::ffi::c_ushort","wiwi::rust_std::arch::x86_64::__mmask16","wiwi::rust_std::os::raw::c_ushort"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[392628]} \ No newline at end of file +//{"start":55,"fragment_lengths":[510584]} \ No newline at end of file diff --git a/type.impl/std/primitive.u32.js b/type.impl/std/primitive.u32.js index ce5391596..b12434e28 100644 --- a/type.impl/std/primitive.u32.js +++ b/type.impl/std/primitive.u32.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u32> for u32

source§

type Output = <u32 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u32) -> <u32 as Add>::Output

Performs the + operation. Read more
","Add<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Add for u32

source§

type Output = u32

The resulting type after applying the + operator.
source§

fn add(self, other: u32) -> u32

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl AddAssign<&u32> for u32

source§

fn add_assign(&mut self, other: &u32)

Performs the += operation. Read more
","AddAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl AddAssign for u32

source§

fn add_assign(&mut self, other: u32)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Binary for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitAnd<&u32> for u32

source§

type Output = <u32 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u32) -> <u32 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitAnd for u32

source§

type Output = u32

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u32) -> u32

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl BitAndAssign<&u32> for u32

source§

fn bitand_assign(&mut self, other: &u32)

Performs the &= operation. Read more
","BitAndAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl BitAndAssign for u32

source§

fn bitand_assign(&mut self, other: u32)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitOr<&u32> for u32

source§

type Output = <u32 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u32) -> <u32 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitOr for u32

source§

type Output = u32

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u32) -> u32

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl BitOrAssign<&u32> for u32

source§

fn bitor_assign(&mut self, other: &u32)

Performs the |= operation. Read more
","BitOrAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl BitOrAssign for u32

source§

fn bitor_assign(&mut self, other: u32)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitXor<&u32> for u32

source§

type Output = <u32 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u32) -> <u32 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitXor for u32

source§

type Output = u32

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u32) -> u32

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl BitXorAssign<&u32> for u32

source§

fn bitxor_assign(&mut self, other: &u32)

Performs the ^= operation. Read more
","BitXorAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl BitXorAssign for u32

source§

fn bitxor_assign(&mut self, other: u32)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Clone for u32

source§

fn clone(&self) -> u32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Debug for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Default for u32

source§

fn default() -> u32

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Display for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Div<&u32> for u32

source§

type Output = <u32 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u32) -> <u32 as Div>::Output

Performs the / operation. Read more
","Div<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.51.0 · source§

impl Div<NonZero<u32>> for u32

source§

fn div(self, other: NonZero<u32>) -> u32

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u32

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Div for u32

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u32

The resulting type after applying the / operator.
source§

fn div(self, other: u32) -> u32

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl DivAssign<&u32> for u32

source§

fn div_assign(&mut self, other: &u32)

Performs the /= operation. Read more
","DivAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.79.0 · source§

impl DivAssign<NonZero<u32>> for u32

source§

fn div_assign(&mut self, other: NonZero<u32>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl DivAssign for u32

source§

fn div_assign(&mut self, other: u32)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl From<AsciiChar> for u32

source§

fn from(chr: AsciiChar) -> u32

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.1.0 · source§

impl From<Ipv4Addr> for u32

source§

fn from(ip: Ipv4Addr) -> u32

Uses Ipv4Addr::to_bits to convert an IPv4 address to a host byte order u32.

\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.28.0 · source§

impl From<bool> for u32

source§

fn from(small: bool) -> u32

Converts a bool to u32 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u32::from(true), 1);\nassert_eq!(u32::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.13.0 · source§

impl From<char> for u32

source§

fn from(c: char) -> u32

Converts a char into a u32.

\n
§Examples
\n
use std::mem;\n\nlet c = 'c';\nlet u = u32::from(c);\nassert!(4 == mem::size_of_val(&u))
\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.5.0 · source§

impl From<u16> for u32

source§

fn from(small: u16) -> u32

Converts u16 to u32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.5.0 · source§

impl From<u8> for u32

source§

fn from(small: u8) -> u32

Converts u8 to u32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl FromStr for u32

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u32, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Hash for u32

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u32], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.42.0 · source§

impl LowerExp for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl LowerHex for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Mul<&u32> for u32

source§

type Output = <u32 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u32) -> <u32 as Mul>::Output

Performs the * operation. Read more
","Mul<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.31.0 · source§

impl Mul<Duration> for u32

source§

type Output = Duration

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Duration) -> Duration

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Mul for u32

source§

type Output = u32

The resulting type after applying the * operator.
source§

fn mul(self, other: u32) -> u32

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl MulAssign<&u32> for u32

source§

fn mul_assign(&mut self, other: &u32)

Performs the *= operation. Read more
","MulAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl MulAssign for u32

source§

fn mul_assign(&mut self, other: u32)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Not for u32

source§

type Output = u32

The resulting type after applying the ! operator.
source§

fn not(self) -> u32

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Octal for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Ord for u32

source§

fn cmp(&self, other: &u32) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl PartialEq for u32

source§

fn eq(&self, other: &u32) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u32) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl PartialOrd for u32

source§

fn partial_cmp(&self, other: &u32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u32) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u32) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u32) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u32) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl<'a> Product<&'a u32> for u32

source§

fn product<I>(iter: I) -> u32
where\n I: Iterator<Item = &'a u32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl Product for u32

source§

fn product<I>(iter: I) -> u32
where\n I: Iterator<Item = u32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Rem<&u32> for u32

source§

type Output = <u32 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u32) -> <u32 as Rem>::Output

Performs the % operation. Read more
","Rem<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.51.0 · source§

impl Rem<NonZero<u32>> for u32

source§

fn rem(self, other: NonZero<u32>) -> u32

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u32

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Rem for u32

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u32

The resulting type after applying the % operator.
source§

fn rem(self, other: u32) -> u32

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl RemAssign<&u32> for u32

source§

fn rem_assign(&mut self, other: &u32)

Performs the %= operation. Read more
","RemAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.79.0 · source§

impl RemAssign<NonZero<u32>> for u32

source§

fn rem_assign(&mut self, other: NonZero<u32>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl RemAssign for u32

source§

fn rem_assign(&mut self, other: u32)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i128> for u32

source§

type Output = <u32 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u32 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i16> for u32

source§

type Output = <u32 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u32 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i32> for u32

source§

type Output = <u32 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u32 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i64> for u32

source§

type Output = <u32 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u32 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i8> for u32

source§

type Output = <u32 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u32 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&isize> for u32

source§

type Output = <u32 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u32 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u128> for u32

source§

type Output = <u32 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u32 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u16> for u32

source§

type Output = <u32 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u32 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u32> for u32

source§

type Output = <u32 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u32 as Shl>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u64> for u32

source§

type Output = <u32 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u32 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u8> for u32

source§

type Output = <u32 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u32 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&usize> for u32

source§

type Output = <u32 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u32 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i128> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i16> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i32> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i64> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i8> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<isize> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u128> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u16> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u64> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u8> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<usize> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for u32

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for u32

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for u32

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for u32

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for u32

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for u32

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for u32

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for u32

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for u32

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for u32

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for u32

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for u32

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i128> for u32

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i16> for u32

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i32> for u32

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i64> for u32

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i8> for u32

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<isize> for u32

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u128> for u32

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u16> for u32

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u64> for u32

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u8> for u32

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<usize> for u32

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign for u32

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i128> for u32

source§

type Output = <u32 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u32 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i16> for u32

source§

type Output = <u32 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u32 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i32> for u32

source§

type Output = <u32 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u32 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i64> for u32

source§

type Output = <u32 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u32 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i8> for u32

source§

type Output = <u32 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u32 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&isize> for u32

source§

type Output = <u32 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u32 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u128> for u32

source§

type Output = <u32 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u32 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u16> for u32

source§

type Output = <u32 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u32 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u32> for u32

source§

type Output = <u32 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u32 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u64> for u32

source§

type Output = <u32 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u32 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u8> for u32

source§

type Output = <u32 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u32 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&usize> for u32

source§

type Output = <u32 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u32 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i128> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i16> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i32> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i64> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i8> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<isize> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u128> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u16> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u64> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u8> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<usize> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for u32

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for u32

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for u32

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for u32

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for u32

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for u32

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for u32

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for u32

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for u32

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for u32

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for u32

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for u32

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i128> for u32

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i16> for u32

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i32> for u32

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i64> for u32

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i8> for u32

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<isize> for u32

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u128> for u32

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u16> for u32

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u64> for u32

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u8> for u32

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<usize> for u32

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign for u32

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl SimdElement for u32

source§

type Mask = i32

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Step for u32

source§

fn forward(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u32, end: &u32) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u32, n: usize) -> Option<u32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u32, n: usize) -> Option<u32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Sub<&u32> for u32

source§

type Output = <u32 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u32) -> <u32 as Sub>::Output

Performs the - operation. Read more
","Sub<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Sub for u32

source§

type Output = u32

The resulting type after applying the - operator.
source§

fn sub(self, other: u32) -> u32

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl SubAssign<&u32> for u32

source§

fn sub_assign(&mut self, other: &u32)

Performs the -= operation. Read more
","SubAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl SubAssign for u32

source§

fn sub_assign(&mut self, other: u32)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl<'a> Sum<&'a u32> for u32

source§

fn sum<I>(iter: I) -> u32
where\n I: Iterator<Item = &'a u32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl Sum for u32

source§

fn sum<I>(iter: I) -> u32
where\n I: Iterator<Item = u32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i128> for u32

source§

fn try_from(u: i128) -> Result<u32, <u32 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i16> for u32

source§

fn try_from(u: i16) -> Result<u32, <u32 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i32> for u32

source§

fn try_from(u: i32) -> Result<u32, <u32 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i64> for u32

source§

fn try_from(u: i64) -> Result<u32, <u32 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i8> for u32

source§

fn try_from(u: i8) -> Result<u32, <u32 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<isize> for u32

source§

fn try_from(u: isize) -> Result<u32, <u32 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<u128> for u32

source§

fn try_from(u: u128) -> Result<u32, <u32 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<u64> for u32

source§

fn try_from(u: u64) -> Result<u32, <u32 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<usize> for u32

source§

fn try_from(u: usize) -> Result<u32, <u32 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.42.0 · source§

impl UpperExp for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl UpperHex for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl ConstParamTy_ for u32

","ConstParamTy_","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Copy for u32

","Copy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Eq for u32

","Eq","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl SimdCast for u32

","SimdCast","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl StructuralPartialEq for u32

","StructuralPartialEq","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl TrustedStep for u32

","TrustedStep","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl UnsizedConstParamTy for u32

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl ZeroablePrimitive for u32

","ZeroablePrimitive","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u32> for u32

source§

type Output = <u32 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u32) -> <u32 as Add>::Output

Performs the + operation. Read more
","Add<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Add for u32

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Add for u32

source§

type Output = u32

The resulting type after applying the + operator.
source§

fn add(self, other: u32) -> u32

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl AddAssign<&u32> for u32

source§

fn add_assign(&mut self, other: &u32)

Performs the += operation. Read more
","AddAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl AddAssign for u32

source§

fn add_assign(&mut self, other: u32)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl AddCarrying for u32

source§

fn add_carrying(self, rhs: Self, carry: bool) -> (Self, bool)

Performs carrying add Read more
","AddCarrying","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl AddChecked for u32

source§

fn add_checked(self, rhs: u32) -> Option<u32>

","AddChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl AddOverflowing for u32

source§

fn add_overflowing(self, rhs: u32) -> (u32, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl And for u32

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for u32

source§

fn into_le_bytes(self) -> [u8; 4]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 4]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 4]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 4]) -> u32

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 4]) -> u32

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 4]) -> u32

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Base for u32

source§

const MIN: u32 = 0u32

Min (finite) value of this number type
source§

const MAX: u32 = 4_294_967_295u32

Max (finite) value of this number type
source§

const ZERO: u32 = 0u32

0
source§

const ONE: u32 = 1u32

1
source§

const BITS: u32 = 32u32

Size of this number in bits
source§

const BYTES: u32 = 4u32

Size of this number type in bytes
source§

const ALIGN: u32 = 4u32

Align of this number type in bytes
source§

const BITS_USIZE: usize = 32usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 4usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 4usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> u32

","Base","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Binary for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitAnd<&u32> for u32

source§

type Output = <u32 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u32) -> <u32 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitAnd for u32

source§

type Output = u32

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u32) -> u32

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl BitAndAssign<&u32> for u32

source§

fn bitand_assign(&mut self, other: &u32)

Performs the &= operation. Read more
","BitAndAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl BitAndAssign for u32

source§

fn bitand_assign(&mut self, other: u32)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitOr<&u32> for u32

source§

type Output = <u32 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u32) -> <u32 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitOr for u32

source§

type Output = u32

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u32) -> u32

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl BitOrAssign<&u32> for u32

source§

fn bitor_assign(&mut self, other: &u32)

Performs the |= operation. Read more
","BitOrAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl BitOrAssign for u32

source§

fn bitor_assign(&mut self, other: u32)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitXor<&u32> for u32

source§

type Output = <u32 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u32) -> <u32 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl BitXor for u32

source§

type Output = u32

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u32) -> u32

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl BitXorAssign<&u32> for u32

source§

fn bitxor_assign(&mut self, other: &u32)

Performs the ^= operation. Read more
","BitXorAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl BitXorAssign for u32

source§

fn bitxor_assign(&mut self, other: u32)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Clone for u32

source§

fn clone(&self) -> u32

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl CountBits for u32

","CountBits","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Debug for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Default for u32

source§

fn default() -> u32

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Display for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Div<&u32> for u32

source§

type Output = <u32 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u32) -> <u32 as Div>::Output

Performs the / operation. Read more
","Div<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.51.0 · source§

impl Div<NonZero<u32>> for u32

source§

fn div(self, other: NonZero<u32>) -> u32

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u32

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Div for u32

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Div for u32

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u32

The resulting type after applying the / operator.
source§

fn div(self, other: u32) -> u32

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl DivAssign<&u32> for u32

source§

fn div_assign(&mut self, other: &u32)

Performs the /= operation. Read more
","DivAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.79.0 · source§

impl DivAssign<NonZero<u32>> for u32

source§

fn div_assign(&mut self, other: NonZero<u32>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl DivAssign for u32

source§

fn div_assign(&mut self, other: u32)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl DivChecked for u32

source§

fn div_checked(self, rhs: u32) -> Option<u32>

","DivChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl DivInt for u32

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl DivOverflowing for u32

source§

fn div_overflowing(self, rhs: u32) -> (u32, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl From<AsciiChar> for u32

source§

fn from(chr: AsciiChar) -> u32

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.1.0 · source§

impl From<Ipv4Addr> for u32

source§

fn from(ip: Ipv4Addr) -> u32

Uses Ipv4Addr::to_bits to convert an IPv4 address to a host byte order u32.

\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.28.0 · source§

impl From<bool> for u32

source§

fn from(small: bool) -> u32

Converts a bool to u32 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u32::from(true), 1);\nassert_eq!(u32::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.13.0 · source§

impl From<char> for u32

source§

fn from(c: char) -> u32

Converts a char into a u32.

\n
§Examples
\n
use std::mem;\n\nlet c = 'c';\nlet u = u32::from(c);\nassert!(4 == mem::size_of_val(&u))
\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.5.0 · source§

impl From<u16> for u32

source§

fn from(small: u16) -> u32

Converts u16 to u32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.5.0 · source§

impl From<u8> for u32

source§

fn from(small: u8) -> u32

Converts u8 to u32 losslessly.

\n
","From","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromF32Lossy for u32

source§

fn from_f32_lossy(val: f32) -> u32

Converts the provided\nf32\ninto\nu32,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromF64Lossy for u32

source§

fn from_f64_lossy(val: f64) -> u32

Converts the provided\nf64\ninto\nu32,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromI128Lossy for u32

source§

fn from_i128_lossy(val: i128) -> u32

Converts the provided\ni128\ninto\nu32,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromI16Lossy for u32

source§

fn from_i16_lossy(val: i16) -> u32

Converts the provided\ni16\ninto\nu32,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromI32Lossy for u32

source§

fn from_i32_lossy(val: i32) -> u32

Converts the provided\ni32\ninto\nu32,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromI64Lossy for u32

source§

fn from_i64_lossy(val: i64) -> u32

Converts the provided\ni64\ninto\nu32,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromI8Lossy for u32

source§

fn from_i8_lossy(val: i8) -> u32

Converts the provided\ni8\ninto\nu32,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromIsizeLossy for u32

source§

fn from_isize_lossy(val: isize) -> u32

Converts the provided\nisize\ninto\nu32,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl FromStr for u32

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u32, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU128Lossy for u32

source§

fn from_u128_lossy(val: u128) -> u32

Converts the provided\nu128\ninto\nu32,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU16Lossless for u32

source§

fn from_u16(val: u16) -> u32

Losslessly converts the provided\nu16\ninto\nu32

\n
","FromU16Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU16Lossy for u32

source§

fn from_u16_lossy(val: u16) -> u32

Converts the provided\nu16\ninto\nu32,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU32Lossless for u32

source§

fn from_u32(val: u32) -> u32

Losslessly converts the provided\nu32\ninto\nu32

\n
","FromU32Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU32Lossy for u32

source§

fn from_u32_lossy(val: u32) -> u32

Converts the provided\nu32\ninto\nu32,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU64Lossy for u32

source§

fn from_u64_lossy(val: u64) -> u32

Converts the provided\nu64\ninto\nu32,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU8Lossless for u32

source§

fn from_u8(val: u8) -> u32

Losslessly converts the provided\nu8\ninto\nu32

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromU8Lossy for u32

source§

fn from_u8_lossy(val: u8) -> u32

Converts the provided\nu8\ninto\nu32,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl FromUsizeLossy for u32

source§

fn from_usize_lossy(val: usize) -> u32

Converts the provided\nusize\ninto\nu32,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Hash for u32

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u32], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntUnsigned for u32

","IntUnsigned","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoF32Lossy for u32

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoF64Lossless for u32

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoF64Lossy for u32

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoI128Lossless for u32

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoI128Lossy for u32

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoI16Lossy for u32

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoI32Lossy for u32

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoI64Lossless for u32

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoI64Lossy for u32

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoI8Lossy for u32

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoIsizeLossless for u32

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoIsizeLossy for u32

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU128Lossless for u32

source§

fn into_u128(self) -> u128

Losslessly converts self into\nu128
","IntoU128Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU128Lossy for u32

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU16Lossy for u32

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU32Lossless for u32

source§

fn into_u32(self) -> u32

Losslessly converts self into\nu32
","IntoU32Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU32Lossy for u32

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU64Lossless for u32

source§

fn into_u64(self) -> u64

Losslessly converts self into\nu64
","IntoU64Lossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU64Lossy for u32

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoU8Lossy for u32

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoUsizeLossless for u32

source§

fn into_usize(self) -> usize

Losslessly converts self into\nusize
","IntoUsizeLossless","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl IntoUsizeLossy for u32

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.42.0 · source§

impl LowerExp for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl LowerHex for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Mul<&u32> for u32

source§

type Output = <u32 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u32) -> <u32 as Mul>::Output

Performs the * operation. Read more
","Mul<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.31.0 · source§

impl Mul<Duration> for u32

source§

type Output = Duration

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Duration) -> Duration

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Mul for u32

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Mul for u32

source§

type Output = u32

The resulting type after applying the * operator.
source§

fn mul(self, other: u32) -> u32

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl MulAssign<&u32> for u32

source§

fn mul_assign(&mut self, other: &u32)

Performs the *= operation. Read more
","MulAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl MulAssign for u32

source§

fn mul_assign(&mut self, other: u32)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl MulChecked for u32

source§

fn mul_checked(self, rhs: u32) -> Option<u32>

","MulChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl MulOverflowing for u32

source§

fn mul_overflowing(self, rhs: u32) -> (u32, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl MulUnchecked for u32

source§

unsafe fn mul_unchecked(self, rhs: u32) -> u32

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl MulWidening for u32

source§

fn mul_widening(self, rhs: u32) -> (u32, u32)

Performs widening multiplication, returning the result in two parts:\n(low, high) Read more
","MulWidening","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Narrowing<u16> for u32

source§

fn split(self) -> (u16, u16)

Splits self into its lower and upper narrow parts Read more
source§

fn widen(narrow: u16) -> u32

Extend Narrow out into Self (without changing its value)
source§

fn join(n_low: u16, n_high: u16) -> u32

Join the narrow lower and upper parts together to get Self
","Narrowing","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl NegChecked for u32

","NegChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Not for u32

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Not for u32

source§

type Output = u32

The resulting type after applying the ! operator.
source§

fn not(self) -> u32

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Octal for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Or for u32

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Ord for u32

source§

fn cmp(&self, other: &u32) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl PartialEq for u32

source§

fn eq(&self, other: &u32) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u32) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl PartialOrd for u32

source§

fn partial_cmp(&self, other: &u32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u32) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u32) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u32) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u32) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl<'a> Product<&'a u32> for u32

source§

fn product<I>(iter: I) -> u32
where\n I: Iterator<Item = &'a u32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl Product for u32

source§

fn product<I>(iter: I) -> u32
where\n I: Iterator<Item = u32>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Rem<&u32> for u32

source§

type Output = <u32 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u32) -> <u32 as Rem>::Output

Performs the % operation. Read more
","Rem<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.51.0 · source§

impl Rem<NonZero<u32>> for u32

source§

fn rem(self, other: NonZero<u32>) -> u32

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u32

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Rem for u32

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Rem for u32

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u32

The resulting type after applying the % operator.
source§

fn rem(self, other: u32) -> u32

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl RemAssign<&u32> for u32

source§

fn rem_assign(&mut self, other: &u32)

Performs the %= operation. Read more
","RemAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.79.0 · source§

impl RemAssign<NonZero<u32>> for u32

source§

fn rem_assign(&mut self, other: NonZero<u32>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl RemAssign for u32

source§

fn rem_assign(&mut self, other: u32)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl RemChecked for u32

source§

fn rem_checked(self, rhs: u32) -> Option<u32>

","RemChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i128> for u32

source§

type Output = <u32 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u32 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i16> for u32

source§

type Output = <u32 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u32 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i32> for u32

source§

type Output = <u32 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u32 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i64> for u32

source§

type Output = <u32 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u32 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&i8> for u32

source§

type Output = <u32 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u32 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&isize> for u32

source§

type Output = <u32 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u32 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u128> for u32

source§

type Output = <u32 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u32 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u16> for u32

source§

type Output = <u32 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u32 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u32> for u32

source§

type Output = <u32 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u32 as Shl>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u64> for u32

source§

type Output = <u32 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u32 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&u8> for u32

source§

type Output = <u32 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u32 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<&usize> for u32

source§

type Output = <u32 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u32 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i128> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i16> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i32> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i64> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<i8> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<isize> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u128> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u16> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u64> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<u8> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl<usize> for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Shl for u32

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shl for u32

source§

type Output = u32

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u32

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for u32

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for u32

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for u32

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for u32

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for u32

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for u32

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for u32

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for u32

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for u32

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for u32

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for u32

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for u32

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i128> for u32

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i16> for u32

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i32> for u32

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i64> for u32

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<i8> for u32

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<isize> for u32

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u128> for u32

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u16> for u32

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u64> for u32

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<u8> for u32

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign<usize> for u32

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShlAssign for u32

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl ShlChecked for u32

source§

fn shl_checked(self, rhs: u32) -> Option<u32>

","ShlChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i128> for u32

source§

type Output = <u32 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u32 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i16> for u32

source§

type Output = <u32 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u32 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i32> for u32

source§

type Output = <u32 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u32 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i64> for u32

source§

type Output = <u32 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u32 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&i8> for u32

source§

type Output = <u32 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u32 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&isize> for u32

source§

type Output = <u32 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u32 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u128> for u32

source§

type Output = <u32 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u32 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u16> for u32

source§

type Output = <u32 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u32 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u32> for u32

source§

type Output = <u32 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u32 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u64> for u32

source§

type Output = <u32 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u32 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&u8> for u32

source§

type Output = <u32 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u32 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<&usize> for u32

source§

type Output = <u32 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u32 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i128> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i16> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i32> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i64> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<i8> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<isize> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u128> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u16> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u64> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<u8> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr<usize> for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Shr for u32

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Shr for u32

source§

type Output = u32

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u32

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for u32

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for u32

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for u32

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for u32

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for u32

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for u32

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for u32

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for u32

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for u32

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for u32

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for u32

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for u32

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i128> for u32

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i16> for u32

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i32> for u32

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i64> for u32

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<i8> for u32

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<isize> for u32

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u128> for u32

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u16> for u32

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u64> for u32

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<u8> for u32

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign<usize> for u32

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl ShrAssign for u32

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl ShrChecked for u32

source§

fn shr_checked(self, rhs: u32) -> Option<u32>

","ShrChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl SimdElement for u32

source§

type Mask = i32

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Step for u32

source§

fn forward(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u32, n: usize) -> u32

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u32, end: &u32) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u32, n: usize) -> Option<u32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u32, n: usize) -> Option<u32>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Sub<&u32> for u32

source§

type Output = <u32 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u32) -> <u32 as Sub>::Output

Performs the - operation. Read more
","Sub<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Sub for u32

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Sub for u32

source§

type Output = u32

The resulting type after applying the - operator.
source§

fn sub(self, other: u32) -> u32

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.22.0 · source§

impl SubAssign<&u32> for u32

source§

fn sub_assign(&mut self, other: &u32)

Performs the -= operation. Read more
","SubAssign<&u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.8.0 · source§

impl SubAssign for u32

source§

fn sub_assign(&mut self, other: u32)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl SubBorrowing for u32

source§

fn sub_borrowing(self, rhs: Self, borrow: bool) -> (Self, bool)

Performs borrowing subtraction Read more
","SubBorrowing","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl SubChecked for u32

source§

fn sub_checked(self, rhs: u32) -> Option<u32>

","SubChecked","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl SubOverflowing for u32

source§

fn sub_overflowing(self, rhs: u32) -> (u32, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl<'a> Sum<&'a u32> for u32

source§

fn sum<I>(iter: I) -> u32
where\n I: Iterator<Item = &'a u32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u32>","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.12.0 · source§

impl Sum for u32

source§

fn sum<I>(iter: I) -> u32
where\n I: Iterator<Item = u32>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i128> for u32

source§

fn try_from(u: i128) -> Result<u32, <u32 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i16> for u32

source§

fn try_from(u: i16) -> Result<u32, <u32 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i32> for u32

source§

fn try_from(u: i32) -> Result<u32, <u32 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i64> for u32

source§

fn try_from(u: i64) -> Result<u32, <u32 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<i8> for u32

source§

fn try_from(u: i8) -> Result<u32, <u32 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<isize> for u32

source§

fn try_from(u: isize) -> Result<u32, <u32 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<u128> for u32

source§

fn try_from(u: u128) -> Result<u32, <u32 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<u64> for u32

source§

fn try_from(u: u64) -> Result<u32, <u32 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.34.0 · source§

impl TryFrom<usize> for u32

source§

fn try_from(u: usize) -> Result<u32, <u32 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.42.0 · source§

impl UpperExp for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl UpperHex for u32

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Widening<u64> for u32

source§

fn widen(self) -> u64

Extend self out into the widened type (without changing its value)
source§

fn split(wide: u64) -> (u32, u32)

Splits the wide integer into its lower and upper Self parts Read more
source§

fn join(self, n_high: u32) -> u64

Joins self with an upper value, to give a widened value
","Widening","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Widening<usize> for u32

source§

fn widen(self) -> usize

Extend self out into the widened type (without changing its value)
source§

fn split(wide: usize) -> (u32, u32)

Splits the wide integer into its lower and upper Self parts Read more
source§

fn join(self, n_high: u32) -> usize

Joins self with an upper value, to give a widened value
","Widening","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl Xor for u32

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl ConstParamTy_ for u32

","ConstParamTy_","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Copy for u32

","Copy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
1.0.0 · source§

impl Eq for u32

","Eq","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl SimdCast for u32

","SimdCast","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl StructuralPartialEq for u32

","StructuralPartialEq","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl TrustedStep for u32

","TrustedStep","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl UnsizedConstParamTy for u32

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"],["
source§

impl ZeroablePrimitive for u32

","ZeroablePrimitive","wiwi::rust_std::ffi::c_uint","wiwi::rust_std::arch::x86_64::__mmask32","wiwi::rust_std::os::raw::c_uint","wiwi::rust_std::os::unix::raw::uid_t","wiwi::rust_std::os::unix::raw::gid_t","wiwi::rust_std::os::linux::raw::mode_t"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[414371]} \ No newline at end of file +//{"start":55,"fragment_lengths":[541277]} \ No newline at end of file diff --git a/type.impl/std/primitive.u64.js b/type.impl/std/primitive.u64.js index a95623a41..994302100 100644 --- a/type.impl/std/primitive.u64.js +++ b/type.impl/std/primitive.u64.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u64> for u64

source§

type Output = <u64 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u64) -> <u64 as Add>::Output

Performs the + operation. Read more
","Add<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Add for u64

source§

type Output = u64

The resulting type after applying the + operator.
source§

fn add(self, other: u64) -> u64

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl AddAssign<&u64> for u64

source§

fn add_assign(&mut self, other: &u64)

Performs the += operation. Read more
","AddAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl AddAssign for u64

source§

fn add_assign(&mut self, other: u64)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Binary for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitAnd<&u64> for u64

source§

type Output = <u64 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u64) -> <u64 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitAnd for u64

source§

type Output = u64

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u64) -> u64

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl BitAndAssign<&u64> for u64

source§

fn bitand_assign(&mut self, other: &u64)

Performs the &= operation. Read more
","BitAndAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl BitAndAssign for u64

source§

fn bitand_assign(&mut self, other: u64)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitOr<&u64> for u64

source§

type Output = <u64 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u64) -> <u64 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitOr for u64

source§

type Output = u64

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u64) -> u64

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl BitOrAssign<&u64> for u64

source§

fn bitor_assign(&mut self, other: &u64)

Performs the |= operation. Read more
","BitOrAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl BitOrAssign for u64

source§

fn bitor_assign(&mut self, other: u64)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitXor<&u64> for u64

source§

type Output = <u64 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u64) -> <u64 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitXor for u64

source§

type Output = u64

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u64) -> u64

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl BitXorAssign<&u64> for u64

source§

fn bitxor_assign(&mut self, other: &u64)

Performs the ^= operation. Read more
","BitXorAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl BitXorAssign for u64

source§

fn bitxor_assign(&mut self, other: u64)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Clone for u64

source§

fn clone(&self) -> u64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Debug for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Default for u64

source§

fn default() -> u64

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Display for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Div<&u64> for u64

source§

type Output = <u64 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u64) -> <u64 as Div>::Output

Performs the / operation. Read more
","Div<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.51.0 · source§

impl Div<NonZero<u64>> for u64

source§

fn div(self, other: NonZero<u64>) -> u64

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u64

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Div for u64

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u64

The resulting type after applying the / operator.
source§

fn div(self, other: u64) -> u64

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl DivAssign<&u64> for u64

source§

fn div_assign(&mut self, other: &u64)

Performs the /= operation. Read more
","DivAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.79.0 · source§

impl DivAssign<NonZero<u64>> for u64

source§

fn div_assign(&mut self, other: NonZero<u64>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl DivAssign for u64

source§

fn div_assign(&mut self, other: u64)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl From<AsciiChar> for u64

source§

fn from(chr: AsciiChar) -> u64

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.28.0 · source§

impl From<bool> for u64

source§

fn from(small: bool) -> u64

Converts a bool to u64 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u64::from(true), 1);\nassert_eq!(u64::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.51.0 · source§

impl From<char> for u64

source§

fn from(c: char) -> u64

Converts a char into a u64.

\n
§Examples
\n
use std::mem;\n\nlet c = '👤';\nlet u = u64::from(c);\nassert!(8 == mem::size_of_val(&u))
\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.5.0 · source§

impl From<u16> for u64

source§

fn from(small: u16) -> u64

Converts u16 to u64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.5.0 · source§

impl From<u32> for u64

source§

fn from(small: u32) -> u64

Converts u32 to u64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.5.0 · source§

impl From<u8> for u64

source§

fn from(small: u8) -> u64

Converts u8 to u64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl FromStr for u64

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u64, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Hash for u64

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u64], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.42.0 · source§

impl LowerExp for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl LowerHex for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Mul<&u64> for u64

source§

type Output = <u64 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u64) -> <u64 as Mul>::Output

Performs the * operation. Read more
","Mul<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Mul for u64

source§

type Output = u64

The resulting type after applying the * operator.
source§

fn mul(self, other: u64) -> u64

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl MulAssign<&u64> for u64

source§

fn mul_assign(&mut self, other: &u64)

Performs the *= operation. Read more
","MulAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl MulAssign for u64

source§

fn mul_assign(&mut self, other: u64)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Not for u64

source§

type Output = u64

The resulting type after applying the ! operator.
source§

fn not(self) -> u64

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Octal for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Ord for u64

source§

fn cmp(&self, other: &u64) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl PartialEq for u64

source§

fn eq(&self, other: &u64) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u64) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl PartialOrd for u64

source§

fn partial_cmp(&self, other: &u64) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u64) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u64) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u64) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u64) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl<'a> Product<&'a u64> for u64

source§

fn product<I>(iter: I) -> u64
where\n I: Iterator<Item = &'a u64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl Product for u64

source§

fn product<I>(iter: I) -> u64
where\n I: Iterator<Item = u64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Rem<&u64> for u64

source§

type Output = <u64 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u64) -> <u64 as Rem>::Output

Performs the % operation. Read more
","Rem<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.51.0 · source§

impl Rem<NonZero<u64>> for u64

source§

fn rem(self, other: NonZero<u64>) -> u64

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u64

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Rem for u64

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u64

The resulting type after applying the % operator.
source§

fn rem(self, other: u64) -> u64

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl RemAssign<&u64> for u64

source§

fn rem_assign(&mut self, other: &u64)

Performs the %= operation. Read more
","RemAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.79.0 · source§

impl RemAssign<NonZero<u64>> for u64

source§

fn rem_assign(&mut self, other: NonZero<u64>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl RemAssign for u64

source§

fn rem_assign(&mut self, other: u64)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i128> for u64

source§

type Output = <u64 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u64 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i16> for u64

source§

type Output = <u64 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u64 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i32> for u64

source§

type Output = <u64 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u64 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i64> for u64

source§

type Output = <u64 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u64 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i8> for u64

source§

type Output = <u64 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u64 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&isize> for u64

source§

type Output = <u64 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u64 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u128> for u64

source§

type Output = <u64 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u64 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u16> for u64

source§

type Output = <u64 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u64 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u32> for u64

source§

type Output = <u64 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u64 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u64> for u64

source§

type Output = <u64 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u64 as Shl>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u8> for u64

source§

type Output = <u64 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u64 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&usize> for u64

source§

type Output = <u64 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u64 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i128> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i16> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i32> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i64> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i8> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<isize> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u128> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u16> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u32> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u8> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<usize> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i128> for u64

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i16> for u64

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i32> for u64

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i64> for u64

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i8> for u64

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&isize> for u64

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u128> for u64

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u16> for u64

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u32> for u64

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u64> for u64

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u8> for u64

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&usize> for u64

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i128> for u64

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i16> for u64

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i32> for u64

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i64> for u64

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i8> for u64

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<isize> for u64

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u128> for u64

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u16> for u64

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u32> for u64

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u8> for u64

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<usize> for u64

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign for u64

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i128> for u64

source§

type Output = <u64 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u64 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i16> for u64

source§

type Output = <u64 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u64 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i32> for u64

source§

type Output = <u64 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u64 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i64> for u64

source§

type Output = <u64 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u64 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i8> for u64

source§

type Output = <u64 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u64 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&isize> for u64

source§

type Output = <u64 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u64 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u128> for u64

source§

type Output = <u64 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u64 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u16> for u64

source§

type Output = <u64 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u64 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u32> for u64

source§

type Output = <u64 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u64 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u64> for u64

source§

type Output = <u64 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u64 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u8> for u64

source§

type Output = <u64 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u64 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&usize> for u64

source§

type Output = <u64 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u64 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i128> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i16> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i32> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i64> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i8> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<isize> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u128> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u16> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u32> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u8> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<usize> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i128> for u64

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i16> for u64

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i32> for u64

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i64> for u64

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i8> for u64

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&isize> for u64

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u128> for u64

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u16> for u64

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u32> for u64

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u64> for u64

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u8> for u64

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&usize> for u64

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i128> for u64

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i16> for u64

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i32> for u64

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i64> for u64

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i8> for u64

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<isize> for u64

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u128> for u64

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u16> for u64

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u32> for u64

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u8> for u64

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<usize> for u64

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign for u64

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl SimdElement for u64

source§

type Mask = i64

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Step for u64

source§

fn forward(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u64, end: &u64) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u64, n: usize) -> Option<u64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u64, n: usize) -> Option<u64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Sub<&u64> for u64

source§

type Output = <u64 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u64) -> <u64 as Sub>::Output

Performs the - operation. Read more
","Sub<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Sub for u64

source§

type Output = u64

The resulting type after applying the - operator.
source§

fn sub(self, other: u64) -> u64

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl SubAssign<&u64> for u64

source§

fn sub_assign(&mut self, other: &u64)

Performs the -= operation. Read more
","SubAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl SubAssign for u64

source§

fn sub_assign(&mut self, other: u64)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl<'a> Sum<&'a u64> for u64

source§

fn sum<I>(iter: I) -> u64
where\n I: Iterator<Item = &'a u64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl Sum for u64

source§

fn sum<I>(iter: I) -> u64
where\n I: Iterator<Item = u64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i128> for u64

source§

fn try_from(u: i128) -> Result<u64, <u64 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i16> for u64

source§

fn try_from(u: i16) -> Result<u64, <u64 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i32> for u64

source§

fn try_from(u: i32) -> Result<u64, <u64 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i64> for u64

source§

fn try_from(u: i64) -> Result<u64, <u64 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i8> for u64

source§

fn try_from(u: i8) -> Result<u64, <u64 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<isize> for u64

source§

fn try_from(u: isize) -> Result<u64, <u64 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<u128> for u64

source§

fn try_from(u: u128) -> Result<u64, <u64 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<usize> for u64

source§

fn try_from(value: usize) -> Result<u64, <u64 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.42.0 · source§

impl UpperExp for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl UpperHex for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl ConstParamTy_ for u64

","ConstParamTy_","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Copy for u64

","Copy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Eq for u64

","Eq","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl SimdCast for u64

","SimdCast","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl StructuralPartialEq for u64

","StructuralPartialEq","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl TrustedStep for u64

","TrustedStep","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl UnsizedConstParamTy for u64

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl ZeroablePrimitive for u64

","ZeroablePrimitive","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u64> for u64

source§

type Output = <u64 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u64) -> <u64 as Add>::Output

Performs the + operation. Read more
","Add<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Add for u64

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Add for u64

source§

type Output = u64

The resulting type after applying the + operator.
source§

fn add(self, other: u64) -> u64

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl AddAssign<&u64> for u64

source§

fn add_assign(&mut self, other: &u64)

Performs the += operation. Read more
","AddAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl AddAssign for u64

source§

fn add_assign(&mut self, other: u64)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl AddCarrying for u64

source§

fn add_carrying(self, rhs: Self, carry: bool) -> (Self, bool)

Performs carrying add Read more
","AddCarrying","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl AddChecked for u64

source§

fn add_checked(self, rhs: u64) -> Option<u64>

","AddChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl AddOverflowing for u64

source§

fn add_overflowing(self, rhs: u64) -> (u64, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl And for u64

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for u64

source§

fn into_le_bytes(self) -> [u8; 8]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 8]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 8]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 8]) -> u64

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 8]) -> u64

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 8]) -> u64

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Base for u64

source§

const MIN: u64 = 0u64

Min (finite) value of this number type
source§

const MAX: u64 = 18_446_744_073_709_551_615u64

Max (finite) value of this number type
source§

const ZERO: u64 = 0u64

0
source§

const ONE: u64 = 1u64

1
source§

const BITS: u64 = 64u64

Size of this number in bits
source§

const BYTES: u64 = 8u64

Size of this number type in bytes
source§

const ALIGN: u64 = 8u64

Align of this number type in bytes
source§

const BITS_USIZE: usize = 64usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 8usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 8usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> u64

","Base","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Binary for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitAnd<&u64> for u64

source§

type Output = <u64 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u64) -> <u64 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitAnd for u64

source§

type Output = u64

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u64) -> u64

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl BitAndAssign<&u64> for u64

source§

fn bitand_assign(&mut self, other: &u64)

Performs the &= operation. Read more
","BitAndAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl BitAndAssign for u64

source§

fn bitand_assign(&mut self, other: u64)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitOr<&u64> for u64

source§

type Output = <u64 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u64) -> <u64 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitOr for u64

source§

type Output = u64

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u64) -> u64

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl BitOrAssign<&u64> for u64

source§

fn bitor_assign(&mut self, other: &u64)

Performs the |= operation. Read more
","BitOrAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl BitOrAssign for u64

source§

fn bitor_assign(&mut self, other: u64)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitXor<&u64> for u64

source§

type Output = <u64 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u64) -> <u64 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl BitXor for u64

source§

type Output = u64

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u64) -> u64

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl BitXorAssign<&u64> for u64

source§

fn bitxor_assign(&mut self, other: &u64)

Performs the ^= operation. Read more
","BitXorAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl BitXorAssign for u64

source§

fn bitxor_assign(&mut self, other: u64)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Clone for u64

source§

fn clone(&self) -> u64

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl CountBits for u64

","CountBits","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Debug for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Default for u64

source§

fn default() -> u64

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Display for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Div<&u64> for u64

source§

type Output = <u64 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u64) -> <u64 as Div>::Output

Performs the / operation. Read more
","Div<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.51.0 · source§

impl Div<NonZero<u64>> for u64

source§

fn div(self, other: NonZero<u64>) -> u64

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u64

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Div for u64

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Div for u64

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u64

The resulting type after applying the / operator.
source§

fn div(self, other: u64) -> u64

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl DivAssign<&u64> for u64

source§

fn div_assign(&mut self, other: &u64)

Performs the /= operation. Read more
","DivAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.79.0 · source§

impl DivAssign<NonZero<u64>> for u64

source§

fn div_assign(&mut self, other: NonZero<u64>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl DivAssign for u64

source§

fn div_assign(&mut self, other: u64)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl DivChecked for u64

source§

fn div_checked(self, rhs: u64) -> Option<u64>

","DivChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl DivInt for u64

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl DivOverflowing for u64

source§

fn div_overflowing(self, rhs: u64) -> (u64, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl From<AsciiChar> for u64

source§

fn from(chr: AsciiChar) -> u64

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.28.0 · source§

impl From<bool> for u64

source§

fn from(small: bool) -> u64

Converts a bool to u64 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u64::from(true), 1);\nassert_eq!(u64::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.51.0 · source§

impl From<char> for u64

source§

fn from(c: char) -> u64

Converts a char into a u64.

\n
§Examples
\n
use std::mem;\n\nlet c = '👤';\nlet u = u64::from(c);\nassert!(8 == mem::size_of_val(&u))
\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.5.0 · source§

impl From<u16> for u64

source§

fn from(small: u16) -> u64

Converts u16 to u64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.5.0 · source§

impl From<u32> for u64

source§

fn from(small: u32) -> u64

Converts u32 to u64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.5.0 · source§

impl From<u8> for u64

source§

fn from(small: u8) -> u64

Converts u8 to u64 losslessly.

\n
","From","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromF32Lossy for u64

source§

fn from_f32_lossy(val: f32) -> u64

Converts the provided\nf32\ninto\nu64,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromF64Lossy for u64

source§

fn from_f64_lossy(val: f64) -> u64

Converts the provided\nf64\ninto\nu64,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromI128Lossy for u64

source§

fn from_i128_lossy(val: i128) -> u64

Converts the provided\ni128\ninto\nu64,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromI16Lossy for u64

source§

fn from_i16_lossy(val: i16) -> u64

Converts the provided\ni16\ninto\nu64,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromI32Lossy for u64

source§

fn from_i32_lossy(val: i32) -> u64

Converts the provided\ni32\ninto\nu64,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromI64Lossy for u64

source§

fn from_i64_lossy(val: i64) -> u64

Converts the provided\ni64\ninto\nu64,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromI8Lossy for u64

source§

fn from_i8_lossy(val: i8) -> u64

Converts the provided\ni8\ninto\nu64,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromIsizeLossy for u64

source§

fn from_isize_lossy(val: isize) -> u64

Converts the provided\nisize\ninto\nu64,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl FromStr for u64

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u64, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU128Lossy for u64

source§

fn from_u128_lossy(val: u128) -> u64

Converts the provided\nu128\ninto\nu64,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU16Lossless for u64

source§

fn from_u16(val: u16) -> u64

Losslessly converts the provided\nu16\ninto\nu64

\n
","FromU16Lossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU16Lossy for u64

source§

fn from_u16_lossy(val: u16) -> u64

Converts the provided\nu16\ninto\nu64,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU32Lossless for u64

source§

fn from_u32(val: u32) -> u64

Losslessly converts the provided\nu32\ninto\nu64

\n
","FromU32Lossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU32Lossy for u64

source§

fn from_u32_lossy(val: u32) -> u64

Converts the provided\nu32\ninto\nu64,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU64Lossless for u64

source§

fn from_u64(val: u64) -> u64

Losslessly converts the provided\nu64\ninto\nu64

\n
","FromU64Lossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU64Lossy for u64

source§

fn from_u64_lossy(val: u64) -> u64

Converts the provided\nu64\ninto\nu64,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU8Lossless for u64

source§

fn from_u8(val: u8) -> u64

Losslessly converts the provided\nu8\ninto\nu64

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromU8Lossy for u64

source§

fn from_u8_lossy(val: u8) -> u64

Converts the provided\nu8\ninto\nu64,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromUsizeLossless for u64

source§

fn from_usize(val: usize) -> u64

Losslessly converts the provided\nusize\ninto\nu64

\n
","FromUsizeLossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl FromUsizeLossy for u64

source§

fn from_usize_lossy(val: usize) -> u64

Converts the provided\nusize\ninto\nu64,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Hash for u64

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u64], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntUnsigned for u64

","IntUnsigned","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoF32Lossy for u64

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoF64Lossy for u64

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoI128Lossless for u64

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoI128Lossy for u64

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoI16Lossy for u64

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoI32Lossy for u64

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoI64Lossy for u64

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoI8Lossy for u64

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoIsizeLossy for u64

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoU128Lossless for u64

source§

fn into_u128(self) -> u128

Losslessly converts self into\nu128
","IntoU128Lossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoU128Lossy for u64

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoU16Lossy for u64

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoU32Lossy for u64

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoU64Lossless for u64

source§

fn into_u64(self) -> u64

Losslessly converts self into\nu64
","IntoU64Lossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoU64Lossy for u64

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoU8Lossy for u64

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoUsizeLossless for u64

source§

fn into_usize(self) -> usize

Losslessly converts self into\nusize
","IntoUsizeLossless","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl IntoUsizeLossy for u64

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.42.0 · source§

impl LowerExp for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl LowerHex for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Mul<&u64> for u64

source§

type Output = <u64 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u64) -> <u64 as Mul>::Output

Performs the * operation. Read more
","Mul<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Mul for u64

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Mul for u64

source§

type Output = u64

The resulting type after applying the * operator.
source§

fn mul(self, other: u64) -> u64

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl MulAssign<&u64> for u64

source§

fn mul_assign(&mut self, other: &u64)

Performs the *= operation. Read more
","MulAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl MulAssign for u64

source§

fn mul_assign(&mut self, other: u64)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl MulChecked for u64

source§

fn mul_checked(self, rhs: u64) -> Option<u64>

","MulChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl MulOverflowing for u64

source§

fn mul_overflowing(self, rhs: u64) -> (u64, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl MulUnchecked for u64

source§

unsafe fn mul_unchecked(self, rhs: u64) -> u64

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl MulWidening for u64

source§

fn mul_widening(self, rhs: u64) -> (u64, u64)

Performs widening multiplication, returning the result in two parts:\n(low, high) Read more
","MulWidening","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Narrowing<u32> for u64

source§

fn split(self) -> (u32, u32)

Splits self into its lower and upper narrow parts Read more
source§

fn widen(narrow: u32) -> u64

Extend Narrow out into Self (without changing its value)
source§

fn join(n_low: u32, n_high: u32) -> u64

Join the narrow lower and upper parts together to get Self
","Narrowing","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl NegChecked for u64

","NegChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Not for u64

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Not for u64

source§

type Output = u64

The resulting type after applying the ! operator.
source§

fn not(self) -> u64

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Octal for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Or for u64

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Ord for u64

source§

fn cmp(&self, other: &u64) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl PartialEq for u64

source§

fn eq(&self, other: &u64) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u64) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl PartialOrd for u64

source§

fn partial_cmp(&self, other: &u64) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u64) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u64) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u64) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u64) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl<'a> Product<&'a u64> for u64

source§

fn product<I>(iter: I) -> u64
where\n I: Iterator<Item = &'a u64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl Product for u64

source§

fn product<I>(iter: I) -> u64
where\n I: Iterator<Item = u64>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Rem<&u64> for u64

source§

type Output = <u64 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u64) -> <u64 as Rem>::Output

Performs the % operation. Read more
","Rem<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.51.0 · source§

impl Rem<NonZero<u64>> for u64

source§

fn rem(self, other: NonZero<u64>) -> u64

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u64

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Rem for u64

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Rem for u64

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u64

The resulting type after applying the % operator.
source§

fn rem(self, other: u64) -> u64

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl RemAssign<&u64> for u64

source§

fn rem_assign(&mut self, other: &u64)

Performs the %= operation. Read more
","RemAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.79.0 · source§

impl RemAssign<NonZero<u64>> for u64

source§

fn rem_assign(&mut self, other: NonZero<u64>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl RemAssign for u64

source§

fn rem_assign(&mut self, other: u64)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl RemChecked for u64

source§

fn rem_checked(self, rhs: u64) -> Option<u64>

","RemChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i128> for u64

source§

type Output = <u64 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u64 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i16> for u64

source§

type Output = <u64 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u64 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i32> for u64

source§

type Output = <u64 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u64 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i64> for u64

source§

type Output = <u64 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u64 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&i8> for u64

source§

type Output = <u64 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u64 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&isize> for u64

source§

type Output = <u64 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u64 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u128> for u64

source§

type Output = <u64 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u64 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u16> for u64

source§

type Output = <u64 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u64 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u32> for u64

source§

type Output = <u64 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u64 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u64> for u64

source§

type Output = <u64 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u64 as Shl>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&u8> for u64

source§

type Output = <u64 as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u64 as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<&usize> for u64

source§

type Output = <u64 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u64 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i128> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i16> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i32> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i64> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<i8> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<isize> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u128> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u16> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u32> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<u8> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl<usize> for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Shl for u64

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shl for u64

source§

type Output = u64

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u64

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i128> for u64

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i16> for u64

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i32> for u64

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i64> for u64

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&i8> for u64

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&isize> for u64

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u128> for u64

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u16> for u64

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u32> for u64

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u64> for u64

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&u8> for u64

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShlAssign<&usize> for u64

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i128> for u64

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i16> for u64

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i32> for u64

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i64> for u64

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<i8> for u64

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<isize> for u64

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u128> for u64

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u16> for u64

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u32> for u64

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<u8> for u64

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign<usize> for u64

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShlAssign for u64

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl ShlChecked for u64

source§

fn shl_checked(self, rhs: u64) -> Option<u64>

","ShlChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i128> for u64

source§

type Output = <u64 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u64 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i16> for u64

source§

type Output = <u64 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u64 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i32> for u64

source§

type Output = <u64 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u64 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i64> for u64

source§

type Output = <u64 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u64 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&i8> for u64

source§

type Output = <u64 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u64 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&isize> for u64

source§

type Output = <u64 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u64 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u128> for u64

source§

type Output = <u64 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u64 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u16> for u64

source§

type Output = <u64 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u64 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u32> for u64

source§

type Output = <u64 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u64 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u64> for u64

source§

type Output = <u64 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u64 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&u8> for u64

source§

type Output = <u64 as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u64 as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<&usize> for u64

source§

type Output = <u64 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u64 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i128> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i16> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i32> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i64> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<i8> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<isize> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u128> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u16> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u32> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<u8> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr<usize> for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Shr for u64

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Shr for u64

source§

type Output = u64

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u64

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i128> for u64

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i16> for u64

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i32> for u64

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i64> for u64

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&i8> for u64

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&isize> for u64

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u128> for u64

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u16> for u64

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u32> for u64

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u64> for u64

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&u8> for u64

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl ShrAssign<&usize> for u64

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i128> for u64

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i16> for u64

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i32> for u64

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i64> for u64

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<i8> for u64

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<isize> for u64

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u128> for u64

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u16> for u64

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u32> for u64

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<u8> for u64

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign<usize> for u64

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl ShrAssign for u64

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl ShrChecked for u64

source§

fn shr_checked(self, rhs: u64) -> Option<u64>

","ShrChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl SimdElement for u64

source§

type Mask = i64

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Step for u64

source§

fn forward(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u64, n: usize) -> u64

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u64, end: &u64) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u64, n: usize) -> Option<u64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u64, n: usize) -> Option<u64>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Sub<&u64> for u64

source§

type Output = <u64 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u64) -> <u64 as Sub>::Output

Performs the - operation. Read more
","Sub<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Sub for u64

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Sub for u64

source§

type Output = u64

The resulting type after applying the - operator.
source§

fn sub(self, other: u64) -> u64

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.22.0 · source§

impl SubAssign<&u64> for u64

source§

fn sub_assign(&mut self, other: &u64)

Performs the -= operation. Read more
","SubAssign<&u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.8.0 · source§

impl SubAssign for u64

source§

fn sub_assign(&mut self, other: u64)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl SubBorrowing for u64

source§

fn sub_borrowing(self, rhs: Self, borrow: bool) -> (Self, bool)

Performs borrowing subtraction Read more
","SubBorrowing","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl SubChecked for u64

source§

fn sub_checked(self, rhs: u64) -> Option<u64>

","SubChecked","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl SubOverflowing for u64

source§

fn sub_overflowing(self, rhs: u64) -> (u64, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl<'a> Sum<&'a u64> for u64

source§

fn sum<I>(iter: I) -> u64
where\n I: Iterator<Item = &'a u64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u64>","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.12.0 · source§

impl Sum for u64

source§

fn sum<I>(iter: I) -> u64
where\n I: Iterator<Item = u64>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i128> for u64

source§

fn try_from(u: i128) -> Result<u64, <u64 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i16> for u64

source§

fn try_from(u: i16) -> Result<u64, <u64 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i32> for u64

source§

fn try_from(u: i32) -> Result<u64, <u64 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i64> for u64

source§

fn try_from(u: i64) -> Result<u64, <u64 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<i8> for u64

source§

fn try_from(u: i8) -> Result<u64, <u64 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<isize> for u64

source§

fn try_from(u: isize) -> Result<u64, <u64 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<u128> for u64

source§

fn try_from(u: u128) -> Result<u64, <u64 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.34.0 · source§

impl TryFrom<usize> for u64

source§

fn try_from(value: usize) -> Result<u64, <u64 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.42.0 · source§

impl UpperExp for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl UpperHex for u64

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Widening<u128> for u64

source§

fn widen(self) -> u128

Extend self out into the widened type (without changing its value)
source§

fn split(wide: u128) -> (u64, u64)

Splits the wide integer into its lower and upper Self parts Read more
source§

fn join(self, n_high: u64) -> u128

Joins self with an upper value, to give a widened value
","Widening","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl Xor for u64

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl ConstParamTy_ for u64

","ConstParamTy_","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Copy for u64

","Copy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
1.0.0 · source§

impl Eq for u64

","Eq","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl SimdCast for u64

","SimdCast","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl StructuralPartialEq for u64

","StructuralPartialEq","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl TrustedStep for u64

","TrustedStep","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl UnsizedConstParamTy for u64

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"],["
source§

impl ZeroablePrimitive for u64

","ZeroablePrimitive","wiwi::rust_std::ffi::c_ulong","wiwi::rust_std::ffi::c_ulonglong","wiwi::rust_std::arch::x86_64::__mmask64","wiwi::rust_std::os::raw::c_ulong","wiwi::rust_std::os::raw::c_ulonglong","wiwi::rust_std::os::linux::raw::pthread_t","wiwi::rust_std::os::linux::raw::blkcnt_t","wiwi::rust_std::os::linux::raw::blksize_t","wiwi::rust_std::os::linux::raw::dev_t","wiwi::rust_std::os::linux::raw::ino_t","wiwi::rust_std::os::linux::raw::nlink_t","wiwi::rust_std::os::linux::raw::off_t","wiwi::rust_std::os::unix::thread::RawPthread"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[460773]} \ No newline at end of file +//{"start":55,"fragment_lengths":[603037]} \ No newline at end of file diff --git a/type.impl/std/primitive.u8.js b/type.impl/std/primitive.u8.js index afc2cded8..bdb49276f 100644 --- a/type.impl/std/primitive.u8.js +++ b/type.impl/std/primitive.u8.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u8> for u8

source§

type Output = <u8 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u8) -> <u8 as Add>::Output

Performs the + operation. Read more
","Add<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Add for u8

source§

type Output = u8

The resulting type after applying the + operator.
source§

fn add(self, other: u8) -> u8

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl AddAssign<&u8> for u8

source§

fn add_assign(&mut self, other: &u8)

Performs the += operation. Read more
","AddAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl AddAssign for u8

source§

fn add_assign(&mut self, other: u8)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl AsciiExt for u8

source§

type Owned = u8

👎Deprecated since 1.26.0: use inherent methods instead
Container type for copied ASCII characters.
source§

fn is_ascii(&self) -> bool

👎Deprecated since 1.26.0: use inherent methods instead
Checks if the value is within the ASCII range. Read more
source§

fn to_ascii_uppercase(&self) -> <u8 as AsciiExt>::Owned

👎Deprecated since 1.26.0: use inherent methods instead
Makes a copy of the value in its ASCII upper case equivalent. Read more
source§

fn to_ascii_lowercase(&self) -> <u8 as AsciiExt>::Owned

👎Deprecated since 1.26.0: use inherent methods instead
Makes a copy of the value in its ASCII lower case equivalent. Read more
source§

fn eq_ignore_ascii_case(&self, o: &u8) -> bool

👎Deprecated since 1.26.0: use inherent methods instead
Checks that two values are an ASCII case-insensitive match. Read more
source§

fn make_ascii_uppercase(&mut self)

👎Deprecated since 1.26.0: use inherent methods instead
Converts this type to its ASCII upper case equivalent in-place. Read more
source§

fn make_ascii_lowercase(&mut self)

👎Deprecated since 1.26.0: use inherent methods instead
Converts this type to its ASCII lower case equivalent in-place. Read more
","AsciiExt","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Binary for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitAnd<&u8> for u8

source§

type Output = <u8 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u8) -> <u8 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitAnd for u8

source§

type Output = u8

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u8) -> u8

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl BitAndAssign<&u8> for u8

source§

fn bitand_assign(&mut self, other: &u8)

Performs the &= operation. Read more
","BitAndAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl BitAndAssign for u8

source§

fn bitand_assign(&mut self, other: u8)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitOr<&u8> for u8

source§

type Output = <u8 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u8) -> <u8 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitOr for u8

source§

type Output = u8

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u8) -> u8

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl BitOrAssign<&u8> for u8

source§

fn bitor_assign(&mut self, other: &u8)

Performs the |= operation. Read more
","BitOrAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl BitOrAssign for u8

source§

fn bitor_assign(&mut self, other: u8)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitXor<&u8> for u8

source§

type Output = <u8 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u8) -> <u8 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitXor for u8

source§

type Output = u8

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u8) -> u8

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl BitXorAssign<&u8> for u8

source§

fn bitxor_assign(&mut self, other: &u8)

Performs the ^= operation. Read more
","BitXorAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl BitXorAssign for u8

source§

fn bitxor_assign(&mut self, other: u8)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Clone for u8

source§

fn clone(&self) -> u8

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Debug for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Default for u8

source§

fn default() -> u8

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Display for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Div<&u8> for u8

source§

type Output = <u8 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u8) -> <u8 as Div>::Output

Performs the / operation. Read more
","Div<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.51.0 · source§

impl Div<NonZero<u8>> for u8

source§

fn div(self, other: NonZero<u8>) -> u8

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u8

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Div for u8

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u8

The resulting type after applying the / operator.
source§

fn div(self, other: u8) -> u8

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl DivAssign<&u8> for u8

source§

fn div_assign(&mut self, other: &u8)

Performs the /= operation. Read more
","DivAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.79.0 · source§

impl DivAssign<NonZero<u8>> for u8

source§

fn div_assign(&mut self, other: NonZero<u8>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl DivAssign for u8

source§

fn div_assign(&mut self, other: u8)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl From<AsciiChar> for u8

source§

fn from(chr: AsciiChar) -> u8

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.28.0 · source§

impl From<bool> for u8

source§

fn from(small: bool) -> u8

Converts a bool to u8 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u8::from(true), 1);\nassert_eq!(u8::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl FromStr for u8

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u8, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Hash for u8

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u8], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.42.0 · source§

impl LowerExp for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl LowerHex for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Mul<&u8> for u8

source§

type Output = <u8 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u8) -> <u8 as Mul>::Output

Performs the * operation. Read more
","Mul<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Mul for u8

source§

type Output = u8

The resulting type after applying the * operator.
source§

fn mul(self, other: u8) -> u8

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl MulAssign<&u8> for u8

source§

fn mul_assign(&mut self, other: &u8)

Performs the *= operation. Read more
","MulAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl MulAssign for u8

source§

fn mul_assign(&mut self, other: u8)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Not for u8

source§

type Output = u8

The resulting type after applying the ! operator.
source§

fn not(self) -> u8

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Octal for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Ord for u8

source§

fn cmp(&self, other: &u8) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl PartialEq for u8

source§

fn eq(&self, other: &u8) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u8) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl PartialOrd for u8

source§

fn partial_cmp(&self, other: &u8) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u8) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u8) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u8) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u8) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl<'a> Product<&'a u8> for u8

source§

fn product<I>(iter: I) -> u8
where\n I: Iterator<Item = &'a u8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl Product for u8

source§

fn product<I>(iter: I) -> u8
where\n I: Iterator<Item = u8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Rem<&u8> for u8

source§

type Output = <u8 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u8) -> <u8 as Rem>::Output

Performs the % operation. Read more
","Rem<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.51.0 · source§

impl Rem<NonZero<u8>> for u8

source§

fn rem(self, other: NonZero<u8>) -> u8

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u8

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Rem for u8

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u8

The resulting type after applying the % operator.
source§

fn rem(self, other: u8) -> u8

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl RemAssign<&u8> for u8

source§

fn rem_assign(&mut self, other: &u8)

Performs the %= operation. Read more
","RemAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.79.0 · source§

impl RemAssign<NonZero<u8>> for u8

source§

fn rem_assign(&mut self, other: NonZero<u8>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl RemAssign for u8

source§

fn rem_assign(&mut self, other: u8)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i128> for u8

source§

type Output = <u8 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u8 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i16> for u8

source§

type Output = <u8 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u8 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i32> for u8

source§

type Output = <u8 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u8 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i64> for u8

source§

type Output = <u8 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u8 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i8> for u8

source§

type Output = <u8 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u8 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&isize> for u8

source§

type Output = <u8 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u8 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u128> for u8

source§

type Output = <u8 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u8 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u16> for u8

source§

type Output = <u8 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u8 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u32> for u8

source§

type Output = <u8 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u8 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u64> for u8

source§

type Output = <u8 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u8 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u8> for u8

source§

type Output = <u8 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u8 as Shl>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&usize> for u8

source§

type Output = <u8 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u8 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i128> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i16> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i32> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i64> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i8> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<isize> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u128> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u16> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u32> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u64> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<usize> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i128> for u8

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i16> for u8

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i32> for u8

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i64> for u8

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i8> for u8

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&isize> for u8

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u128> for u8

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u16> for u8

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u32> for u8

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u64> for u8

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u8> for u8

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&usize> for u8

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i128> for u8

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i16> for u8

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i32> for u8

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i64> for u8

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i8> for u8

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<isize> for u8

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u128> for u8

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u16> for u8

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u32> for u8

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u64> for u8

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<usize> for u8

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign for u8

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i128> for u8

source§

type Output = <u8 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u8 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i16> for u8

source§

type Output = <u8 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u8 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i32> for u8

source§

type Output = <u8 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u8 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i64> for u8

source§

type Output = <u8 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u8 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i8> for u8

source§

type Output = <u8 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u8 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&isize> for u8

source§

type Output = <u8 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u8 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u128> for u8

source§

type Output = <u8 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u8 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u16> for u8

source§

type Output = <u8 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u8 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u32> for u8

source§

type Output = <u8 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u8 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u64> for u8

source§

type Output = <u8 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u8 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u8> for u8

source§

type Output = <u8 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u8 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&usize> for u8

source§

type Output = <u8 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u8 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i128> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i16> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i32> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i64> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i8> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<isize> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u128> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u16> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u32> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u64> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<usize> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i128> for u8

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i16> for u8

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i32> for u8

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i64> for u8

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i8> for u8

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&isize> for u8

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u128> for u8

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u16> for u8

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u32> for u8

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u64> for u8

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u8> for u8

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&usize> for u8

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i128> for u8

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i16> for u8

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i32> for u8

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i64> for u8

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i8> for u8

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<isize> for u8

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u128> for u8

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u16> for u8

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u32> for u8

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u64> for u8

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<usize> for u8

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign for u8

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl SimdElement for u8

source§

type Mask = i8

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Step for u8

source§

fn forward(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u8, end: &u8) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u8, n: usize) -> Option<u8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u8, n: usize) -> Option<u8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Sub<&u8> for u8

source§

type Output = <u8 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u8) -> <u8 as Sub>::Output

Performs the - operation. Read more
","Sub<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Sub for u8

source§

type Output = u8

The resulting type after applying the - operator.
source§

fn sub(self, other: u8) -> u8

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl SubAssign<&u8> for u8

source§

fn sub_assign(&mut self, other: &u8)

Performs the -= operation. Read more
","SubAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl SubAssign for u8

source§

fn sub_assign(&mut self, other: u8)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl<'a> Sum<&'a u8> for u8

source§

fn sum<I>(iter: I) -> u8
where\n I: Iterator<Item = &'a u8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl Sum for u8

source§

fn sum<I>(iter: I) -> u8
where\n I: Iterator<Item = u8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.59.0 · source§

impl TryFrom<char> for u8

Maps a char with code point in U+0000..=U+00FF to a byte in 0x00..=0xFF with same value,\nfailing if the code point is greater than U+00FF.

\n

See impl From<u8> for char for details on the encoding.

\n
source§

fn try_from(c: char) -> Result<u8, <u8 as TryFrom<char>>::Error>

Tries to convert a char into a u8.

\n
§Examples
\n
let a = 'ÿ'; // U+00FF\nlet b = 'Ā'; // U+0100\nassert_eq!(u8::try_from(a), Ok(0xFF_u8));\nassert!(u8::try_from(b).is_err());
\n
source§

type Error = TryFromCharError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i128> for u8

source§

fn try_from(u: i128) -> Result<u8, <u8 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i16> for u8

source§

fn try_from(u: i16) -> Result<u8, <u8 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i32> for u8

source§

fn try_from(u: i32) -> Result<u8, <u8 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i64> for u8

source§

fn try_from(u: i64) -> Result<u8, <u8 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i8> for u8

source§

fn try_from(u: i8) -> Result<u8, <u8 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<isize> for u8

source§

fn try_from(u: isize) -> Result<u8, <u8 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u128> for u8

source§

fn try_from(u: u128) -> Result<u8, <u8 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u16> for u8

source§

fn try_from(u: u16) -> Result<u8, <u8 as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u32> for u8

source§

fn try_from(u: u32) -> Result<u8, <u8 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u64> for u8

source§

fn try_from(u: u64) -> Result<u8, <u8 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<usize> for u8

source§

fn try_from(u: usize) -> Result<u8, <u8 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.42.0 · source§

impl UpperExp for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl UpperHex for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl ConstParamTy_ for u8

","ConstParamTy_","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Copy for u8

","Copy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Eq for u8

","Eq","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl SimdCast for u8

","SimdCast","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl StructuralPartialEq for u8

","StructuralPartialEq","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl TrustedStep for u8

","TrustedStep","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl UnsizedConstParamTy for u8

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl ZeroablePrimitive for u8

","ZeroablePrimitive","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&u8> for u8

source§

type Output = <u8 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &u8) -> <u8 as Add>::Output

Performs the + operation. Read more
","Add<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Add for u8

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Add for u8

source§

type Output = u8

The resulting type after applying the + operator.
source§

fn add(self, other: u8) -> u8

Performs the + operation. Read more
","Add","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl AddAssign<&u8> for u8

source§

fn add_assign(&mut self, other: &u8)

Performs the += operation. Read more
","AddAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl AddAssign for u8

source§

fn add_assign(&mut self, other: u8)

Performs the += operation. Read more
","AddAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl AddCarrying for u8

source§

fn add_carrying(self, rhs: Self, carry: bool) -> (Self, bool)

Performs carrying add Read more
","AddCarrying","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl AddChecked for u8

source§

fn add_checked(self, rhs: u8) -> Option<u8>

","AddChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl AddOverflowing for u8

source§

fn add_overflowing(self, rhs: u8) -> (u8, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl And for u8

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for u8

source§

fn into_le_bytes(self) -> [u8; 1]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 1]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 1]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 1]) -> u8

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 1]) -> u8

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 1]) -> u8

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl AsciiExt for u8

source§

type Owned = u8

👎Deprecated since 1.26.0: use inherent methods instead
Container type for copied ASCII characters.
source§

fn is_ascii(&self) -> bool

👎Deprecated since 1.26.0: use inherent methods instead
Checks if the value is within the ASCII range. Read more
source§

fn to_ascii_uppercase(&self) -> <u8 as AsciiExt>::Owned

👎Deprecated since 1.26.0: use inherent methods instead
Makes a copy of the value in its ASCII upper case equivalent. Read more
source§

fn to_ascii_lowercase(&self) -> <u8 as AsciiExt>::Owned

👎Deprecated since 1.26.0: use inherent methods instead
Makes a copy of the value in its ASCII lower case equivalent. Read more
source§

fn eq_ignore_ascii_case(&self, o: &u8) -> bool

👎Deprecated since 1.26.0: use inherent methods instead
Checks that two values are an ASCII case-insensitive match. Read more
source§

fn make_ascii_uppercase(&mut self)

👎Deprecated since 1.26.0: use inherent methods instead
Converts this type to its ASCII upper case equivalent in-place. Read more
source§

fn make_ascii_lowercase(&mut self)

👎Deprecated since 1.26.0: use inherent methods instead
Converts this type to its ASCII lower case equivalent in-place. Read more
","AsciiExt","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Base for u8

source§

const MIN: u8 = 0u8

Min (finite) value of this number type
source§

const MAX: u8 = 255u8

Max (finite) value of this number type
source§

const ZERO: u8 = 0u8

0
source§

const ONE: u8 = 1u8

1
source§

const BITS: u8 = 8u8

Size of this number in bits
source§

const BYTES: u8 = 1u8

Size of this number type in bytes
source§

const ALIGN: u8 = 1u8

Align of this number type in bytes
source§

const BITS_USIZE: usize = 8usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 1usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 1usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> u8

","Base","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Binary for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitAnd<&u8> for u8

source§

type Output = <u8 as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &u8) -> <u8 as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitAnd for u8

source§

type Output = u8

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u8) -> u8

Performs the & operation. Read more
","BitAnd","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl BitAndAssign<&u8> for u8

source§

fn bitand_assign(&mut self, other: &u8)

Performs the &= operation. Read more
","BitAndAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl BitAndAssign for u8

source§

fn bitand_assign(&mut self, other: u8)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitOr<&u8> for u8

source§

type Output = <u8 as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &u8) -> <u8 as BitOr>::Output

Performs the | operation. Read more
","BitOr<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitOr for u8

source§

type Output = u8

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u8) -> u8

Performs the | operation. Read more
","BitOr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl BitOrAssign<&u8> for u8

source§

fn bitor_assign(&mut self, other: &u8)

Performs the |= operation. Read more
","BitOrAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl BitOrAssign for u8

source§

fn bitor_assign(&mut self, other: u8)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitXor<&u8> for u8

source§

type Output = <u8 as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &u8) -> <u8 as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl BitXor for u8

source§

type Output = u8

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: u8) -> u8

Performs the ^ operation. Read more
","BitXor","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl BitXorAssign<&u8> for u8

source§

fn bitxor_assign(&mut self, other: &u8)

Performs the ^= operation. Read more
","BitXorAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl BitXorAssign for u8

source§

fn bitxor_assign(&mut self, other: u8)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Clone for u8

source§

fn clone(&self) -> u8

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl CountBits for u8

","CountBits","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Debug for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Default for u8

source§

fn default() -> u8

Returns the default value of 0

\n
","Default","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Display for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Div<&u8> for u8

source§

type Output = <u8 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &u8) -> <u8 as Div>::Output

Performs the / operation. Read more
","Div<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.51.0 · source§

impl Div<NonZero<u8>> for u8

source§

fn div(self, other: NonZero<u8>) -> u8

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = u8

The resulting type after applying the / operator.
","Div>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Div for u8

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Div for u8

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u8

The resulting type after applying the / operator.
source§

fn div(self, other: u8) -> u8

Performs the / operation. Read more
","Div","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl DivAssign<&u8> for u8

source§

fn div_assign(&mut self, other: &u8)

Performs the /= operation. Read more
","DivAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.79.0 · source§

impl DivAssign<NonZero<u8>> for u8

source§

fn div_assign(&mut self, other: NonZero<u8>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl DivAssign for u8

source§

fn div_assign(&mut self, other: u8)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl DivChecked for u8

source§

fn div_checked(self, rhs: u8) -> Option<u8>

","DivChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl DivInt for u8

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl DivOverflowing for u8

source§

fn div_overflowing(self, rhs: u8) -> (u8, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl From<AsciiChar> for u8

source§

fn from(chr: AsciiChar) -> u8

Converts to this type from the input type.
","From","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.28.0 · source§

impl From<bool> for u8

source§

fn from(small: bool) -> u8

Converts a bool to u8 losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(u8::from(true), 1);\nassert_eq!(u8::from(false), 0);
\n
","From","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromF32Lossy for u8

source§

fn from_f32_lossy(val: f32) -> u8

Converts the provided\nf32\ninto\nu8,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromF64Lossy for u8

source§

fn from_f64_lossy(val: f64) -> u8

Converts the provided\nf64\ninto\nu8,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromI128Lossy for u8

source§

fn from_i128_lossy(val: i128) -> u8

Converts the provided\ni128\ninto\nu8,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromI16Lossy for u8

source§

fn from_i16_lossy(val: i16) -> u8

Converts the provided\ni16\ninto\nu8,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromI32Lossy for u8

source§

fn from_i32_lossy(val: i32) -> u8

Converts the provided\ni32\ninto\nu8,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromI64Lossy for u8

source§

fn from_i64_lossy(val: i64) -> u8

Converts the provided\ni64\ninto\nu8,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromI8Lossy for u8

source§

fn from_i8_lossy(val: i8) -> u8

Converts the provided\ni8\ninto\nu8,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromIsizeLossy for u8

source§

fn from_isize_lossy(val: isize) -> u8

Converts the provided\nisize\ninto\nu8,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl FromStr for u8

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<u8, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromU128Lossy for u8

source§

fn from_u128_lossy(val: u128) -> u8

Converts the provided\nu128\ninto\nu8,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromU16Lossy for u8

source§

fn from_u16_lossy(val: u16) -> u8

Converts the provided\nu16\ninto\nu8,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromU32Lossy for u8

source§

fn from_u32_lossy(val: u32) -> u8

Converts the provided\nu32\ninto\nu8,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromU64Lossy for u8

source§

fn from_u64_lossy(val: u64) -> u8

Converts the provided\nu64\ninto\nu8,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromU8Lossless for u8

source§

fn from_u8(val: u8) -> u8

Losslessly converts the provided\nu8\ninto\nu8

\n
","FromU8Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromU8Lossy for u8

source§

fn from_u8_lossy(val: u8) -> u8

Converts the provided\nu8\ninto\nu8,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl FromUsizeLossy for u8

source§

fn from_usize_lossy(val: usize) -> u8

Converts the provided\nusize\ninto\nu8,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Hash for u8

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[u8], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntUnsigned for u8

","IntUnsigned","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoF32Lossless for u8

source§

fn into_f32(self) -> f32

Losslessly converts self into\nf32
","IntoF32Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoF32Lossy for u8

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoF64Lossless for u8

source§

fn into_f64(self) -> f64

Losslessly converts self into\nf64
","IntoF64Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoF64Lossy for u8

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI128Lossless for u8

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI128Lossy for u8

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI16Lossless for u8

source§

fn into_i16(self) -> i16

Losslessly converts self into\ni16
","IntoI16Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI16Lossy for u8

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI32Lossless for u8

source§

fn into_i32(self) -> i32

Losslessly converts self into\ni32
","IntoI32Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI32Lossy for u8

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI64Lossless for u8

source§

fn into_i64(self) -> i64

Losslessly converts self into\ni64
","IntoI64Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI64Lossy for u8

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoI8Lossy for u8

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoIsizeLossless for u8

source§

fn into_isize(self) -> isize

Losslessly converts self into\nisize
","IntoIsizeLossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoIsizeLossy for u8

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU128Lossless for u8

source§

fn into_u128(self) -> u128

Losslessly converts self into\nu128
","IntoU128Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU128Lossy for u8

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU16Lossless for u8

source§

fn into_u16(self) -> u16

Losslessly converts self into\nu16
","IntoU16Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU16Lossy for u8

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU32Lossless for u8

source§

fn into_u32(self) -> u32

Losslessly converts self into\nu32
","IntoU32Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU32Lossy for u8

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU64Lossless for u8

source§

fn into_u64(self) -> u64

Losslessly converts self into\nu64
","IntoU64Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU64Lossy for u8

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU8Lossless for u8

source§

fn into_u8(self) -> u8

Losslessly converts self into\nu8
","IntoU8Lossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoU8Lossy for u8

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoUsizeLossless for u8

source§

fn into_usize(self) -> usize

Losslessly converts self into\nusize
","IntoUsizeLossless","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl IntoUsizeLossy for u8

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.42.0 · source§

impl LowerExp for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl LowerHex for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Mul<&u8> for u8

source§

type Output = <u8 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &u8) -> <u8 as Mul>::Output

Performs the * operation. Read more
","Mul<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Mul for u8

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Mul for u8

source§

type Output = u8

The resulting type after applying the * operator.
source§

fn mul(self, other: u8) -> u8

Performs the * operation. Read more
","Mul","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl MulAssign<&u8> for u8

source§

fn mul_assign(&mut self, other: &u8)

Performs the *= operation. Read more
","MulAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl MulAssign for u8

source§

fn mul_assign(&mut self, other: u8)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl MulChecked for u8

source§

fn mul_checked(self, rhs: u8) -> Option<u8>

","MulChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl MulOverflowing for u8

source§

fn mul_overflowing(self, rhs: u8) -> (u8, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl MulUnchecked for u8

source§

unsafe fn mul_unchecked(self, rhs: u8) -> u8

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl MulWidening for u8

source§

fn mul_widening(self, rhs: u8) -> (u8, u8)

Performs widening multiplication, returning the result in two parts:\n(low, high) Read more
","MulWidening","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl NegChecked for u8

","NegChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Not for u8

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Not for u8

source§

type Output = u8

The resulting type after applying the ! operator.
source§

fn not(self) -> u8

Performs the unary ! operation. Read more
","Not","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Octal for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Or for u8

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Ord for u8

source§

fn cmp(&self, other: &u8) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl PartialEq for u8

source§

fn eq(&self, other: &u8) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &u8) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl PartialOrd for u8

source§

fn partial_cmp(&self, other: &u8) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &u8) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &u8) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &u8) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &u8) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl<'a> Product<&'a u8> for u8

source§

fn product<I>(iter: I) -> u8
where\n I: Iterator<Item = &'a u8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl Product for u8

source§

fn product<I>(iter: I) -> u8
where\n I: Iterator<Item = u8>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Rem<&u8> for u8

source§

type Output = <u8 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &u8) -> <u8 as Rem>::Output

Performs the % operation. Read more
","Rem<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.51.0 · source§

impl Rem<NonZero<u8>> for u8

source§

fn rem(self, other: NonZero<u8>) -> u8

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = u8

The resulting type after applying the % operator.
","Rem>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Rem for u8

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Rem for u8

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = u8

The resulting type after applying the % operator.
source§

fn rem(self, other: u8) -> u8

Performs the % operation. Read more
","Rem","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl RemAssign<&u8> for u8

source§

fn rem_assign(&mut self, other: &u8)

Performs the %= operation. Read more
","RemAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.79.0 · source§

impl RemAssign<NonZero<u8>> for u8

source§

fn rem_assign(&mut self, other: NonZero<u8>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl RemAssign for u8

source§

fn rem_assign(&mut self, other: u8)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl RemChecked for u8

source§

fn rem_checked(self, rhs: u8) -> Option<u8>

","RemChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i128> for u8

source§

type Output = <u8 as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <u8 as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i16> for u8

source§

type Output = <u8 as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <u8 as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i32> for u8

source§

type Output = <u8 as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <u8 as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i64> for u8

source§

type Output = <u8 as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <u8 as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&i8> for u8

source§

type Output = <u8 as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <u8 as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&isize> for u8

source§

type Output = <u8 as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <u8 as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u128> for u8

source§

type Output = <u8 as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <u8 as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u16> for u8

source§

type Output = <u8 as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <u8 as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u32> for u8

source§

type Output = <u8 as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <u8 as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u64> for u8

source§

type Output = <u8 as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <u8 as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&u8> for u8

source§

type Output = <u8 as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <u8 as Shl>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<&usize> for u8

source§

type Output = <u8 as Shl<usize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <u8 as Shl<usize>>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i128> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i16> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i32> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i64> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<i8> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<isize> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u128> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u16> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u32> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<u64> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl<usize> for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Shl for u8

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shl for u8

source§

type Output = u8

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> u8

Performs the << operation. Read more
","Shl","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i128> for u8

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i16> for u8

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i32> for u8

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i64> for u8

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&i8> for u8

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&isize> for u8

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u128> for u8

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u16> for u8

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u32> for u8

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u64> for u8

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&u8> for u8

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShlAssign<&usize> for u8

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i128> for u8

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i16> for u8

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i32> for u8

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i64> for u8

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<i8> for u8

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<isize> for u8

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u128> for u8

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u16> for u8

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u32> for u8

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<u64> for u8

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign<usize> for u8

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShlAssign for u8

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl ShlChecked for u8

source§

fn shl_checked(self, rhs: u8) -> Option<u8>

","ShlChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i128> for u8

source§

type Output = <u8 as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <u8 as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i16> for u8

source§

type Output = <u8 as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <u8 as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i32> for u8

source§

type Output = <u8 as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <u8 as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i64> for u8

source§

type Output = <u8 as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <u8 as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&i8> for u8

source§

type Output = <u8 as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <u8 as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&isize> for u8

source§

type Output = <u8 as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <u8 as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u128> for u8

source§

type Output = <u8 as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <u8 as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u16> for u8

source§

type Output = <u8 as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <u8 as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u32> for u8

source§

type Output = <u8 as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <u8 as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u64> for u8

source§

type Output = <u8 as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <u8 as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&u8> for u8

source§

type Output = <u8 as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <u8 as Shr>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<&usize> for u8

source§

type Output = <u8 as Shr<usize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <u8 as Shr<usize>>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i128> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i16> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i32> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i64> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<i8> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<isize> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u128> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u16> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u32> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<u64> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr<usize> for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Shr for u8

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Shr for u8

source§

type Output = u8

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> u8

Performs the >> operation. Read more
","Shr","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i128> for u8

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i16> for u8

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i32> for u8

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i64> for u8

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&i8> for u8

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&isize> for u8

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u128> for u8

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u16> for u8

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u32> for u8

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u64> for u8

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&u8> for u8

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl ShrAssign<&usize> for u8

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i128> for u8

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i16> for u8

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i32> for u8

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i64> for u8

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<i8> for u8

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<isize> for u8

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u128> for u8

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u16> for u8

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u32> for u8

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<u64> for u8

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign<usize> for u8

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl ShrAssign for u8

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl ShrChecked for u8

source§

fn shr_checked(self, rhs: u8) -> Option<u8>

","ShrChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl SimdElement for u8

source§

type Mask = i8

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Step for u8

source§

fn forward(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: u8, n: usize) -> u8

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &u8, end: &u8) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: u8, n: usize) -> Option<u8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: u8, n: usize) -> Option<u8>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Sub<&u8> for u8

source§

type Output = <u8 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &u8) -> <u8 as Sub>::Output

Performs the - operation. Read more
","Sub<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Sub for u8

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Sub for u8

source§

type Output = u8

The resulting type after applying the - operator.
source§

fn sub(self, other: u8) -> u8

Performs the - operation. Read more
","Sub","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.22.0 · source§

impl SubAssign<&u8> for u8

source§

fn sub_assign(&mut self, other: &u8)

Performs the -= operation. Read more
","SubAssign<&u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.8.0 · source§

impl SubAssign for u8

source§

fn sub_assign(&mut self, other: u8)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl SubBorrowing for u8

source§

fn sub_borrowing(self, rhs: Self, borrow: bool) -> (Self, bool)

Performs borrowing subtraction Read more
","SubBorrowing","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl SubChecked for u8

source§

fn sub_checked(self, rhs: u8) -> Option<u8>

","SubChecked","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl SubOverflowing for u8

source§

fn sub_overflowing(self, rhs: u8) -> (u8, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl<'a> Sum<&'a u8> for u8

source§

fn sum<I>(iter: I) -> u8
where\n I: Iterator<Item = &'a u8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a u8>","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.12.0 · source§

impl Sum for u8

source§

fn sum<I>(iter: I) -> u8
where\n I: Iterator<Item = u8>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.59.0 · source§

impl TryFrom<char> for u8

Maps a char with code point in U+0000..=U+00FF to a byte in 0x00..=0xFF with same value,\nfailing if the code point is greater than U+00FF.

\n

See impl From<u8> for char for details on the encoding.

\n
source§

fn try_from(c: char) -> Result<u8, <u8 as TryFrom<char>>::Error>

Tries to convert a char into a u8.

\n
§Examples
\n
let a = 'ÿ'; // U+00FF\nlet b = 'Ā'; // U+0100\nassert_eq!(u8::try_from(a), Ok(0xFF_u8));\nassert!(u8::try_from(b).is_err());
\n
source§

type Error = TryFromCharError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i128> for u8

source§

fn try_from(u: i128) -> Result<u8, <u8 as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i16> for u8

source§

fn try_from(u: i16) -> Result<u8, <u8 as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i32> for u8

source§

fn try_from(u: i32) -> Result<u8, <u8 as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i64> for u8

source§

fn try_from(u: i64) -> Result<u8, <u8 as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<i8> for u8

source§

fn try_from(u: i8) -> Result<u8, <u8 as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<isize> for u8

source§

fn try_from(u: isize) -> Result<u8, <u8 as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u128> for u8

source§

fn try_from(u: u128) -> Result<u8, <u8 as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u16> for u8

source§

fn try_from(u: u16) -> Result<u8, <u8 as TryFrom<u16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u32> for u8

source§

fn try_from(u: u32) -> Result<u8, <u8 as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<u64> for u8

source§

fn try_from(u: u64) -> Result<u8, <u8 as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.34.0 · source§

impl TryFrom<usize> for u8

source§

fn try_from(u: usize) -> Result<u8, <u8 as TryFrom<usize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.42.0 · source§

impl UpperExp for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl UpperHex for u8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Widening<u16> for u8

source§

fn widen(self) -> u16

Extend self out into the widened type (without changing its value)
source§

fn split(wide: u16) -> (u8, u8)

Splits the wide integer into its lower and upper Self parts Read more
source§

fn join(self, n_high: u8) -> u16

Joins self with an upper value, to give a widened value
","Widening","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl Xor for u8

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl ConstParamTy_ for u8

","ConstParamTy_","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Copy for u8

","Copy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
1.0.0 · source§

impl Eq for u8

","Eq","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl SimdCast for u8

","SimdCast","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl StructuralPartialEq for u8

","StructuralPartialEq","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl TrustedStep for u8

","TrustedStep","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl UnsizedConstParamTy for u8

","UnsizedConstParamTy","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"],["
source§

impl ZeroablePrimitive for u8

","ZeroablePrimitive","wiwi::rust_std::ffi::c_uchar","wiwi::rust_std::arch::x86_64::__mmask8","wiwi::rust_std::os::raw::c_uchar"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[399900]} \ No newline at end of file +//{"start":55,"fragment_lengths":[515303]} \ No newline at end of file diff --git a/type.impl/std/primitive.usize.js b/type.impl/std/primitive.usize.js index 30bd7f4d4..68596dd0b 100644 --- a/type.impl/std/primitive.usize.js +++ b/type.impl/std/primitive.usize.js @@ -1,9 +1,9 @@ (function() { - var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&usize> for usize

source§

type Output = <usize as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &usize) -> <usize as Add>::Output

Performs the + operation. Read more
","Add<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Add for usize

source§

type Output = usize

The resulting type after applying the + operator.
source§

fn add(self, other: usize) -> usize

Performs the + operation. Read more
","Add","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl AddAssign<&usize> for usize

source§

fn add_assign(&mut self, other: &usize)

Performs the += operation. Read more
","AddAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl AddAssign for usize

source§

fn add_assign(&mut self, other: usize)

Performs the += operation. Read more
","AddAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Binary for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitAnd<&usize> for usize

source§

type Output = <usize as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &usize) -> <usize as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitAnd for usize

source§

type Output = usize

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: usize) -> usize

Performs the & operation. Read more
","BitAnd","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl BitAndAssign<&usize> for usize

source§

fn bitand_assign(&mut self, other: &usize)

Performs the &= operation. Read more
","BitAndAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl BitAndAssign for usize

source§

fn bitand_assign(&mut self, other: usize)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitOr<&usize> for usize

source§

type Output = <usize as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &usize) -> <usize as BitOr>::Output

Performs the | operation. Read more
","BitOr<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitOr for usize

source§

type Output = usize

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: usize) -> usize

Performs the | operation. Read more
","BitOr","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl BitOrAssign<&usize> for usize

source§

fn bitor_assign(&mut self, other: &usize)

Performs the |= operation. Read more
","BitOrAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl BitOrAssign for usize

source§

fn bitor_assign(&mut self, other: usize)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitXor<&usize> for usize

source§

type Output = <usize as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &usize) -> <usize as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitXor for usize

source§

type Output = usize

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: usize) -> usize

Performs the ^ operation. Read more
","BitXor","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl BitXorAssign<&usize> for usize

source§

fn bitxor_assign(&mut self, other: &usize)

Performs the ^= operation. Read more
","BitXorAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl BitXorAssign for usize

source§

fn bitxor_assign(&mut self, other: usize)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Clone for usize

source§

fn clone(&self) -> usize

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Debug for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Default for usize

source§

fn default() -> usize

Returns the default value of 0

\n
","Default","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Display for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Div<&usize> for usize

source§

type Output = <usize as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &usize) -> <usize as Div>::Output

Performs the / operation. Read more
","Div<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.51.0 · source§

impl Div<NonZero<usize>> for usize

source§

fn div(self, other: NonZero<usize>) -> usize

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = usize

The resulting type after applying the / operator.
","Div>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Div for usize

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = usize

The resulting type after applying the / operator.
source§

fn div(self, other: usize) -> usize

Performs the / operation. Read more
","Div","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl DivAssign<&usize> for usize

source§

fn div_assign(&mut self, other: &usize)

Performs the /= operation. Read more
","DivAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.79.0 · source§

impl DivAssign<NonZero<usize>> for usize

source§

fn div_assign(&mut self, other: NonZero<usize>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl DivAssign for usize

source§

fn div_assign(&mut self, other: usize)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl From<Alignment> for usize

source§

fn from(align: Alignment) -> usize

Converts to this type from the input type.
","From","wiwi::rust_core::ffi::c_size_t"],["
1.28.0 · source§

impl From<bool> for usize

source§

fn from(small: bool) -> usize

Converts a bool to usize losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(usize::from(true), 1);\nassert_eq!(usize::from(false), 0);
\n
","From","wiwi::rust_core::ffi::c_size_t"],["
1.26.0 · source§

impl From<u16> for usize

source§

fn from(small: u16) -> usize

Converts u16 to usize losslessly.

\n
","From","wiwi::rust_core::ffi::c_size_t"],["
1.5.0 · source§

impl From<u8> for usize

source§

fn from(small: u8) -> usize

Converts u8 to usize losslessly.

\n
","From","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl FromStr for usize

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<usize, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Hash for usize

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[usize], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_core::ffi::c_size_t"],["
1.42.0 · source§

impl LowerExp for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl LowerHex for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Mul<&usize> for usize

source§

type Output = <usize as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &usize) -> <usize as Mul>::Output

Performs the * operation. Read more
","Mul<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Mul for usize

source§

type Output = usize

The resulting type after applying the * operator.
source§

fn mul(self, other: usize) -> usize

Performs the * operation. Read more
","Mul","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl MulAssign<&usize> for usize

source§

fn mul_assign(&mut self, other: &usize)

Performs the *= operation. Read more
","MulAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl MulAssign for usize

source§

fn mul_assign(&mut self, other: usize)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Not for usize

source§

type Output = usize

The resulting type after applying the ! operator.
source§

fn not(self) -> usize

Performs the unary ! operation. Read more
","Not","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Octal for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Ord for usize

source§

fn cmp(&self, other: &usize) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl PartialEq for usize

source§

fn eq(&self, other: &usize) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &usize) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl PartialOrd for usize

source§

fn partial_cmp(&self, other: &usize) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &usize) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &usize) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &usize) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &usize) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl<'a> Product<&'a usize> for usize

source§

fn product<I>(iter: I) -> usize
where\n I: Iterator<Item = &'a usize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a usize>","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl Product for usize

source§

fn product<I>(iter: I) -> usize
where\n I: Iterator<Item = usize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Rem<&usize> for usize

source§

type Output = <usize as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &usize) -> <usize as Rem>::Output

Performs the % operation. Read more
","Rem<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.51.0 · source§

impl Rem<NonZero<usize>> for usize

source§

fn rem(self, other: NonZero<usize>) -> usize

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = usize

The resulting type after applying the % operator.
","Rem>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Rem for usize

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = usize

The resulting type after applying the % operator.
source§

fn rem(self, other: usize) -> usize

Performs the % operation. Read more
","Rem","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl RemAssign<&usize> for usize

source§

fn rem_assign(&mut self, other: &usize)

Performs the %= operation. Read more
","RemAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.79.0 · source§

impl RemAssign<NonZero<usize>> for usize

source§

fn rem_assign(&mut self, other: NonZero<usize>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl RemAssign for usize

source§

fn rem_assign(&mut self, other: usize)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i128> for usize

source§

type Output = <usize as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <usize as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i16> for usize

source§

type Output = <usize as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <usize as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i32> for usize

source§

type Output = <usize as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <usize as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i64> for usize

source§

type Output = <usize as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <usize as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i8> for usize

source§

type Output = <usize as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <usize as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&isize> for usize

source§

type Output = <usize as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <usize as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u128> for usize

source§

type Output = <usize as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <usize as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u16> for usize

source§

type Output = <usize as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <usize as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u32> for usize

source§

type Output = <usize as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <usize as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u64> for usize

source§

type Output = <usize as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <usize as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u8> for usize

source§

type Output = <usize as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <usize as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&usize> for usize

source§

type Output = <usize as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <usize as Shl>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i128> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i16> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i32> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i64> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i8> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<isize> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u128> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u16> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u32> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u64> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u8> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for usize

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for usize

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for usize

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for usize

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for usize

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for usize

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for usize

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for usize

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for usize

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for usize

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for usize

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for usize

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i128> for usize

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i16> for usize

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i32> for usize

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i64> for usize

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i8> for usize

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<isize> for usize

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u128> for usize

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u16> for usize

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u32> for usize

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u64> for usize

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u8> for usize

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign for usize

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i128> for usize

source§

type Output = <usize as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <usize as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i16> for usize

source§

type Output = <usize as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <usize as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i32> for usize

source§

type Output = <usize as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <usize as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i64> for usize

source§

type Output = <usize as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <usize as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i8> for usize

source§

type Output = <usize as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <usize as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&isize> for usize

source§

type Output = <usize as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <usize as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u128> for usize

source§

type Output = <usize as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <usize as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u16> for usize

source§

type Output = <usize as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <usize as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u32> for usize

source§

type Output = <usize as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <usize as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u64> for usize

source§

type Output = <usize as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <usize as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u8> for usize

source§

type Output = <usize as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <usize as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&usize> for usize

source§

type Output = <usize as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <usize as Shr>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i128> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i16> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i32> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i64> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i8> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<isize> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u128> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u16> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u32> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u64> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u8> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for usize

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for usize

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for usize

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for usize

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for usize

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for usize

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for usize

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for usize

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for usize

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for usize

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for usize

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for usize

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i128> for usize

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i16> for usize

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i32> for usize

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i64> for usize

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i8> for usize

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<isize> for usize

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u128> for usize

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u16> for usize

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u32> for usize

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u64> for usize

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u8> for usize

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign for usize

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl SimdElement for usize

source§

type Mask = isize

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_core::ffi::c_size_t"],["
1.15.0 (const: unstable) · source§

impl<T> SliceIndex<[T]> for usize

The methods index and index_mut panic if the index is out of bounds.

\n
source§

type Output = T

The output type returned by methods.
source§

fn get(self, slice: &[T]) -> Option<&T>

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a shared reference to the output at this location, if in\nbounds.
source§

fn get_mut(self, slice: &mut [T]) -> Option<&mut T>

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable reference to the output at this location, if in\nbounds.
source§

unsafe fn get_unchecked(self, slice: *const [T]) -> *const T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a pointer to the output at this location, without\nperforming any bounds checking. Read more
source§

unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable pointer to the output at this location, without\nperforming any bounds checking. Read more
source§

fn index(self, slice: &[T]) -> &T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a shared reference to the output at this location, panicking\nif out of bounds.
source§

fn index_mut(self, slice: &mut [T]) -> &mut T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable reference to the output at this location, panicking\nif out of bounds.
","SliceIndex<[T]>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Step for usize

source§

fn forward(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &usize, end: &usize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: usize, n: usize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: usize, n: usize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Sub<&usize> for usize

source§

type Output = <usize as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &usize) -> <usize as Sub>::Output

Performs the - operation. Read more
","Sub<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Sub for usize

source§

type Output = usize

The resulting type after applying the - operator.
source§

fn sub(self, other: usize) -> usize

Performs the - operation. Read more
","Sub","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl SubAssign<&usize> for usize

source§

fn sub_assign(&mut self, other: &usize)

Performs the -= operation. Read more
","SubAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl SubAssign for usize

source§

fn sub_assign(&mut self, other: usize)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl<'a> Sum<&'a usize> for usize

source§

fn sum<I>(iter: I) -> usize
where\n I: Iterator<Item = &'a usize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a usize>","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl Sum for usize

source§

fn sum<I>(iter: I) -> usize
where\n I: Iterator<Item = usize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i128> for usize

source§

fn try_from(u: i128) -> Result<usize, <usize as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i16> for usize

source§

fn try_from(u: i16) -> Result<usize, <usize as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i32> for usize

source§

fn try_from(u: i32) -> Result<usize, <usize as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i64> for usize

source§

fn try_from(u: i64) -> Result<usize, <usize as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i8> for usize

source§

fn try_from(u: i8) -> Result<usize, <usize as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<isize> for usize

source§

fn try_from(u: isize) -> Result<usize, <usize as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<u128> for usize

source§

fn try_from(u: u128) -> Result<usize, <usize as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<u32> for usize

source§

fn try_from(value: u32) -> Result<usize, <usize as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<u64> for usize

source§

fn try_from(value: u64) -> Result<usize, <usize as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.42.0 · source§

impl UpperExp for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl UpperHex for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_core::ffi::c_size_t"],["
source§

impl ConstParamTy_ for usize

","ConstParamTy_","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Copy for usize

","Copy","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Eq for usize

","Eq","wiwi::rust_core::ffi::c_size_t"],["
source§

impl SimdCast for usize

","SimdCast","wiwi::rust_core::ffi::c_size_t"],["
source§

impl StructuralPartialEq for usize

","StructuralPartialEq","wiwi::rust_core::ffi::c_size_t"],["
source§

impl TrustedStep for usize

","TrustedStep","wiwi::rust_core::ffi::c_size_t"],["
source§

impl UnsizedConstParamTy for usize

","UnsizedConstParamTy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl ZeroablePrimitive for usize

","ZeroablePrimitive","wiwi::rust_core::ffi::c_size_t"]]]]); + var type_impls = Object.fromEntries([["wiwi",[["
1.0.0 · source§

impl Add<&usize> for usize

source§

type Output = <usize as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, other: &usize) -> <usize as Add>::Output

Performs the + operation. Read more
","Add<&usize>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Add for usize

source§

fn add_regular(self, rhs: Self) -> Self

Performs plain addition Read more
","Add","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Add for usize

source§

type Output = usize

The resulting type after applying the + operator.
source§

fn add(self, other: usize) -> usize

Performs the + operation. Read more
","Add","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl AddAssign<&usize> for usize

source§

fn add_assign(&mut self, other: &usize)

Performs the += operation. Read more
","AddAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl AddAssign for usize

source§

fn add_assign(&mut self, other: usize)

Performs the += operation. Read more
","AddAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl AddCarrying for usize

source§

fn add_carrying(self, rhs: Self, carry: bool) -> (Self, bool)

Performs carrying add Read more
","AddCarrying","wiwi::rust_core::ffi::c_size_t"],["
source§

impl AddChecked for usize

","AddChecked","wiwi::rust_core::ffi::c_size_t"],["
source§

impl AddOverflowing for usize

source§

fn add_overflowing(self, rhs: usize) -> (usize, bool)

Performs overflowing add Read more
","AddOverflowing","wiwi::rust_core::ffi::c_size_t"],["
source§

impl And for usize

source§

fn and_regular(self, rhs: Self) -> Self

","And","wiwi::rust_core::ffi::c_size_t"],["
source§

impl ArrayConversions<{ $num::BYTES_USIZE }> for usize

source§

fn into_le_bytes(self) -> [u8; 8]

Converts this number into a byte array in little endian order Read more
source§

fn into_be_bytes(self) -> [u8; 8]

Converts this number into a byte array in big endian order Read more
source§

fn into_ne_bytes(self) -> [u8; 8]

Converts this number into a byte array in native endian order Read more
source§

fn from_le_bytes(bytes: [u8; 8]) -> usize

Converts an array of bytes in little endian order to a number Read more
source§

fn from_be_bytes(bytes: [u8; 8]) -> usize

Converts an array of bytes in big endian order to a number Read more
source§

fn from_ne_bytes(bytes: [u8; 8]) -> usize

Converts an array of bytes in native endian order to a number Read more
","ArrayConversions<{ $num::BYTES_USIZE }>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Base for usize

source§

const MIN: usize = 0usize

Min (finite) value of this number type
source§

const MAX: usize = 18_446_744_073_709_551_615usize

Max (finite) value of this number type
source§

const ZERO: usize = 0usize

0
source§

const ONE: usize = 1usize

1
source§

const BITS: usize = 64usize

Size of this number in bits
source§

const BYTES: usize = 8usize

Size of this number type in bytes
source§

const ALIGN: usize = 8usize

Align of this number type in bytes
source§

const BITS_USIZE: usize = 64usize

Size of this number in bits, type usize
source§

const BYTES_USIZE: usize = 8usize

Size of this number type in bytes, type usize
source§

const ALIGN_USIZE: usize = 8usize

Align of this number type in bytes, type usize
source§

fn from_bool(b: bool) -> usize

","Base","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Binary for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Binary","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitAnd<&usize> for usize

source§

type Output = <usize as BitAnd>::Output

The resulting type after applying the & operator.
source§

fn bitand(self, other: &usize) -> <usize as BitAnd>::Output

Performs the & operation. Read more
","BitAnd<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitAnd for usize

source§

type Output = usize

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: usize) -> usize

Performs the & operation. Read more
","BitAnd","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl BitAndAssign<&usize> for usize

source§

fn bitand_assign(&mut self, other: &usize)

Performs the &= operation. Read more
","BitAndAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl BitAndAssign for usize

source§

fn bitand_assign(&mut self, other: usize)

Performs the &= operation. Read more
","BitAndAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitOr<&usize> for usize

source§

type Output = <usize as BitOr>::Output

The resulting type after applying the | operator.
source§

fn bitor(self, other: &usize) -> <usize as BitOr>::Output

Performs the | operation. Read more
","BitOr<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitOr for usize

source§

type Output = usize

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: usize) -> usize

Performs the | operation. Read more
","BitOr","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl BitOrAssign<&usize> for usize

source§

fn bitor_assign(&mut self, other: &usize)

Performs the |= operation. Read more
","BitOrAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl BitOrAssign for usize

source§

fn bitor_assign(&mut self, other: usize)

Performs the |= operation. Read more
","BitOrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitXor<&usize> for usize

source§

type Output = <usize as BitXor>::Output

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: &usize) -> <usize as BitXor>::Output

Performs the ^ operation. Read more
","BitXor<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl BitXor for usize

source§

type Output = usize

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: usize) -> usize

Performs the ^ operation. Read more
","BitXor","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl BitXorAssign<&usize> for usize

source§

fn bitxor_assign(&mut self, other: &usize)

Performs the ^= operation. Read more
","BitXorAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl BitXorAssign for usize

source§

fn bitxor_assign(&mut self, other: usize)

Performs the ^= operation. Read more
","BitXorAssign","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Clone for usize

source§

fn clone(&self) -> usize

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","wiwi::rust_core::ffi::c_size_t"],["
source§

impl CountBits for usize

","CountBits","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Debug for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Default for usize

source§

fn default() -> usize

Returns the default value of 0

\n
","Default","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Display for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Div<&usize> for usize

source§

type Output = <usize as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, other: &usize) -> <usize as Div>::Output

Performs the / operation. Read more
","Div<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.51.0 · source§

impl Div<NonZero<usize>> for usize

source§

fn div(self, other: NonZero<usize>) -> usize

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
source§

type Output = usize

The resulting type after applying the / operator.
","Div>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Div for usize

source§

fn div_regular(self, rhs: Self) -> Self

Performs regular division Read more
","Div","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Div for usize

This operation rounds towards zero, truncating any\nfractional part of the exact result.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = usize

The resulting type after applying the / operator.
source§

fn div(self, other: usize) -> usize

Performs the / operation. Read more
","Div","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl DivAssign<&usize> for usize

source§

fn div_assign(&mut self, other: &usize)

Performs the /= operation. Read more
","DivAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.79.0 · source§

impl DivAssign<NonZero<usize>> for usize

source§

fn div_assign(&mut self, other: NonZero<usize>)

This operation rounds towards zero, truncating any fractional\npart of the exact result, and cannot panic.

\n
","DivAssign>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl DivAssign for usize

source§

fn div_assign(&mut self, other: usize)

Performs the /= operation. Read more
","DivAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl DivChecked for usize

","DivChecked","wiwi::rust_core::ffi::c_size_t"],["
source§

impl DivInt for usize

source§

fn div_int(self, rhs: Self) -> Self

Performs integer division Read more
","DivInt","wiwi::rust_core::ffi::c_size_t"],["
source§

impl DivOverflowing for usize

source§

fn div_overflowing(self, rhs: usize) -> (usize, bool)

Performs overflowing division Read more
","DivOverflowing","wiwi::rust_core::ffi::c_size_t"],["
source§

impl From<Alignment> for usize

source§

fn from(align: Alignment) -> usize

Converts to this type from the input type.
","From","wiwi::rust_core::ffi::c_size_t"],["
1.28.0 · source§

impl From<bool> for usize

source§

fn from(small: bool) -> usize

Converts a bool to usize losslessly.\nThe resulting value is 0 for false and 1 for true values.

\n
§Examples
\n
assert_eq!(usize::from(true), 1);\nassert_eq!(usize::from(false), 0);
\n
","From","wiwi::rust_core::ffi::c_size_t"],["
1.26.0 · source§

impl From<u16> for usize

source§

fn from(small: u16) -> usize

Converts u16 to usize losslessly.

\n
","From","wiwi::rust_core::ffi::c_size_t"],["
1.5.0 · source§

impl From<u8> for usize

source§

fn from(small: u8) -> usize

Converts u8 to usize losslessly.

\n
","From","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromF32Lossy for usize

source§

fn from_f32_lossy(val: f32) -> usize

Converts the provided\nf32\ninto\nusize,\npotentially lossily

\n
","FromF32Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromF64Lossy for usize

source§

fn from_f64_lossy(val: f64) -> usize

Converts the provided\nf64\ninto\nusize,\npotentially lossily

\n
","FromF64Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromI128Lossy for usize

source§

fn from_i128_lossy(val: i128) -> usize

Converts the provided\ni128\ninto\nusize,\npotentially lossily

\n
","FromI128Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromI16Lossy for usize

source§

fn from_i16_lossy(val: i16) -> usize

Converts the provided\ni16\ninto\nusize,\npotentially lossily

\n
","FromI16Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromI32Lossy for usize

source§

fn from_i32_lossy(val: i32) -> usize

Converts the provided\ni32\ninto\nusize,\npotentially lossily

\n
","FromI32Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromI64Lossy for usize

source§

fn from_i64_lossy(val: i64) -> usize

Converts the provided\ni64\ninto\nusize,\npotentially lossily

\n
","FromI64Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromI8Lossy for usize

source§

fn from_i8_lossy(val: i8) -> usize

Converts the provided\ni8\ninto\nusize,\npotentially lossily

\n
","FromI8Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromIsizeLossy for usize

source§

fn from_isize_lossy(val: isize) -> usize

Converts the provided\nisize\ninto\nusize,\npotentially lossily

\n
","FromIsizeLossy","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl FromStr for usize

source§

type Err = ParseIntError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<usize, ParseIntError>

Parses a string s to return a value of this type. Read more
","FromStr","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU128Lossy for usize

source§

fn from_u128_lossy(val: u128) -> usize

Converts the provided\nu128\ninto\nusize,\npotentially lossily

\n
","FromU128Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU16Lossless for usize

source§

fn from_u16(val: u16) -> usize

Losslessly converts the provided\nu16\ninto\nusize

\n
","FromU16Lossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU16Lossy for usize

source§

fn from_u16_lossy(val: u16) -> usize

Converts the provided\nu16\ninto\nusize,\npotentially lossily

\n
","FromU16Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU32Lossless for usize

source§

fn from_u32(val: u32) -> usize

Losslessly converts the provided\nu32\ninto\nusize

\n
","FromU32Lossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU32Lossy for usize

source§

fn from_u32_lossy(val: u32) -> usize

Converts the provided\nu32\ninto\nusize,\npotentially lossily

\n
","FromU32Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU64Lossless for usize

source§

fn from_u64(val: u64) -> usize

Losslessly converts the provided\nu64\ninto\nusize

\n
","FromU64Lossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU64Lossy for usize

source§

fn from_u64_lossy(val: u64) -> usize

Converts the provided\nu64\ninto\nusize,\npotentially lossily

\n
","FromU64Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU8Lossless for usize

source§

fn from_u8(val: u8) -> usize

Losslessly converts the provided\nu8\ninto\nusize

\n
","FromU8Lossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromU8Lossy for usize

source§

fn from_u8_lossy(val: u8) -> usize

Converts the provided\nu8\ninto\nusize,\npotentially lossily

\n
","FromU8Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromUsizeLossless for usize

source§

fn from_usize(val: usize) -> usize

Losslessly converts the provided\nusize\ninto\nusize

\n
","FromUsizeLossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl FromUsizeLossy for usize

source§

fn from_usize_lossy(val: usize) -> usize

Converts the provided\nusize\ninto\nusize,\npotentially lossily

\n
","FromUsizeLossy","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Hash for usize

source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
source§

fn hash_slice<H>(data: &[usize], state: &mut H)
where\n H: Hasher,

Feeds a slice of this type into the given Hasher. Read more
","Hash","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntUnsigned for usize

","IntUnsigned","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoF32Lossy for usize

source§

fn into_f32_lossy(self) -> f32

converts self into\nf32,\npotentially lossily
","IntoF32Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoF64Lossy for usize

source§

fn into_f64_lossy(self) -> f64

converts self into\nf64,\npotentially lossily
","IntoF64Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoI128Lossless for usize

source§

fn into_i128(self) -> i128

Losslessly converts self into\ni128
","IntoI128Lossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoI128Lossy for usize

source§

fn into_i128_lossy(self) -> i128

converts self into\ni128,\npotentially lossily
","IntoI128Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoI16Lossy for usize

source§

fn into_i16_lossy(self) -> i16

converts self into\ni16,\npotentially lossily
","IntoI16Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoI32Lossy for usize

source§

fn into_i32_lossy(self) -> i32

converts self into\ni32,\npotentially lossily
","IntoI32Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoI64Lossy for usize

source§

fn into_i64_lossy(self) -> i64

converts self into\ni64,\npotentially lossily
","IntoI64Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoI8Lossy for usize

source§

fn into_i8_lossy(self) -> i8

converts self into\ni8,\npotentially lossily
","IntoI8Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoIsizeLossy for usize

source§

fn into_isize_lossy(self) -> isize

converts self into\nisize,\npotentially lossily
","IntoIsizeLossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoU128Lossless for usize

source§

fn into_u128(self) -> u128

Losslessly converts self into\nu128
","IntoU128Lossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoU128Lossy for usize

source§

fn into_u128_lossy(self) -> u128

converts self into\nu128,\npotentially lossily
","IntoU128Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoU16Lossy for usize

source§

fn into_u16_lossy(self) -> u16

converts self into\nu16,\npotentially lossily
","IntoU16Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoU32Lossy for usize

source§

fn into_u32_lossy(self) -> u32

converts self into\nu32,\npotentially lossily
","IntoU32Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoU64Lossless for usize

source§

fn into_u64(self) -> u64

Losslessly converts self into\nu64
","IntoU64Lossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoU64Lossy for usize

source§

fn into_u64_lossy(self) -> u64

converts self into\nu64,\npotentially lossily
","IntoU64Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoU8Lossy for usize

source§

fn into_u8_lossy(self) -> u8

converts self into\nu8,\npotentially lossily
","IntoU8Lossy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoUsizeLossless for usize

source§

fn into_usize(self) -> usize

Losslessly converts self into\nusize
","IntoUsizeLossless","wiwi::rust_core::ffi::c_size_t"],["
source§

impl IntoUsizeLossy for usize

source§

fn into_usize_lossy(self) -> usize

converts self into\nusize,\npotentially lossily
","IntoUsizeLossy","wiwi::rust_core::ffi::c_size_t"],["
1.42.0 · source§

impl LowerExp for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerExp","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl LowerHex for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","LowerHex","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Mul<&usize> for usize

source§

type Output = <usize as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, other: &usize) -> <usize as Mul>::Output

Performs the * operation. Read more
","Mul<&usize>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Mul for usize

source§

fn mul_regular(self, rhs: Self) -> Self

Performs plain multiplication Read more
","Mul","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Mul for usize

source§

type Output = usize

The resulting type after applying the * operator.
source§

fn mul(self, other: usize) -> usize

Performs the * operation. Read more
","Mul","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl MulAssign<&usize> for usize

source§

fn mul_assign(&mut self, other: &usize)

Performs the *= operation. Read more
","MulAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl MulAssign for usize

source§

fn mul_assign(&mut self, other: usize)

Performs the *= operation. Read more
","MulAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl MulChecked for usize

","MulChecked","wiwi::rust_core::ffi::c_size_t"],["
source§

impl MulOverflowing for usize

source§

fn mul_overflowing(self, rhs: usize) -> (usize, bool)

Performs overflowing multiplication Read more
","MulOverflowing","wiwi::rust_core::ffi::c_size_t"],["
source§

impl MulUnchecked for usize

source§

unsafe fn mul_unchecked(self, rhs: usize) -> usize

Performs unchecked multiplication Read more
","MulUnchecked","wiwi::rust_core::ffi::c_size_t"],["
source§

impl MulWidening for usize

source§

fn mul_widening(self, rhs: usize) -> (usize, usize)

Performs widening multiplication, returning the result in two parts:\n(low, high) Read more
","MulWidening","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Narrowing<u32> for usize

source§

fn split(self) -> (u32, u32)

Splits self into its lower and upper narrow parts Read more
source§

fn widen(narrow: u32) -> usize

Extend Narrow out into Self (without changing its value)
source§

fn join(n_low: u32, n_high: u32) -> usize

Join the narrow lower and upper parts together to get Self
","Narrowing","wiwi::rust_core::ffi::c_size_t"],["
source§

impl NegChecked for usize

","NegChecked","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Not for usize

source§

fn not_regular(self) -> Self

","Not","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Not for usize

source§

type Output = usize

The resulting type after applying the ! operator.
source§

fn not(self) -> usize

Performs the unary ! operation. Read more
","Not","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Octal for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Octal","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Or for usize

source§

fn or_regular(self, rhs: Self) -> Self

","Or","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Ord for usize

source§

fn cmp(&self, other: &usize) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
","Ord","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl PartialEq for usize

source§

fn eq(&self, other: &usize) -> bool

Tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &usize) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl PartialOrd for usize

source§

fn partial_cmp(&self, other: &usize) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &usize) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &usize) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
source§

fn ge(&self, other: &usize) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
source§

fn gt(&self, other: &usize) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
","PartialOrd","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl<'a> Product<&'a usize> for usize

source§

fn product<I>(iter: I) -> usize
where\n I: Iterator<Item = &'a usize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product<&'a usize>","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl Product for usize

source§

fn product<I>(iter: I) -> usize
where\n I: Iterator<Item = usize>,

Takes an iterator and generates Self from the elements by multiplying\nthe items.
","Product","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Rem<&usize> for usize

source§

type Output = <usize as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, other: &usize) -> <usize as Rem>::Output

Performs the % operation. Read more
","Rem<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.51.0 · source§

impl Rem<NonZero<usize>> for usize

source§

fn rem(self, other: NonZero<usize>) -> usize

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
source§

type Output = usize

The resulting type after applying the % operator.
","Rem>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Rem for usize

source§

fn rem_regular(self, rhs: Self) -> Self

","Rem","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Rem for usize

This operation satisfies n % d == n - (n / d) * d. The\nresult has the same sign as the left operand.

\n

§Panics

\n

This operation will panic if other == 0.

\n
source§

type Output = usize

The resulting type after applying the % operator.
source§

fn rem(self, other: usize) -> usize

Performs the % operation. Read more
","Rem","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl RemAssign<&usize> for usize

source§

fn rem_assign(&mut self, other: &usize)

Performs the %= operation. Read more
","RemAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.79.0 · source§

impl RemAssign<NonZero<usize>> for usize

source§

fn rem_assign(&mut self, other: NonZero<usize>)

This operation satisfies n % d == n - (n / d) * d, and cannot panic.

\n
","RemAssign>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl RemAssign for usize

source§

fn rem_assign(&mut self, other: usize)

Performs the %= operation. Read more
","RemAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl RemChecked for usize

","RemChecked","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i128> for usize

source§

type Output = <usize as Shl<i128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i128) -> <usize as Shl<i128>>::Output

Performs the << operation. Read more
","Shl<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i16> for usize

source§

type Output = <usize as Shl<i16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i16) -> <usize as Shl<i16>>::Output

Performs the << operation. Read more
","Shl<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i32> for usize

source§

type Output = <usize as Shl<i32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i32) -> <usize as Shl<i32>>::Output

Performs the << operation. Read more
","Shl<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i64> for usize

source§

type Output = <usize as Shl<i64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i64) -> <usize as Shl<i64>>::Output

Performs the << operation. Read more
","Shl<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&i8> for usize

source§

type Output = <usize as Shl<i8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &i8) -> <usize as Shl<i8>>::Output

Performs the << operation. Read more
","Shl<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&isize> for usize

source§

type Output = <usize as Shl<isize>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &isize) -> <usize as Shl<isize>>::Output

Performs the << operation. Read more
","Shl<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u128> for usize

source§

type Output = <usize as Shl<u128>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u128) -> <usize as Shl<u128>>::Output

Performs the << operation. Read more
","Shl<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u16> for usize

source§

type Output = <usize as Shl<u16>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u16) -> <usize as Shl<u16>>::Output

Performs the << operation. Read more
","Shl<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u32> for usize

source§

type Output = <usize as Shl<u32>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u32) -> <usize as Shl<u32>>::Output

Performs the << operation. Read more
","Shl<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u64> for usize

source§

type Output = <usize as Shl<u64>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u64) -> <usize as Shl<u64>>::Output

Performs the << operation. Read more
","Shl<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&u8> for usize

source§

type Output = <usize as Shl<u8>>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &u8) -> <usize as Shl<u8>>::Output

Performs the << operation. Read more
","Shl<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<&usize> for usize

source§

type Output = <usize as Shl>::Output

The resulting type after applying the << operator.
source§

fn shl(self, other: &usize) -> <usize as Shl>::Output

Performs the << operation. Read more
","Shl<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i128> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i128) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i16> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i16) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i32> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i32) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i64> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i64) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<i8> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: i8) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<isize> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: isize) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u128> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u128) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u16> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u16) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u32> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u32) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u64> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u64) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl<u8> for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: u8) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Shl for usize

source§

fn shl_regular(self, rhs: Self) -> Self

","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shl for usize

source§

type Output = usize

The resulting type after applying the << operator.
source§

fn shl(self, other: usize) -> usize

Performs the << operation. Read more
","Shl","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i128> for usize

source§

fn shl_assign(&mut self, other: &i128)

Performs the <<= operation. Read more
","ShlAssign<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i16> for usize

source§

fn shl_assign(&mut self, other: &i16)

Performs the <<= operation. Read more
","ShlAssign<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i32> for usize

source§

fn shl_assign(&mut self, other: &i32)

Performs the <<= operation. Read more
","ShlAssign<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i64> for usize

source§

fn shl_assign(&mut self, other: &i64)

Performs the <<= operation. Read more
","ShlAssign<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&i8> for usize

source§

fn shl_assign(&mut self, other: &i8)

Performs the <<= operation. Read more
","ShlAssign<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&isize> for usize

source§

fn shl_assign(&mut self, other: &isize)

Performs the <<= operation. Read more
","ShlAssign<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u128> for usize

source§

fn shl_assign(&mut self, other: &u128)

Performs the <<= operation. Read more
","ShlAssign<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u16> for usize

source§

fn shl_assign(&mut self, other: &u16)

Performs the <<= operation. Read more
","ShlAssign<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u32> for usize

source§

fn shl_assign(&mut self, other: &u32)

Performs the <<= operation. Read more
","ShlAssign<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u64> for usize

source§

fn shl_assign(&mut self, other: &u64)

Performs the <<= operation. Read more
","ShlAssign<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&u8> for usize

source§

fn shl_assign(&mut self, other: &u8)

Performs the <<= operation. Read more
","ShlAssign<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShlAssign<&usize> for usize

source§

fn shl_assign(&mut self, other: &usize)

Performs the <<= operation. Read more
","ShlAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i128> for usize

source§

fn shl_assign(&mut self, other: i128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i16> for usize

source§

fn shl_assign(&mut self, other: i16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i32> for usize

source§

fn shl_assign(&mut self, other: i32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i64> for usize

source§

fn shl_assign(&mut self, other: i64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<i8> for usize

source§

fn shl_assign(&mut self, other: i8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<isize> for usize

source§

fn shl_assign(&mut self, other: isize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u128> for usize

source§

fn shl_assign(&mut self, other: u128)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u16> for usize

source§

fn shl_assign(&mut self, other: u16)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u32> for usize

source§

fn shl_assign(&mut self, other: u32)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u64> for usize

source§

fn shl_assign(&mut self, other: u64)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign<u8> for usize

source§

fn shl_assign(&mut self, other: u8)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShlAssign for usize

source§

fn shl_assign(&mut self, other: usize)

Performs the <<= operation. Read more
","ShlAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl ShlChecked for usize

","ShlChecked","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i128> for usize

source§

type Output = <usize as Shr<i128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i128) -> <usize as Shr<i128>>::Output

Performs the >> operation. Read more
","Shr<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i16> for usize

source§

type Output = <usize as Shr<i16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i16) -> <usize as Shr<i16>>::Output

Performs the >> operation. Read more
","Shr<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i32> for usize

source§

type Output = <usize as Shr<i32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i32) -> <usize as Shr<i32>>::Output

Performs the >> operation. Read more
","Shr<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i64> for usize

source§

type Output = <usize as Shr<i64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i64) -> <usize as Shr<i64>>::Output

Performs the >> operation. Read more
","Shr<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&i8> for usize

source§

type Output = <usize as Shr<i8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &i8) -> <usize as Shr<i8>>::Output

Performs the >> operation. Read more
","Shr<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&isize> for usize

source§

type Output = <usize as Shr<isize>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &isize) -> <usize as Shr<isize>>::Output

Performs the >> operation. Read more
","Shr<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u128> for usize

source§

type Output = <usize as Shr<u128>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u128) -> <usize as Shr<u128>>::Output

Performs the >> operation. Read more
","Shr<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u16> for usize

source§

type Output = <usize as Shr<u16>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u16) -> <usize as Shr<u16>>::Output

Performs the >> operation. Read more
","Shr<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u32> for usize

source§

type Output = <usize as Shr<u32>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u32) -> <usize as Shr<u32>>::Output

Performs the >> operation. Read more
","Shr<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u64> for usize

source§

type Output = <usize as Shr<u64>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u64) -> <usize as Shr<u64>>::Output

Performs the >> operation. Read more
","Shr<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&u8> for usize

source§

type Output = <usize as Shr<u8>>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &u8) -> <usize as Shr<u8>>::Output

Performs the >> operation. Read more
","Shr<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<&usize> for usize

source§

type Output = <usize as Shr>::Output

The resulting type after applying the >> operator.
source§

fn shr(self, other: &usize) -> <usize as Shr>::Output

Performs the >> operation. Read more
","Shr<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i128> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i128) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i16> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i16) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i32> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i32) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i64> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i64) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<i8> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: i8) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<isize> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: isize) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u128> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u128) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u16> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u16) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u32> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u32) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u64> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u64) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr<u8> for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: u8) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Shr for usize

source§

fn shr_regular(self, rhs: Self) -> Self

","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Shr for usize

source§

type Output = usize

The resulting type after applying the >> operator.
source§

fn shr(self, other: usize) -> usize

Performs the >> operation. Read more
","Shr","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i128> for usize

source§

fn shr_assign(&mut self, other: &i128)

Performs the >>= operation. Read more
","ShrAssign<&i128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i16> for usize

source§

fn shr_assign(&mut self, other: &i16)

Performs the >>= operation. Read more
","ShrAssign<&i16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i32> for usize

source§

fn shr_assign(&mut self, other: &i32)

Performs the >>= operation. Read more
","ShrAssign<&i32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i64> for usize

source§

fn shr_assign(&mut self, other: &i64)

Performs the >>= operation. Read more
","ShrAssign<&i64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&i8> for usize

source§

fn shr_assign(&mut self, other: &i8)

Performs the >>= operation. Read more
","ShrAssign<&i8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&isize> for usize

source§

fn shr_assign(&mut self, other: &isize)

Performs the >>= operation. Read more
","ShrAssign<&isize>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u128> for usize

source§

fn shr_assign(&mut self, other: &u128)

Performs the >>= operation. Read more
","ShrAssign<&u128>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u16> for usize

source§

fn shr_assign(&mut self, other: &u16)

Performs the >>= operation. Read more
","ShrAssign<&u16>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u32> for usize

source§

fn shr_assign(&mut self, other: &u32)

Performs the >>= operation. Read more
","ShrAssign<&u32>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u64> for usize

source§

fn shr_assign(&mut self, other: &u64)

Performs the >>= operation. Read more
","ShrAssign<&u64>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&u8> for usize

source§

fn shr_assign(&mut self, other: &u8)

Performs the >>= operation. Read more
","ShrAssign<&u8>","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl ShrAssign<&usize> for usize

source§

fn shr_assign(&mut self, other: &usize)

Performs the >>= operation. Read more
","ShrAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i128> for usize

source§

fn shr_assign(&mut self, other: i128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i16> for usize

source§

fn shr_assign(&mut self, other: i16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i32> for usize

source§

fn shr_assign(&mut self, other: i32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i64> for usize

source§

fn shr_assign(&mut self, other: i64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<i8> for usize

source§

fn shr_assign(&mut self, other: i8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<isize> for usize

source§

fn shr_assign(&mut self, other: isize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u128> for usize

source§

fn shr_assign(&mut self, other: u128)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u16> for usize

source§

fn shr_assign(&mut self, other: u16)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u32> for usize

source§

fn shr_assign(&mut self, other: u32)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u64> for usize

source§

fn shr_assign(&mut self, other: u64)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign<u8> for usize

source§

fn shr_assign(&mut self, other: u8)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl ShrAssign for usize

source§

fn shr_assign(&mut self, other: usize)

Performs the >>= operation. Read more
","ShrAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl ShrChecked for usize

","ShrChecked","wiwi::rust_core::ffi::c_size_t"],["
source§

impl SimdElement for usize

source§

type Mask = isize

🔬This is a nightly-only experimental API. (portable_simd)
The mask element type corresponding to this element type.
","SimdElement","wiwi::rust_core::ffi::c_size_t"],["
1.15.0 (const: unstable) · source§

impl<T> SliceIndex<[T]> for usize

The methods index and index_mut panic if the index is out of bounds.

\n
source§

type Output = T

The output type returned by methods.
source§

fn get(self, slice: &[T]) -> Option<&T>

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a shared reference to the output at this location, if in\nbounds.
source§

fn get_mut(self, slice: &mut [T]) -> Option<&mut T>

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable reference to the output at this location, if in\nbounds.
source§

unsafe fn get_unchecked(self, slice: *const [T]) -> *const T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a pointer to the output at this location, without\nperforming any bounds checking. Read more
source§

unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable pointer to the output at this location, without\nperforming any bounds checking. Read more
source§

fn index(self, slice: &[T]) -> &T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a shared reference to the output at this location, panicking\nif out of bounds.
source§

fn index_mut(self, slice: &mut [T]) -> &mut T

🔬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable reference to the output at this location, panicking\nif out of bounds.
","SliceIndex<[T]>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Step for usize

source§

fn forward(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

unsafe fn forward_unchecked(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

unsafe fn backward_unchecked(start: usize, n: usize) -> usize

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
source§

fn steps_between(start: &usize, end: &usize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the number of successor steps required to get from start to end. Read more
source§

fn forward_checked(start: usize, n: usize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the successor\nof self count times. Read more
source§

fn backward_checked(start: usize, n: usize) -> Option<usize>

🔬This is a nightly-only experimental API. (step_trait)
Returns the value that would be obtained by taking the predecessor\nof self count times. Read more
","Step","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Sub<&usize> for usize

source§

type Output = <usize as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, other: &usize) -> <usize as Sub>::Output

Performs the - operation. Read more
","Sub<&usize>","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Sub for usize

source§

fn sub_regular(self, rhs: Self) -> Self

Performs plain subtraction Read more
","Sub","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Sub for usize

source§

type Output = usize

The resulting type after applying the - operator.
source§

fn sub(self, other: usize) -> usize

Performs the - operation. Read more
","Sub","wiwi::rust_core::ffi::c_size_t"],["
1.22.0 · source§

impl SubAssign<&usize> for usize

source§

fn sub_assign(&mut self, other: &usize)

Performs the -= operation. Read more
","SubAssign<&usize>","wiwi::rust_core::ffi::c_size_t"],["
1.8.0 · source§

impl SubAssign for usize

source§

fn sub_assign(&mut self, other: usize)

Performs the -= operation. Read more
","SubAssign","wiwi::rust_core::ffi::c_size_t"],["
source§

impl SubBorrowing for usize

source§

fn sub_borrowing(self, rhs: Self, borrow: bool) -> (Self, bool)

Performs borrowing subtraction Read more
","SubBorrowing","wiwi::rust_core::ffi::c_size_t"],["
source§

impl SubChecked for usize

","SubChecked","wiwi::rust_core::ffi::c_size_t"],["
source§

impl SubOverflowing for usize

source§

fn sub_overflowing(self, rhs: usize) -> (usize, bool)

Performs overflowing subtraction Read more
","SubOverflowing","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl<'a> Sum<&'a usize> for usize

source§

fn sum<I>(iter: I) -> usize
where\n I: Iterator<Item = &'a usize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum<&'a usize>","wiwi::rust_core::ffi::c_size_t"],["
1.12.0 · source§

impl Sum for usize

source§

fn sum<I>(iter: I) -> usize
where\n I: Iterator<Item = usize>,

Takes an iterator and generates Self from the elements by “summing up”\nthe items.
","Sum","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i128> for usize

source§

fn try_from(u: i128) -> Result<usize, <usize as TryFrom<i128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i16> for usize

source§

fn try_from(u: i16) -> Result<usize, <usize as TryFrom<i16>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i32> for usize

source§

fn try_from(u: i32) -> Result<usize, <usize as TryFrom<i32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i64> for usize

source§

fn try_from(u: i64) -> Result<usize, <usize as TryFrom<i64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<i8> for usize

source§

fn try_from(u: i8) -> Result<usize, <usize as TryFrom<i8>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<isize> for usize

source§

fn try_from(u: isize) -> Result<usize, <usize as TryFrom<isize>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<u128> for usize

source§

fn try_from(u: u128) -> Result<usize, <usize as TryFrom<u128>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<u32> for usize

source§

fn try_from(value: u32) -> Result<usize, <usize as TryFrom<u32>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.34.0 · source§

impl TryFrom<u64> for usize

source§

fn try_from(value: u64) -> Result<usize, <usize as TryFrom<u64>>::Error>

Tries to create the target number type from a source\nnumber type. This returns an error if the source value\nis outside of the range of the target type.

\n
source§

type Error = TryFromIntError

The type returned in the event of a conversion error.
","TryFrom","wiwi::rust_core::ffi::c_size_t"],["
1.42.0 · source§

impl UpperExp for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperExp","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl UpperHex for usize

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","UpperHex","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Widening<u128> for usize

source§

fn widen(self) -> u128

Extend self out into the widened type (without changing its value)
source§

fn split(wide: u128) -> (usize, usize)

Splits the wide integer into its lower and upper Self parts Read more
source§

fn join(self, n_high: usize) -> u128

Joins self with an upper value, to give a widened value
","Widening","wiwi::rust_core::ffi::c_size_t"],["
source§

impl Xor for usize

source§

fn xor_regular(self, rhs: Self) -> Self

","Xor","wiwi::rust_core::ffi::c_size_t"],["
source§

impl ConstParamTy_ for usize

","ConstParamTy_","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Copy for usize

","Copy","wiwi::rust_core::ffi::c_size_t"],["
1.0.0 · source§

impl Eq for usize

","Eq","wiwi::rust_core::ffi::c_size_t"],["
source§

impl SimdCast for usize

","SimdCast","wiwi::rust_core::ffi::c_size_t"],["
source§

impl StructuralPartialEq for usize

","StructuralPartialEq","wiwi::rust_core::ffi::c_size_t"],["
source§

impl TrustedStep for usize

","TrustedStep","wiwi::rust_core::ffi::c_size_t"],["
source§

impl UnsizedConstParamTy for usize

","UnsizedConstParamTy","wiwi::rust_core::ffi::c_size_t"],["
source§

impl ZeroablePrimitive for usize

","ZeroablePrimitive","wiwi::rust_core::ffi::c_size_t"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() -//{"start":55,"fragment_lengths":[384374]} \ No newline at end of file +//{"start":55,"fragment_lengths":[492817]} \ No newline at end of file diff --git a/wiwi/_changelog/index.html b/wiwi/_changelog/index.html index ae24391da..be4cc2a7c 100644 --- a/wiwi/_changelog/index.html +++ b/wiwi/_changelog/index.html @@ -1,4 +1,4 @@ -wiwi::_changelog - Rust

Module wiwi::_changelog

source ·
Expand description

§changelog

+wiwi::_changelog - Rust

Module wiwi::_changelog

source ·
Expand description

§changelog

Hallo!

§table of contents

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where - U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: TryFrom<T>,
source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/rust_alloc/fmt/trait.Debug.html b/wiwi/rust_alloc/fmt/trait.Debug.html index 60b6318b9..c9161fced 100644 --- a/wiwi/rust_alloc/fmt/trait.Debug.html +++ b/wiwi/rust_alloc/fmt/trait.Debug.html @@ -114,7 +114,7 @@
§Examples
1.987, 2.983, )");
-

Implementors§

source§

impl Debug for AsciiChar

1.65.0 · source§

impl Debug for BacktraceStatus

1.0.0 · source§

impl Debug for wiwi::rust_std::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

1.34.0 · source§

impl Debug for Infallible

1.0.0 · source§

impl Debug for VarError

1.16.0 · source§

impl Debug for c_void

1.28.0 · source§

impl Debug for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl Debug for ErrorKind

1.0.0 · source§

impl Debug for SeekFrom

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

1.0.0 · source§

impl Debug for Shutdown

1.0.0 · source§

impl Debug for wiwi::rust_std::net::SocketAddr

1.0.0 · source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

source§

impl Debug for SearchStep

1.0.0 · source§

impl Debug for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl Debug for RecvTimeoutError

1.0.0 · source§

impl Debug for TryRecvError

source§

impl Debug for _Unwind_Reason_Code

1.0.0 · source§

impl Debug for bool

1.0.0 · source§

impl Debug for char

1.0.0 · source§

impl Debug for f16

1.0.0 · source§

impl Debug for f32

1.0.0 · source§

impl Debug for f64

1.0.0 · source§

impl Debug for f128

1.0.0 · source§

impl Debug for i8

1.0.0 · source§

impl Debug for i16

1.0.0 · source§

impl Debug for i32

1.0.0 · source§

impl Debug for i64

1.0.0 · source§

impl Debug for i128

1.0.0 · source§

impl Debug for isize

source§

impl Debug for !

1.0.0 · source§

impl Debug for str

1.0.0 · source§

impl Debug for u8

1.0.0 · source§

impl Debug for u16

1.0.0 · source§

impl Debug for u32

1.0.0 · source§

impl Debug for u64

1.0.0 · source§

impl Debug for u128

1.0.0 · source§

impl Debug for ()

1.0.0 · source§

impl Debug for usize

1.81.0 · source§

impl Debug for PanicMessage<'_>

source§

impl Debug for AllocError

source§

impl Debug for Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

1.28.0 · source§

impl Debug for System

1.0.0 · source§

impl Debug for TypeId

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

source§

impl Debug for __m128h

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

source§

impl Debug for __m256h

1.27.0 · source§

impl Debug for __m256i

1.72.0 · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.72.0 · source§

impl Debug for __m512d

source§

impl Debug for __m512h

1.72.0 · source§

impl Debug for __m512i

source§

impl Debug for bf16

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDebug

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDefault

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

1.0.0 · source§

impl Debug for ToLowercase

1.0.0 · source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

source§

impl Debug for UnorderedKeyError

1.57.0 · source§

impl Debug for TryReserveError

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

1.0.0 · source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for wiwi::rust_std::ffi::os_str::Display<'_>

1.3.0 · source§

impl Debug for CStr

1.0.0 · source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

1.0.0 · source§

impl Debug for OsStr

1.0.0 · source§

impl Debug for OsString

1.0.0 · source§

impl Debug for Arguments<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::fmt::Error

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

1.0.0 · source§

impl Debug for File

1.75.0 · source§

impl Debug for FileTimes

1.16.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

1.0.0 · source§

impl Debug for OpenOptions

1.0.0 · source§

impl Debug for Permissions

1.0.0 · source§

impl Debug for ReadDir

1.7.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for RandomState

1.0.0 · source§

impl Debug for SipHasher

source§

impl Debug for BorrowedBuf<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Empty

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Error

1.16.0 · source§

impl Debug for wiwi::rust_std::io::Repeat

1.0.0 · source§

impl Debug for Sink

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

1.56.0 · source§

impl Debug for WriterPanicked

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.0.0 · source§

impl Debug for AddrParseError

source§

impl Debug for IntoIncoming

1.0.0 · source§

impl Debug for Ipv4Addr

1.0.0 · source§

impl Debug for Ipv6Addr

1.0.0 · source§

impl Debug for SocketAddrV4

1.0.0 · source§

impl Debug for SocketAddrV6

1.0.0 · source§

impl Debug for TcpListener

1.0.0 · source§

impl Debug for TcpStream

1.0.0 · source§

impl Debug for UdpSocket

1.0.0 · source§

impl Debug for ParseFloatError

1.0.0 · source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

1.0.0 · source§

impl Debug for RangeFull

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

impl Debug for wiwi::rust_std::os::unix::net::SocketAddr

source§

impl Debug for UCred

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

1.13.0 · source§

impl Debug for Components<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::path::Display<'_>

1.13.0 · source§

impl Debug for wiwi::rust_std::path::Iter<'_>

1.0.0 · source§

impl Debug for Path

1.0.0 · source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

source§

impl Debug for PipeReader

source§

impl Debug for PipeWriter

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

1.0.0 · source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

1.0.0 · source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

source§

impl Debug for wiwi::rust_std::ptr::Alignment

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

1.0.0 · source§

impl Debug for ParseBoolError

1.79.0 · source§

impl Debug for Utf8Chunks<'_>

1.0.0 · source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for wiwi::rust_std::string::Drain<'_>

1.0.0 · source§

impl Debug for FromUtf8Error

1.0.0 · source§

impl Debug for FromUtf16Error

1.0.0 · source§

impl Debug for String

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.0.0 · source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.16.0 · source§

impl Debug for wiwi::rust_std::sync::Once

1.16.0 · source§

impl Debug for OnceState

1.5.0 · source§

impl Debug for WaitTimeoutResult

1.36.0 · source§

impl Debug for Context<'_>

source§

impl Debug for LocalWaker

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.26.0 · source§

impl Debug for AccessError

1.0.0 · source§

impl Debug for Builder

1.63.0 · source§

impl Debug for Scope<'_, '_>

1.0.0 · source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.27.0 · source§

impl Debug for Duration

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

1.66.0 · source§

impl Debug for TryFromFloatSecsError

1.0.0 · source§

impl Debug for dyn Any

1.0.0 · source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Send + Sync

1.0.0 · source§

impl<'a> Debug for Component<'a>

1.0.0 · source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for wiwi::rust_core::ffi::c_str::Bytes<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::net::Incoming<'a>

1.10.0 · source§

impl<'a> Debug for wiwi::rust_std::os::unix::net::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.81.0 · source§

impl<'a> Debug for PanicHookInfo<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

1.0.0 · source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Bytes<'a>

1.0.0 · source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeUnicode<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Lines<'a>

1.0.0 · source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 · source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for ContextBuilder<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>
where +

Implementors§

source§

impl Debug for wiwi::encoding::hex::DecodeError

source§

impl Debug for wiwi::encoding::z85::DecodeError

source§

impl Debug for AsciiChar

1.65.0 · source§

impl Debug for BacktraceStatus

1.0.0 · source§

impl Debug for wiwi::rust_std::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

1.34.0 · source§

impl Debug for Infallible

1.0.0 · source§

impl Debug for VarError

1.16.0 · source§

impl Debug for c_void

1.28.0 · source§

impl Debug for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl Debug for ErrorKind

1.0.0 · source§

impl Debug for SeekFrom

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

1.0.0 · source§

impl Debug for Shutdown

1.0.0 · source§

impl Debug for wiwi::rust_std::net::SocketAddr

1.0.0 · source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

source§

impl Debug for SearchStep

1.0.0 · source§

impl Debug for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl Debug for RecvTimeoutError

1.0.0 · source§

impl Debug for TryRecvError

source§

impl Debug for _Unwind_Reason_Code

1.0.0 · source§

impl Debug for bool

1.0.0 · source§

impl Debug for char

1.0.0 · source§

impl Debug for f16

1.0.0 · source§

impl Debug for f32

1.0.0 · source§

impl Debug for f64

1.0.0 · source§

impl Debug for f128

1.0.0 · source§

impl Debug for i8

1.0.0 · source§

impl Debug for i16

1.0.0 · source§

impl Debug for i32

1.0.0 · source§

impl Debug for i64

1.0.0 · source§

impl Debug for i128

1.0.0 · source§

impl Debug for isize

source§

impl Debug for !

1.0.0 · source§

impl Debug for str

1.0.0 · source§

impl Debug for u8

1.0.0 · source§

impl Debug for u16

1.0.0 · source§

impl Debug for u32

1.0.0 · source§

impl Debug for u64

1.0.0 · source§

impl Debug for u128

1.0.0 · source§

impl Debug for ()

1.0.0 · source§

impl Debug for usize

1.81.0 · source§

impl Debug for PanicMessage<'_>

source§

impl Debug for AllocError

source§

impl Debug for Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

1.28.0 · source§

impl Debug for System

1.0.0 · source§

impl Debug for TypeId

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

source§

impl Debug for __m128h

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

source§

impl Debug for __m256h

1.27.0 · source§

impl Debug for __m256i

1.72.0 · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.72.0 · source§

impl Debug for __m512d

source§

impl Debug for __m512h

1.72.0 · source§

impl Debug for __m512i

source§

impl Debug for bf16

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDebug

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDefault

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

1.0.0 · source§

impl Debug for ToLowercase

1.0.0 · source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

source§

impl Debug for UnorderedKeyError

1.57.0 · source§

impl Debug for TryReserveError

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

1.0.0 · source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for wiwi::rust_std::ffi::os_str::Display<'_>

1.3.0 · source§

impl Debug for CStr

1.0.0 · source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

1.0.0 · source§

impl Debug for OsStr

1.0.0 · source§

impl Debug for OsString

1.0.0 · source§

impl Debug for Arguments<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::fmt::Error

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

1.0.0 · source§

impl Debug for File

1.75.0 · source§

impl Debug for FileTimes

1.16.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

1.0.0 · source§

impl Debug for OpenOptions

1.0.0 · source§

impl Debug for Permissions

1.0.0 · source§

impl Debug for ReadDir

1.7.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for RandomState

1.0.0 · source§

impl Debug for SipHasher

source§

impl Debug for BorrowedBuf<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Empty

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Error

1.16.0 · source§

impl Debug for wiwi::rust_std::io::Repeat

1.0.0 · source§

impl Debug for Sink

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

1.56.0 · source§

impl Debug for WriterPanicked

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.0.0 · source§

impl Debug for AddrParseError

source§

impl Debug for IntoIncoming

1.0.0 · source§

impl Debug for Ipv4Addr

1.0.0 · source§

impl Debug for Ipv6Addr

1.0.0 · source§

impl Debug for SocketAddrV4

1.0.0 · source§

impl Debug for SocketAddrV6

1.0.0 · source§

impl Debug for TcpListener

1.0.0 · source§

impl Debug for TcpStream

1.0.0 · source§

impl Debug for UdpSocket

1.0.0 · source§

impl Debug for ParseFloatError

1.0.0 · source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

1.0.0 · source§

impl Debug for RangeFull

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

impl Debug for wiwi::rust_std::os::unix::net::SocketAddr

source§

impl Debug for UCred

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

1.13.0 · source§

impl Debug for Components<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::path::Display<'_>

1.13.0 · source§

impl Debug for wiwi::rust_std::path::Iter<'_>

1.0.0 · source§

impl Debug for Path

1.0.0 · source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

source§

impl Debug for PipeReader

source§

impl Debug for PipeWriter

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

1.0.0 · source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

1.0.0 · source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

source§

impl Debug for wiwi::rust_std::ptr::Alignment

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

1.0.0 · source§

impl Debug for ParseBoolError

1.79.0 · source§

impl Debug for Utf8Chunks<'_>

1.0.0 · source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for wiwi::rust_std::string::Drain<'_>

1.0.0 · source§

impl Debug for FromUtf8Error

1.0.0 · source§

impl Debug for FromUtf16Error

1.0.0 · source§

impl Debug for String

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.0.0 · source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.16.0 · source§

impl Debug for wiwi::rust_std::sync::Once

1.16.0 · source§

impl Debug for OnceState

1.5.0 · source§

impl Debug for WaitTimeoutResult

1.36.0 · source§

impl Debug for Context<'_>

source§

impl Debug for LocalWaker

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.26.0 · source§

impl Debug for AccessError

1.0.0 · source§

impl Debug for Builder

1.63.0 · source§

impl Debug for Scope<'_, '_>

1.0.0 · source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.27.0 · source§

impl Debug for Duration

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

1.66.0 · source§

impl Debug for TryFromFloatSecsError

1.0.0 · source§

impl Debug for dyn Any

1.0.0 · source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Send + Sync

1.0.0 · source§

impl<'a> Debug for Component<'a>

1.0.0 · source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for wiwi::rust_core::ffi::c_str::Bytes<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::net::Incoming<'a>

1.10.0 · source§

impl<'a> Debug for wiwi::rust_std::os::unix::net::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.81.0 · source§

impl<'a> Debug for PanicHookInfo<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

1.0.0 · source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Bytes<'a>

1.0.0 · source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeUnicode<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Lines<'a>

1.0.0 · source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 · source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for ContextBuilder<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>
where 'f: 'a,

1.0.0 · source§

impl<'a, A> Debug for wiwi::rust_std::option::Iter<'a, A>
where A: Debug + 'a,

1.0.0 · source§

impl<'a, A> Debug for wiwi::rust_std::option::IterMut<'a, A>
where A: Debug + 'a,

source§

impl<'a, I> Debug for ByRefSized<'a, I>
where diff --git a/wiwi/rust_alloc/fmt/trait.Display.html b/wiwi/rust_alloc/fmt/trait.Display.html index ecb46422c..2728882bb 100644 --- a/wiwi/rust_alloc/fmt/trait.Display.html +++ b/wiwi/rust_alloc/fmt/trait.Display.html @@ -63,7 +63,7 @@
§Examples
"(1.987, 2.983)", format!("{}", Position { longitude: 1.987, latitude: 2.983, }), );
-

Implementors§

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.0.0 · source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.7.0 · source§

impl Display for IpAddr

1.0.0 · source§

impl Display for SocketAddr

1.15.0 · source§

impl Display for RecvTimeoutError

1.0.0 · source§

impl Display for TryRecvError

1.0.0 · source§

impl Display for bool

1.0.0 · source§

impl Display for char

1.0.0 · source§

impl Display for f32

1.0.0 · source§

impl Display for f64

1.0.0 · source§

impl Display for i8

1.0.0 · source§

impl Display for i16

1.0.0 · source§

impl Display for i32

1.0.0 · source§

impl Display for i64

1.0.0 · source§

impl Display for i128

1.0.0 · source§

impl Display for isize

source§

impl Display for !

1.0.0 · source§

impl Display for str

1.0.0 · source§

impl Display for u8

1.0.0 · source§

impl Display for u16

1.0.0 · source§

impl Display for u32

1.0.0 · source§

impl Display for u64

1.0.0 · source§

impl Display for u128

1.0.0 · source§

impl Display for usize

1.26.0 · source§

impl Display for PanicInfo<'_>

1.81.0 · source§

impl Display for PanicMessage<'_>

source§

impl Display for AllocError

1.28.0 · source§

impl Display for LayoutError

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Display for Backtrace

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for wiwi::rust_std::char::EscapeDebug

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeDefault

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

source§

impl Display for UnorderedKeyError

1.57.0 · source§

impl Display for TryReserveError

1.0.0 · source§

impl Display for JoinPathsError

source§

impl Display for wiwi::rust_std::ffi::os_str::Display<'_>

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

1.0.0 · source§

impl Display for NulError

1.0.0 · source§

impl Display for Arguments<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Display for wiwi::rust_std::io::Error

1.56.0 · source§

impl Display for WriterPanicked

1.4.0 · source§

impl Display for AddrParseError

1.0.0 · source§

impl Display for Ipv4Addr

1.0.0 · source§

impl Display for Ipv6Addr

Writes an Ipv6Addr, conforming to the canonical style described by +

Implementors§

source§

impl Display for wiwi::encoding::hex::DecodeError

source§

impl Display for wiwi::encoding::z85::DecodeError

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.0.0 · source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.7.0 · source§

impl Display for IpAddr

1.0.0 · source§

impl Display for SocketAddr

1.15.0 · source§

impl Display for RecvTimeoutError

1.0.0 · source§

impl Display for TryRecvError

1.0.0 · source§

impl Display for bool

1.0.0 · source§

impl Display for char

1.0.0 · source§

impl Display for f32

1.0.0 · source§

impl Display for f64

1.0.0 · source§

impl Display for i8

1.0.0 · source§

impl Display for i16

1.0.0 · source§

impl Display for i32

1.0.0 · source§

impl Display for i64

1.0.0 · source§

impl Display for i128

1.0.0 · source§

impl Display for isize

source§

impl Display for !

1.0.0 · source§

impl Display for str

1.0.0 · source§

impl Display for u8

1.0.0 · source§

impl Display for u16

1.0.0 · source§

impl Display for u32

1.0.0 · source§

impl Display for u64

1.0.0 · source§

impl Display for u128

1.0.0 · source§

impl Display for usize

1.26.0 · source§

impl Display for PanicInfo<'_>

1.81.0 · source§

impl Display for PanicMessage<'_>

source§

impl Display for AllocError

1.28.0 · source§

impl Display for LayoutError

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Display for Backtrace

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for wiwi::rust_std::char::EscapeDebug

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeDefault

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

source§

impl Display for UnorderedKeyError

1.57.0 · source§

impl Display for TryReserveError

1.0.0 · source§

impl Display for JoinPathsError

source§

impl Display for wiwi::rust_std::ffi::os_str::Display<'_>

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

1.0.0 · source§

impl Display for NulError

1.0.0 · source§

impl Display for Arguments<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Display for wiwi::rust_std::io::Error

1.56.0 · source§

impl Display for WriterPanicked

1.4.0 · source§

impl Display for AddrParseError

1.0.0 · source§

impl Display for Ipv4Addr

1.0.0 · source§

impl Display for Ipv6Addr

Writes an Ipv6Addr, conforming to the canonical style described by RFC 5952.

1.0.0 · source§

impl Display for SocketAddrV4

1.0.0 · source§

impl Display for SocketAddrV6

1.0.0 · source§

impl Display for ParseFloatError

1.0.0 · source§

impl Display for ParseIntError

1.34.0 · source§

impl Display for TryFromIntError

1.26.0 · source§

impl Display for Location<'_>

1.26.0 · source§

impl Display for PanicHookInfo<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::path::Display<'_>

1.7.0 · source§

impl Display for StripPrefixError

1.0.0 · source§

impl Display for ExitStatus

source§

impl Display for ExitStatusError

1.0.0 · source§

impl Display for ParseBoolError

1.0.0 · source§

impl Display for Utf8Error

1.0.0 · source§

impl Display for FromUtf8Error

1.0.0 · source§

impl Display for FromUtf16Error

1.0.0 · source§

impl Display for String

1.0.0 · source§

impl Display for RecvError

1.26.0 · source§

impl Display for AccessError

1.8.0 · source§

impl Display for SystemTimeError

1.66.0 · source§

impl Display for TryFromFloatSecsError

1.60.0 · source§

impl<'a> Display for EscapeAscii<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeUnicode<'a>

source§

impl<'a, K, V> Display for wiwi::rust_std::collections::hash_map::OccupiedError<'a, K, V>
where K: Debug, diff --git a/wiwi/rust_core/cmp/trait.PartialEq.html b/wiwi/rust_core/cmp/trait.PartialEq.html index 706508546..b42d98d7a 100644 --- a/wiwi/rust_core/cmp/trait.PartialEq.html +++ b/wiwi/rust_core/cmp/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_core/error/trait.Error.html b/wiwi/rust_core/error/trait.Error.html index 38f9eb990..b199386b5 100644 --- a/wiwi/rust_core/error/trait.Error.html +++ b/wiwi/rust_core/error/trait.Error.html @@ -299,7 +299,7 @@
§Examples
let a_boxed_error = Box::<dyn Error + Send + Sync>::from(a_string_error); assert!( mem::size_of::<Box<dyn Error + Send + Sync>>() == mem::size_of_val(&a_boxed_error))
-

Implementors§

1.65.0 · source§

impl !Error for &str

1.8.0 · source§

impl Error for Infallible

1.0.0 · source§

impl Error for VarError

1.15.0 · source§

impl Error for RecvTimeoutError

1.0.0 · source§

impl Error for TryRecvError

source§

impl Error for !

source§

impl Error for AllocError

1.28.0 · source§

impl Error for LayoutError

1.34.0 · source§

impl Error for TryFromSliceError

1.13.0 · source§

impl Error for BorrowError

1.13.0 · source§

impl Error for BorrowMutError

1.34.0 · source§

impl Error for CharTryFromError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.20.0 · source§

impl Error for ParseCharError

1.59.0 · source§

impl Error for TryFromCharError

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

1.0.0 · source§

impl Error for JoinPathsError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.58.0 · source§

impl Error for FromVecWithNulError

1.7.0 · source§

impl Error for IntoStringError

1.0.0 · source§

impl Error for NulError

1.11.0 · source§

impl Error for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Error for wiwi::rust_std::io::Error

1.56.0 · source§

impl Error for WriterPanicked

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

1.66.0 · source§

impl Error for TryFromFloatSecsError

source§

impl<'a, K, V> Error for wiwi::rust_std::collections::btree_map::OccupiedError<'a, K, V>
where +

Implementors§

1.65.0 · source§

impl !Error for &str

source§

impl Error for wiwi::encoding::hex::DecodeError

source§

impl Error for wiwi::encoding::z85::DecodeError

1.8.0 · source§

impl Error for Infallible

1.0.0 · source§

impl Error for VarError

1.15.0 · source§

impl Error for RecvTimeoutError

1.0.0 · source§

impl Error for TryRecvError

source§

impl Error for !

source§

impl Error for AllocError

1.28.0 · source§

impl Error for LayoutError

1.34.0 · source§

impl Error for TryFromSliceError

1.13.0 · source§

impl Error for BorrowError

1.13.0 · source§

impl Error for BorrowMutError

1.34.0 · source§

impl Error for CharTryFromError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.20.0 · source§

impl Error for ParseCharError

1.59.0 · source§

impl Error for TryFromCharError

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

1.0.0 · source§

impl Error for JoinPathsError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.58.0 · source§

impl Error for FromVecWithNulError

1.7.0 · source§

impl Error for IntoStringError

1.0.0 · source§

impl Error for NulError

1.11.0 · source§

impl Error for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Error for wiwi::rust_std::io::Error

1.56.0 · source§

impl Error for WriterPanicked

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

1.66.0 · source§

impl Error for TryFromFloatSecsError

source§

impl<'a, K, V> Error for wiwi::rust_std::collections::btree_map::OccupiedError<'a, K, V>
where K: Debug + Ord, V: Debug,

source§

impl<'a, K, V> Error for wiwi::rust_std::collections::hash_map::OccupiedError<'a, K, V>
where K: Debug, diff --git a/wiwi/rust_core/fmt/trait.Debug.html b/wiwi/rust_core/fmt/trait.Debug.html index 2c856cc8b..066a157b2 100644 --- a/wiwi/rust_core/fmt/trait.Debug.html +++ b/wiwi/rust_core/fmt/trait.Debug.html @@ -114,7 +114,7 @@
§Examples
1.987, 2.983, )");
-

Implementors§

source§

impl Debug for AsciiChar

1.65.0 · source§

impl Debug for BacktraceStatus

1.0.0 · source§

impl Debug for wiwi::rust_std::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

1.34.0 · source§

impl Debug for Infallible

1.0.0 · source§

impl Debug for VarError

1.16.0 · source§

impl Debug for c_void

1.28.0 · source§

impl Debug for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl Debug for ErrorKind

1.0.0 · source§

impl Debug for SeekFrom

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

1.0.0 · source§

impl Debug for Shutdown

1.0.0 · source§

impl Debug for wiwi::rust_std::net::SocketAddr

1.0.0 · source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

source§

impl Debug for SearchStep

1.0.0 · source§

impl Debug for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl Debug for RecvTimeoutError

1.0.0 · source§

impl Debug for TryRecvError

source§

impl Debug for _Unwind_Reason_Code

1.0.0 · source§

impl Debug for bool

1.0.0 · source§

impl Debug for char

1.0.0 · source§

impl Debug for f16

1.0.0 · source§

impl Debug for f32

1.0.0 · source§

impl Debug for f64

1.0.0 · source§

impl Debug for f128

1.0.0 · source§

impl Debug for i8

1.0.0 · source§

impl Debug for i16

1.0.0 · source§

impl Debug for i32

1.0.0 · source§

impl Debug for i64

1.0.0 · source§

impl Debug for i128

1.0.0 · source§

impl Debug for isize

source§

impl Debug for !

1.0.0 · source§

impl Debug for str

1.0.0 · source§

impl Debug for u8

1.0.0 · source§

impl Debug for u16

1.0.0 · source§

impl Debug for u32

1.0.0 · source§

impl Debug for u64

1.0.0 · source§

impl Debug for u128

1.0.0 · source§

impl Debug for ()

1.0.0 · source§

impl Debug for usize

source§

impl Debug for AllocError

source§

impl Debug for Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

1.28.0 · source§

impl Debug for System

1.0.0 · source§

impl Debug for TypeId

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

source§

impl Debug for __m128h

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

source§

impl Debug for __m256h

1.27.0 · source§

impl Debug for __m256i

1.72.0 · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.72.0 · source§

impl Debug for __m512d

source§

impl Debug for __m512h

1.72.0 · source§

impl Debug for __m512i

source§

impl Debug for bf16

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDebug

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDefault

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

1.0.0 · source§

impl Debug for ToLowercase

1.0.0 · source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

source§

impl Debug for UnorderedKeyError

1.57.0 · source§

impl Debug for TryReserveError

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

1.0.0 · source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for wiwi::rust_std::ffi::os_str::Display<'_>

1.3.0 · source§

impl Debug for CStr

1.0.0 · source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

1.0.0 · source§

impl Debug for OsStr

1.0.0 · source§

impl Debug for OsString

1.0.0 · source§

impl Debug for Arguments<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::fmt::Error

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

1.0.0 · source§

impl Debug for File

1.75.0 · source§

impl Debug for FileTimes

1.16.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

1.0.0 · source§

impl Debug for OpenOptions

1.0.0 · source§

impl Debug for Permissions

1.0.0 · source§

impl Debug for ReadDir

1.7.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for RandomState

1.0.0 · source§

impl Debug for SipHasher

source§

impl Debug for BorrowedBuf<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Empty

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Error

1.16.0 · source§

impl Debug for wiwi::rust_std::io::Repeat

1.0.0 · source§

impl Debug for Sink

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

1.56.0 · source§

impl Debug for WriterPanicked

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.0.0 · source§

impl Debug for AddrParseError

source§

impl Debug for IntoIncoming

1.0.0 · source§

impl Debug for Ipv4Addr

1.0.0 · source§

impl Debug for Ipv6Addr

1.0.0 · source§

impl Debug for SocketAddrV4

1.0.0 · source§

impl Debug for SocketAddrV6

1.0.0 · source§

impl Debug for TcpListener

1.0.0 · source§

impl Debug for TcpStream

1.0.0 · source§

impl Debug for UdpSocket

1.0.0 · source§

impl Debug for ParseFloatError

1.0.0 · source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

1.0.0 · source§

impl Debug for RangeFull

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

impl Debug for wiwi::rust_std::os::unix::net::SocketAddr

source§

impl Debug for UCred

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

1.13.0 · source§

impl Debug for Components<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::path::Display<'_>

1.13.0 · source§

impl Debug for wiwi::rust_std::path::Iter<'_>

1.0.0 · source§

impl Debug for Path

1.0.0 · source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

source§

impl Debug for PipeReader

source§

impl Debug for PipeWriter

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

1.0.0 · source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

1.0.0 · source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

source§

impl Debug for wiwi::rust_std::ptr::Alignment

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

1.0.0 · source§

impl Debug for ParseBoolError

1.79.0 · source§

impl Debug for Utf8Chunks<'_>

1.0.0 · source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for wiwi::rust_std::string::Drain<'_>

1.0.0 · source§

impl Debug for FromUtf8Error

1.0.0 · source§

impl Debug for FromUtf16Error

1.0.0 · source§

impl Debug for String

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.0.0 · source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.16.0 · source§

impl Debug for wiwi::rust_std::sync::Once

1.16.0 · source§

impl Debug for OnceState

1.5.0 · source§

impl Debug for WaitTimeoutResult

1.36.0 · source§

impl Debug for Context<'_>

source§

impl Debug for LocalWaker

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.26.0 · source§

impl Debug for AccessError

1.0.0 · source§

impl Debug for Builder

1.63.0 · source§

impl Debug for Scope<'_, '_>

1.0.0 · source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.27.0 · source§

impl Debug for Duration

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

1.66.0 · source§

impl Debug for TryFromFloatSecsError

1.81.0 · source§

impl Debug for PanicMessage<'_>

1.0.0 · source§

impl Debug for dyn Any

1.0.0 · source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Send + Sync

1.0.0 · source§

impl<'a> Debug for Component<'a>

1.0.0 · source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::net::Incoming<'a>

1.10.0 · source§

impl<'a> Debug for wiwi::rust_std::os::unix::net::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.81.0 · source§

impl<'a> Debug for PanicHookInfo<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

1.0.0 · source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Bytes<'a>

1.0.0 · source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeUnicode<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Lines<'a>

1.0.0 · source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 · source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for ContextBuilder<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for wiwi::rust_core::ffi::c_str::Bytes<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>
where +

Implementors§

source§

impl Debug for wiwi::encoding::hex::DecodeError

source§

impl Debug for wiwi::encoding::z85::DecodeError

source§

impl Debug for AsciiChar

1.65.0 · source§

impl Debug for BacktraceStatus

1.0.0 · source§

impl Debug for wiwi::rust_std::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

1.34.0 · source§

impl Debug for Infallible

1.0.0 · source§

impl Debug for VarError

1.16.0 · source§

impl Debug for c_void

1.28.0 · source§

impl Debug for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl Debug for ErrorKind

1.0.0 · source§

impl Debug for SeekFrom

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

1.0.0 · source§

impl Debug for Shutdown

1.0.0 · source§

impl Debug for wiwi::rust_std::net::SocketAddr

1.0.0 · source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

source§

impl Debug for SearchStep

1.0.0 · source§

impl Debug for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl Debug for RecvTimeoutError

1.0.0 · source§

impl Debug for TryRecvError

source§

impl Debug for _Unwind_Reason_Code

1.0.0 · source§

impl Debug for bool

1.0.0 · source§

impl Debug for char

1.0.0 · source§

impl Debug for f16

1.0.0 · source§

impl Debug for f32

1.0.0 · source§

impl Debug for f64

1.0.0 · source§

impl Debug for f128

1.0.0 · source§

impl Debug for i8

1.0.0 · source§

impl Debug for i16

1.0.0 · source§

impl Debug for i32

1.0.0 · source§

impl Debug for i64

1.0.0 · source§

impl Debug for i128

1.0.0 · source§

impl Debug for isize

source§

impl Debug for !

1.0.0 · source§

impl Debug for str

1.0.0 · source§

impl Debug for u8

1.0.0 · source§

impl Debug for u16

1.0.0 · source§

impl Debug for u32

1.0.0 · source§

impl Debug for u64

1.0.0 · source§

impl Debug for u128

1.0.0 · source§

impl Debug for ()

1.0.0 · source§

impl Debug for usize

source§

impl Debug for AllocError

source§

impl Debug for Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

1.28.0 · source§

impl Debug for System

1.0.0 · source§

impl Debug for TypeId

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

source§

impl Debug for __m128h

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

source§

impl Debug for __m256h

1.27.0 · source§

impl Debug for __m256i

1.72.0 · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.72.0 · source§

impl Debug for __m512d

source§

impl Debug for __m512h

1.72.0 · source§

impl Debug for __m512i

source§

impl Debug for bf16

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDebug

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDefault

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

1.0.0 · source§

impl Debug for ToLowercase

1.0.0 · source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

source§

impl Debug for UnorderedKeyError

1.57.0 · source§

impl Debug for TryReserveError

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

1.0.0 · source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for wiwi::rust_std::ffi::os_str::Display<'_>

1.3.0 · source§

impl Debug for CStr

1.0.0 · source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

1.0.0 · source§

impl Debug for OsStr

1.0.0 · source§

impl Debug for OsString

1.0.0 · source§

impl Debug for Arguments<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::fmt::Error

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

1.0.0 · source§

impl Debug for File

1.75.0 · source§

impl Debug for FileTimes

1.16.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

1.0.0 · source§

impl Debug for OpenOptions

1.0.0 · source§

impl Debug for Permissions

1.0.0 · source§

impl Debug for ReadDir

1.7.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for RandomState

1.0.0 · source§

impl Debug for SipHasher

source§

impl Debug for BorrowedBuf<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Empty

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Error

1.16.0 · source§

impl Debug for wiwi::rust_std::io::Repeat

1.0.0 · source§

impl Debug for Sink

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

1.56.0 · source§

impl Debug for WriterPanicked

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.0.0 · source§

impl Debug for AddrParseError

source§

impl Debug for IntoIncoming

1.0.0 · source§

impl Debug for Ipv4Addr

1.0.0 · source§

impl Debug for Ipv6Addr

1.0.0 · source§

impl Debug for SocketAddrV4

1.0.0 · source§

impl Debug for SocketAddrV6

1.0.0 · source§

impl Debug for TcpListener

1.0.0 · source§

impl Debug for TcpStream

1.0.0 · source§

impl Debug for UdpSocket

1.0.0 · source§

impl Debug for ParseFloatError

1.0.0 · source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

1.0.0 · source§

impl Debug for RangeFull

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

impl Debug for wiwi::rust_std::os::unix::net::SocketAddr

source§

impl Debug for UCred

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

1.13.0 · source§

impl Debug for Components<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::path::Display<'_>

1.13.0 · source§

impl Debug for wiwi::rust_std::path::Iter<'_>

1.0.0 · source§

impl Debug for Path

1.0.0 · source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

source§

impl Debug for PipeReader

source§

impl Debug for PipeWriter

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

1.0.0 · source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

1.0.0 · source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

source§

impl Debug for wiwi::rust_std::ptr::Alignment

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

1.0.0 · source§

impl Debug for ParseBoolError

1.79.0 · source§

impl Debug for Utf8Chunks<'_>

1.0.0 · source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for wiwi::rust_std::string::Drain<'_>

1.0.0 · source§

impl Debug for FromUtf8Error

1.0.0 · source§

impl Debug for FromUtf16Error

1.0.0 · source§

impl Debug for String

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.0.0 · source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.16.0 · source§

impl Debug for wiwi::rust_std::sync::Once

1.16.0 · source§

impl Debug for OnceState

1.5.0 · source§

impl Debug for WaitTimeoutResult

1.36.0 · source§

impl Debug for Context<'_>

source§

impl Debug for LocalWaker

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.26.0 · source§

impl Debug for AccessError

1.0.0 · source§

impl Debug for Builder

1.63.0 · source§

impl Debug for Scope<'_, '_>

1.0.0 · source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.27.0 · source§

impl Debug for Duration

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

1.66.0 · source§

impl Debug for TryFromFloatSecsError

1.81.0 · source§

impl Debug for PanicMessage<'_>

1.0.0 · source§

impl Debug for dyn Any

1.0.0 · source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Send + Sync

1.0.0 · source§

impl<'a> Debug for Component<'a>

1.0.0 · source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::net::Incoming<'a>

1.10.0 · source§

impl<'a> Debug for wiwi::rust_std::os::unix::net::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.81.0 · source§

impl<'a> Debug for PanicHookInfo<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

1.0.0 · source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Bytes<'a>

1.0.0 · source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeUnicode<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Lines<'a>

1.0.0 · source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 · source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for ContextBuilder<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for wiwi::rust_core::ffi::c_str::Bytes<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>
where 'f: 'a,

1.0.0 · source§

impl<'a, A> Debug for wiwi::rust_std::option::Iter<'a, A>
where A: Debug + 'a,

1.0.0 · source§

impl<'a, A> Debug for wiwi::rust_std::option::IterMut<'a, A>
where A: Debug + 'a,

source§

impl<'a, I> Debug for ByRefSized<'a, I>
where diff --git a/wiwi/rust_core/fmt/trait.Display.html b/wiwi/rust_core/fmt/trait.Display.html index 5d547a953..e187de155 100644 --- a/wiwi/rust_core/fmt/trait.Display.html +++ b/wiwi/rust_core/fmt/trait.Display.html @@ -63,7 +63,7 @@
§Examples
"(1.987, 2.983)", format!("{}", Position { longitude: 1.987, latitude: 2.983, }), );
-

Implementors§

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.0.0 · source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.7.0 · source§

impl Display for IpAddr

1.0.0 · source§

impl Display for SocketAddr

1.15.0 · source§

impl Display for RecvTimeoutError

1.0.0 · source§

impl Display for TryRecvError

1.0.0 · source§

impl Display for bool

1.0.0 · source§

impl Display for char

1.0.0 · source§

impl Display for f32

1.0.0 · source§

impl Display for f64

1.0.0 · source§

impl Display for i8

1.0.0 · source§

impl Display for i16

1.0.0 · source§

impl Display for i32

1.0.0 · source§

impl Display for i64

1.0.0 · source§

impl Display for i128

1.0.0 · source§

impl Display for isize

source§

impl Display for !

1.0.0 · source§

impl Display for str

1.0.0 · source§

impl Display for u8

1.0.0 · source§

impl Display for u16

1.0.0 · source§

impl Display for u32

1.0.0 · source§

impl Display for u64

1.0.0 · source§

impl Display for u128

1.0.0 · source§

impl Display for usize

source§

impl Display for AllocError

1.28.0 · source§

impl Display for LayoutError

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Display for Backtrace

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for wiwi::rust_std::char::EscapeDebug

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeDefault

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

source§

impl Display for UnorderedKeyError

1.57.0 · source§

impl Display for TryReserveError

1.0.0 · source§

impl Display for JoinPathsError

source§

impl Display for wiwi::rust_std::ffi::os_str::Display<'_>

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

1.0.0 · source§

impl Display for NulError

1.0.0 · source§

impl Display for Arguments<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Display for wiwi::rust_std::io::Error

1.56.0 · source§

impl Display for WriterPanicked

1.4.0 · source§

impl Display for AddrParseError

1.0.0 · source§

impl Display for Ipv4Addr

1.0.0 · source§

impl Display for Ipv6Addr

Writes an Ipv6Addr, conforming to the canonical style described by +

Implementors§

source§

impl Display for wiwi::encoding::hex::DecodeError

source§

impl Display for wiwi::encoding::z85::DecodeError

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.0.0 · source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.7.0 · source§

impl Display for IpAddr

1.0.0 · source§

impl Display for SocketAddr

1.15.0 · source§

impl Display for RecvTimeoutError

1.0.0 · source§

impl Display for TryRecvError

1.0.0 · source§

impl Display for bool

1.0.0 · source§

impl Display for char

1.0.0 · source§

impl Display for f32

1.0.0 · source§

impl Display for f64

1.0.0 · source§

impl Display for i8

1.0.0 · source§

impl Display for i16

1.0.0 · source§

impl Display for i32

1.0.0 · source§

impl Display for i64

1.0.0 · source§

impl Display for i128

1.0.0 · source§

impl Display for isize

source§

impl Display for !

1.0.0 · source§

impl Display for str

1.0.0 · source§

impl Display for u8

1.0.0 · source§

impl Display for u16

1.0.0 · source§

impl Display for u32

1.0.0 · source§

impl Display for u64

1.0.0 · source§

impl Display for u128

1.0.0 · source§

impl Display for usize

source§

impl Display for AllocError

1.28.0 · source§

impl Display for LayoutError

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Display for Backtrace

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for wiwi::rust_std::char::EscapeDebug

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeDefault

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

source§

impl Display for UnorderedKeyError

1.57.0 · source§

impl Display for TryReserveError

1.0.0 · source§

impl Display for JoinPathsError

source§

impl Display for wiwi::rust_std::ffi::os_str::Display<'_>

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

1.0.0 · source§

impl Display for NulError

1.0.0 · source§

impl Display for Arguments<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Display for wiwi::rust_std::io::Error

1.56.0 · source§

impl Display for WriterPanicked

1.4.0 · source§

impl Display for AddrParseError

1.0.0 · source§

impl Display for Ipv4Addr

1.0.0 · source§

impl Display for Ipv6Addr

Writes an Ipv6Addr, conforming to the canonical style described by RFC 5952.

1.0.0 · source§

impl Display for SocketAddrV4

1.0.0 · source§

impl Display for SocketAddrV6

1.0.0 · source§

impl Display for ParseFloatError

1.0.0 · source§

impl Display for ParseIntError

1.34.0 · source§

impl Display for TryFromIntError

1.26.0 · source§

impl Display for Location<'_>

1.26.0 · source§

impl Display for PanicHookInfo<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::path::Display<'_>

1.7.0 · source§

impl Display for StripPrefixError

1.0.0 · source§

impl Display for ExitStatus

source§

impl Display for ExitStatusError

1.0.0 · source§

impl Display for ParseBoolError

1.0.0 · source§

impl Display for Utf8Error

1.0.0 · source§

impl Display for FromUtf8Error

1.0.0 · source§

impl Display for FromUtf16Error

1.0.0 · source§

impl Display for String

1.0.0 · source§

impl Display for RecvError

1.26.0 · source§

impl Display for AccessError

1.8.0 · source§

impl Display for SystemTimeError

1.66.0 · source§

impl Display for TryFromFloatSecsError

1.26.0 · source§

impl Display for PanicInfo<'_>

1.81.0 · source§

impl Display for PanicMessage<'_>

1.60.0 · source§

impl<'a> Display for EscapeAscii<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeUnicode<'a>

source§

impl<'a, K, V> Display for wiwi::rust_std::collections::hash_map::OccupiedError<'a, K, V>
where K: Debug, diff --git a/wiwi/rust_core/marker/trait.Freeze.html b/wiwi/rust_core/marker/trait.Freeze.html index ba035d32a..846d34f68 100644 --- a/wiwi/rust_core/marker/trait.Freeze.html +++ b/wiwi/rust_core/marker/trait.Freeze.html @@ -15,7 +15,7 @@

§Safety

T: ?Sized,

source§

impl<T> Freeze for &mut T
where T: ?Sized,

source§

impl<T> Freeze for PhantomData<T>
where T: ?Sized,

1.28.0 · source§

impl<T> Freeze for NonZero<T>

Auto implementors§

§

impl !Freeze for Backtrace

§

impl !Freeze for AtomicBool

§

impl !Freeze for AtomicI8

§

impl !Freeze for AtomicI16

§

impl !Freeze for AtomicI32

§

impl !Freeze for AtomicI64

§

impl !Freeze for AtomicIsize

§

impl !Freeze for AtomicU8

§

impl !Freeze for AtomicU16

§

impl !Freeze for AtomicU32

§

impl !Freeze for AtomicU64

§

impl !Freeze for AtomicUsize

§

impl !Freeze for Barrier

§

impl !Freeze for Condvar

§

impl !Freeze for wiwi::rust_std::sync::Once

§

impl !Freeze for OnceState

§

impl Freeze for AsciiChar

§

impl Freeze for BacktraceStatus

§

impl Freeze for wiwi::rust_std::cmp::Ordering

§

impl Freeze for TryReserveErrorKind

§

impl Freeze for Infallible

§

impl Freeze for VarError

§

impl Freeze for c_void

§

impl Freeze for wiwi::rust_std::fmt::Alignment

§

impl Freeze for BasicBlock

§

impl Freeze for UnwindTerminateReason

§

impl Freeze for ErrorKind

§

impl Freeze for SeekFrom

§

impl Freeze for IpAddr

§

impl Freeze for Ipv6MulticastScope

§

impl Freeze for Shutdown

§

impl Freeze for wiwi::rust_std::net::SocketAddr

§

impl Freeze for FpCategory

§

impl Freeze for IntErrorKind

§

impl Freeze for AncillaryError

§

impl Freeze for BacktraceStyle

§

impl Freeze for SearchStep

§

impl Freeze for wiwi::rust_std::sync::atomic::Ordering

§

impl Freeze for RecvTimeoutError

§

impl Freeze for TryRecvError

§

impl Freeze for AllocError

§

impl Freeze for Global

§

impl Freeze for Layout

§

impl Freeze for LayoutError

§

impl Freeze for System

§

impl Freeze for TypeId

§

impl Freeze for CpuidResult

§

impl Freeze for __m128

§

impl Freeze for __m128bh

§

impl Freeze for __m128d

§

impl Freeze for __m128h

§

impl Freeze for __m128i

§

impl Freeze for __m256

§

impl Freeze for __m256bh

§

impl Freeze for __m256d

§

impl Freeze for __m256h

§

impl Freeze for __m256i

§

impl Freeze for __m512

§

impl Freeze for __m512bh

§

impl Freeze for __m512d

§

impl Freeze for __m512h

§

impl Freeze for __m512i

§

impl Freeze for bf16

§

impl Freeze for TryFromSliceError

§

impl Freeze for wiwi::rust_std::ascii::EscapeDefault

§

impl Freeze for BacktraceFrame

§

impl Freeze for BorrowError

§

impl Freeze for BorrowMutError

§

impl Freeze for CharTryFromError

§

impl Freeze for DecodeUtf16Error

§

impl Freeze for wiwi::rust_std::char::EscapeDebug

§

impl Freeze for wiwi::rust_std::char::EscapeDefault

§

impl Freeze for wiwi::rust_std::char::EscapeUnicode

§

impl Freeze for ParseCharError

§

impl Freeze for ToLowercase

§

impl Freeze for ToUppercase

§

impl Freeze for TryFromCharError

§

impl Freeze for UnorderedKeyError

§

impl Freeze for TryReserveError

§

impl Freeze for Args

§

impl Freeze for ArgsOs

§

impl Freeze for JoinPathsError

§

impl Freeze for Vars

§

impl Freeze for VarsOs

§

impl Freeze for CStr

§

impl Freeze for CString

§

impl Freeze for FromBytesUntilNulError

§

impl Freeze for FromBytesWithNulError

§

impl Freeze for FromVecWithNulError

§

impl Freeze for IntoStringError

§

impl Freeze for NulError

§

impl Freeze for OsStr

§

impl Freeze for OsString

§

impl Freeze for wiwi::rust_std::fmt::Error

§

impl Freeze for DirBuilder

§

impl Freeze for DirEntry

§

impl Freeze for File

§

impl Freeze for FileTimes

§

impl Freeze for FileType

§

impl Freeze for Metadata

§

impl Freeze for OpenOptions

§

impl Freeze for Permissions

§

impl Freeze for ReadDir

§

impl Freeze for DefaultHasher

§

impl Freeze for RandomState

§

impl Freeze for SipHasher

§

impl Freeze for ReturnToArg

§

impl Freeze for UnwindActionArg

§

impl Freeze for wiwi::rust_std::io::Empty

§

impl Freeze for wiwi::rust_std::io::Error

§

impl Freeze for wiwi::rust_std::io::Repeat

§

impl Freeze for Sink

§

impl Freeze for Stderr

§

impl Freeze for Stdin

§

impl Freeze for Stdout

§

impl Freeze for WriterPanicked

§

impl Freeze for PhantomPinned

§

impl Freeze for Assume

§

impl Freeze for AddrParseError

§

impl Freeze for IntoIncoming

§

impl Freeze for Ipv4Addr

§

impl Freeze for Ipv6Addr

§

impl Freeze for SocketAddrV4

§

impl Freeze for SocketAddrV6

§

impl Freeze for TcpListener

§

impl Freeze for TcpStream

§

impl Freeze for UdpSocket

§

impl Freeze for ParseFloatError

§

impl Freeze for ParseIntError

§

impl Freeze for TryFromIntError

§

impl Freeze for RangeFull

§

impl Freeze for OwnedFd

§

impl Freeze for PidFd

§

impl Freeze for stat

§

impl Freeze for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Freeze for SocketCred

§

impl Freeze for UCred

§

impl Freeze for UnixDatagram

§

impl Freeze for UnixListener

§

impl Freeze for UnixStream

§

impl Freeze for Path

§

impl Freeze for PathBuf

§

impl Freeze for StripPrefixError

§

impl Freeze for PipeReader

§

impl Freeze for PipeWriter

§

impl Freeze for Child

§

impl Freeze for ChildStderr

§

impl Freeze for ChildStdin

§

impl Freeze for ChildStdout

§

impl Freeze for Command

§

impl Freeze for ExitCode

§

impl Freeze for ExitStatus

§

impl Freeze for ExitStatusError

§

impl Freeze for Output

§

impl Freeze for Stdio

§

impl Freeze for wiwi::rust_std::ptr::Alignment

§

impl Freeze for ParseBoolError

§

impl Freeze for Utf8Error

§

impl Freeze for FromUtf8Error

§

impl Freeze for FromUtf16Error

§

impl Freeze for String

§

impl Freeze for RecvError

§

impl Freeze for BarrierWaitResult

§

impl Freeze for WaitTimeoutResult

§

impl Freeze for LocalWaker

§

impl Freeze for RawWaker

§

impl Freeze for RawWakerVTable

§

impl Freeze for Waker

§

impl Freeze for AccessError

§

impl Freeze for Builder

§

impl Freeze for Thread

§

impl Freeze for ThreadId

§

impl Freeze for Duration

§

impl Freeze for Instant

§

impl Freeze for SystemTime

§

impl Freeze for SystemTimeError

§

impl Freeze for TryFromFloatSecsError

§

impl Freeze for Big8x3

§

impl Freeze for Big32x40

§

impl Freeze for Decoded

§

impl Freeze for FullDecoded

§

impl Freeze for Maybe

§

impl Freeze for NoRuntime

§

impl Freeze for Number

§

impl Freeze for Runtime

§

impl Freeze for Sign

§

impl<'a> !Freeze for Request<'a>

§

impl<'a> Freeze for AncillaryData<'a>

§

impl<'a> Freeze for Component<'a>

§

impl<'a> Freeze for Prefix<'a>

§

impl<'a> Freeze for SplitPaths<'a>

§

impl<'a> Freeze for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Freeze for Arguments<'a>

§

impl<'a> Freeze for Formatter<'a>

§

impl<'a> Freeze for BorrowedCursor<'a>

§

impl<'a> Freeze for IoSlice<'a>

§

impl<'a> Freeze for IoSliceMut<'a>

§

impl<'a> Freeze for StderrLock<'a>

§

impl<'a> Freeze for StdinLock<'a>

§

impl<'a> Freeze for StdoutLock<'a>

§

impl<'a> Freeze for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Freeze for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Freeze for Messages<'a>

§

impl<'a> Freeze for ScmCredentials<'a>

§

impl<'a> Freeze for ScmRights<'a>

§

impl<'a> Freeze for SocketAncillary<'a>

§

impl<'a> Freeze for Location<'a>

§

impl<'a> Freeze for PanicHookInfo<'a>

§

impl<'a> Freeze for Ancestors<'a>

§

impl<'a> Freeze for Components<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Display<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Freeze for PrefixComponent<'a>

§

impl<'a> Freeze for CommandArgs<'a>

§

impl<'a> Freeze for CommandEnvs<'a>

§

impl<'a> Freeze for EscapeAscii<'a>

§

impl<'a> Freeze for CharSearcher<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Freeze for CharIndices<'a>

§

impl<'a> Freeze for Chars<'a>

§

impl<'a> Freeze for EncodeUtf16<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Freeze for LinesAny<'a>

§

impl<'a> Freeze for SplitAsciiWhitespace<'a>

§

impl<'a> Freeze for SplitWhitespace<'a>

§

impl<'a> Freeze for Utf8Chunk<'a>

§

impl<'a> Freeze for Utf8Chunks<'a>

§

impl<'a> Freeze for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Freeze for Context<'a>

§

impl<'a> Freeze for ContextBuilder<'a>

§

impl<'a> Freeze for Source<'a>

§

impl<'a> Freeze for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Freeze for PanicInfo<'a>

§

impl<'a> Freeze for PanicMessage<'a>

§

impl<'a> Freeze for Formatted<'a>

§

impl<'a> Freeze for Part<'a>

§

impl<'a, 'b> Freeze for DebugList<'a, 'b>

§

impl<'a, 'b> Freeze for DebugMap<'a, 'b>

§

impl<'a, 'b> Freeze for DebugSet<'a, 'b>

§

impl<'a, 'b> Freeze for DebugStruct<'a, 'b>

§

impl<'a, 'b> Freeze for DebugTuple<'a, 'b>

§

impl<'a, 'b> Freeze for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Freeze for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Freeze for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Freeze for VaList<'a, 'f>

§

impl<'a, A> Freeze for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Freeze for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Freeze for Cow<'a, B>

Auto implementors§

§

impl !Freeze for Backtrace

§

impl !Freeze for AtomicBool

§

impl !Freeze for AtomicI8

§

impl !Freeze for AtomicI16

§

impl !Freeze for AtomicI32

§

impl !Freeze for AtomicI64

§

impl !Freeze for AtomicIsize

§

impl !Freeze for AtomicU8

§

impl !Freeze for AtomicU16

§

impl !Freeze for AtomicU32

§

impl !Freeze for AtomicU64

§

impl !Freeze for AtomicUsize

§

impl !Freeze for Barrier

§

impl !Freeze for Condvar

§

impl !Freeze for wiwi::rust_std::sync::Once

§

impl !Freeze for OnceState

§

impl Freeze for wiwi::encoding::hex::DecodeError

§

impl Freeze for wiwi::encoding::z85::DecodeError

§

impl Freeze for AsciiChar

§

impl Freeze for BacktraceStatus

§

impl Freeze for wiwi::rust_std::cmp::Ordering

§

impl Freeze for TryReserveErrorKind

§

impl Freeze for Infallible

§

impl Freeze for VarError

§

impl Freeze for c_void

§

impl Freeze for wiwi::rust_std::fmt::Alignment

§

impl Freeze for BasicBlock

§

impl Freeze for UnwindTerminateReason

§

impl Freeze for ErrorKind

§

impl Freeze for SeekFrom

§

impl Freeze for IpAddr

§

impl Freeze for Ipv6MulticastScope

§

impl Freeze for Shutdown

§

impl Freeze for wiwi::rust_std::net::SocketAddr

§

impl Freeze for FpCategory

§

impl Freeze for IntErrorKind

§

impl Freeze for AncillaryError

§

impl Freeze for BacktraceStyle

§

impl Freeze for SearchStep

§

impl Freeze for wiwi::rust_std::sync::atomic::Ordering

§

impl Freeze for RecvTimeoutError

§

impl Freeze for TryRecvError

§

impl Freeze for EncodedReprInfo

§

impl Freeze for AllocError

§

impl Freeze for Global

§

impl Freeze for Layout

§

impl Freeze for LayoutError

§

impl Freeze for System

§

impl Freeze for TypeId

§

impl Freeze for CpuidResult

§

impl Freeze for __m128

§

impl Freeze for __m128bh

§

impl Freeze for __m128d

§

impl Freeze for __m128h

§

impl Freeze for __m128i

§

impl Freeze for __m256

§

impl Freeze for __m256bh

§

impl Freeze for __m256d

§

impl Freeze for __m256h

§

impl Freeze for __m256i

§

impl Freeze for __m512

§

impl Freeze for __m512bh

§

impl Freeze for __m512d

§

impl Freeze for __m512h

§

impl Freeze for __m512i

§

impl Freeze for bf16

§

impl Freeze for TryFromSliceError

§

impl Freeze for wiwi::rust_std::ascii::EscapeDefault

§

impl Freeze for BacktraceFrame

§

impl Freeze for BorrowError

§

impl Freeze for BorrowMutError

§

impl Freeze for CharTryFromError

§

impl Freeze for DecodeUtf16Error

§

impl Freeze for wiwi::rust_std::char::EscapeDebug

§

impl Freeze for wiwi::rust_std::char::EscapeDefault

§

impl Freeze for wiwi::rust_std::char::EscapeUnicode

§

impl Freeze for ParseCharError

§

impl Freeze for ToLowercase

§

impl Freeze for ToUppercase

§

impl Freeze for TryFromCharError

§

impl Freeze for UnorderedKeyError

§

impl Freeze for TryReserveError

§

impl Freeze for Args

§

impl Freeze for ArgsOs

§

impl Freeze for JoinPathsError

§

impl Freeze for Vars

§

impl Freeze for VarsOs

§

impl Freeze for CStr

§

impl Freeze for CString

§

impl Freeze for FromBytesUntilNulError

§

impl Freeze for FromBytesWithNulError

§

impl Freeze for FromVecWithNulError

§

impl Freeze for IntoStringError

§

impl Freeze for NulError

§

impl Freeze for OsStr

§

impl Freeze for OsString

§

impl Freeze for wiwi::rust_std::fmt::Error

§

impl Freeze for DirBuilder

§

impl Freeze for DirEntry

§

impl Freeze for File

§

impl Freeze for FileTimes

§

impl Freeze for FileType

§

impl Freeze for Metadata

§

impl Freeze for OpenOptions

§

impl Freeze for Permissions

§

impl Freeze for ReadDir

§

impl Freeze for DefaultHasher

§

impl Freeze for RandomState

§

impl Freeze for SipHasher

§

impl Freeze for ReturnToArg

§

impl Freeze for UnwindActionArg

§

impl Freeze for wiwi::rust_std::io::Empty

§

impl Freeze for wiwi::rust_std::io::Error

§

impl Freeze for wiwi::rust_std::io::Repeat

§

impl Freeze for Sink

§

impl Freeze for Stderr

§

impl Freeze for Stdin

§

impl Freeze for Stdout

§

impl Freeze for WriterPanicked

§

impl Freeze for PhantomPinned

§

impl Freeze for Assume

§

impl Freeze for AddrParseError

§

impl Freeze for IntoIncoming

§

impl Freeze for Ipv4Addr

§

impl Freeze for Ipv6Addr

§

impl Freeze for SocketAddrV4

§

impl Freeze for SocketAddrV6

§

impl Freeze for TcpListener

§

impl Freeze for TcpStream

§

impl Freeze for UdpSocket

§

impl Freeze for ParseFloatError

§

impl Freeze for ParseIntError

§

impl Freeze for TryFromIntError

§

impl Freeze for RangeFull

§

impl Freeze for OwnedFd

§

impl Freeze for PidFd

§

impl Freeze for stat

§

impl Freeze for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Freeze for SocketCred

§

impl Freeze for UCred

§

impl Freeze for UnixDatagram

§

impl Freeze for UnixListener

§

impl Freeze for UnixStream

§

impl Freeze for Path

§

impl Freeze for PathBuf

§

impl Freeze for StripPrefixError

§

impl Freeze for PipeReader

§

impl Freeze for PipeWriter

§

impl Freeze for Child

§

impl Freeze for ChildStderr

§

impl Freeze for ChildStdin

§

impl Freeze for ChildStdout

§

impl Freeze for Command

§

impl Freeze for ExitCode

§

impl Freeze for ExitStatus

§

impl Freeze for ExitStatusError

§

impl Freeze for Output

§

impl Freeze for Stdio

§

impl Freeze for wiwi::rust_std::ptr::Alignment

§

impl Freeze for ParseBoolError

§

impl Freeze for Utf8Error

§

impl Freeze for FromUtf8Error

§

impl Freeze for FromUtf16Error

§

impl Freeze for String

§

impl Freeze for RecvError

§

impl Freeze for BarrierWaitResult

§

impl Freeze for WaitTimeoutResult

§

impl Freeze for LocalWaker

§

impl Freeze for RawWaker

§

impl Freeze for RawWakerVTable

§

impl Freeze for Waker

§

impl Freeze for AccessError

§

impl Freeze for Builder

§

impl Freeze for Thread

§

impl Freeze for ThreadId

§

impl Freeze for Duration

§

impl Freeze for Instant

§

impl Freeze for SystemTime

§

impl Freeze for SystemTimeError

§

impl Freeze for TryFromFloatSecsError

§

impl Freeze for UnsafeBufWriteGuard

§

impl Freeze for Big8x3

§

impl Freeze for Big32x40

§

impl Freeze for Decoded

§

impl Freeze for FullDecoded

§

impl Freeze for Maybe

§

impl Freeze for NoRuntime

§

impl Freeze for Number

§

impl Freeze for Runtime

§

impl Freeze for Sign

§

impl<'a> !Freeze for Request<'a>

§

impl<'a> Freeze for AncillaryData<'a>

§

impl<'a> Freeze for Component<'a>

§

impl<'a> Freeze for Prefix<'a>

§

impl<'a> Freeze for SplitPaths<'a>

§

impl<'a> Freeze for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Freeze for Arguments<'a>

§

impl<'a> Freeze for Formatter<'a>

§

impl<'a> Freeze for BorrowedCursor<'a>

§

impl<'a> Freeze for IoSlice<'a>

§

impl<'a> Freeze for IoSliceMut<'a>

§

impl<'a> Freeze for StderrLock<'a>

§

impl<'a> Freeze for StdinLock<'a>

§

impl<'a> Freeze for StdoutLock<'a>

§

impl<'a> Freeze for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Freeze for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Freeze for Messages<'a>

§

impl<'a> Freeze for ScmCredentials<'a>

§

impl<'a> Freeze for ScmRights<'a>

§

impl<'a> Freeze for SocketAncillary<'a>

§

impl<'a> Freeze for Location<'a>

§

impl<'a> Freeze for PanicHookInfo<'a>

§

impl<'a> Freeze for Ancestors<'a>

§

impl<'a> Freeze for Components<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Display<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Freeze for PrefixComponent<'a>

§

impl<'a> Freeze for CommandArgs<'a>

§

impl<'a> Freeze for CommandEnvs<'a>

§

impl<'a> Freeze for EscapeAscii<'a>

§

impl<'a> Freeze for CharSearcher<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Freeze for CharIndices<'a>

§

impl<'a> Freeze for Chars<'a>

§

impl<'a> Freeze for EncodeUtf16<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Freeze for LinesAny<'a>

§

impl<'a> Freeze for SplitAsciiWhitespace<'a>

§

impl<'a> Freeze for SplitWhitespace<'a>

§

impl<'a> Freeze for Utf8Chunk<'a>

§

impl<'a> Freeze for Utf8Chunks<'a>

§

impl<'a> Freeze for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Freeze for Context<'a>

§

impl<'a> Freeze for ContextBuilder<'a>

§

impl<'a> Freeze for Source<'a>

§

impl<'a> Freeze for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Freeze for PanicInfo<'a>

§

impl<'a> Freeze for PanicMessage<'a>

§

impl<'a> Freeze for Formatted<'a>

§

impl<'a> Freeze for Part<'a>

§

impl<'a, 'b> Freeze for DebugList<'a, 'b>

§

impl<'a, 'b> Freeze for DebugMap<'a, 'b>

§

impl<'a, 'b> Freeze for DebugSet<'a, 'b>

§

impl<'a, 'b> Freeze for DebugStruct<'a, 'b>

§

impl<'a, 'b> Freeze for DebugTuple<'a, 'b>

§

impl<'a, 'b> Freeze for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Freeze for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Freeze for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Freeze for VaList<'a, 'f>

§

impl<'a, A> Freeze for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Freeze for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Freeze for Cow<'a, B>
where <B as ToOwned>::Owned: Freeze, B: ?Sized,

§

impl<'a, F> Freeze for CharPredicateSearcher<'a, F>
where F: Freeze,

§

impl<'a, I> Freeze for ByRefSized<'a, I>

§

impl<'a, I, A> Freeze for Splice<'a, I, A>
where @@ -71,7 +71,7 @@

§Safety

P: Freeze,

§

impl<'a, T, P> Freeze for SplitNMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Freeze for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Freeze for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Freeze for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Freeze for CharArraySearcher<'a, N>

§

impl<'b, T> Freeze for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Freeze for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Freeze for BorrowedBuf<'data>

§

impl<'f> Freeze for VaListImpl<'f>

§

impl<'fd> Freeze for BorrowedFd<'fd>

§

impl<'scope, 'env> Freeze for Scope<'scope, 'env>

§

impl<'scope, T> Freeze for ScopedJoinHandle<'scope, T>

§

impl<A> Freeze for wiwi::rust_std::iter::Repeat<A>
where + T: ?Sized,

§

impl<'data> Freeze for BorrowedBuf<'data>

§

impl<'f> Freeze for VaListImpl<'f>

§

impl<'fd> Freeze for BorrowedFd<'fd>

§

impl<'h, const N: usize> Freeze for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Freeze for Scope<'scope, 'env>

§

impl<'scope, T> Freeze for ScopedJoinHandle<'scope, T>

§

impl<A> Freeze for wiwi::rust_std::iter::Repeat<A>
where A: Freeze,

§

impl<A> Freeze for RepeatN<A>
where A: Freeze,

§

impl<A> Freeze for wiwi::rust_std::option::IntoIter<A>
where A: Freeze,

§

impl<A> Freeze for IterRange<A>
where diff --git a/wiwi/rust_core/marker/trait.Send.html b/wiwi/rust_core/marker/trait.Send.html index 603393706..829954647 100644 --- a/wiwi/rust_core/marker/trait.Send.html +++ b/wiwi/rust_core/marker/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl !Send for UnsafeBufWriteGuard

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for wiwi::rust_std::iter::Repeat<A>
where A: Send,

§

impl<A> Send for RepeatN<A>
where A: Send,

§

impl<A> Send for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/marker/trait.StructuralPartialEq.html b/wiwi/rust_core/marker/trait.StructuralPartialEq.html index cc2a870db..295f02a97 100644 --- a/wiwi/rust_core/marker/trait.StructuralPartialEq.html +++ b/wiwi/rust_core/marker/trait.StructuralPartialEq.html @@ -11,7 +11,7 @@ a pattern match.

See also the structural match RFC, and issue 63438 which motivated migrating from an attribute-based design to this trait.

-

Implementors§

source§

impl StructuralPartialEq for AsciiChar

1.65.0 · source§

impl StructuralPartialEq for BacktraceStatus

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::cmp::Ordering

source§

impl StructuralPartialEq for TryReserveErrorKind

1.0.0 · source§

impl StructuralPartialEq for VarError

1.28.0 · source§

impl StructuralPartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl StructuralPartialEq for ErrorKind

1.0.0 · source§

impl StructuralPartialEq for SeekFrom

1.7.0 · source§

impl StructuralPartialEq for IpAddr

source§

impl StructuralPartialEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralPartialEq for Shutdown

1.0.0 · source§

impl StructuralPartialEq for SocketAddr

1.0.0 · source§

impl StructuralPartialEq for FpCategory

1.55.0 · source§

impl StructuralPartialEq for IntErrorKind

source§

impl StructuralPartialEq for BacktraceStyle

source§

impl StructuralPartialEq for SearchStep

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl StructuralPartialEq for RecvTimeoutError

1.0.0 · source§

impl StructuralPartialEq for TryRecvError

source§

impl StructuralPartialEq for _Unwind_Action

source§

impl StructuralPartialEq for _Unwind_Reason_Code

source§

impl StructuralPartialEq for bool

source§

impl StructuralPartialEq for char

source§

impl StructuralPartialEq for i8

source§

impl StructuralPartialEq for i16

source§

impl StructuralPartialEq for i32

source§

impl StructuralPartialEq for i64

source§

impl StructuralPartialEq for i128

source§

impl StructuralPartialEq for isize

source§

impl StructuralPartialEq for str

source§

impl StructuralPartialEq for u8

source§

impl StructuralPartialEq for u16

source§

impl StructuralPartialEq for u32

source§

impl StructuralPartialEq for u64

source§

impl StructuralPartialEq for u128

source§

impl StructuralPartialEq for ()

source§

impl StructuralPartialEq for usize

source§

impl StructuralPartialEq for AllocError

1.28.0 · source§

impl StructuralPartialEq for Layout

1.50.0 · source§

impl StructuralPartialEq for LayoutError

1.27.0 · source§

impl StructuralPartialEq for CpuidResult

1.34.0 · source§

impl StructuralPartialEq for CharTryFromError

1.9.0 · source§

impl StructuralPartialEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralPartialEq for ParseCharError

1.59.0 · source§

impl StructuralPartialEq for TryFromCharError

source§

impl StructuralPartialEq for UnorderedKeyError

1.57.0 · source§

impl StructuralPartialEq for TryReserveError

1.64.0 · source§

impl StructuralPartialEq for CStr

1.64.0 · source§

impl StructuralPartialEq for CString

1.69.0 · source§

impl StructuralPartialEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralPartialEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralPartialEq for FromVecWithNulError

1.64.0 · source§

impl StructuralPartialEq for IntoStringError

1.64.0 · source§

impl StructuralPartialEq for NulError

1.0.0 · source§

impl StructuralPartialEq for Error

1.1.0 · source§

impl StructuralPartialEq for FileType

1.0.0 · source§

impl StructuralPartialEq for Permissions

1.33.0 · source§

impl StructuralPartialEq for PhantomPinned

source§

impl StructuralPartialEq for Assume

1.0.0 · source§

impl StructuralPartialEq for AddrParseError

1.0.0 · source§

impl StructuralPartialEq for Ipv4Addr

1.0.0 · source§

impl StructuralPartialEq for Ipv6Addr

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV4

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV6

1.0.0 · source§

impl StructuralPartialEq for ParseFloatError

1.0.0 · source§

impl StructuralPartialEq for ParseIntError

1.34.0 · source§

impl StructuralPartialEq for TryFromIntError

1.0.0 · source§

impl StructuralPartialEq for RangeFull

source§

impl StructuralPartialEq for UCred

1.7.0 · source§

impl StructuralPartialEq for StripPrefixError

1.0.0 · source§

impl StructuralPartialEq for ExitStatus

source§

impl StructuralPartialEq for ExitStatusError

1.0.0 · source§

impl StructuralPartialEq for Output

source§

impl StructuralPartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl StructuralPartialEq for ParseBoolError

1.0.0 · source§

impl StructuralPartialEq for Utf8Error

1.0.0 · source§

impl StructuralPartialEq for FromUtf8Error

1.0.0 · source§

impl StructuralPartialEq for String

1.0.0 · source§

impl StructuralPartialEq for RecvError

1.5.0 · source§

impl StructuralPartialEq for WaitTimeoutResult

1.36.0 · source§

impl StructuralPartialEq for RawWaker

1.36.0 · source§

impl StructuralPartialEq for RawWakerVTable

1.26.0 · source§

impl StructuralPartialEq for AccessError

1.19.0 · source§

impl StructuralPartialEq for ThreadId

1.3.0 · source§

impl StructuralPartialEq for Duration

1.8.0 · source§

impl StructuralPartialEq for Instant

1.8.0 · source§

impl StructuralPartialEq for SystemTime

1.66.0 · source§

impl StructuralPartialEq for TryFromFloatSecsError

1.0.0 · source§

impl<'a> StructuralPartialEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralPartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> StructuralPartialEq for Location<'a>

1.79.0 · source§

impl<'a> StructuralPartialEq for Utf8Chunk<'a>

1.55.0 · source§

impl<B, C> StructuralPartialEq for ControlFlow<B, C>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::Range<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeFrom<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeInclusive<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for RangeTo<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for RangeToInclusive<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::Range<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeFrom<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeInclusive<Idx>

1.17.0 · source§

impl<T> StructuralPartialEq for Bound<T>

1.0.0 · source§

impl<T> StructuralPartialEq for Option<T>

1.0.0 · source§

impl<T> StructuralPartialEq for TrySendError<T>

1.36.0 · source§

impl<T> StructuralPartialEq for Poll<T>

source§

impl<T> StructuralPartialEq for &T
where +

Implementors§

source§

impl StructuralPartialEq for DecodeError

source§

impl StructuralPartialEq for AsciiChar

1.65.0 · source§

impl StructuralPartialEq for BacktraceStatus

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::cmp::Ordering

source§

impl StructuralPartialEq for TryReserveErrorKind

1.0.0 · source§

impl StructuralPartialEq for VarError

1.28.0 · source§

impl StructuralPartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl StructuralPartialEq for ErrorKind

1.0.0 · source§

impl StructuralPartialEq for SeekFrom

1.7.0 · source§

impl StructuralPartialEq for IpAddr

source§

impl StructuralPartialEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralPartialEq for Shutdown

1.0.0 · source§

impl StructuralPartialEq for SocketAddr

1.0.0 · source§

impl StructuralPartialEq for FpCategory

1.55.0 · source§

impl StructuralPartialEq for IntErrorKind

source§

impl StructuralPartialEq for BacktraceStyle

source§

impl StructuralPartialEq for SearchStep

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl StructuralPartialEq for RecvTimeoutError

1.0.0 · source§

impl StructuralPartialEq for TryRecvError

source§

impl StructuralPartialEq for _Unwind_Action

source§

impl StructuralPartialEq for _Unwind_Reason_Code

source§

impl StructuralPartialEq for bool

source§

impl StructuralPartialEq for char

source§

impl StructuralPartialEq for i8

source§

impl StructuralPartialEq for i16

source§

impl StructuralPartialEq for i32

source§

impl StructuralPartialEq for i64

source§

impl StructuralPartialEq for i128

source§

impl StructuralPartialEq for isize

source§

impl StructuralPartialEq for str

source§

impl StructuralPartialEq for u8

source§

impl StructuralPartialEq for u16

source§

impl StructuralPartialEq for u32

source§

impl StructuralPartialEq for u64

source§

impl StructuralPartialEq for u128

source§

impl StructuralPartialEq for ()

source§

impl StructuralPartialEq for usize

source§

impl StructuralPartialEq for AllocError

1.28.0 · source§

impl StructuralPartialEq for Layout

1.50.0 · source§

impl StructuralPartialEq for LayoutError

1.27.0 · source§

impl StructuralPartialEq for CpuidResult

1.34.0 · source§

impl StructuralPartialEq for CharTryFromError

1.9.0 · source§

impl StructuralPartialEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralPartialEq for ParseCharError

1.59.0 · source§

impl StructuralPartialEq for TryFromCharError

source§

impl StructuralPartialEq for UnorderedKeyError

1.57.0 · source§

impl StructuralPartialEq for TryReserveError

1.64.0 · source§

impl StructuralPartialEq for CStr

1.64.0 · source§

impl StructuralPartialEq for CString

1.69.0 · source§

impl StructuralPartialEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralPartialEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralPartialEq for FromVecWithNulError

1.64.0 · source§

impl StructuralPartialEq for IntoStringError

1.64.0 · source§

impl StructuralPartialEq for NulError

1.0.0 · source§

impl StructuralPartialEq for Error

1.1.0 · source§

impl StructuralPartialEq for FileType

1.0.0 · source§

impl StructuralPartialEq for Permissions

1.33.0 · source§

impl StructuralPartialEq for PhantomPinned

source§

impl StructuralPartialEq for Assume

1.0.0 · source§

impl StructuralPartialEq for AddrParseError

1.0.0 · source§

impl StructuralPartialEq for Ipv4Addr

1.0.0 · source§

impl StructuralPartialEq for Ipv6Addr

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV4

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV6

1.0.0 · source§

impl StructuralPartialEq for ParseFloatError

1.0.0 · source§

impl StructuralPartialEq for ParseIntError

1.34.0 · source§

impl StructuralPartialEq for TryFromIntError

1.0.0 · source§

impl StructuralPartialEq for RangeFull

source§

impl StructuralPartialEq for UCred

1.7.0 · source§

impl StructuralPartialEq for StripPrefixError

1.0.0 · source§

impl StructuralPartialEq for ExitStatus

source§

impl StructuralPartialEq for ExitStatusError

1.0.0 · source§

impl StructuralPartialEq for Output

source§

impl StructuralPartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl StructuralPartialEq for ParseBoolError

1.0.0 · source§

impl StructuralPartialEq for Utf8Error

1.0.0 · source§

impl StructuralPartialEq for FromUtf8Error

1.0.0 · source§

impl StructuralPartialEq for String

1.0.0 · source§

impl StructuralPartialEq for RecvError

1.5.0 · source§

impl StructuralPartialEq for WaitTimeoutResult

1.36.0 · source§

impl StructuralPartialEq for RawWaker

1.36.0 · source§

impl StructuralPartialEq for RawWakerVTable

1.26.0 · source§

impl StructuralPartialEq for AccessError

1.19.0 · source§

impl StructuralPartialEq for ThreadId

1.3.0 · source§

impl StructuralPartialEq for Duration

1.8.0 · source§

impl StructuralPartialEq for Instant

1.8.0 · source§

impl StructuralPartialEq for SystemTime

1.66.0 · source§

impl StructuralPartialEq for TryFromFloatSecsError

1.0.0 · source§

impl<'a> StructuralPartialEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralPartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> StructuralPartialEq for Location<'a>

1.79.0 · source§

impl<'a> StructuralPartialEq for Utf8Chunk<'a>

1.55.0 · source§

impl<B, C> StructuralPartialEq for ControlFlow<B, C>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::Range<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeFrom<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeInclusive<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for RangeTo<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for RangeToInclusive<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::Range<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeFrom<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeInclusive<Idx>

1.17.0 · source§

impl<T> StructuralPartialEq for Bound<T>

1.0.0 · source§

impl<T> StructuralPartialEq for Option<T>

1.0.0 · source§

impl<T> StructuralPartialEq for TrySendError<T>

1.36.0 · source§

impl<T> StructuralPartialEq for Poll<T>

source§

impl<T> StructuralPartialEq for &T
where T: ?Sized,

source§

impl<T> StructuralPartialEq for [T]

source§

impl<T> StructuralPartialEq for (T₁, T₂, …, Tₙ)

This trait is implemented for tuples up to twelve items long.

1.19.0 · source§

impl<T> StructuralPartialEq for Reverse<T>

1.0.0 · source§

impl<T> StructuralPartialEq for Cursor<T>

source§

impl<T> StructuralPartialEq for PhantomData<T>
where T: ?Sized,

1.20.0 · source§

impl<T> StructuralPartialEq for ManuallyDrop<T>
where diff --git a/wiwi/rust_core/marker/trait.Sync.html b/wiwi/rust_core/marker/trait.Sync.html index ec95d1329..7b296896c 100644 --- a/wiwi/rust_core/marker/trait.Sync.html +++ b/wiwi/rust_core/marker/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl !Sync for UnsafeBufWriteGuard

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for wiwi::rust_std::iter::Repeat<A>
where A: Sync,

§

impl<A> Sync for RepeatN<A>
where A: Sync,

§

impl<A> Sync for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/marker/trait.Unpin.html b/wiwi/rust_core/marker/trait.Unpin.html index e562463bf..ac3d71c7a 100644 --- a/wiwi/rust_core/marker/trait.Unpin.html +++ b/wiwi/rust_core/marker/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where A: Unpin,

§

impl<A> Unpin for RepeatN<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::option::IntoIter<A>
where A: Unpin,

§

impl<A> Unpin for IterRange<A>
where diff --git a/wiwi/rust_core/panic/trait.RefUnwindSafe.html b/wiwi/rust_core/panic/trait.RefUnwindSafe.html index 778f2b05b..8528e5fe3 100644 --- a/wiwi/rust_core/panic/trait.RefUnwindSafe.html +++ b/wiwi/rust_core/panic/trait.RefUnwindSafe.html @@ -14,7 +14,7 @@ T: RefUnwindSafe + ?Sized, A: Allocator + UnwindSafe,

1.80.0 · source§

impl<T, F> RefUnwindSafe for LazyLock<T, F>

Auto implementors§

§

impl !RefUnwindSafe for wiwi::rust_std::io::Error

§

impl !RefUnwindSafe for Command

§

impl !RefUnwindSafe for OnceState

§

impl RefUnwindSafe for AsciiChar

§

impl RefUnwindSafe for BacktraceStatus

§

impl RefUnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl RefUnwindSafe for TryReserveErrorKind

§

impl RefUnwindSafe for Infallible

§

impl RefUnwindSafe for VarError

§

impl RefUnwindSafe for c_void

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl RefUnwindSafe for BasicBlock

§

impl RefUnwindSafe for UnwindTerminateReason

§

impl RefUnwindSafe for ErrorKind

§

impl RefUnwindSafe for SeekFrom

§

impl RefUnwindSafe for IpAddr

§

impl RefUnwindSafe for Ipv6MulticastScope

§

impl RefUnwindSafe for Shutdown

§

impl RefUnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl RefUnwindSafe for FpCategory

§

impl RefUnwindSafe for IntErrorKind

§

impl RefUnwindSafe for AncillaryError

§

impl RefUnwindSafe for BacktraceStyle

§

impl RefUnwindSafe for SearchStep

§

impl RefUnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl RefUnwindSafe for RecvTimeoutError

§

impl RefUnwindSafe for TryRecvError

§

impl RefUnwindSafe for AllocError

§

impl RefUnwindSafe for Global

§

impl RefUnwindSafe for Layout

§

impl RefUnwindSafe for LayoutError

§

impl RefUnwindSafe for System

§

impl RefUnwindSafe for TypeId

§

impl RefUnwindSafe for CpuidResult

§

impl RefUnwindSafe for __m128

§

impl RefUnwindSafe for __m128bh

§

impl RefUnwindSafe for __m128d

§

impl RefUnwindSafe for __m128h

§

impl RefUnwindSafe for __m128i

§

impl RefUnwindSafe for __m256

§

impl RefUnwindSafe for __m256bh

§

impl RefUnwindSafe for __m256d

§

impl RefUnwindSafe for __m256h

§

impl RefUnwindSafe for __m256i

§

impl RefUnwindSafe for __m512

§

impl RefUnwindSafe for __m512bh

§

impl RefUnwindSafe for __m512d

§

impl RefUnwindSafe for __m512h

§

impl RefUnwindSafe for __m512i

§

impl RefUnwindSafe for bf16

§

impl RefUnwindSafe for TryFromSliceError

§

impl RefUnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl RefUnwindSafe for Backtrace

§

impl RefUnwindSafe for BacktraceFrame

§

impl RefUnwindSafe for BorrowError

§

impl RefUnwindSafe for BorrowMutError

§

impl RefUnwindSafe for CharTryFromError

§

impl RefUnwindSafe for DecodeUtf16Error

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl RefUnwindSafe for ParseCharError

§

impl RefUnwindSafe for ToLowercase

§

impl RefUnwindSafe for ToUppercase

§

impl RefUnwindSafe for TryFromCharError

§

impl RefUnwindSafe for UnorderedKeyError

§

impl RefUnwindSafe for TryReserveError

§

impl RefUnwindSafe for Args

§

impl RefUnwindSafe for ArgsOs

§

impl RefUnwindSafe for JoinPathsError

§

impl RefUnwindSafe for Vars

§

impl RefUnwindSafe for VarsOs

§

impl RefUnwindSafe for CStr

§

impl RefUnwindSafe for CString

§

impl RefUnwindSafe for FromBytesUntilNulError

§

impl RefUnwindSafe for FromBytesWithNulError

§

impl RefUnwindSafe for FromVecWithNulError

§

impl RefUnwindSafe for IntoStringError

§

impl RefUnwindSafe for NulError

§

impl RefUnwindSafe for OsStr

§

impl RefUnwindSafe for OsString

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Error

§

impl RefUnwindSafe for DirBuilder

§

impl RefUnwindSafe for DirEntry

§

impl RefUnwindSafe for File

§

impl RefUnwindSafe for FileTimes

§

impl RefUnwindSafe for FileType

§

impl RefUnwindSafe for Metadata

§

impl RefUnwindSafe for OpenOptions

§

impl RefUnwindSafe for Permissions

§

impl RefUnwindSafe for ReadDir

§

impl RefUnwindSafe for DefaultHasher

§

impl RefUnwindSafe for RandomState

§

impl RefUnwindSafe for SipHasher

§

impl RefUnwindSafe for ReturnToArg

§

impl RefUnwindSafe for UnwindActionArg

§

impl RefUnwindSafe for wiwi::rust_std::io::Empty

§

impl RefUnwindSafe for wiwi::rust_std::io::Repeat

§

impl RefUnwindSafe for Sink

§

impl RefUnwindSafe for Stdin

§

impl RefUnwindSafe for WriterPanicked

§

impl RefUnwindSafe for PhantomPinned

§

impl RefUnwindSafe for Assume

§

impl RefUnwindSafe for AddrParseError

§

impl RefUnwindSafe for IntoIncoming

§

impl RefUnwindSafe for Ipv4Addr

§

impl RefUnwindSafe for Ipv6Addr

§

impl RefUnwindSafe for SocketAddrV4

§

impl RefUnwindSafe for SocketAddrV6

§

impl RefUnwindSafe for TcpListener

§

impl RefUnwindSafe for TcpStream

§

impl RefUnwindSafe for UdpSocket

§

impl RefUnwindSafe for ParseFloatError

§

impl RefUnwindSafe for ParseIntError

§

impl RefUnwindSafe for TryFromIntError

§

impl RefUnwindSafe for RangeFull

§

impl RefUnwindSafe for OwnedFd

§

impl RefUnwindSafe for PidFd

§

impl RefUnwindSafe for stat

§

impl RefUnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl RefUnwindSafe for SocketCred

§

impl RefUnwindSafe for UCred

§

impl RefUnwindSafe for UnixDatagram

§

impl RefUnwindSafe for UnixListener

§

impl RefUnwindSafe for UnixStream

§

impl RefUnwindSafe for Path

§

impl RefUnwindSafe for PathBuf

§

impl RefUnwindSafe for StripPrefixError

§

impl RefUnwindSafe for PipeReader

§

impl RefUnwindSafe for PipeWriter

§

impl RefUnwindSafe for Child

§

impl RefUnwindSafe for ChildStderr

§

impl RefUnwindSafe for ChildStdin

§

impl RefUnwindSafe for ChildStdout

§

impl RefUnwindSafe for ExitCode

§

impl RefUnwindSafe for ExitStatus

§

impl RefUnwindSafe for ExitStatusError

§

impl RefUnwindSafe for Output

§

impl RefUnwindSafe for Stdio

§

impl RefUnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl RefUnwindSafe for ParseBoolError

§

impl RefUnwindSafe for Utf8Error

§

impl RefUnwindSafe for FromUtf8Error

§

impl RefUnwindSafe for FromUtf16Error

§

impl RefUnwindSafe for String

§

impl RefUnwindSafe for RecvError

§

impl RefUnwindSafe for Barrier

§

impl RefUnwindSafe for BarrierWaitResult

§

impl RefUnwindSafe for WaitTimeoutResult

§

impl RefUnwindSafe for LocalWaker

§

impl RefUnwindSafe for RawWaker

§

impl RefUnwindSafe for RawWakerVTable

§

impl RefUnwindSafe for Waker

§

impl RefUnwindSafe for AccessError

§

impl RefUnwindSafe for Builder

§

impl RefUnwindSafe for Thread

§

impl RefUnwindSafe for ThreadId

§

impl RefUnwindSafe for Duration

§

impl RefUnwindSafe for Instant

§

impl RefUnwindSafe for SystemTime

§

impl RefUnwindSafe for SystemTimeError

§

impl RefUnwindSafe for TryFromFloatSecsError

§

impl RefUnwindSafe for Big8x3

§

impl RefUnwindSafe for Big32x40

§

impl RefUnwindSafe for Decoded

§

impl RefUnwindSafe for FullDecoded

§

impl RefUnwindSafe for Maybe

§

impl RefUnwindSafe for NoRuntime

§

impl RefUnwindSafe for Number

§

impl RefUnwindSafe for Runtime

§

impl RefUnwindSafe for Sign

§

impl<'a> !RefUnwindSafe for Request<'a>

§

impl<'a> !RefUnwindSafe for Formatter<'a>

§

impl<'a> !RefUnwindSafe for PanicHookInfo<'a>

§

impl<'a> !RefUnwindSafe for ContextBuilder<'a>

§

impl<'a> !RefUnwindSafe for Source<'a>

§

impl<'a> RefUnwindSafe for AncillaryData<'a>

§

impl<'a> RefUnwindSafe for Component<'a>

§

impl<'a> RefUnwindSafe for Prefix<'a>

§

impl<'a> RefUnwindSafe for SplitPaths<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> RefUnwindSafe for Arguments<'a>

§

impl<'a> RefUnwindSafe for BorrowedCursor<'a>

§

impl<'a> RefUnwindSafe for IoSlice<'a>

§

impl<'a> RefUnwindSafe for IoSliceMut<'a>

§

impl<'a> RefUnwindSafe for StdinLock<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for Messages<'a>

§

impl<'a> RefUnwindSafe for ScmCredentials<'a>

§

impl<'a> RefUnwindSafe for ScmRights<'a>

§

impl<'a> RefUnwindSafe for SocketAncillary<'a>

§

impl<'a> RefUnwindSafe for Location<'a>

§

impl<'a> RefUnwindSafe for Ancestors<'a>

§

impl<'a> RefUnwindSafe for Components<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> RefUnwindSafe for PrefixComponent<'a>

§

impl<'a> RefUnwindSafe for CommandArgs<'a>

§

impl<'a> RefUnwindSafe for CommandEnvs<'a>

§

impl<'a> RefUnwindSafe for EscapeAscii<'a>

§

impl<'a> RefUnwindSafe for CharSearcher<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> RefUnwindSafe for CharIndices<'a>

§

impl<'a> RefUnwindSafe for Chars<'a>

§

impl<'a> RefUnwindSafe for EncodeUtf16<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> RefUnwindSafe for LinesAny<'a>

§

impl<'a> RefUnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> RefUnwindSafe for SplitWhitespace<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunk<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunks<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> RefUnwindSafe for Context<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> RefUnwindSafe for PanicInfo<'a>

§

impl<'a> RefUnwindSafe for PanicMessage<'a>

§

impl<'a> RefUnwindSafe for Formatted<'a>

§

impl<'a> RefUnwindSafe for Part<'a>

§

impl<'a, 'b> !RefUnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> RefUnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> RefUnwindSafe for VaList<'a, 'f>

§

impl<'a, A> RefUnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where + F: UnwindSafe,

Auto implementors§

§

impl !RefUnwindSafe for wiwi::rust_std::io::Error

§

impl !RefUnwindSafe for Command

§

impl !RefUnwindSafe for OnceState

§

impl RefUnwindSafe for wiwi::encoding::hex::DecodeError

§

impl RefUnwindSafe for wiwi::encoding::z85::DecodeError

§

impl RefUnwindSafe for AsciiChar

§

impl RefUnwindSafe for BacktraceStatus

§

impl RefUnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl RefUnwindSafe for TryReserveErrorKind

§

impl RefUnwindSafe for Infallible

§

impl RefUnwindSafe for VarError

§

impl RefUnwindSafe for c_void

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl RefUnwindSafe for BasicBlock

§

impl RefUnwindSafe for UnwindTerminateReason

§

impl RefUnwindSafe for ErrorKind

§

impl RefUnwindSafe for SeekFrom

§

impl RefUnwindSafe for IpAddr

§

impl RefUnwindSafe for Ipv6MulticastScope

§

impl RefUnwindSafe for Shutdown

§

impl RefUnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl RefUnwindSafe for FpCategory

§

impl RefUnwindSafe for IntErrorKind

§

impl RefUnwindSafe for AncillaryError

§

impl RefUnwindSafe for BacktraceStyle

§

impl RefUnwindSafe for SearchStep

§

impl RefUnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl RefUnwindSafe for RecvTimeoutError

§

impl RefUnwindSafe for TryRecvError

§

impl RefUnwindSafe for EncodedReprInfo

§

impl RefUnwindSafe for AllocError

§

impl RefUnwindSafe for Global

§

impl RefUnwindSafe for Layout

§

impl RefUnwindSafe for LayoutError

§

impl RefUnwindSafe for System

§

impl RefUnwindSafe for TypeId

§

impl RefUnwindSafe for CpuidResult

§

impl RefUnwindSafe for __m128

§

impl RefUnwindSafe for __m128bh

§

impl RefUnwindSafe for __m128d

§

impl RefUnwindSafe for __m128h

§

impl RefUnwindSafe for __m128i

§

impl RefUnwindSafe for __m256

§

impl RefUnwindSafe for __m256bh

§

impl RefUnwindSafe for __m256d

§

impl RefUnwindSafe for __m256h

§

impl RefUnwindSafe for __m256i

§

impl RefUnwindSafe for __m512

§

impl RefUnwindSafe for __m512bh

§

impl RefUnwindSafe for __m512d

§

impl RefUnwindSafe for __m512h

§

impl RefUnwindSafe for __m512i

§

impl RefUnwindSafe for bf16

§

impl RefUnwindSafe for TryFromSliceError

§

impl RefUnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl RefUnwindSafe for Backtrace

§

impl RefUnwindSafe for BacktraceFrame

§

impl RefUnwindSafe for BorrowError

§

impl RefUnwindSafe for BorrowMutError

§

impl RefUnwindSafe for CharTryFromError

§

impl RefUnwindSafe for DecodeUtf16Error

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl RefUnwindSafe for ParseCharError

§

impl RefUnwindSafe for ToLowercase

§

impl RefUnwindSafe for ToUppercase

§

impl RefUnwindSafe for TryFromCharError

§

impl RefUnwindSafe for UnorderedKeyError

§

impl RefUnwindSafe for TryReserveError

§

impl RefUnwindSafe for Args

§

impl RefUnwindSafe for ArgsOs

§

impl RefUnwindSafe for JoinPathsError

§

impl RefUnwindSafe for Vars

§

impl RefUnwindSafe for VarsOs

§

impl RefUnwindSafe for CStr

§

impl RefUnwindSafe for CString

§

impl RefUnwindSafe for FromBytesUntilNulError

§

impl RefUnwindSafe for FromBytesWithNulError

§

impl RefUnwindSafe for FromVecWithNulError

§

impl RefUnwindSafe for IntoStringError

§

impl RefUnwindSafe for NulError

§

impl RefUnwindSafe for OsStr

§

impl RefUnwindSafe for OsString

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Error

§

impl RefUnwindSafe for DirBuilder

§

impl RefUnwindSafe for DirEntry

§

impl RefUnwindSafe for File

§

impl RefUnwindSafe for FileTimes

§

impl RefUnwindSafe for FileType

§

impl RefUnwindSafe for Metadata

§

impl RefUnwindSafe for OpenOptions

§

impl RefUnwindSafe for Permissions

§

impl RefUnwindSafe for ReadDir

§

impl RefUnwindSafe for DefaultHasher

§

impl RefUnwindSafe for RandomState

§

impl RefUnwindSafe for SipHasher

§

impl RefUnwindSafe for ReturnToArg

§

impl RefUnwindSafe for UnwindActionArg

§

impl RefUnwindSafe for wiwi::rust_std::io::Empty

§

impl RefUnwindSafe for wiwi::rust_std::io::Repeat

§

impl RefUnwindSafe for Sink

§

impl RefUnwindSafe for Stdin

§

impl RefUnwindSafe for WriterPanicked

§

impl RefUnwindSafe for PhantomPinned

§

impl RefUnwindSafe for Assume

§

impl RefUnwindSafe for AddrParseError

§

impl RefUnwindSafe for IntoIncoming

§

impl RefUnwindSafe for Ipv4Addr

§

impl RefUnwindSafe for Ipv6Addr

§

impl RefUnwindSafe for SocketAddrV4

§

impl RefUnwindSafe for SocketAddrV6

§

impl RefUnwindSafe for TcpListener

§

impl RefUnwindSafe for TcpStream

§

impl RefUnwindSafe for UdpSocket

§

impl RefUnwindSafe for ParseFloatError

§

impl RefUnwindSafe for ParseIntError

§

impl RefUnwindSafe for TryFromIntError

§

impl RefUnwindSafe for RangeFull

§

impl RefUnwindSafe for OwnedFd

§

impl RefUnwindSafe for PidFd

§

impl RefUnwindSafe for stat

§

impl RefUnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl RefUnwindSafe for SocketCred

§

impl RefUnwindSafe for UCred

§

impl RefUnwindSafe for UnixDatagram

§

impl RefUnwindSafe for UnixListener

§

impl RefUnwindSafe for UnixStream

§

impl RefUnwindSafe for Path

§

impl RefUnwindSafe for PathBuf

§

impl RefUnwindSafe for StripPrefixError

§

impl RefUnwindSafe for PipeReader

§

impl RefUnwindSafe for PipeWriter

§

impl RefUnwindSafe for Child

§

impl RefUnwindSafe for ChildStderr

§

impl RefUnwindSafe for ChildStdin

§

impl RefUnwindSafe for ChildStdout

§

impl RefUnwindSafe for ExitCode

§

impl RefUnwindSafe for ExitStatus

§

impl RefUnwindSafe for ExitStatusError

§

impl RefUnwindSafe for Output

§

impl RefUnwindSafe for Stdio

§

impl RefUnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl RefUnwindSafe for ParseBoolError

§

impl RefUnwindSafe for Utf8Error

§

impl RefUnwindSafe for FromUtf8Error

§

impl RefUnwindSafe for FromUtf16Error

§

impl RefUnwindSafe for String

§

impl RefUnwindSafe for RecvError

§

impl RefUnwindSafe for Barrier

§

impl RefUnwindSafe for BarrierWaitResult

§

impl RefUnwindSafe for WaitTimeoutResult

§

impl RefUnwindSafe for LocalWaker

§

impl RefUnwindSafe for RawWaker

§

impl RefUnwindSafe for RawWakerVTable

§

impl RefUnwindSafe for Waker

§

impl RefUnwindSafe for AccessError

§

impl RefUnwindSafe for Builder

§

impl RefUnwindSafe for Thread

§

impl RefUnwindSafe for ThreadId

§

impl RefUnwindSafe for Duration

§

impl RefUnwindSafe for Instant

§

impl RefUnwindSafe for SystemTime

§

impl RefUnwindSafe for SystemTimeError

§

impl RefUnwindSafe for TryFromFloatSecsError

§

impl RefUnwindSafe for UnsafeBufWriteGuard

§

impl RefUnwindSafe for Big8x3

§

impl RefUnwindSafe for Big32x40

§

impl RefUnwindSafe for Decoded

§

impl RefUnwindSafe for FullDecoded

§

impl RefUnwindSafe for Maybe

§

impl RefUnwindSafe for NoRuntime

§

impl RefUnwindSafe for Number

§

impl RefUnwindSafe for Runtime

§

impl RefUnwindSafe for Sign

§

impl<'a> !RefUnwindSafe for Request<'a>

§

impl<'a> !RefUnwindSafe for Formatter<'a>

§

impl<'a> !RefUnwindSafe for PanicHookInfo<'a>

§

impl<'a> !RefUnwindSafe for ContextBuilder<'a>

§

impl<'a> !RefUnwindSafe for Source<'a>

§

impl<'a> RefUnwindSafe for AncillaryData<'a>

§

impl<'a> RefUnwindSafe for Component<'a>

§

impl<'a> RefUnwindSafe for Prefix<'a>

§

impl<'a> RefUnwindSafe for SplitPaths<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> RefUnwindSafe for Arguments<'a>

§

impl<'a> RefUnwindSafe for BorrowedCursor<'a>

§

impl<'a> RefUnwindSafe for IoSlice<'a>

§

impl<'a> RefUnwindSafe for IoSliceMut<'a>

§

impl<'a> RefUnwindSafe for StdinLock<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for Messages<'a>

§

impl<'a> RefUnwindSafe for ScmCredentials<'a>

§

impl<'a> RefUnwindSafe for ScmRights<'a>

§

impl<'a> RefUnwindSafe for SocketAncillary<'a>

§

impl<'a> RefUnwindSafe for Location<'a>

§

impl<'a> RefUnwindSafe for Ancestors<'a>

§

impl<'a> RefUnwindSafe for Components<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> RefUnwindSafe for PrefixComponent<'a>

§

impl<'a> RefUnwindSafe for CommandArgs<'a>

§

impl<'a> RefUnwindSafe for CommandEnvs<'a>

§

impl<'a> RefUnwindSafe for EscapeAscii<'a>

§

impl<'a> RefUnwindSafe for CharSearcher<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> RefUnwindSafe for CharIndices<'a>

§

impl<'a> RefUnwindSafe for Chars<'a>

§

impl<'a> RefUnwindSafe for EncodeUtf16<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> RefUnwindSafe for LinesAny<'a>

§

impl<'a> RefUnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> RefUnwindSafe for SplitWhitespace<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunk<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunks<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> RefUnwindSafe for Context<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> RefUnwindSafe for PanicInfo<'a>

§

impl<'a> RefUnwindSafe for PanicMessage<'a>

§

impl<'a> RefUnwindSafe for Formatted<'a>

§

impl<'a> RefUnwindSafe for Part<'a>

§

impl<'a, 'b> !RefUnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> RefUnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> RefUnwindSafe for VaList<'a, 'f>

§

impl<'a, A> RefUnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where A: RefUnwindSafe,

§

impl<'a, A> RefUnwindSafe for wiwi::rust_std::option::IterMut<'a, A>
where A: RefUnwindSafe,

§

impl<'a, B> RefUnwindSafe for Cow<'a, B>
where <B as ToOwned>::Owned: RefUnwindSafe, @@ -210,7 +210,7 @@ T: RefUnwindSafe,

§

impl<'a, T, const N: usize> RefUnwindSafe for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> RefUnwindSafe for ArrayChunksMut<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> RefUnwindSafe for ArrayWindows<'a, T, N>
where - T: RefUnwindSafe,

§

impl<'a, const N: usize> RefUnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !RefUnwindSafe for Ref<'b, T>

§

impl<'b, T> !RefUnwindSafe for RefMut<'b, T>

§

impl<'data> RefUnwindSafe for BorrowedBuf<'data>

§

impl<'f> RefUnwindSafe for VaListImpl<'f>

§

impl<'fd> RefUnwindSafe for BorrowedFd<'fd>

§

impl<'scope, 'env> RefUnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !RefUnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> RefUnwindSafe for wiwi::rust_std::iter::Repeat<A>
where + T: RefUnwindSafe,

§

impl<'a, const N: usize> RefUnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !RefUnwindSafe for Ref<'b, T>

§

impl<'b, T> !RefUnwindSafe for RefMut<'b, T>

§

impl<'data> RefUnwindSafe for BorrowedBuf<'data>

§

impl<'f> RefUnwindSafe for VaListImpl<'f>

§

impl<'fd> RefUnwindSafe for BorrowedFd<'fd>

§

impl<'h, const N: usize> RefUnwindSafe for ChunkedSlice<'h, N>

§

impl<'scope, 'env> RefUnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !RefUnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> RefUnwindSafe for wiwi::rust_std::iter::Repeat<A>
where A: RefUnwindSafe,

§

impl<A> RefUnwindSafe for RepeatN<A>
where A: RefUnwindSafe,

§

impl<A> RefUnwindSafe for wiwi::rust_std::option::IntoIter<A>
where A: RefUnwindSafe,

§

impl<A> RefUnwindSafe for IterRange<A>
where diff --git a/wiwi/rust_core/panic/trait.UnwindSafe.html b/wiwi/rust_core/panic/trait.UnwindSafe.html index 9f59fff31..051fc3ee0 100644 --- a/wiwi/rust_core/panic/trait.UnwindSafe.html +++ b/wiwi/rust_core/panic/trait.UnwindSafe.html @@ -76,7 +76,7 @@

RefUnwindSafe + ?Sized, A: Allocator + UnwindSafe,

1.80.0 · source§

impl<T, F> UnwindSafe for LazyLock<T, F>
where T: UnwindSafe, - F: UnwindSafe,

Auto implementors§

§

impl !UnwindSafe for wiwi::rust_std::io::Error

§

impl !UnwindSafe for Command

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl UnwindSafe for TryReserveErrorKind

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for VarError

§

impl UnwindSafe for c_void

§

impl UnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for ErrorKind

§

impl UnwindSafe for SeekFrom

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for Shutdown

§

impl UnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl UnwindSafe for RecvTimeoutError

§

impl UnwindSafe for TryRecvError

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Global

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for System

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128h

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256h

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512h

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for bf16

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl UnwindSafe for Backtrace

§

impl UnwindSafe for BacktraceFrame

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl UnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for UnorderedKeyError

§

impl UnwindSafe for TryReserveError

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for CStr

§

impl UnwindSafe for CString

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for FromVecWithNulError

§

impl UnwindSafe for IntoStringError

§

impl UnwindSafe for NulError

§

impl UnwindSafe for OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for wiwi::rust_std::fmt::Error

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for DirEntry

§

impl UnwindSafe for File

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for FileType

§

impl UnwindSafe for Metadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for ReadDir

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for RandomState

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

impl UnwindSafe for wiwi::rust_std::io::Empty

§

impl UnwindSafe for wiwi::rust_std::io::Repeat

§

impl UnwindSafe for Sink

§

impl UnwindSafe for Stdin

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for UdpSocket

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for OwnedFd

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for stat

§

impl UnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for UCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for PipeReader

§

impl UnwindSafe for PipeWriter

§

impl UnwindSafe for Child

§

impl UnwindSafe for ChildStderr

§

impl UnwindSafe for ChildStdin

§

impl UnwindSafe for ChildStdout

§

impl UnwindSafe for ExitCode

§

impl UnwindSafe for ExitStatus

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for Output

§

impl UnwindSafe for Stdio

§

impl UnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for FromUtf8Error

§

impl UnwindSafe for FromUtf16Error

§

impl UnwindSafe for String

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for RecvError

§

impl UnwindSafe for Barrier

§

impl UnwindSafe for BarrierWaitResult

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for LocalWaker

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for Builder

§

impl UnwindSafe for Thread

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for Duration

§

impl UnwindSafe for Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for SystemTimeError

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Maybe

§

impl UnwindSafe for NoRuntime

§

impl UnwindSafe for Number

§

impl UnwindSafe for Runtime

§

impl UnwindSafe for Sign

§

impl<'a> !UnwindSafe for Request<'a>

§

impl<'a> !UnwindSafe for Formatter<'a>

§

impl<'a> !UnwindSafe for BorrowedCursor<'a>

§

impl<'a> !UnwindSafe for IoSliceMut<'a>

§

impl<'a> !UnwindSafe for SocketAncillary<'a>

§

impl<'a> !UnwindSafe for PanicHookInfo<'a>

§

impl<'a> !UnwindSafe for ContextBuilder<'a>

§

impl<'a> !UnwindSafe for Source<'a>

§

impl<'a> UnwindSafe for AncillaryData<'a>

§

impl<'a> UnwindSafe for Component<'a>

§

impl<'a> UnwindSafe for Prefix<'a>

§

impl<'a> UnwindSafe for SplitPaths<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> UnwindSafe for Arguments<'a>

§

impl<'a> UnwindSafe for IoSlice<'a>

§

impl<'a> UnwindSafe for StdinLock<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> UnwindSafe for Messages<'a>

§

impl<'a> UnwindSafe for ScmCredentials<'a>

§

impl<'a> UnwindSafe for ScmRights<'a>

§

impl<'a> UnwindSafe for Location<'a>

§

impl<'a> UnwindSafe for Ancestors<'a>

§

impl<'a> UnwindSafe for Components<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> UnwindSafe for PrefixComponent<'a>

§

impl<'a> UnwindSafe for CommandArgs<'a>

§

impl<'a> UnwindSafe for CommandEnvs<'a>

§

impl<'a> UnwindSafe for EscapeAscii<'a>

§

impl<'a> UnwindSafe for CharSearcher<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> UnwindSafe for LinesAny<'a>

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

impl<'a> UnwindSafe for Utf8Chunk<'a>

§

impl<'a> UnwindSafe for Utf8Chunks<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> UnwindSafe for Context<'a>

§

impl<'a> UnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> UnwindSafe for PanicInfo<'a>

§

impl<'a> UnwindSafe for PanicMessage<'a>

§

impl<'a> UnwindSafe for Formatted<'a>

§

impl<'a> UnwindSafe for Part<'a>

§

impl<'a, 'b> !UnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> UnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> UnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> UnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>

§

impl<'a, A> !UnwindSafe for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where + F: UnwindSafe,

Auto implementors§

§

impl !UnwindSafe for wiwi::rust_std::io::Error

§

impl !UnwindSafe for Command

§

impl UnwindSafe for wiwi::encoding::hex::DecodeError

§

impl UnwindSafe for wiwi::encoding::z85::DecodeError

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl UnwindSafe for TryReserveErrorKind

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for VarError

§

impl UnwindSafe for c_void

§

impl UnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for ErrorKind

§

impl UnwindSafe for SeekFrom

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for Shutdown

§

impl UnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl UnwindSafe for RecvTimeoutError

§

impl UnwindSafe for TryRecvError

§

impl UnwindSafe for EncodedReprInfo

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Global

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for System

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128h

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256h

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512h

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for bf16

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl UnwindSafe for Backtrace

§

impl UnwindSafe for BacktraceFrame

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl UnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for UnorderedKeyError

§

impl UnwindSafe for TryReserveError

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for CStr

§

impl UnwindSafe for CString

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for FromVecWithNulError

§

impl UnwindSafe for IntoStringError

§

impl UnwindSafe for NulError

§

impl UnwindSafe for OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for wiwi::rust_std::fmt::Error

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for DirEntry

§

impl UnwindSafe for File

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for FileType

§

impl UnwindSafe for Metadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for ReadDir

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for RandomState

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

impl UnwindSafe for wiwi::rust_std::io::Empty

§

impl UnwindSafe for wiwi::rust_std::io::Repeat

§

impl UnwindSafe for Sink

§

impl UnwindSafe for Stdin

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for UdpSocket

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for OwnedFd

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for stat

§

impl UnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for UCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for PipeReader

§

impl UnwindSafe for PipeWriter

§

impl UnwindSafe for Child

§

impl UnwindSafe for ChildStderr

§

impl UnwindSafe for ChildStdin

§

impl UnwindSafe for ChildStdout

§

impl UnwindSafe for ExitCode

§

impl UnwindSafe for ExitStatus

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for Output

§

impl UnwindSafe for Stdio

§

impl UnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for FromUtf8Error

§

impl UnwindSafe for FromUtf16Error

§

impl UnwindSafe for String

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for RecvError

§

impl UnwindSafe for Barrier

§

impl UnwindSafe for BarrierWaitResult

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for LocalWaker

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for Builder

§

impl UnwindSafe for Thread

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for Duration

§

impl UnwindSafe for Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for SystemTimeError

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for UnsafeBufWriteGuard

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Maybe

§

impl UnwindSafe for NoRuntime

§

impl UnwindSafe for Number

§

impl UnwindSafe for Runtime

§

impl UnwindSafe for Sign

§

impl<'a> !UnwindSafe for Request<'a>

§

impl<'a> !UnwindSafe for Formatter<'a>

§

impl<'a> !UnwindSafe for BorrowedCursor<'a>

§

impl<'a> !UnwindSafe for IoSliceMut<'a>

§

impl<'a> !UnwindSafe for SocketAncillary<'a>

§

impl<'a> !UnwindSafe for PanicHookInfo<'a>

§

impl<'a> !UnwindSafe for ContextBuilder<'a>

§

impl<'a> !UnwindSafe for Source<'a>

§

impl<'a> UnwindSafe for AncillaryData<'a>

§

impl<'a> UnwindSafe for Component<'a>

§

impl<'a> UnwindSafe for Prefix<'a>

§

impl<'a> UnwindSafe for SplitPaths<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> UnwindSafe for Arguments<'a>

§

impl<'a> UnwindSafe for IoSlice<'a>

§

impl<'a> UnwindSafe for StdinLock<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> UnwindSafe for Messages<'a>

§

impl<'a> UnwindSafe for ScmCredentials<'a>

§

impl<'a> UnwindSafe for ScmRights<'a>

§

impl<'a> UnwindSafe for Location<'a>

§

impl<'a> UnwindSafe for Ancestors<'a>

§

impl<'a> UnwindSafe for Components<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> UnwindSafe for PrefixComponent<'a>

§

impl<'a> UnwindSafe for CommandArgs<'a>

§

impl<'a> UnwindSafe for CommandEnvs<'a>

§

impl<'a> UnwindSafe for EscapeAscii<'a>

§

impl<'a> UnwindSafe for CharSearcher<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> UnwindSafe for LinesAny<'a>

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

impl<'a> UnwindSafe for Utf8Chunk<'a>

§

impl<'a> UnwindSafe for Utf8Chunks<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> UnwindSafe for Context<'a>

§

impl<'a> UnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> UnwindSafe for PanicInfo<'a>

§

impl<'a> UnwindSafe for PanicMessage<'a>

§

impl<'a> UnwindSafe for Formatted<'a>

§

impl<'a> UnwindSafe for Part<'a>

§

impl<'a, 'b> !UnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> UnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> UnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> UnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>

§

impl<'a, A> !UnwindSafe for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where A: RefUnwindSafe,

§

impl<'a, B> UnwindSafe for Cow<'a, B>
where <B as ToOwned>::Owned: UnwindSafe, B: RefUnwindSafe + ?Sized,

§

impl<'a, F> UnwindSafe for CharPredicateSearcher<'a, F>
where @@ -171,7 +171,7 @@

RefUnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, const N: usize> !UnwindSafe for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> UnwindSafe for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> UnwindSafe for ArrayWindows<'a, T, N>
where - T: RefUnwindSafe,

§

impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !UnwindSafe for Ref<'b, T>

§

impl<'b, T> !UnwindSafe for RefMut<'b, T>

§

impl<'data> !UnwindSafe for BorrowedBuf<'data>

§

impl<'f> !UnwindSafe for VaListImpl<'f>

§

impl<'fd> UnwindSafe for BorrowedFd<'fd>

§

impl<'scope, 'env> !UnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !UnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> UnwindSafe for wiwi::rust_std::iter::Repeat<A>
where + T: RefUnwindSafe,

§

impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !UnwindSafe for Ref<'b, T>

§

impl<'b, T> !UnwindSafe for RefMut<'b, T>

§

impl<'data> !UnwindSafe for BorrowedBuf<'data>

§

impl<'f> !UnwindSafe for VaListImpl<'f>

§

impl<'fd> UnwindSafe for BorrowedFd<'fd>

§

impl<'h, const N: usize> UnwindSafe for ChunkedSlice<'h, N>

§

impl<'scope, 'env> !UnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !UnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> UnwindSafe for wiwi::rust_std::iter::Repeat<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for RepeatN<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for wiwi::rust_std::option::IntoIter<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for IterRange<A>
where diff --git a/wiwi/rust_core/prelude/rust_2015/trait.PartialEq.html b/wiwi/rust_core/prelude/rust_2015/trait.PartialEq.html index e5d7f6eaf..384c9078a 100644 --- a/wiwi/rust_core/prelude/rust_2015/trait.PartialEq.html +++ b/wiwi/rust_core/prelude/rust_2015/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_core/prelude/rust_2015/trait.Send.html b/wiwi/rust_core/prelude/rust_2015/trait.Send.html index 6e94fb67e..d8abdff79 100644 --- a/wiwi/rust_core/prelude/rust_2015/trait.Send.html +++ b/wiwi/rust_core/prelude/rust_2015/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl !Send for UnsafeBufWriteGuard

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for wiwi::rust_std::iter::Repeat<A>
where A: Send,

§

impl<A> Send for RepeatN<A>
where A: Send,

§

impl<A> Send for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2015/trait.Sync.html b/wiwi/rust_core/prelude/rust_2015/trait.Sync.html index 5c9043cf3..72a187c16 100644 --- a/wiwi/rust_core/prelude/rust_2015/trait.Sync.html +++ b/wiwi/rust_core/prelude/rust_2015/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl !Sync for UnsafeBufWriteGuard

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for wiwi::rust_std::iter::Repeat<A>
where A: Sync,

§

impl<A> Sync for RepeatN<A>
where A: Sync,

§

impl<A> Sync for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2015/trait.Unpin.html b/wiwi/rust_core/prelude/rust_2015/trait.Unpin.html index 4cafe820f..45caf3b90 100644 --- a/wiwi/rust_core/prelude/rust_2015/trait.Unpin.html +++ b/wiwi/rust_core/prelude/rust_2015/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where A: Unpin,

§

impl<A> Unpin for RepeatN<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::option::IntoIter<A>
where A: Unpin,

§

impl<A> Unpin for IterRange<A>
where diff --git a/wiwi/rust_core/prelude/rust_2018/trait.PartialEq.html b/wiwi/rust_core/prelude/rust_2018/trait.PartialEq.html index e8aec8f34..be84eeac4 100644 --- a/wiwi/rust_core/prelude/rust_2018/trait.PartialEq.html +++ b/wiwi/rust_core/prelude/rust_2018/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_core/prelude/rust_2018/trait.Send.html b/wiwi/rust_core/prelude/rust_2018/trait.Send.html index 5be3fcf84..87bad19d5 100644 --- a/wiwi/rust_core/prelude/rust_2018/trait.Send.html +++ b/wiwi/rust_core/prelude/rust_2018/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl !Send for UnsafeBufWriteGuard

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for wiwi::rust_std::iter::Repeat<A>
where A: Send,

§

impl<A> Send for RepeatN<A>
where A: Send,

§

impl<A> Send for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2018/trait.Sync.html b/wiwi/rust_core/prelude/rust_2018/trait.Sync.html index 3eae02f01..49fac18ff 100644 --- a/wiwi/rust_core/prelude/rust_2018/trait.Sync.html +++ b/wiwi/rust_core/prelude/rust_2018/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl !Sync for UnsafeBufWriteGuard

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for wiwi::rust_std::iter::Repeat<A>
where A: Sync,

§

impl<A> Sync for RepeatN<A>
where A: Sync,

§

impl<A> Sync for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2018/trait.Unpin.html b/wiwi/rust_core/prelude/rust_2018/trait.Unpin.html index 046a5a281..d4bb5969d 100644 --- a/wiwi/rust_core/prelude/rust_2018/trait.Unpin.html +++ b/wiwi/rust_core/prelude/rust_2018/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where A: Unpin,

§

impl<A> Unpin for RepeatN<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::option::IntoIter<A>
where A: Unpin,

§

impl<A> Unpin for IterRange<A>
where diff --git a/wiwi/rust_core/prelude/rust_2021/trait.PartialEq.html b/wiwi/rust_core/prelude/rust_2021/trait.PartialEq.html index 43a6c5136..8613216bf 100644 --- a/wiwi/rust_core/prelude/rust_2021/trait.PartialEq.html +++ b/wiwi/rust_core/prelude/rust_2021/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_core/prelude/rust_2021/trait.Send.html b/wiwi/rust_core/prelude/rust_2021/trait.Send.html index 26fc9c6ad..8bdeb20c0 100644 --- a/wiwi/rust_core/prelude/rust_2021/trait.Send.html +++ b/wiwi/rust_core/prelude/rust_2021/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl !Send for UnsafeBufWriteGuard

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for wiwi::rust_std::iter::Repeat<A>
where A: Send,

§

impl<A> Send for RepeatN<A>
where A: Send,

§

impl<A> Send for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2021/trait.Sync.html b/wiwi/rust_core/prelude/rust_2021/trait.Sync.html index 661163681..bea2cc852 100644 --- a/wiwi/rust_core/prelude/rust_2021/trait.Sync.html +++ b/wiwi/rust_core/prelude/rust_2021/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl !Sync for UnsafeBufWriteGuard

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for wiwi::rust_std::iter::Repeat<A>
where A: Sync,

§

impl<A> Sync for RepeatN<A>
where A: Sync,

§

impl<A> Sync for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2021/trait.Unpin.html b/wiwi/rust_core/prelude/rust_2021/trait.Unpin.html index 6abe7b440..997be0091 100644 --- a/wiwi/rust_core/prelude/rust_2021/trait.Unpin.html +++ b/wiwi/rust_core/prelude/rust_2021/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where A: Unpin,

§

impl<A> Unpin for RepeatN<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::option::IntoIter<A>
where A: Unpin,

§

impl<A> Unpin for IterRange<A>
where diff --git a/wiwi/rust_core/prelude/rust_2024/trait.PartialEq.html b/wiwi/rust_core/prelude/rust_2024/trait.PartialEq.html index b7fd0d121..a9623567d 100644 --- a/wiwi/rust_core/prelude/rust_2024/trait.PartialEq.html +++ b/wiwi/rust_core/prelude/rust_2024/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_core/prelude/rust_2024/trait.Send.html b/wiwi/rust_core/prelude/rust_2024/trait.Send.html index e2bea1a4c..a6e4e5403 100644 --- a/wiwi/rust_core/prelude/rust_2024/trait.Send.html +++ b/wiwi/rust_core/prelude/rust_2024/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl !Send for UnsafeBufWriteGuard

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for wiwi::rust_std::iter::Repeat<A>
where A: Send,

§

impl<A> Send for RepeatN<A>
where A: Send,

§

impl<A> Send for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2024/trait.Sync.html b/wiwi/rust_core/prelude/rust_2024/trait.Sync.html index 545d8e457..55009cd6c 100644 --- a/wiwi/rust_core/prelude/rust_2024/trait.Sync.html +++ b/wiwi/rust_core/prelude/rust_2024/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl !Sync for UnsafeBufWriteGuard

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for wiwi::rust_std::iter::Repeat<A>
where A: Sync,

§

impl<A> Sync for RepeatN<A>
where A: Sync,

§

impl<A> Sync for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/rust_2024/trait.Unpin.html b/wiwi/rust_core/prelude/rust_2024/trait.Unpin.html index 5b5895372..73111e9c4 100644 --- a/wiwi/rust_core/prelude/rust_2024/trait.Unpin.html +++ b/wiwi/rust_core/prelude/rust_2024/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where A: Unpin,

§

impl<A> Unpin for RepeatN<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::option::IntoIter<A>
where A: Unpin,

§

impl<A> Unpin for IterRange<A>
where diff --git a/wiwi/rust_core/prelude/v1/trait.PartialEq.html b/wiwi/rust_core/prelude/v1/trait.PartialEq.html index 1877d5b71..32596b058 100644 --- a/wiwi/rust_core/prelude/v1/trait.PartialEq.html +++ b/wiwi/rust_core/prelude/v1/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_core/prelude/v1/trait.Send.html b/wiwi/rust_core/prelude/v1/trait.Send.html index a4022f743..5b97b0ce3 100644 --- a/wiwi/rust_core/prelude/v1/trait.Send.html +++ b/wiwi/rust_core/prelude/v1/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl !Send for UnsafeBufWriteGuard

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for wiwi::rust_std::iter::Repeat<A>
where A: Send,

§

impl<A> Send for RepeatN<A>
where A: Send,

§

impl<A> Send for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/v1/trait.Sync.html b/wiwi/rust_core/prelude/v1/trait.Sync.html index 3896302be..9cb271232 100644 --- a/wiwi/rust_core/prelude/v1/trait.Sync.html +++ b/wiwi/rust_core/prelude/v1/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl !Sync for UnsafeBufWriteGuard

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for wiwi::rust_std::iter::Repeat<A>
where A: Sync,

§

impl<A> Sync for RepeatN<A>
where A: Sync,

§

impl<A> Sync for wiwi::rust_std::option::IntoIter<A>
where diff --git a/wiwi/rust_core/prelude/v1/trait.Unpin.html b/wiwi/rust_core/prelude/v1/trait.Unpin.html index 71ec7a4c3..83247bf23 100644 --- a/wiwi/rust_core/prelude/v1/trait.Unpin.html +++ b/wiwi/rust_core/prelude/v1/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where A: Unpin,

§

impl<A> Unpin for RepeatN<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::option::IntoIter<A>
where A: Unpin,

§

impl<A> Unpin for IterRange<A>
where diff --git a/wiwi/rust_std/boxed/struct.Box.html b/wiwi/rust_std/boxed/struct.Box.html index 58f3f4e53..2e8d8c0d9 100644 --- a/wiwi/rust_std/boxed/struct.Box.html +++ b/wiwi/rust_std/boxed/struct.Box.html @@ -1387,4 +1387,4 @@
§ExamplesClone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where - U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: TryFrom<T>,
source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/rust_std/cmp/trait.PartialEq.html b/wiwi/rust_std/cmp/trait.PartialEq.html index 26df68ceb..d7bf21cce 100644 --- a/wiwi/rust_std/cmp/trait.PartialEq.html +++ b/wiwi/rust_std/cmp/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_std/error/trait.Error.html b/wiwi/rust_std/error/trait.Error.html index b69adb866..ae53f7f15 100644 --- a/wiwi/rust_std/error/trait.Error.html +++ b/wiwi/rust_std/error/trait.Error.html @@ -299,7 +299,7 @@
§Examples
let a_boxed_error = Box::<dyn Error + Send + Sync>::from(a_string_error); assert!( mem::size_of::<Box<dyn Error + Send + Sync>>() == mem::size_of_val(&a_boxed_error))
-

Implementors§

1.65.0 · source§

impl !Error for &str

1.8.0 · source§

impl Error for Infallible

1.0.0 · source§

impl Error for VarError

1.15.0 · source§

impl Error for RecvTimeoutError

1.0.0 · source§

impl Error for TryRecvError

source§

impl Error for !

source§

impl Error for AllocError

1.28.0 · source§

impl Error for LayoutError

1.34.0 · source§

impl Error for TryFromSliceError

1.13.0 · source§

impl Error for BorrowError

1.13.0 · source§

impl Error for BorrowMutError

1.34.0 · source§

impl Error for CharTryFromError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.20.0 · source§

impl Error for ParseCharError

1.59.0 · source§

impl Error for TryFromCharError

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

1.0.0 · source§

impl Error for JoinPathsError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.58.0 · source§

impl Error for FromVecWithNulError

1.7.0 · source§

impl Error for IntoStringError

1.0.0 · source§

impl Error for NulError

1.11.0 · source§

impl Error for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Error for wiwi::rust_std::io::Error

1.56.0 · source§

impl Error for WriterPanicked

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

1.66.0 · source§

impl Error for TryFromFloatSecsError

source§

impl<'a, K, V> Error for wiwi::rust_std::collections::btree_map::OccupiedError<'a, K, V>
where +

Implementors§

1.65.0 · source§

impl !Error for &str

source§

impl Error for wiwi::encoding::hex::DecodeError

source§

impl Error for wiwi::encoding::z85::DecodeError

1.8.0 · source§

impl Error for Infallible

1.0.0 · source§

impl Error for VarError

1.15.0 · source§

impl Error for RecvTimeoutError

1.0.0 · source§

impl Error for TryRecvError

source§

impl Error for !

source§

impl Error for AllocError

1.28.0 · source§

impl Error for LayoutError

1.34.0 · source§

impl Error for TryFromSliceError

1.13.0 · source§

impl Error for BorrowError

1.13.0 · source§

impl Error for BorrowMutError

1.34.0 · source§

impl Error for CharTryFromError

1.9.0 · source§

impl Error for DecodeUtf16Error

1.20.0 · source§

impl Error for ParseCharError

1.59.0 · source§

impl Error for TryFromCharError

source§

impl Error for UnorderedKeyError

1.57.0 · source§

impl Error for TryReserveError

1.0.0 · source§

impl Error for JoinPathsError

1.69.0 · source§

impl Error for FromBytesUntilNulError

1.17.0 · source§

impl Error for FromBytesWithNulError

1.58.0 · source§

impl Error for FromVecWithNulError

1.7.0 · source§

impl Error for IntoStringError

1.0.0 · source§

impl Error for NulError

1.11.0 · source§

impl Error for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Error for wiwi::rust_std::io::Error

1.56.0 · source§

impl Error for WriterPanicked

1.4.0 · source§

impl Error for AddrParseError

1.0.0 · source§

impl Error for ParseFloatError

1.0.0 · source§

impl Error for ParseIntError

1.34.0 · source§

impl Error for TryFromIntError

1.7.0 · source§

impl Error for StripPrefixError

source§

impl Error for ExitStatusError

1.0.0 · source§

impl Error for ParseBoolError

1.0.0 · source§

impl Error for Utf8Error

1.0.0 · source§

impl Error for FromUtf8Error

1.0.0 · source§

impl Error for FromUtf16Error

1.0.0 · source§

impl Error for RecvError

1.26.0 · source§

impl Error for AccessError

1.8.0 · source§

impl Error for SystemTimeError

1.66.0 · source§

impl Error for TryFromFloatSecsError

source§

impl<'a, K, V> Error for wiwi::rust_std::collections::btree_map::OccupiedError<'a, K, V>
where K: Debug + Ord, V: Debug,

source§

impl<'a, K, V> Error for wiwi::rust_std::collections::hash_map::OccupiedError<'a, K, V>
where K: Debug, diff --git a/wiwi/rust_std/fmt/trait.Debug.html b/wiwi/rust_std/fmt/trait.Debug.html index e9eeae04f..3f95a209e 100644 --- a/wiwi/rust_std/fmt/trait.Debug.html +++ b/wiwi/rust_std/fmt/trait.Debug.html @@ -114,7 +114,7 @@
§Examples
1.987, 2.983, )");
-

Implementors§

source§

impl Debug for AsciiChar

1.65.0 · source§

impl Debug for BacktraceStatus

1.0.0 · source§

impl Debug for wiwi::rust_std::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

1.34.0 · source§

impl Debug for Infallible

1.0.0 · source§

impl Debug for VarError

1.16.0 · source§

impl Debug for c_void

1.0.0 · source§

impl Debug for ErrorKind

1.0.0 · source§

impl Debug for SeekFrom

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

1.0.0 · source§

impl Debug for Shutdown

1.0.0 · source§

impl Debug for wiwi::rust_std::net::SocketAddr

1.0.0 · source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

source§

impl Debug for SearchStep

1.0.0 · source§

impl Debug for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl Debug for RecvTimeoutError

1.0.0 · source§

impl Debug for TryRecvError

1.28.0 · source§

impl Debug for wiwi::rust_std::fmt::Alignment

source§

impl Debug for _Unwind_Reason_Code

1.0.0 · source§

impl Debug for bool

1.0.0 · source§

impl Debug for char

1.0.0 · source§

impl Debug for f16

1.0.0 · source§

impl Debug for f32

1.0.0 · source§

impl Debug for f64

1.0.0 · source§

impl Debug for f128

1.0.0 · source§

impl Debug for i8

1.0.0 · source§

impl Debug for i16

1.0.0 · source§

impl Debug for i32

1.0.0 · source§

impl Debug for i64

1.0.0 · source§

impl Debug for i128

1.0.0 · source§

impl Debug for isize

source§

impl Debug for !

1.0.0 · source§

impl Debug for str

1.0.0 · source§

impl Debug for u8

1.0.0 · source§

impl Debug for u16

1.0.0 · source§

impl Debug for u32

1.0.0 · source§

impl Debug for u64

1.0.0 · source§

impl Debug for u128

1.0.0 · source§

impl Debug for ()

1.0.0 · source§

impl Debug for usize

1.81.0 · source§

impl Debug for PanicMessage<'_>

source§

impl Debug for AllocError

source§

impl Debug for Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

1.28.0 · source§

impl Debug for System

1.0.0 · source§

impl Debug for TypeId

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

source§

impl Debug for __m128h

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

source§

impl Debug for __m256h

1.27.0 · source§

impl Debug for __m256i

1.72.0 · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.72.0 · source§

impl Debug for __m512d

source§

impl Debug for __m512h

1.72.0 · source§

impl Debug for __m512i

source§

impl Debug for bf16

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDebug

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDefault

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

1.0.0 · source§

impl Debug for ToLowercase

1.0.0 · source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

source§

impl Debug for UnorderedKeyError

1.57.0 · source§

impl Debug for TryReserveError

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

1.0.0 · source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for wiwi::rust_std::ffi::os_str::Display<'_>

1.3.0 · source§

impl Debug for CStr

1.0.0 · source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

1.0.0 · source§

impl Debug for OsStr

1.0.0 · source§

impl Debug for OsString

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

1.0.0 · source§

impl Debug for File

1.75.0 · source§

impl Debug for FileTimes

1.16.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

1.0.0 · source§

impl Debug for OpenOptions

1.0.0 · source§

impl Debug for Permissions

1.0.0 · source§

impl Debug for ReadDir

1.7.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for RandomState

1.0.0 · source§

impl Debug for SipHasher

source§

impl Debug for BorrowedBuf<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Empty

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Error

1.16.0 · source§

impl Debug for wiwi::rust_std::io::Repeat

1.0.0 · source§

impl Debug for Sink

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

1.56.0 · source§

impl Debug for WriterPanicked

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.0.0 · source§

impl Debug for AddrParseError

source§

impl Debug for IntoIncoming

1.0.0 · source§

impl Debug for Ipv4Addr

1.0.0 · source§

impl Debug for Ipv6Addr

1.0.0 · source§

impl Debug for SocketAddrV4

1.0.0 · source§

impl Debug for SocketAddrV6

1.0.0 · source§

impl Debug for TcpListener

1.0.0 · source§

impl Debug for TcpStream

1.0.0 · source§

impl Debug for UdpSocket

1.0.0 · source§

impl Debug for ParseFloatError

1.0.0 · source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

1.0.0 · source§

impl Debug for RangeFull

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

impl Debug for wiwi::rust_std::os::unix::net::SocketAddr

source§

impl Debug for UCred

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

1.13.0 · source§

impl Debug for Components<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::path::Display<'_>

1.13.0 · source§

impl Debug for wiwi::rust_std::path::Iter<'_>

1.0.0 · source§

impl Debug for Path

1.0.0 · source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

source§

impl Debug for PipeReader

source§

impl Debug for PipeWriter

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

1.0.0 · source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

1.0.0 · source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

source§

impl Debug for wiwi::rust_std::ptr::Alignment

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

1.0.0 · source§

impl Debug for ParseBoolError

1.79.0 · source§

impl Debug for Utf8Chunks<'_>

1.0.0 · source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for wiwi::rust_std::string::Drain<'_>

1.0.0 · source§

impl Debug for FromUtf8Error

1.0.0 · source§

impl Debug for FromUtf16Error

1.0.0 · source§

impl Debug for String

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.0.0 · source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.16.0 · source§

impl Debug for wiwi::rust_std::sync::Once

1.16.0 · source§

impl Debug for OnceState

1.5.0 · source§

impl Debug for WaitTimeoutResult

1.36.0 · source§

impl Debug for Context<'_>

source§

impl Debug for LocalWaker

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.26.0 · source§

impl Debug for AccessError

1.0.0 · source§

impl Debug for Builder

1.63.0 · source§

impl Debug for Scope<'_, '_>

1.0.0 · source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.27.0 · source§

impl Debug for Duration

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

1.66.0 · source§

impl Debug for TryFromFloatSecsError

1.0.0 · source§

impl Debug for Arguments<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Debug for dyn Any

1.0.0 · source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Send + Sync

1.0.0 · source§

impl<'a> Debug for Component<'a>

1.0.0 · source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for wiwi::rust_core::ffi::c_str::Bytes<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::net::Incoming<'a>

1.10.0 · source§

impl<'a> Debug for wiwi::rust_std::os::unix::net::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.81.0 · source§

impl<'a> Debug for PanicHookInfo<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

1.0.0 · source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Bytes<'a>

1.0.0 · source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeUnicode<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Lines<'a>

1.0.0 · source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 · source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for ContextBuilder<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>
where +

Implementors§

source§

impl Debug for wiwi::encoding::hex::DecodeError

source§

impl Debug for wiwi::encoding::z85::DecodeError

source§

impl Debug for AsciiChar

1.65.0 · source§

impl Debug for BacktraceStatus

1.0.0 · source§

impl Debug for wiwi::rust_std::cmp::Ordering

source§

impl Debug for TryReserveErrorKind

1.34.0 · source§

impl Debug for Infallible

1.0.0 · source§

impl Debug for VarError

1.16.0 · source§

impl Debug for c_void

1.0.0 · source§

impl Debug for ErrorKind

1.0.0 · source§

impl Debug for SeekFrom

1.7.0 · source§

impl Debug for IpAddr

source§

impl Debug for Ipv6MulticastScope

1.0.0 · source§

impl Debug for Shutdown

1.0.0 · source§

impl Debug for wiwi::rust_std::net::SocketAddr

1.0.0 · source§

impl Debug for FpCategory

1.55.0 · source§

impl Debug for IntErrorKind

source§

impl Debug for AncillaryError

source§

impl Debug for BacktraceStyle

source§

impl Debug for SearchStep

1.0.0 · source§

impl Debug for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl Debug for RecvTimeoutError

1.0.0 · source§

impl Debug for TryRecvError

1.28.0 · source§

impl Debug for wiwi::rust_std::fmt::Alignment

source§

impl Debug for _Unwind_Reason_Code

1.0.0 · source§

impl Debug for bool

1.0.0 · source§

impl Debug for char

1.0.0 · source§

impl Debug for f16

1.0.0 · source§

impl Debug for f32

1.0.0 · source§

impl Debug for f64

1.0.0 · source§

impl Debug for f128

1.0.0 · source§

impl Debug for i8

1.0.0 · source§

impl Debug for i16

1.0.0 · source§

impl Debug for i32

1.0.0 · source§

impl Debug for i64

1.0.0 · source§

impl Debug for i128

1.0.0 · source§

impl Debug for isize

source§

impl Debug for !

1.0.0 · source§

impl Debug for str

1.0.0 · source§

impl Debug for u8

1.0.0 · source§

impl Debug for u16

1.0.0 · source§

impl Debug for u32

1.0.0 · source§

impl Debug for u64

1.0.0 · source§

impl Debug for u128

1.0.0 · source§

impl Debug for ()

1.0.0 · source§

impl Debug for usize

1.81.0 · source§

impl Debug for PanicMessage<'_>

source§

impl Debug for AllocError

source§

impl Debug for Global

1.28.0 · source§

impl Debug for Layout

1.50.0 · source§

impl Debug for LayoutError

1.28.0 · source§

impl Debug for System

1.0.0 · source§

impl Debug for TypeId

1.27.0 · source§

impl Debug for CpuidResult

1.27.0 · source§

impl Debug for __m128

source§

impl Debug for __m128bh

1.27.0 · source§

impl Debug for __m128d

source§

impl Debug for __m128h

1.27.0 · source§

impl Debug for __m128i

1.27.0 · source§

impl Debug for __m256

source§

impl Debug for __m256bh

1.27.0 · source§

impl Debug for __m256d

source§

impl Debug for __m256h

1.27.0 · source§

impl Debug for __m256i

1.72.0 · source§

impl Debug for __m512

source§

impl Debug for __m512bh

1.72.0 · source§

impl Debug for __m512d

source§

impl Debug for __m512h

1.72.0 · source§

impl Debug for __m512i

source§

impl Debug for bf16

1.34.0 · source§

impl Debug for TryFromSliceError

1.16.0 · source§

impl Debug for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Debug for Backtrace

source§

impl Debug for BacktraceFrame

1.13.0 · source§

impl Debug for BorrowError

1.13.0 · source§

impl Debug for BorrowMutError

1.34.0 · source§

impl Debug for CharTryFromError

1.9.0 · source§

impl Debug for DecodeUtf16Error

1.20.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDebug

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeDefault

1.0.0 · source§

impl Debug for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Debug for ParseCharError

1.0.0 · source§

impl Debug for ToLowercase

1.0.0 · source§

impl Debug for ToUppercase

1.59.0 · source§

impl Debug for TryFromCharError

source§

impl Debug for UnorderedKeyError

1.57.0 · source§

impl Debug for TryReserveError

1.16.0 · source§

impl Debug for Args

1.16.0 · source§

impl Debug for ArgsOs

1.0.0 · source§

impl Debug for JoinPathsError

1.16.0 · source§

impl Debug for SplitPaths<'_>

1.16.0 · source§

impl Debug for Vars

1.16.0 · source§

impl Debug for VarsOs

source§

impl Debug for wiwi::rust_std::ffi::os_str::Display<'_>

1.3.0 · source§

impl Debug for CStr

1.0.0 · source§

impl Debug for CString

1.69.0 · source§

impl Debug for FromBytesUntilNulError

1.64.0 · source§

impl Debug for FromBytesWithNulError

1.64.0 · source§

impl Debug for FromVecWithNulError

1.64.0 · source§

impl Debug for IntoStringError

1.64.0 · source§

impl Debug for NulError

1.0.0 · source§

impl Debug for OsStr

1.0.0 · source§

impl Debug for OsString

1.6.0 · source§

impl Debug for DirBuilder

1.13.0 · source§

impl Debug for DirEntry

1.0.0 · source§

impl Debug for File

1.75.0 · source§

impl Debug for FileTimes

1.16.0 · source§

impl Debug for FileType

1.16.0 · source§

impl Debug for Metadata

1.0.0 · source§

impl Debug for OpenOptions

1.0.0 · source§

impl Debug for Permissions

1.0.0 · source§

impl Debug for ReadDir

1.7.0 · source§

impl Debug for DefaultHasher

1.16.0 · source§

impl Debug for RandomState

1.0.0 · source§

impl Debug for SipHasher

source§

impl Debug for BorrowedBuf<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Empty

1.0.0 · source§

impl Debug for wiwi::rust_std::io::Error

1.16.0 · source§

impl Debug for wiwi::rust_std::io::Repeat

1.0.0 · source§

impl Debug for Sink

1.16.0 · source§

impl Debug for Stderr

1.16.0 · source§

impl Debug for StderrLock<'_>

1.16.0 · source§

impl Debug for Stdin

1.16.0 · source§

impl Debug for StdinLock<'_>

1.16.0 · source§

impl Debug for Stdout

1.16.0 · source§

impl Debug for StdoutLock<'_>

1.56.0 · source§

impl Debug for WriterPanicked

1.33.0 · source§

impl Debug for PhantomPinned

source§

impl Debug for Assume

1.0.0 · source§

impl Debug for AddrParseError

source§

impl Debug for IntoIncoming

1.0.0 · source§

impl Debug for Ipv4Addr

1.0.0 · source§

impl Debug for Ipv6Addr

1.0.0 · source§

impl Debug for SocketAddrV4

1.0.0 · source§

impl Debug for SocketAddrV6

1.0.0 · source§

impl Debug for TcpListener

1.0.0 · source§

impl Debug for TcpStream

1.0.0 · source§

impl Debug for UdpSocket

1.0.0 · source§

impl Debug for ParseFloatError

1.0.0 · source§

impl Debug for ParseIntError

1.34.0 · source§

impl Debug for TryFromIntError

1.0.0 · source§

impl Debug for RangeFull

1.63.0 · source§

impl Debug for BorrowedFd<'_>

1.63.0 · source§

impl Debug for OwnedFd

source§

impl Debug for PidFd

1.10.0 · source§

impl Debug for wiwi::rust_std::os::unix::net::SocketAddr

source§

impl Debug for UCred

1.10.0 · source§

impl Debug for UnixDatagram

1.10.0 · source§

impl Debug for UnixListener

1.10.0 · source§

impl Debug for UnixStream

1.13.0 · source§

impl Debug for Components<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::path::Display<'_>

1.13.0 · source§

impl Debug for wiwi::rust_std::path::Iter<'_>

1.0.0 · source§

impl Debug for Path

1.0.0 · source§

impl Debug for PathBuf

1.7.0 · source§

impl Debug for StripPrefixError

source§

impl Debug for PipeReader

source§

impl Debug for PipeWriter

1.16.0 · source§

impl Debug for Child

1.16.0 · source§

impl Debug for ChildStderr

1.16.0 · source§

impl Debug for ChildStdin

1.16.0 · source§

impl Debug for ChildStdout

1.0.0 · source§

impl Debug for Command

1.61.0 · source§

impl Debug for ExitCode

1.0.0 · source§

impl Debug for ExitStatus

source§

impl Debug for ExitStatusError

1.7.0 · source§

impl Debug for Output

1.16.0 · source§

impl Debug for Stdio

source§

impl Debug for wiwi::rust_std::ptr::Alignment

1.38.0 · source§

impl Debug for Chars<'_>

1.17.0 · source§

impl Debug for EncodeUtf16<'_>

1.0.0 · source§

impl Debug for ParseBoolError

1.79.0 · source§

impl Debug for Utf8Chunks<'_>

1.0.0 · source§

impl Debug for Utf8Error

1.17.0 · source§

impl Debug for wiwi::rust_std::string::Drain<'_>

1.0.0 · source§

impl Debug for FromUtf8Error

1.0.0 · source§

impl Debug for FromUtf16Error

1.0.0 · source§

impl Debug for String

1.3.0 · source§

impl Debug for AtomicBool

1.34.0 · source§

impl Debug for AtomicI8

1.34.0 · source§

impl Debug for AtomicI16

1.34.0 · source§

impl Debug for AtomicI32

1.34.0 · source§

impl Debug for AtomicI64

1.3.0 · source§

impl Debug for AtomicIsize

1.34.0 · source§

impl Debug for AtomicU8

1.34.0 · source§

impl Debug for AtomicU16

1.34.0 · source§

impl Debug for AtomicU32

1.34.0 · source§

impl Debug for AtomicU64

1.3.0 · source§

impl Debug for AtomicUsize

1.0.0 · source§

impl Debug for RecvError

1.16.0 · source§

impl Debug for Barrier

1.16.0 · source§

impl Debug for BarrierWaitResult

1.16.0 · source§

impl Debug for Condvar

1.16.0 · source§

impl Debug for wiwi::rust_std::sync::Once

1.16.0 · source§

impl Debug for OnceState

1.5.0 · source§

impl Debug for WaitTimeoutResult

1.36.0 · source§

impl Debug for Context<'_>

source§

impl Debug for LocalWaker

1.36.0 · source§

impl Debug for RawWaker

1.36.0 · source§

impl Debug for RawWakerVTable

1.36.0 · source§

impl Debug for Waker

1.26.0 · source§

impl Debug for AccessError

1.0.0 · source§

impl Debug for Builder

1.63.0 · source§

impl Debug for Scope<'_, '_>

1.0.0 · source§

impl Debug for Thread

1.19.0 · source§

impl Debug for ThreadId

1.27.0 · source§

impl Debug for Duration

1.8.0 · source§

impl Debug for Instant

1.8.0 · source§

impl Debug for SystemTime

1.8.0 · source§

impl Debug for SystemTimeError

1.66.0 · source§

impl Debug for TryFromFloatSecsError

1.0.0 · source§

impl Debug for Arguments<'_>

1.0.0 · source§

impl Debug for wiwi::rust_std::fmt::Error

1.0.0 · source§

impl Debug for dyn Any

1.0.0 · source§

impl Debug for dyn Any + Send

1.28.0 · source§

impl Debug for dyn Any + Send + Sync

1.0.0 · source§

impl<'a> Debug for Component<'a>

1.0.0 · source§

impl<'a> Debug for Prefix<'a>

source§

impl<'a> Debug for Source<'a>

source§

impl<'a> Debug for wiwi::rust_core::ffi::c_str::Bytes<'a>

1.10.0 · source§

impl<'a> Debug for PanicInfo<'a>

source§

impl<'a> Debug for Request<'a>

source§

impl<'a> Debug for BorrowedCursor<'a>

1.36.0 · source§

impl<'a> Debug for IoSlice<'a>

1.36.0 · source§

impl<'a> Debug for IoSliceMut<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::net::Incoming<'a>

1.10.0 · source§

impl<'a> Debug for wiwi::rust_std::os::unix::net::Incoming<'a>

source§

impl<'a> Debug for SocketAncillary<'a>

1.10.0 · source§

impl<'a> Debug for Location<'a>

1.81.0 · source§

impl<'a> Debug for PanicHookInfo<'a>

1.28.0 · source§

impl<'a> Debug for Ancestors<'a>

1.0.0 · source§

impl<'a> Debug for PrefixComponent<'a>

1.57.0 · source§

impl<'a> Debug for CommandArgs<'a>

1.57.0 · source§

impl<'a> Debug for CommandEnvs<'a>

1.60.0 · source§

impl<'a> Debug for EscapeAscii<'a>

source§

impl<'a> Debug for CharSearcher<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Bytes<'a>

1.0.0 · source§

impl<'a> Debug for CharIndices<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Debug for wiwi::rust_std::str::EscapeUnicode<'a>

1.0.0 · source§

impl<'a> Debug for wiwi::rust_std::str::Lines<'a>

1.0.0 · source§

impl<'a> Debug for LinesAny<'a>

1.34.0 · source§

impl<'a> Debug for SplitAsciiWhitespace<'a>

1.1.0 · source§

impl<'a> Debug for SplitWhitespace<'a>

1.79.0 · source§

impl<'a> Debug for Utf8Chunk<'a>

source§

impl<'a> Debug for ContextBuilder<'a>

source§

impl<'a, 'b> Debug for CharSliceSearcher<'a, 'b>

source§

impl<'a, 'b> Debug for StrSearcher<'a, 'b>

source§

impl<'a, 'b, const N: usize> Debug for CharArrayRefSearcher<'a, 'b, N>

source§

impl<'a, 'f> Debug for VaList<'a, 'f>
where 'f: 'a,

1.0.0 · source§

impl<'a, A> Debug for wiwi::rust_std::option::Iter<'a, A>
where A: Debug + 'a,

1.0.0 · source§

impl<'a, A> Debug for wiwi::rust_std::option::IterMut<'a, A>
where A: Debug + 'a,

source§

impl<'a, I> Debug for ByRefSized<'a, I>
where diff --git a/wiwi/rust_std/fmt/trait.Display.html b/wiwi/rust_std/fmt/trait.Display.html index 7c91ea4d3..f6771f460 100644 --- a/wiwi/rust_std/fmt/trait.Display.html +++ b/wiwi/rust_std/fmt/trait.Display.html @@ -63,7 +63,7 @@
§Examples
"(1.987, 2.983)", format!("{}", Position { longitude: 1.987, latitude: 2.983, }), );
-

Implementors§

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.0.0 · source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.7.0 · source§

impl Display for IpAddr

1.0.0 · source§

impl Display for SocketAddr

1.15.0 · source§

impl Display for RecvTimeoutError

1.0.0 · source§

impl Display for TryRecvError

1.0.0 · source§

impl Display for bool

1.0.0 · source§

impl Display for char

1.0.0 · source§

impl Display for f32

1.0.0 · source§

impl Display for f64

1.0.0 · source§

impl Display for i8

1.0.0 · source§

impl Display for i16

1.0.0 · source§

impl Display for i32

1.0.0 · source§

impl Display for i64

1.0.0 · source§

impl Display for i128

1.0.0 · source§

impl Display for isize

source§

impl Display for !

1.0.0 · source§

impl Display for str

1.0.0 · source§

impl Display for u8

1.0.0 · source§

impl Display for u16

1.0.0 · source§

impl Display for u32

1.0.0 · source§

impl Display for u64

1.0.0 · source§

impl Display for u128

1.0.0 · source§

impl Display for usize

1.26.0 · source§

impl Display for PanicInfo<'_>

1.81.0 · source§

impl Display for PanicMessage<'_>

source§

impl Display for AllocError

1.28.0 · source§

impl Display for LayoutError

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Display for Backtrace

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for wiwi::rust_std::char::EscapeDebug

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeDefault

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

source§

impl Display for UnorderedKeyError

1.57.0 · source§

impl Display for TryReserveError

1.0.0 · source§

impl Display for JoinPathsError

source§

impl Display for wiwi::rust_std::ffi::os_str::Display<'_>

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

1.0.0 · source§

impl Display for NulError

1.0.0 · source§

impl Display for wiwi::rust_std::io::Error

1.56.0 · source§

impl Display for WriterPanicked

1.4.0 · source§

impl Display for AddrParseError

1.0.0 · source§

impl Display for Ipv4Addr

1.0.0 · source§

impl Display for Ipv6Addr

Writes an Ipv6Addr, conforming to the canonical style described by +

Implementors§

source§

impl Display for wiwi::encoding::hex::DecodeError

source§

impl Display for wiwi::encoding::z85::DecodeError

source§

impl Display for AsciiChar

1.34.0 · source§

impl Display for Infallible

1.0.0 · source§

impl Display for VarError

1.60.0 · source§

impl Display for ErrorKind

1.7.0 · source§

impl Display for IpAddr

1.0.0 · source§

impl Display for SocketAddr

1.15.0 · source§

impl Display for RecvTimeoutError

1.0.0 · source§

impl Display for TryRecvError

1.0.0 · source§

impl Display for bool

1.0.0 · source§

impl Display for char

1.0.0 · source§

impl Display for f32

1.0.0 · source§

impl Display for f64

1.0.0 · source§

impl Display for i8

1.0.0 · source§

impl Display for i16

1.0.0 · source§

impl Display for i32

1.0.0 · source§

impl Display for i64

1.0.0 · source§

impl Display for i128

1.0.0 · source§

impl Display for isize

source§

impl Display for !

1.0.0 · source§

impl Display for str

1.0.0 · source§

impl Display for u8

1.0.0 · source§

impl Display for u16

1.0.0 · source§

impl Display for u32

1.0.0 · source§

impl Display for u64

1.0.0 · source§

impl Display for u128

1.0.0 · source§

impl Display for usize

1.26.0 · source§

impl Display for PanicInfo<'_>

1.81.0 · source§

impl Display for PanicMessage<'_>

source§

impl Display for AllocError

1.28.0 · source§

impl Display for LayoutError

1.36.0 · source§

impl Display for TryFromSliceError

1.39.0 · source§

impl Display for wiwi::rust_std::ascii::EscapeDefault

1.65.0 · source§

impl Display for Backtrace

1.13.0 · source§

impl Display for BorrowError

1.13.0 · source§

impl Display for BorrowMutError

1.34.0 · source§

impl Display for CharTryFromError

1.9.0 · source§

impl Display for DecodeUtf16Error

1.20.0 · source§

impl Display for wiwi::rust_std::char::EscapeDebug

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeDefault

1.16.0 · source§

impl Display for wiwi::rust_std::char::EscapeUnicode

1.20.0 · source§

impl Display for ParseCharError

1.16.0 · source§

impl Display for ToLowercase

1.16.0 · source§

impl Display for ToUppercase

1.59.0 · source§

impl Display for TryFromCharError

source§

impl Display for UnorderedKeyError

1.57.0 · source§

impl Display for TryReserveError

1.0.0 · source§

impl Display for JoinPathsError

source§

impl Display for wiwi::rust_std::ffi::os_str::Display<'_>

1.69.0 · source§

impl Display for FromBytesUntilNulError

1.17.0 · source§

impl Display for FromBytesWithNulError

1.58.0 · source§

impl Display for FromVecWithNulError

1.7.0 · source§

impl Display for IntoStringError

1.0.0 · source§

impl Display for NulError

1.0.0 · source§

impl Display for wiwi::rust_std::io::Error

1.56.0 · source§

impl Display for WriterPanicked

1.4.0 · source§

impl Display for AddrParseError

1.0.0 · source§

impl Display for Ipv4Addr

1.0.0 · source§

impl Display for Ipv6Addr

Writes an Ipv6Addr, conforming to the canonical style described by RFC 5952.

1.0.0 · source§

impl Display for SocketAddrV4

1.0.0 · source§

impl Display for SocketAddrV6

1.0.0 · source§

impl Display for ParseFloatError

1.0.0 · source§

impl Display for ParseIntError

1.34.0 · source§

impl Display for TryFromIntError

1.26.0 · source§

impl Display for Location<'_>

1.26.0 · source§

impl Display for PanicHookInfo<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::path::Display<'_>

1.7.0 · source§

impl Display for StripPrefixError

1.0.0 · source§

impl Display for ExitStatus

source§

impl Display for ExitStatusError

1.0.0 · source§

impl Display for ParseBoolError

1.0.0 · source§

impl Display for Utf8Error

1.0.0 · source§

impl Display for FromUtf8Error

1.0.0 · source§

impl Display for FromUtf16Error

1.0.0 · source§

impl Display for String

1.0.0 · source§

impl Display for RecvError

1.26.0 · source§

impl Display for AccessError

1.8.0 · source§

impl Display for SystemTimeError

1.66.0 · source§

impl Display for TryFromFloatSecsError

1.0.0 · source§

impl Display for Arguments<'_>

1.0.0 · source§

impl Display for wiwi::rust_std::fmt::Error

1.60.0 · source§

impl<'a> Display for EscapeAscii<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeDebug<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeDefault<'a>

1.34.0 · source§

impl<'a> Display for wiwi::rust_std::str::EscapeUnicode<'a>

source§

impl<'a, K, V> Display for wiwi::rust_std::collections::hash_map::OccupiedError<'a, K, V>
where K: Debug, diff --git a/wiwi/rust_std/marker/trait.Freeze.html b/wiwi/rust_std/marker/trait.Freeze.html index 6a7bf9890..4f64acc49 100644 --- a/wiwi/rust_std/marker/trait.Freeze.html +++ b/wiwi/rust_std/marker/trait.Freeze.html @@ -15,7 +15,7 @@

§Safety

T: ?Sized,

source§

impl<T> Freeze for &mut T
where T: ?Sized,

1.28.0 · source§

impl<T> Freeze for NonZero<T>

source§

impl<T> Freeze for PhantomData<T>
where - T: ?Sized,

Auto implementors§

§

impl !Freeze for Backtrace

§

impl !Freeze for AtomicBool

§

impl !Freeze for AtomicI8

§

impl !Freeze for AtomicI16

§

impl !Freeze for AtomicI32

§

impl !Freeze for AtomicI64

§

impl !Freeze for AtomicIsize

§

impl !Freeze for AtomicU8

§

impl !Freeze for AtomicU16

§

impl !Freeze for AtomicU32

§

impl !Freeze for AtomicU64

§

impl !Freeze for AtomicUsize

§

impl !Freeze for Barrier

§

impl !Freeze for Condvar

§

impl !Freeze for wiwi::rust_std::sync::Once

§

impl !Freeze for OnceState

§

impl Freeze for AsciiChar

§

impl Freeze for BacktraceStatus

§

impl Freeze for wiwi::rust_std::cmp::Ordering

§

impl Freeze for TryReserveErrorKind

§

impl Freeze for Infallible

§

impl Freeze for VarError

§

impl Freeze for c_void

§

impl Freeze for wiwi::rust_std::fmt::Alignment

§

impl Freeze for BasicBlock

§

impl Freeze for UnwindTerminateReason

§

impl Freeze for ErrorKind

§

impl Freeze for SeekFrom

§

impl Freeze for IpAddr

§

impl Freeze for Ipv6MulticastScope

§

impl Freeze for Shutdown

§

impl Freeze for wiwi::rust_std::net::SocketAddr

§

impl Freeze for FpCategory

§

impl Freeze for IntErrorKind

§

impl Freeze for AncillaryError

§

impl Freeze for BacktraceStyle

§

impl Freeze for SearchStep

§

impl Freeze for wiwi::rust_std::sync::atomic::Ordering

§

impl Freeze for RecvTimeoutError

§

impl Freeze for TryRecvError

§

impl Freeze for AllocError

§

impl Freeze for Global

§

impl Freeze for Layout

§

impl Freeze for LayoutError

§

impl Freeze for System

§

impl Freeze for TypeId

§

impl Freeze for CpuidResult

§

impl Freeze for __m128

§

impl Freeze for __m128bh

§

impl Freeze for __m128d

§

impl Freeze for __m128h

§

impl Freeze for __m128i

§

impl Freeze for __m256

§

impl Freeze for __m256bh

§

impl Freeze for __m256d

§

impl Freeze for __m256h

§

impl Freeze for __m256i

§

impl Freeze for __m512

§

impl Freeze for __m512bh

§

impl Freeze for __m512d

§

impl Freeze for __m512h

§

impl Freeze for __m512i

§

impl Freeze for bf16

§

impl Freeze for TryFromSliceError

§

impl Freeze for wiwi::rust_std::ascii::EscapeDefault

§

impl Freeze for BacktraceFrame

§

impl Freeze for BorrowError

§

impl Freeze for BorrowMutError

§

impl Freeze for CharTryFromError

§

impl Freeze for DecodeUtf16Error

§

impl Freeze for wiwi::rust_std::char::EscapeDebug

§

impl Freeze for wiwi::rust_std::char::EscapeDefault

§

impl Freeze for wiwi::rust_std::char::EscapeUnicode

§

impl Freeze for ParseCharError

§

impl Freeze for ToLowercase

§

impl Freeze for ToUppercase

§

impl Freeze for TryFromCharError

§

impl Freeze for UnorderedKeyError

§

impl Freeze for TryReserveError

§

impl Freeze for Args

§

impl Freeze for ArgsOs

§

impl Freeze for JoinPathsError

§

impl Freeze for Vars

§

impl Freeze for VarsOs

§

impl Freeze for CStr

§

impl Freeze for CString

§

impl Freeze for FromBytesUntilNulError

§

impl Freeze for FromBytesWithNulError

§

impl Freeze for FromVecWithNulError

§

impl Freeze for IntoStringError

§

impl Freeze for NulError

§

impl Freeze for OsStr

§

impl Freeze for OsString

§

impl Freeze for wiwi::rust_std::fmt::Error

§

impl Freeze for DirBuilder

§

impl Freeze for DirEntry

§

impl Freeze for File

§

impl Freeze for FileTimes

§

impl Freeze for FileType

§

impl Freeze for Metadata

§

impl Freeze for OpenOptions

§

impl Freeze for Permissions

§

impl Freeze for ReadDir

§

impl Freeze for DefaultHasher

§

impl Freeze for RandomState

§

impl Freeze for SipHasher

§

impl Freeze for ReturnToArg

§

impl Freeze for UnwindActionArg

§

impl Freeze for wiwi::rust_std::io::Empty

§

impl Freeze for wiwi::rust_std::io::Error

§

impl Freeze for wiwi::rust_std::io::Repeat

§

impl Freeze for Sink

§

impl Freeze for Stderr

§

impl Freeze for Stdin

§

impl Freeze for Stdout

§

impl Freeze for WriterPanicked

§

impl Freeze for Assume

§

impl Freeze for AddrParseError

§

impl Freeze for IntoIncoming

§

impl Freeze for Ipv4Addr

§

impl Freeze for Ipv6Addr

§

impl Freeze for SocketAddrV4

§

impl Freeze for SocketAddrV6

§

impl Freeze for TcpListener

§

impl Freeze for TcpStream

§

impl Freeze for UdpSocket

§

impl Freeze for ParseFloatError

§

impl Freeze for ParseIntError

§

impl Freeze for TryFromIntError

§

impl Freeze for RangeFull

§

impl Freeze for OwnedFd

§

impl Freeze for PidFd

§

impl Freeze for stat

§

impl Freeze for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Freeze for SocketCred

§

impl Freeze for UCred

§

impl Freeze for UnixDatagram

§

impl Freeze for UnixListener

§

impl Freeze for UnixStream

§

impl Freeze for Path

§

impl Freeze for PathBuf

§

impl Freeze for StripPrefixError

§

impl Freeze for PipeReader

§

impl Freeze for PipeWriter

§

impl Freeze for Child

§

impl Freeze for ChildStderr

§

impl Freeze for ChildStdin

§

impl Freeze for ChildStdout

§

impl Freeze for Command

§

impl Freeze for ExitCode

§

impl Freeze for ExitStatus

§

impl Freeze for ExitStatusError

§

impl Freeze for Output

§

impl Freeze for Stdio

§

impl Freeze for wiwi::rust_std::ptr::Alignment

§

impl Freeze for ParseBoolError

§

impl Freeze for Utf8Error

§

impl Freeze for FromUtf8Error

§

impl Freeze for FromUtf16Error

§

impl Freeze for String

§

impl Freeze for RecvError

§

impl Freeze for BarrierWaitResult

§

impl Freeze for WaitTimeoutResult

§

impl Freeze for LocalWaker

§

impl Freeze for RawWaker

§

impl Freeze for RawWakerVTable

§

impl Freeze for Waker

§

impl Freeze for AccessError

§

impl Freeze for Builder

§

impl Freeze for Thread

§

impl Freeze for ThreadId

§

impl Freeze for Duration

§

impl Freeze for Instant

§

impl Freeze for SystemTime

§

impl Freeze for SystemTimeError

§

impl Freeze for TryFromFloatSecsError

§

impl Freeze for PhantomPinned

§

impl Freeze for Big8x3

§

impl Freeze for Big32x40

§

impl Freeze for Decoded

§

impl Freeze for FullDecoded

§

impl Freeze for Maybe

§

impl Freeze for NoRuntime

§

impl Freeze for Number

§

impl Freeze for Runtime

§

impl Freeze for Sign

§

impl<'a> !Freeze for Request<'a>

§

impl<'a> Freeze for AncillaryData<'a>

§

impl<'a> Freeze for Component<'a>

§

impl<'a> Freeze for Prefix<'a>

§

impl<'a> Freeze for Source<'a>

§

impl<'a> Freeze for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Freeze for PanicInfo<'a>

§

impl<'a> Freeze for PanicMessage<'a>

§

impl<'a> Freeze for SplitPaths<'a>

§

impl<'a> Freeze for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Freeze for Arguments<'a>

§

impl<'a> Freeze for Formatter<'a>

§

impl<'a> Freeze for BorrowedCursor<'a>

§

impl<'a> Freeze for IoSlice<'a>

§

impl<'a> Freeze for IoSliceMut<'a>

§

impl<'a> Freeze for StderrLock<'a>

§

impl<'a> Freeze for StdinLock<'a>

§

impl<'a> Freeze for StdoutLock<'a>

§

impl<'a> Freeze for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Freeze for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Freeze for Messages<'a>

§

impl<'a> Freeze for ScmCredentials<'a>

§

impl<'a> Freeze for ScmRights<'a>

§

impl<'a> Freeze for SocketAncillary<'a>

§

impl<'a> Freeze for Location<'a>

§

impl<'a> Freeze for PanicHookInfo<'a>

§

impl<'a> Freeze for Ancestors<'a>

§

impl<'a> Freeze for Components<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Display<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Freeze for PrefixComponent<'a>

§

impl<'a> Freeze for CommandArgs<'a>

§

impl<'a> Freeze for CommandEnvs<'a>

§

impl<'a> Freeze for EscapeAscii<'a>

§

impl<'a> Freeze for CharSearcher<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Freeze for CharIndices<'a>

§

impl<'a> Freeze for Chars<'a>

§

impl<'a> Freeze for EncodeUtf16<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Freeze for LinesAny<'a>

§

impl<'a> Freeze for SplitAsciiWhitespace<'a>

§

impl<'a> Freeze for SplitWhitespace<'a>

§

impl<'a> Freeze for Utf8Chunk<'a>

§

impl<'a> Freeze for Utf8Chunks<'a>

§

impl<'a> Freeze for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Freeze for Context<'a>

§

impl<'a> Freeze for ContextBuilder<'a>

§

impl<'a> Freeze for Formatted<'a>

§

impl<'a> Freeze for Part<'a>

§

impl<'a, 'b> Freeze for DebugList<'a, 'b>

§

impl<'a, 'b> Freeze for DebugMap<'a, 'b>

§

impl<'a, 'b> Freeze for DebugSet<'a, 'b>

§

impl<'a, 'b> Freeze for DebugStruct<'a, 'b>

§

impl<'a, 'b> Freeze for DebugTuple<'a, 'b>

§

impl<'a, 'b> Freeze for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Freeze for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Freeze for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Freeze for VaList<'a, 'f>

§

impl<'a, A> Freeze for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Freeze for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Freeze for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl !Freeze for Backtrace

§

impl !Freeze for AtomicBool

§

impl !Freeze for AtomicI8

§

impl !Freeze for AtomicI16

§

impl !Freeze for AtomicI32

§

impl !Freeze for AtomicI64

§

impl !Freeze for AtomicIsize

§

impl !Freeze for AtomicU8

§

impl !Freeze for AtomicU16

§

impl !Freeze for AtomicU32

§

impl !Freeze for AtomicU64

§

impl !Freeze for AtomicUsize

§

impl !Freeze for Barrier

§

impl !Freeze for Condvar

§

impl !Freeze for wiwi::rust_std::sync::Once

§

impl !Freeze for OnceState

§

impl Freeze for wiwi::encoding::hex::DecodeError

§

impl Freeze for wiwi::encoding::z85::DecodeError

§

impl Freeze for AsciiChar

§

impl Freeze for BacktraceStatus

§

impl Freeze for wiwi::rust_std::cmp::Ordering

§

impl Freeze for TryReserveErrorKind

§

impl Freeze for Infallible

§

impl Freeze for VarError

§

impl Freeze for c_void

§

impl Freeze for wiwi::rust_std::fmt::Alignment

§

impl Freeze for BasicBlock

§

impl Freeze for UnwindTerminateReason

§

impl Freeze for ErrorKind

§

impl Freeze for SeekFrom

§

impl Freeze for IpAddr

§

impl Freeze for Ipv6MulticastScope

§

impl Freeze for Shutdown

§

impl Freeze for wiwi::rust_std::net::SocketAddr

§

impl Freeze for FpCategory

§

impl Freeze for IntErrorKind

§

impl Freeze for AncillaryError

§

impl Freeze for BacktraceStyle

§

impl Freeze for SearchStep

§

impl Freeze for wiwi::rust_std::sync::atomic::Ordering

§

impl Freeze for RecvTimeoutError

§

impl Freeze for TryRecvError

§

impl Freeze for EncodedReprInfo

§

impl Freeze for UnsafeBufWriteGuard

§

impl Freeze for AllocError

§

impl Freeze for Global

§

impl Freeze for Layout

§

impl Freeze for LayoutError

§

impl Freeze for System

§

impl Freeze for TypeId

§

impl Freeze for CpuidResult

§

impl Freeze for __m128

§

impl Freeze for __m128bh

§

impl Freeze for __m128d

§

impl Freeze for __m128h

§

impl Freeze for __m128i

§

impl Freeze for __m256

§

impl Freeze for __m256bh

§

impl Freeze for __m256d

§

impl Freeze for __m256h

§

impl Freeze for __m256i

§

impl Freeze for __m512

§

impl Freeze for __m512bh

§

impl Freeze for __m512d

§

impl Freeze for __m512h

§

impl Freeze for __m512i

§

impl Freeze for bf16

§

impl Freeze for TryFromSliceError

§

impl Freeze for wiwi::rust_std::ascii::EscapeDefault

§

impl Freeze for BacktraceFrame

§

impl Freeze for BorrowError

§

impl Freeze for BorrowMutError

§

impl Freeze for CharTryFromError

§

impl Freeze for DecodeUtf16Error

§

impl Freeze for wiwi::rust_std::char::EscapeDebug

§

impl Freeze for wiwi::rust_std::char::EscapeDefault

§

impl Freeze for wiwi::rust_std::char::EscapeUnicode

§

impl Freeze for ParseCharError

§

impl Freeze for ToLowercase

§

impl Freeze for ToUppercase

§

impl Freeze for TryFromCharError

§

impl Freeze for UnorderedKeyError

§

impl Freeze for TryReserveError

§

impl Freeze for Args

§

impl Freeze for ArgsOs

§

impl Freeze for JoinPathsError

§

impl Freeze for Vars

§

impl Freeze for VarsOs

§

impl Freeze for CStr

§

impl Freeze for CString

§

impl Freeze for FromBytesUntilNulError

§

impl Freeze for FromBytesWithNulError

§

impl Freeze for FromVecWithNulError

§

impl Freeze for IntoStringError

§

impl Freeze for NulError

§

impl Freeze for OsStr

§

impl Freeze for OsString

§

impl Freeze for wiwi::rust_std::fmt::Error

§

impl Freeze for DirBuilder

§

impl Freeze for DirEntry

§

impl Freeze for File

§

impl Freeze for FileTimes

§

impl Freeze for FileType

§

impl Freeze for Metadata

§

impl Freeze for OpenOptions

§

impl Freeze for Permissions

§

impl Freeze for ReadDir

§

impl Freeze for DefaultHasher

§

impl Freeze for RandomState

§

impl Freeze for SipHasher

§

impl Freeze for ReturnToArg

§

impl Freeze for UnwindActionArg

§

impl Freeze for wiwi::rust_std::io::Empty

§

impl Freeze for wiwi::rust_std::io::Error

§

impl Freeze for wiwi::rust_std::io::Repeat

§

impl Freeze for Sink

§

impl Freeze for Stderr

§

impl Freeze for Stdin

§

impl Freeze for Stdout

§

impl Freeze for WriterPanicked

§

impl Freeze for Assume

§

impl Freeze for AddrParseError

§

impl Freeze for IntoIncoming

§

impl Freeze for Ipv4Addr

§

impl Freeze for Ipv6Addr

§

impl Freeze for SocketAddrV4

§

impl Freeze for SocketAddrV6

§

impl Freeze for TcpListener

§

impl Freeze for TcpStream

§

impl Freeze for UdpSocket

§

impl Freeze for ParseFloatError

§

impl Freeze for ParseIntError

§

impl Freeze for TryFromIntError

§

impl Freeze for RangeFull

§

impl Freeze for OwnedFd

§

impl Freeze for PidFd

§

impl Freeze for stat

§

impl Freeze for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Freeze for SocketCred

§

impl Freeze for UCred

§

impl Freeze for UnixDatagram

§

impl Freeze for UnixListener

§

impl Freeze for UnixStream

§

impl Freeze for Path

§

impl Freeze for PathBuf

§

impl Freeze for StripPrefixError

§

impl Freeze for PipeReader

§

impl Freeze for PipeWriter

§

impl Freeze for Child

§

impl Freeze for ChildStderr

§

impl Freeze for ChildStdin

§

impl Freeze for ChildStdout

§

impl Freeze for Command

§

impl Freeze for ExitCode

§

impl Freeze for ExitStatus

§

impl Freeze for ExitStatusError

§

impl Freeze for Output

§

impl Freeze for Stdio

§

impl Freeze for wiwi::rust_std::ptr::Alignment

§

impl Freeze for ParseBoolError

§

impl Freeze for Utf8Error

§

impl Freeze for FromUtf8Error

§

impl Freeze for FromUtf16Error

§

impl Freeze for String

§

impl Freeze for RecvError

§

impl Freeze for BarrierWaitResult

§

impl Freeze for WaitTimeoutResult

§

impl Freeze for LocalWaker

§

impl Freeze for RawWaker

§

impl Freeze for RawWakerVTable

§

impl Freeze for Waker

§

impl Freeze for AccessError

§

impl Freeze for Builder

§

impl Freeze for Thread

§

impl Freeze for ThreadId

§

impl Freeze for Duration

§

impl Freeze for Instant

§

impl Freeze for SystemTime

§

impl Freeze for SystemTimeError

§

impl Freeze for TryFromFloatSecsError

§

impl Freeze for PhantomPinned

§

impl Freeze for Big8x3

§

impl Freeze for Big32x40

§

impl Freeze for Decoded

§

impl Freeze for FullDecoded

§

impl Freeze for Maybe

§

impl Freeze for NoRuntime

§

impl Freeze for Number

§

impl Freeze for Runtime

§

impl Freeze for Sign

§

impl<'a> !Freeze for Request<'a>

§

impl<'a> Freeze for AncillaryData<'a>

§

impl<'a> Freeze for Component<'a>

§

impl<'a> Freeze for Prefix<'a>

§

impl<'a> Freeze for Source<'a>

§

impl<'a> Freeze for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Freeze for PanicInfo<'a>

§

impl<'a> Freeze for PanicMessage<'a>

§

impl<'a> Freeze for SplitPaths<'a>

§

impl<'a> Freeze for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Freeze for Arguments<'a>

§

impl<'a> Freeze for Formatter<'a>

§

impl<'a> Freeze for BorrowedCursor<'a>

§

impl<'a> Freeze for IoSlice<'a>

§

impl<'a> Freeze for IoSliceMut<'a>

§

impl<'a> Freeze for StderrLock<'a>

§

impl<'a> Freeze for StdinLock<'a>

§

impl<'a> Freeze for StdoutLock<'a>

§

impl<'a> Freeze for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Freeze for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Freeze for Messages<'a>

§

impl<'a> Freeze for ScmCredentials<'a>

§

impl<'a> Freeze for ScmRights<'a>

§

impl<'a> Freeze for SocketAncillary<'a>

§

impl<'a> Freeze for Location<'a>

§

impl<'a> Freeze for PanicHookInfo<'a>

§

impl<'a> Freeze for Ancestors<'a>

§

impl<'a> Freeze for Components<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Display<'a>

§

impl<'a> Freeze for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Freeze for PrefixComponent<'a>

§

impl<'a> Freeze for CommandArgs<'a>

§

impl<'a> Freeze for CommandEnvs<'a>

§

impl<'a> Freeze for EscapeAscii<'a>

§

impl<'a> Freeze for CharSearcher<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Freeze for CharIndices<'a>

§

impl<'a> Freeze for Chars<'a>

§

impl<'a> Freeze for EncodeUtf16<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Freeze for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Freeze for LinesAny<'a>

§

impl<'a> Freeze for SplitAsciiWhitespace<'a>

§

impl<'a> Freeze for SplitWhitespace<'a>

§

impl<'a> Freeze for Utf8Chunk<'a>

§

impl<'a> Freeze for Utf8Chunks<'a>

§

impl<'a> Freeze for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Freeze for Context<'a>

§

impl<'a> Freeze for ContextBuilder<'a>

§

impl<'a> Freeze for Formatted<'a>

§

impl<'a> Freeze for Part<'a>

§

impl<'a, 'b> Freeze for DebugList<'a, 'b>

§

impl<'a, 'b> Freeze for DebugMap<'a, 'b>

§

impl<'a, 'b> Freeze for DebugSet<'a, 'b>

§

impl<'a, 'b> Freeze for DebugStruct<'a, 'b>

§

impl<'a, 'b> Freeze for DebugTuple<'a, 'b>

§

impl<'a, 'b> Freeze for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Freeze for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Freeze for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Freeze for VaList<'a, 'f>

§

impl<'a, A> Freeze for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Freeze for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Freeze for Cow<'a, B>
where <B as ToOwned>::Owned: Freeze, B: ?Sized,

§

impl<'a, F> Freeze for CharPredicateSearcher<'a, F>
where F: Freeze,

§

impl<'a, I> Freeze for ByRefSized<'a, I>

§

impl<'a, I, A> Freeze for Splice<'a, I, A>
where @@ -71,7 +71,7 @@

§Safety

P: Freeze,

§

impl<'a, T, P> Freeze for SplitNMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Freeze for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Freeze for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Freeze for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Freeze for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Freeze for CharArraySearcher<'a, N>

§

impl<'b, T> Freeze for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Freeze for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Freeze for BorrowedBuf<'data>

§

impl<'f> Freeze for VaListImpl<'f>

§

impl<'fd> Freeze for BorrowedFd<'fd>

§

impl<'scope, 'env> Freeze for Scope<'scope, 'env>

§

impl<'scope, T> Freeze for ScopedJoinHandle<'scope, T>

§

impl<A> Freeze for IterRange<A>
where + T: ?Sized,

§

impl<'data> Freeze for BorrowedBuf<'data>

§

impl<'f> Freeze for VaListImpl<'f>

§

impl<'fd> Freeze for BorrowedFd<'fd>

§

impl<'h, const N: usize> Freeze for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Freeze for Scope<'scope, 'env>

§

impl<'scope, T> Freeze for ScopedJoinHandle<'scope, T>

§

impl<A> Freeze for IterRange<A>
where A: Freeze,

§

impl<A> Freeze for IterRangeFrom<A>
where A: Freeze,

§

impl<A> Freeze for IterRangeInclusive<A>
where A: Freeze,

§

impl<A> Freeze for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/marker/trait.Send.html b/wiwi/rust_std/marker/trait.Send.html index 6f49d3b8d..4311bb51b 100644 --- a/wiwi/rust_std/marker/trait.Send.html +++ b/wiwi/rust_std/marker/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for PhantomPinned

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for UnsafeBufWriteGuard

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for PhantomPinned

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for IterRange<A>
where A: Send,

§

impl<A> Send for IterRangeFrom<A>
where A: Send,

§

impl<A> Send for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/marker/trait.StructuralPartialEq.html b/wiwi/rust_std/marker/trait.StructuralPartialEq.html index e7ea30097..69b110d3b 100644 --- a/wiwi/rust_std/marker/trait.StructuralPartialEq.html +++ b/wiwi/rust_std/marker/trait.StructuralPartialEq.html @@ -11,7 +11,7 @@ a pattern match.

See also the structural match RFC, and issue 63438 which motivated migrating from an attribute-based design to this trait.

-

Implementors§

source§

impl StructuralPartialEq for AsciiChar

1.65.0 · source§

impl StructuralPartialEq for BacktraceStatus

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::cmp::Ordering

source§

impl StructuralPartialEq for TryReserveErrorKind

1.0.0 · source§

impl StructuralPartialEq for VarError

1.28.0 · source§

impl StructuralPartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl StructuralPartialEq for ErrorKind

1.0.0 · source§

impl StructuralPartialEq for SeekFrom

1.7.0 · source§

impl StructuralPartialEq for IpAddr

source§

impl StructuralPartialEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralPartialEq for Shutdown

1.0.0 · source§

impl StructuralPartialEq for SocketAddr

1.0.0 · source§

impl StructuralPartialEq for FpCategory

1.55.0 · source§

impl StructuralPartialEq for IntErrorKind

source§

impl StructuralPartialEq for BacktraceStyle

source§

impl StructuralPartialEq for SearchStep

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl StructuralPartialEq for RecvTimeoutError

1.0.0 · source§

impl StructuralPartialEq for TryRecvError

source§

impl StructuralPartialEq for _Unwind_Action

source§

impl StructuralPartialEq for _Unwind_Reason_Code

source§

impl StructuralPartialEq for bool

source§

impl StructuralPartialEq for char

source§

impl StructuralPartialEq for i8

source§

impl StructuralPartialEq for i16

source§

impl StructuralPartialEq for i32

source§

impl StructuralPartialEq for i64

source§

impl StructuralPartialEq for i128

source§

impl StructuralPartialEq for isize

source§

impl StructuralPartialEq for str

source§

impl StructuralPartialEq for u8

source§

impl StructuralPartialEq for u16

source§

impl StructuralPartialEq for u32

source§

impl StructuralPartialEq for u64

source§

impl StructuralPartialEq for u128

source§

impl StructuralPartialEq for ()

source§

impl StructuralPartialEq for usize

source§

impl StructuralPartialEq for AllocError

1.28.0 · source§

impl StructuralPartialEq for Layout

1.50.0 · source§

impl StructuralPartialEq for LayoutError

1.27.0 · source§

impl StructuralPartialEq for CpuidResult

1.34.0 · source§

impl StructuralPartialEq for CharTryFromError

1.9.0 · source§

impl StructuralPartialEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralPartialEq for ParseCharError

1.59.0 · source§

impl StructuralPartialEq for TryFromCharError

source§

impl StructuralPartialEq for UnorderedKeyError

1.57.0 · source§

impl StructuralPartialEq for TryReserveError

1.64.0 · source§

impl StructuralPartialEq for CStr

1.64.0 · source§

impl StructuralPartialEq for CString

1.69.0 · source§

impl StructuralPartialEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralPartialEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralPartialEq for FromVecWithNulError

1.64.0 · source§

impl StructuralPartialEq for IntoStringError

1.64.0 · source§

impl StructuralPartialEq for NulError

1.0.0 · source§

impl StructuralPartialEq for Error

1.1.0 · source§

impl StructuralPartialEq for FileType

1.0.0 · source§

impl StructuralPartialEq for Permissions

source§

impl StructuralPartialEq for Assume

1.0.0 · source§

impl StructuralPartialEq for AddrParseError

1.0.0 · source§

impl StructuralPartialEq for Ipv4Addr

1.0.0 · source§

impl StructuralPartialEq for Ipv6Addr

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV4

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV6

1.0.0 · source§

impl StructuralPartialEq for ParseFloatError

1.0.0 · source§

impl StructuralPartialEq for ParseIntError

1.34.0 · source§

impl StructuralPartialEq for TryFromIntError

1.0.0 · source§

impl StructuralPartialEq for RangeFull

source§

impl StructuralPartialEq for UCred

1.7.0 · source§

impl StructuralPartialEq for StripPrefixError

1.0.0 · source§

impl StructuralPartialEq for ExitStatus

source§

impl StructuralPartialEq for ExitStatusError

1.0.0 · source§

impl StructuralPartialEq for Output

source§

impl StructuralPartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl StructuralPartialEq for ParseBoolError

1.0.0 · source§

impl StructuralPartialEq for Utf8Error

1.0.0 · source§

impl StructuralPartialEq for FromUtf8Error

1.0.0 · source§

impl StructuralPartialEq for String

1.0.0 · source§

impl StructuralPartialEq for RecvError

1.5.0 · source§

impl StructuralPartialEq for WaitTimeoutResult

1.36.0 · source§

impl StructuralPartialEq for RawWaker

1.36.0 · source§

impl StructuralPartialEq for RawWakerVTable

1.26.0 · source§

impl StructuralPartialEq for AccessError

1.19.0 · source§

impl StructuralPartialEq for ThreadId

1.3.0 · source§

impl StructuralPartialEq for Duration

1.8.0 · source§

impl StructuralPartialEq for Instant

1.8.0 · source§

impl StructuralPartialEq for SystemTime

1.66.0 · source§

impl StructuralPartialEq for TryFromFloatSecsError

1.33.0 · source§

impl StructuralPartialEq for PhantomPinned

1.0.0 · source§

impl<'a> StructuralPartialEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralPartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> StructuralPartialEq for Location<'a>

1.79.0 · source§

impl<'a> StructuralPartialEq for Utf8Chunk<'a>

1.55.0 · source§

impl<B, C> StructuralPartialEq for ControlFlow<B, C>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::Range<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeFrom<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeInclusive<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::Range<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeFrom<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeInclusive<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for RangeTo<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for RangeToInclusive<Idx>

1.17.0 · source§

impl<T> StructuralPartialEq for Bound<T>

1.0.0 · source§

impl<T> StructuralPartialEq for Option<T>

1.0.0 · source§

impl<T> StructuralPartialEq for TrySendError<T>

1.36.0 · source§

impl<T> StructuralPartialEq for Poll<T>

source§

impl<T> StructuralPartialEq for &T
where +

Implementors§

source§

impl StructuralPartialEq for DecodeError

source§

impl StructuralPartialEq for AsciiChar

1.65.0 · source§

impl StructuralPartialEq for BacktraceStatus

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::cmp::Ordering

source§

impl StructuralPartialEq for TryReserveErrorKind

1.0.0 · source§

impl StructuralPartialEq for VarError

1.28.0 · source§

impl StructuralPartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl StructuralPartialEq for ErrorKind

1.0.0 · source§

impl StructuralPartialEq for SeekFrom

1.7.0 · source§

impl StructuralPartialEq for IpAddr

source§

impl StructuralPartialEq for Ipv6MulticastScope

1.0.0 · source§

impl StructuralPartialEq for Shutdown

1.0.0 · source§

impl StructuralPartialEq for SocketAddr

1.0.0 · source§

impl StructuralPartialEq for FpCategory

1.55.0 · source§

impl StructuralPartialEq for IntErrorKind

source§

impl StructuralPartialEq for BacktraceStyle

source§

impl StructuralPartialEq for SearchStep

1.0.0 · source§

impl StructuralPartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl StructuralPartialEq for RecvTimeoutError

1.0.0 · source§

impl StructuralPartialEq for TryRecvError

source§

impl StructuralPartialEq for _Unwind_Action

source§

impl StructuralPartialEq for _Unwind_Reason_Code

source§

impl StructuralPartialEq for bool

source§

impl StructuralPartialEq for char

source§

impl StructuralPartialEq for i8

source§

impl StructuralPartialEq for i16

source§

impl StructuralPartialEq for i32

source§

impl StructuralPartialEq for i64

source§

impl StructuralPartialEq for i128

source§

impl StructuralPartialEq for isize

source§

impl StructuralPartialEq for str

source§

impl StructuralPartialEq for u8

source§

impl StructuralPartialEq for u16

source§

impl StructuralPartialEq for u32

source§

impl StructuralPartialEq for u64

source§

impl StructuralPartialEq for u128

source§

impl StructuralPartialEq for ()

source§

impl StructuralPartialEq for usize

source§

impl StructuralPartialEq for AllocError

1.28.0 · source§

impl StructuralPartialEq for Layout

1.50.0 · source§

impl StructuralPartialEq for LayoutError

1.27.0 · source§

impl StructuralPartialEq for CpuidResult

1.34.0 · source§

impl StructuralPartialEq for CharTryFromError

1.9.0 · source§

impl StructuralPartialEq for DecodeUtf16Error

1.20.0 · source§

impl StructuralPartialEq for ParseCharError

1.59.0 · source§

impl StructuralPartialEq for TryFromCharError

source§

impl StructuralPartialEq for UnorderedKeyError

1.57.0 · source§

impl StructuralPartialEq for TryReserveError

1.64.0 · source§

impl StructuralPartialEq for CStr

1.64.0 · source§

impl StructuralPartialEq for CString

1.69.0 · source§

impl StructuralPartialEq for FromBytesUntilNulError

1.64.0 · source§

impl StructuralPartialEq for FromBytesWithNulError

1.64.0 · source§

impl StructuralPartialEq for FromVecWithNulError

1.64.0 · source§

impl StructuralPartialEq for IntoStringError

1.64.0 · source§

impl StructuralPartialEq for NulError

1.0.0 · source§

impl StructuralPartialEq for Error

1.1.0 · source§

impl StructuralPartialEq for FileType

1.0.0 · source§

impl StructuralPartialEq for Permissions

source§

impl StructuralPartialEq for Assume

1.0.0 · source§

impl StructuralPartialEq for AddrParseError

1.0.0 · source§

impl StructuralPartialEq for Ipv4Addr

1.0.0 · source§

impl StructuralPartialEq for Ipv6Addr

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV4

1.0.0 · source§

impl StructuralPartialEq for SocketAddrV6

1.0.0 · source§

impl StructuralPartialEq for ParseFloatError

1.0.0 · source§

impl StructuralPartialEq for ParseIntError

1.34.0 · source§

impl StructuralPartialEq for TryFromIntError

1.0.0 · source§

impl StructuralPartialEq for RangeFull

source§

impl StructuralPartialEq for UCred

1.7.0 · source§

impl StructuralPartialEq for StripPrefixError

1.0.0 · source§

impl StructuralPartialEq for ExitStatus

source§

impl StructuralPartialEq for ExitStatusError

1.0.0 · source§

impl StructuralPartialEq for Output

source§

impl StructuralPartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl StructuralPartialEq for ParseBoolError

1.0.0 · source§

impl StructuralPartialEq for Utf8Error

1.0.0 · source§

impl StructuralPartialEq for FromUtf8Error

1.0.0 · source§

impl StructuralPartialEq for String

1.0.0 · source§

impl StructuralPartialEq for RecvError

1.5.0 · source§

impl StructuralPartialEq for WaitTimeoutResult

1.36.0 · source§

impl StructuralPartialEq for RawWaker

1.36.0 · source§

impl StructuralPartialEq for RawWakerVTable

1.26.0 · source§

impl StructuralPartialEq for AccessError

1.19.0 · source§

impl StructuralPartialEq for ThreadId

1.3.0 · source§

impl StructuralPartialEq for Duration

1.8.0 · source§

impl StructuralPartialEq for Instant

1.8.0 · source§

impl StructuralPartialEq for SystemTime

1.66.0 · source§

impl StructuralPartialEq for TryFromFloatSecsError

1.33.0 · source§

impl StructuralPartialEq for PhantomPinned

1.0.0 · source§

impl<'a> StructuralPartialEq for Component<'a>

1.0.0 · source§

impl<'a> StructuralPartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> StructuralPartialEq for Location<'a>

1.79.0 · source§

impl<'a> StructuralPartialEq for Utf8Chunk<'a>

1.55.0 · source§

impl<B, C> StructuralPartialEq for ControlFlow<B, C>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::Range<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeFrom<Idx>

source§

impl<Idx> StructuralPartialEq for wiwi::rust_core::range::RangeInclusive<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::Range<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeFrom<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for wiwi::rust_std::ops::RangeInclusive<Idx>

1.0.0 · source§

impl<Idx> StructuralPartialEq for RangeTo<Idx>

1.26.0 · source§

impl<Idx> StructuralPartialEq for RangeToInclusive<Idx>

1.17.0 · source§

impl<T> StructuralPartialEq for Bound<T>

1.0.0 · source§

impl<T> StructuralPartialEq for Option<T>

1.0.0 · source§

impl<T> StructuralPartialEq for TrySendError<T>

1.36.0 · source§

impl<T> StructuralPartialEq for Poll<T>

source§

impl<T> StructuralPartialEq for &T
where T: ?Sized,

source§

impl<T> StructuralPartialEq for [T]

source§

impl<T> StructuralPartialEq for (T₁, T₂, …, Tₙ)

This trait is implemented for tuples up to twelve items long.

1.19.0 · source§

impl<T> StructuralPartialEq for Reverse<T>

1.0.0 · source§

impl<T> StructuralPartialEq for Cursor<T>

1.20.0 · source§

impl<T> StructuralPartialEq for ManuallyDrop<T>
where T: ?Sized,

source§

impl<T> StructuralPartialEq for NonZero<T>
where diff --git a/wiwi/rust_std/marker/trait.Sync.html b/wiwi/rust_std/marker/trait.Sync.html index 65d6dadb3..4018868c1 100644 --- a/wiwi/rust_std/marker/trait.Sync.html +++ b/wiwi/rust_std/marker/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for PhantomPinned

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for UnsafeBufWriteGuard

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for PhantomPinned

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for IterRange<A>
where A: Sync,

§

impl<A> Sync for IterRangeFrom<A>
where A: Sync,

§

impl<A> Sync for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/marker/trait.Unpin.html b/wiwi/rust_std/marker/trait.Unpin.html index a13d67ef2..7639d1fc9 100644 --- a/wiwi/rust_std/marker/trait.Unpin.html +++ b/wiwi/rust_std/marker/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeFrom<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeInclusive<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/panic/trait.RefUnwindSafe.html b/wiwi/rust_std/panic/trait.RefUnwindSafe.html index c369c3e6c..7b2ec2a4f 100644 --- a/wiwi/rust_std/panic/trait.RefUnwindSafe.html +++ b/wiwi/rust_std/panic/trait.RefUnwindSafe.html @@ -14,7 +14,7 @@ T: RefUnwindSafe + ?Sized, A: Allocator + UnwindSafe,

1.80.0 · source§

impl<T, F> RefUnwindSafe for LazyLock<T, F>

Auto implementors§

§

impl !RefUnwindSafe for wiwi::rust_std::io::Error

§

impl !RefUnwindSafe for Command

§

impl !RefUnwindSafe for OnceState

§

impl RefUnwindSafe for AsciiChar

§

impl RefUnwindSafe for BacktraceStatus

§

impl RefUnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl RefUnwindSafe for TryReserveErrorKind

§

impl RefUnwindSafe for Infallible

§

impl RefUnwindSafe for VarError

§

impl RefUnwindSafe for c_void

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl RefUnwindSafe for BasicBlock

§

impl RefUnwindSafe for UnwindTerminateReason

§

impl RefUnwindSafe for ErrorKind

§

impl RefUnwindSafe for SeekFrom

§

impl RefUnwindSafe for IpAddr

§

impl RefUnwindSafe for Ipv6MulticastScope

§

impl RefUnwindSafe for Shutdown

§

impl RefUnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl RefUnwindSafe for FpCategory

§

impl RefUnwindSafe for IntErrorKind

§

impl RefUnwindSafe for AncillaryError

§

impl RefUnwindSafe for SearchStep

§

impl RefUnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl RefUnwindSafe for RecvTimeoutError

§

impl RefUnwindSafe for TryRecvError

§

impl RefUnwindSafe for BacktraceStyle

§

impl RefUnwindSafe for AllocError

§

impl RefUnwindSafe for Global

§

impl RefUnwindSafe for Layout

§

impl RefUnwindSafe for LayoutError

§

impl RefUnwindSafe for System

§

impl RefUnwindSafe for TypeId

§

impl RefUnwindSafe for CpuidResult

§

impl RefUnwindSafe for __m128

§

impl RefUnwindSafe for __m128bh

§

impl RefUnwindSafe for __m128d

§

impl RefUnwindSafe for __m128h

§

impl RefUnwindSafe for __m128i

§

impl RefUnwindSafe for __m256

§

impl RefUnwindSafe for __m256bh

§

impl RefUnwindSafe for __m256d

§

impl RefUnwindSafe for __m256h

§

impl RefUnwindSafe for __m256i

§

impl RefUnwindSafe for __m512

§

impl RefUnwindSafe for __m512bh

§

impl RefUnwindSafe for __m512d

§

impl RefUnwindSafe for __m512h

§

impl RefUnwindSafe for __m512i

§

impl RefUnwindSafe for bf16

§

impl RefUnwindSafe for TryFromSliceError

§

impl RefUnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl RefUnwindSafe for Backtrace

§

impl RefUnwindSafe for BacktraceFrame

§

impl RefUnwindSafe for BorrowError

§

impl RefUnwindSafe for BorrowMutError

§

impl RefUnwindSafe for CharTryFromError

§

impl RefUnwindSafe for DecodeUtf16Error

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl RefUnwindSafe for ParseCharError

§

impl RefUnwindSafe for ToLowercase

§

impl RefUnwindSafe for ToUppercase

§

impl RefUnwindSafe for TryFromCharError

§

impl RefUnwindSafe for UnorderedKeyError

§

impl RefUnwindSafe for TryReserveError

§

impl RefUnwindSafe for Args

§

impl RefUnwindSafe for ArgsOs

§

impl RefUnwindSafe for JoinPathsError

§

impl RefUnwindSafe for Vars

§

impl RefUnwindSafe for VarsOs

§

impl RefUnwindSafe for CStr

§

impl RefUnwindSafe for CString

§

impl RefUnwindSafe for FromBytesUntilNulError

§

impl RefUnwindSafe for FromBytesWithNulError

§

impl RefUnwindSafe for FromVecWithNulError

§

impl RefUnwindSafe for IntoStringError

§

impl RefUnwindSafe for NulError

§

impl RefUnwindSafe for OsStr

§

impl RefUnwindSafe for OsString

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Error

§

impl RefUnwindSafe for DirBuilder

§

impl RefUnwindSafe for DirEntry

§

impl RefUnwindSafe for File

§

impl RefUnwindSafe for FileTimes

§

impl RefUnwindSafe for FileType

§

impl RefUnwindSafe for Metadata

§

impl RefUnwindSafe for OpenOptions

§

impl RefUnwindSafe for Permissions

§

impl RefUnwindSafe for ReadDir

§

impl RefUnwindSafe for DefaultHasher

§

impl RefUnwindSafe for RandomState

§

impl RefUnwindSafe for SipHasher

§

impl RefUnwindSafe for ReturnToArg

§

impl RefUnwindSafe for UnwindActionArg

§

impl RefUnwindSafe for wiwi::rust_std::io::Empty

§

impl RefUnwindSafe for wiwi::rust_std::io::Repeat

§

impl RefUnwindSafe for Sink

§

impl RefUnwindSafe for Stdin

§

impl RefUnwindSafe for WriterPanicked

§

impl RefUnwindSafe for PhantomPinned

§

impl RefUnwindSafe for Assume

§

impl RefUnwindSafe for AddrParseError

§

impl RefUnwindSafe for IntoIncoming

§

impl RefUnwindSafe for Ipv4Addr

§

impl RefUnwindSafe for Ipv6Addr

§

impl RefUnwindSafe for SocketAddrV4

§

impl RefUnwindSafe for SocketAddrV6

§

impl RefUnwindSafe for TcpListener

§

impl RefUnwindSafe for TcpStream

§

impl RefUnwindSafe for UdpSocket

§

impl RefUnwindSafe for ParseFloatError

§

impl RefUnwindSafe for ParseIntError

§

impl RefUnwindSafe for TryFromIntError

§

impl RefUnwindSafe for RangeFull

§

impl RefUnwindSafe for OwnedFd

§

impl RefUnwindSafe for PidFd

§

impl RefUnwindSafe for stat

§

impl RefUnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl RefUnwindSafe for SocketCred

§

impl RefUnwindSafe for UCred

§

impl RefUnwindSafe for UnixDatagram

§

impl RefUnwindSafe for UnixListener

§

impl RefUnwindSafe for UnixStream

§

impl RefUnwindSafe for Path

§

impl RefUnwindSafe for PathBuf

§

impl RefUnwindSafe for StripPrefixError

§

impl RefUnwindSafe for PipeReader

§

impl RefUnwindSafe for PipeWriter

§

impl RefUnwindSafe for Child

§

impl RefUnwindSafe for ChildStderr

§

impl RefUnwindSafe for ChildStdin

§

impl RefUnwindSafe for ChildStdout

§

impl RefUnwindSafe for ExitCode

§

impl RefUnwindSafe for ExitStatus

§

impl RefUnwindSafe for ExitStatusError

§

impl RefUnwindSafe for Output

§

impl RefUnwindSafe for Stdio

§

impl RefUnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl RefUnwindSafe for ParseBoolError

§

impl RefUnwindSafe for Utf8Error

§

impl RefUnwindSafe for FromUtf8Error

§

impl RefUnwindSafe for FromUtf16Error

§

impl RefUnwindSafe for String

§

impl RefUnwindSafe for RecvError

§

impl RefUnwindSafe for Barrier

§

impl RefUnwindSafe for BarrierWaitResult

§

impl RefUnwindSafe for WaitTimeoutResult

§

impl RefUnwindSafe for LocalWaker

§

impl RefUnwindSafe for RawWaker

§

impl RefUnwindSafe for RawWakerVTable

§

impl RefUnwindSafe for Waker

§

impl RefUnwindSafe for AccessError

§

impl RefUnwindSafe for Builder

§

impl RefUnwindSafe for Thread

§

impl RefUnwindSafe for ThreadId

§

impl RefUnwindSafe for Duration

§

impl RefUnwindSafe for Instant

§

impl RefUnwindSafe for SystemTime

§

impl RefUnwindSafe for SystemTimeError

§

impl RefUnwindSafe for TryFromFloatSecsError

§

impl RefUnwindSafe for Big8x3

§

impl RefUnwindSafe for Big32x40

§

impl RefUnwindSafe for Decoded

§

impl RefUnwindSafe for FullDecoded

§

impl RefUnwindSafe for Maybe

§

impl RefUnwindSafe for NoRuntime

§

impl RefUnwindSafe for Number

§

impl RefUnwindSafe for Runtime

§

impl RefUnwindSafe for Sign

§

impl<'a> !RefUnwindSafe for Source<'a>

§

impl<'a> !RefUnwindSafe for Request<'a>

§

impl<'a> !RefUnwindSafe for Formatter<'a>

§

impl<'a> !RefUnwindSafe for ContextBuilder<'a>

§

impl<'a> !RefUnwindSafe for PanicHookInfo<'a>

§

impl<'a> RefUnwindSafe for AncillaryData<'a>

§

impl<'a> RefUnwindSafe for Component<'a>

§

impl<'a> RefUnwindSafe for Prefix<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> RefUnwindSafe for PanicInfo<'a>

§

impl<'a> RefUnwindSafe for PanicMessage<'a>

§

impl<'a> RefUnwindSafe for SplitPaths<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> RefUnwindSafe for Arguments<'a>

§

impl<'a> RefUnwindSafe for BorrowedCursor<'a>

§

impl<'a> RefUnwindSafe for IoSlice<'a>

§

impl<'a> RefUnwindSafe for IoSliceMut<'a>

§

impl<'a> RefUnwindSafe for StdinLock<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for Messages<'a>

§

impl<'a> RefUnwindSafe for ScmCredentials<'a>

§

impl<'a> RefUnwindSafe for ScmRights<'a>

§

impl<'a> RefUnwindSafe for SocketAncillary<'a>

§

impl<'a> RefUnwindSafe for Ancestors<'a>

§

impl<'a> RefUnwindSafe for Components<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> RefUnwindSafe for PrefixComponent<'a>

§

impl<'a> RefUnwindSafe for CommandArgs<'a>

§

impl<'a> RefUnwindSafe for CommandEnvs<'a>

§

impl<'a> RefUnwindSafe for EscapeAscii<'a>

§

impl<'a> RefUnwindSafe for CharSearcher<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> RefUnwindSafe for CharIndices<'a>

§

impl<'a> RefUnwindSafe for Chars<'a>

§

impl<'a> RefUnwindSafe for EncodeUtf16<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> RefUnwindSafe for LinesAny<'a>

§

impl<'a> RefUnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> RefUnwindSafe for SplitWhitespace<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunk<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunks<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> RefUnwindSafe for Context<'a>

§

impl<'a> RefUnwindSafe for Location<'a>

§

impl<'a> RefUnwindSafe for Formatted<'a>

§

impl<'a> RefUnwindSafe for Part<'a>

§

impl<'a, 'b> !RefUnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> RefUnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> RefUnwindSafe for VaList<'a, 'f>

§

impl<'a, A> RefUnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where + F: UnwindSafe,

Auto implementors§

§

impl !RefUnwindSafe for wiwi::rust_std::io::Error

§

impl !RefUnwindSafe for Command

§

impl !RefUnwindSafe for OnceState

§

impl RefUnwindSafe for wiwi::encoding::hex::DecodeError

§

impl RefUnwindSafe for wiwi::encoding::z85::DecodeError

§

impl RefUnwindSafe for AsciiChar

§

impl RefUnwindSafe for BacktraceStatus

§

impl RefUnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl RefUnwindSafe for TryReserveErrorKind

§

impl RefUnwindSafe for Infallible

§

impl RefUnwindSafe for VarError

§

impl RefUnwindSafe for c_void

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl RefUnwindSafe for BasicBlock

§

impl RefUnwindSafe for UnwindTerminateReason

§

impl RefUnwindSafe for ErrorKind

§

impl RefUnwindSafe for SeekFrom

§

impl RefUnwindSafe for IpAddr

§

impl RefUnwindSafe for Ipv6MulticastScope

§

impl RefUnwindSafe for Shutdown

§

impl RefUnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl RefUnwindSafe for FpCategory

§

impl RefUnwindSafe for IntErrorKind

§

impl RefUnwindSafe for AncillaryError

§

impl RefUnwindSafe for SearchStep

§

impl RefUnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl RefUnwindSafe for RecvTimeoutError

§

impl RefUnwindSafe for TryRecvError

§

impl RefUnwindSafe for BacktraceStyle

§

impl RefUnwindSafe for EncodedReprInfo

§

impl RefUnwindSafe for UnsafeBufWriteGuard

§

impl RefUnwindSafe for AllocError

§

impl RefUnwindSafe for Global

§

impl RefUnwindSafe for Layout

§

impl RefUnwindSafe for LayoutError

§

impl RefUnwindSafe for System

§

impl RefUnwindSafe for TypeId

§

impl RefUnwindSafe for CpuidResult

§

impl RefUnwindSafe for __m128

§

impl RefUnwindSafe for __m128bh

§

impl RefUnwindSafe for __m128d

§

impl RefUnwindSafe for __m128h

§

impl RefUnwindSafe for __m128i

§

impl RefUnwindSafe for __m256

§

impl RefUnwindSafe for __m256bh

§

impl RefUnwindSafe for __m256d

§

impl RefUnwindSafe for __m256h

§

impl RefUnwindSafe for __m256i

§

impl RefUnwindSafe for __m512

§

impl RefUnwindSafe for __m512bh

§

impl RefUnwindSafe for __m512d

§

impl RefUnwindSafe for __m512h

§

impl RefUnwindSafe for __m512i

§

impl RefUnwindSafe for bf16

§

impl RefUnwindSafe for TryFromSliceError

§

impl RefUnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl RefUnwindSafe for Backtrace

§

impl RefUnwindSafe for BacktraceFrame

§

impl RefUnwindSafe for BorrowError

§

impl RefUnwindSafe for BorrowMutError

§

impl RefUnwindSafe for CharTryFromError

§

impl RefUnwindSafe for DecodeUtf16Error

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl RefUnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl RefUnwindSafe for ParseCharError

§

impl RefUnwindSafe for ToLowercase

§

impl RefUnwindSafe for ToUppercase

§

impl RefUnwindSafe for TryFromCharError

§

impl RefUnwindSafe for UnorderedKeyError

§

impl RefUnwindSafe for TryReserveError

§

impl RefUnwindSafe for Args

§

impl RefUnwindSafe for ArgsOs

§

impl RefUnwindSafe for JoinPathsError

§

impl RefUnwindSafe for Vars

§

impl RefUnwindSafe for VarsOs

§

impl RefUnwindSafe for CStr

§

impl RefUnwindSafe for CString

§

impl RefUnwindSafe for FromBytesUntilNulError

§

impl RefUnwindSafe for FromBytesWithNulError

§

impl RefUnwindSafe for FromVecWithNulError

§

impl RefUnwindSafe for IntoStringError

§

impl RefUnwindSafe for NulError

§

impl RefUnwindSafe for OsStr

§

impl RefUnwindSafe for OsString

§

impl RefUnwindSafe for wiwi::rust_std::fmt::Error

§

impl RefUnwindSafe for DirBuilder

§

impl RefUnwindSafe for DirEntry

§

impl RefUnwindSafe for File

§

impl RefUnwindSafe for FileTimes

§

impl RefUnwindSafe for FileType

§

impl RefUnwindSafe for Metadata

§

impl RefUnwindSafe for OpenOptions

§

impl RefUnwindSafe for Permissions

§

impl RefUnwindSafe for ReadDir

§

impl RefUnwindSafe for DefaultHasher

§

impl RefUnwindSafe for RandomState

§

impl RefUnwindSafe for SipHasher

§

impl RefUnwindSafe for ReturnToArg

§

impl RefUnwindSafe for UnwindActionArg

§

impl RefUnwindSafe for wiwi::rust_std::io::Empty

§

impl RefUnwindSafe for wiwi::rust_std::io::Repeat

§

impl RefUnwindSafe for Sink

§

impl RefUnwindSafe for Stdin

§

impl RefUnwindSafe for WriterPanicked

§

impl RefUnwindSafe for PhantomPinned

§

impl RefUnwindSafe for Assume

§

impl RefUnwindSafe for AddrParseError

§

impl RefUnwindSafe for IntoIncoming

§

impl RefUnwindSafe for Ipv4Addr

§

impl RefUnwindSafe for Ipv6Addr

§

impl RefUnwindSafe for SocketAddrV4

§

impl RefUnwindSafe for SocketAddrV6

§

impl RefUnwindSafe for TcpListener

§

impl RefUnwindSafe for TcpStream

§

impl RefUnwindSafe for UdpSocket

§

impl RefUnwindSafe for ParseFloatError

§

impl RefUnwindSafe for ParseIntError

§

impl RefUnwindSafe for TryFromIntError

§

impl RefUnwindSafe for RangeFull

§

impl RefUnwindSafe for OwnedFd

§

impl RefUnwindSafe for PidFd

§

impl RefUnwindSafe for stat

§

impl RefUnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl RefUnwindSafe for SocketCred

§

impl RefUnwindSafe for UCred

§

impl RefUnwindSafe for UnixDatagram

§

impl RefUnwindSafe for UnixListener

§

impl RefUnwindSafe for UnixStream

§

impl RefUnwindSafe for Path

§

impl RefUnwindSafe for PathBuf

§

impl RefUnwindSafe for StripPrefixError

§

impl RefUnwindSafe for PipeReader

§

impl RefUnwindSafe for PipeWriter

§

impl RefUnwindSafe for Child

§

impl RefUnwindSafe for ChildStderr

§

impl RefUnwindSafe for ChildStdin

§

impl RefUnwindSafe for ChildStdout

§

impl RefUnwindSafe for ExitCode

§

impl RefUnwindSafe for ExitStatus

§

impl RefUnwindSafe for ExitStatusError

§

impl RefUnwindSafe for Output

§

impl RefUnwindSafe for Stdio

§

impl RefUnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl RefUnwindSafe for ParseBoolError

§

impl RefUnwindSafe for Utf8Error

§

impl RefUnwindSafe for FromUtf8Error

§

impl RefUnwindSafe for FromUtf16Error

§

impl RefUnwindSafe for String

§

impl RefUnwindSafe for RecvError

§

impl RefUnwindSafe for Barrier

§

impl RefUnwindSafe for BarrierWaitResult

§

impl RefUnwindSafe for WaitTimeoutResult

§

impl RefUnwindSafe for LocalWaker

§

impl RefUnwindSafe for RawWaker

§

impl RefUnwindSafe for RawWakerVTable

§

impl RefUnwindSafe for Waker

§

impl RefUnwindSafe for AccessError

§

impl RefUnwindSafe for Builder

§

impl RefUnwindSafe for Thread

§

impl RefUnwindSafe for ThreadId

§

impl RefUnwindSafe for Duration

§

impl RefUnwindSafe for Instant

§

impl RefUnwindSafe for SystemTime

§

impl RefUnwindSafe for SystemTimeError

§

impl RefUnwindSafe for TryFromFloatSecsError

§

impl RefUnwindSafe for Big8x3

§

impl RefUnwindSafe for Big32x40

§

impl RefUnwindSafe for Decoded

§

impl RefUnwindSafe for FullDecoded

§

impl RefUnwindSafe for Maybe

§

impl RefUnwindSafe for NoRuntime

§

impl RefUnwindSafe for Number

§

impl RefUnwindSafe for Runtime

§

impl RefUnwindSafe for Sign

§

impl<'a> !RefUnwindSafe for Source<'a>

§

impl<'a> !RefUnwindSafe for Request<'a>

§

impl<'a> !RefUnwindSafe for Formatter<'a>

§

impl<'a> !RefUnwindSafe for ContextBuilder<'a>

§

impl<'a> !RefUnwindSafe for PanicHookInfo<'a>

§

impl<'a> RefUnwindSafe for AncillaryData<'a>

§

impl<'a> RefUnwindSafe for Component<'a>

§

impl<'a> RefUnwindSafe for Prefix<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> RefUnwindSafe for PanicInfo<'a>

§

impl<'a> RefUnwindSafe for PanicMessage<'a>

§

impl<'a> RefUnwindSafe for SplitPaths<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> RefUnwindSafe for Arguments<'a>

§

impl<'a> RefUnwindSafe for BorrowedCursor<'a>

§

impl<'a> RefUnwindSafe for IoSlice<'a>

§

impl<'a> RefUnwindSafe for IoSliceMut<'a>

§

impl<'a> RefUnwindSafe for StdinLock<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> RefUnwindSafe for Messages<'a>

§

impl<'a> RefUnwindSafe for ScmCredentials<'a>

§

impl<'a> RefUnwindSafe for ScmRights<'a>

§

impl<'a> RefUnwindSafe for SocketAncillary<'a>

§

impl<'a> RefUnwindSafe for Ancestors<'a>

§

impl<'a> RefUnwindSafe for Components<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> RefUnwindSafe for PrefixComponent<'a>

§

impl<'a> RefUnwindSafe for CommandArgs<'a>

§

impl<'a> RefUnwindSafe for CommandEnvs<'a>

§

impl<'a> RefUnwindSafe for EscapeAscii<'a>

§

impl<'a> RefUnwindSafe for CharSearcher<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> RefUnwindSafe for CharIndices<'a>

§

impl<'a> RefUnwindSafe for Chars<'a>

§

impl<'a> RefUnwindSafe for EncodeUtf16<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> RefUnwindSafe for LinesAny<'a>

§

impl<'a> RefUnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> RefUnwindSafe for SplitWhitespace<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunk<'a>

§

impl<'a> RefUnwindSafe for Utf8Chunks<'a>

§

impl<'a> RefUnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> RefUnwindSafe for Context<'a>

§

impl<'a> RefUnwindSafe for Location<'a>

§

impl<'a> RefUnwindSafe for Formatted<'a>

§

impl<'a> RefUnwindSafe for Part<'a>

§

impl<'a, 'b> !RefUnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !RefUnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> RefUnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> RefUnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> RefUnwindSafe for VaList<'a, 'f>

§

impl<'a, A> RefUnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where A: RefUnwindSafe,

§

impl<'a, A> RefUnwindSafe for wiwi::rust_std::option::IterMut<'a, A>
where A: RefUnwindSafe,

§

impl<'a, B> RefUnwindSafe for Cow<'a, B>
where <B as ToOwned>::Owned: RefUnwindSafe, @@ -210,7 +210,7 @@ T: RefUnwindSafe,

§

impl<'a, T, const N: usize> RefUnwindSafe for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> RefUnwindSafe for ArrayChunksMut<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> RefUnwindSafe for ArrayWindows<'a, T, N>
where - T: RefUnwindSafe,

§

impl<'a, const N: usize> RefUnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !RefUnwindSafe for Ref<'b, T>

§

impl<'b, T> !RefUnwindSafe for RefMut<'b, T>

§

impl<'data> RefUnwindSafe for BorrowedBuf<'data>

§

impl<'f> RefUnwindSafe for VaListImpl<'f>

§

impl<'fd> RefUnwindSafe for BorrowedFd<'fd>

§

impl<'scope, 'env> RefUnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !RefUnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> RefUnwindSafe for IterRange<A>
where + T: RefUnwindSafe,

§

impl<'a, const N: usize> RefUnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !RefUnwindSafe for Ref<'b, T>

§

impl<'b, T> !RefUnwindSafe for RefMut<'b, T>

§

impl<'data> RefUnwindSafe for BorrowedBuf<'data>

§

impl<'f> RefUnwindSafe for VaListImpl<'f>

§

impl<'fd> RefUnwindSafe for BorrowedFd<'fd>

§

impl<'h, const N: usize> RefUnwindSafe for ChunkedSlice<'h, N>

§

impl<'scope, 'env> RefUnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !RefUnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> RefUnwindSafe for IterRange<A>
where A: RefUnwindSafe,

§

impl<A> RefUnwindSafe for IterRangeFrom<A>
where A: RefUnwindSafe,

§

impl<A> RefUnwindSafe for IterRangeInclusive<A>
where A: RefUnwindSafe,

§

impl<A> RefUnwindSafe for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/panic/trait.UnwindSafe.html b/wiwi/rust_std/panic/trait.UnwindSafe.html index 94df9a3da..e0a497d7c 100644 --- a/wiwi/rust_std/panic/trait.UnwindSafe.html +++ b/wiwi/rust_std/panic/trait.UnwindSafe.html @@ -76,7 +76,7 @@

RefUnwindSafe + ?Sized, A: Allocator + UnwindSafe,

1.80.0 · source§

impl<T, F> UnwindSafe for LazyLock<T, F>
where T: UnwindSafe, - F: UnwindSafe,

Auto implementors§

§

impl !UnwindSafe for wiwi::rust_std::io::Error

§

impl !UnwindSafe for Command

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl UnwindSafe for TryReserveErrorKind

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for VarError

§

impl UnwindSafe for c_void

§

impl UnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for ErrorKind

§

impl UnwindSafe for SeekFrom

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for Shutdown

§

impl UnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl UnwindSafe for RecvTimeoutError

§

impl UnwindSafe for TryRecvError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Global

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for System

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128h

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256h

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512h

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for bf16

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl UnwindSafe for Backtrace

§

impl UnwindSafe for BacktraceFrame

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl UnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for UnorderedKeyError

§

impl UnwindSafe for TryReserveError

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for CStr

§

impl UnwindSafe for CString

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for FromVecWithNulError

§

impl UnwindSafe for IntoStringError

§

impl UnwindSafe for NulError

§

impl UnwindSafe for OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for wiwi::rust_std::fmt::Error

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for DirEntry

§

impl UnwindSafe for File

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for FileType

§

impl UnwindSafe for Metadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for ReadDir

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for RandomState

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

impl UnwindSafe for wiwi::rust_std::io::Empty

§

impl UnwindSafe for wiwi::rust_std::io::Repeat

§

impl UnwindSafe for Sink

§

impl UnwindSafe for Stdin

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for UdpSocket

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for OwnedFd

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for stat

§

impl UnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for UCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for PipeReader

§

impl UnwindSafe for PipeWriter

§

impl UnwindSafe for Child

§

impl UnwindSafe for ChildStderr

§

impl UnwindSafe for ChildStdin

§

impl UnwindSafe for ChildStdout

§

impl UnwindSafe for ExitCode

§

impl UnwindSafe for ExitStatus

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for Output

§

impl UnwindSafe for Stdio

§

impl UnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for FromUtf8Error

§

impl UnwindSafe for FromUtf16Error

§

impl UnwindSafe for String

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for RecvError

§

impl UnwindSafe for Barrier

§

impl UnwindSafe for BarrierWaitResult

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for LocalWaker

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for Builder

§

impl UnwindSafe for Thread

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for Duration

§

impl UnwindSafe for Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for SystemTimeError

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Maybe

§

impl UnwindSafe for NoRuntime

§

impl UnwindSafe for Number

§

impl UnwindSafe for Runtime

§

impl UnwindSafe for Sign

§

impl<'a> !UnwindSafe for Source<'a>

§

impl<'a> !UnwindSafe for Request<'a>

§

impl<'a> !UnwindSafe for Formatter<'a>

§

impl<'a> !UnwindSafe for BorrowedCursor<'a>

§

impl<'a> !UnwindSafe for IoSliceMut<'a>

§

impl<'a> !UnwindSafe for SocketAncillary<'a>

§

impl<'a> !UnwindSafe for ContextBuilder<'a>

§

impl<'a> !UnwindSafe for PanicHookInfo<'a>

§

impl<'a> UnwindSafe for AncillaryData<'a>

§

impl<'a> UnwindSafe for Component<'a>

§

impl<'a> UnwindSafe for Prefix<'a>

§

impl<'a> UnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> UnwindSafe for PanicInfo<'a>

§

impl<'a> UnwindSafe for PanicMessage<'a>

§

impl<'a> UnwindSafe for SplitPaths<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> UnwindSafe for Arguments<'a>

§

impl<'a> UnwindSafe for IoSlice<'a>

§

impl<'a> UnwindSafe for StdinLock<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> UnwindSafe for Messages<'a>

§

impl<'a> UnwindSafe for ScmCredentials<'a>

§

impl<'a> UnwindSafe for ScmRights<'a>

§

impl<'a> UnwindSafe for Ancestors<'a>

§

impl<'a> UnwindSafe for Components<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> UnwindSafe for PrefixComponent<'a>

§

impl<'a> UnwindSafe for CommandArgs<'a>

§

impl<'a> UnwindSafe for CommandEnvs<'a>

§

impl<'a> UnwindSafe for EscapeAscii<'a>

§

impl<'a> UnwindSafe for CharSearcher<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> UnwindSafe for LinesAny<'a>

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

impl<'a> UnwindSafe for Utf8Chunk<'a>

§

impl<'a> UnwindSafe for Utf8Chunks<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> UnwindSafe for Context<'a>

§

impl<'a> UnwindSafe for Location<'a>

§

impl<'a> UnwindSafe for Formatted<'a>

§

impl<'a> UnwindSafe for Part<'a>

§

impl<'a, 'b> !UnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> UnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> UnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> UnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>

§

impl<'a, A> !UnwindSafe for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where + F: UnwindSafe,

Auto implementors§

§

impl !UnwindSafe for wiwi::rust_std::io::Error

§

impl !UnwindSafe for Command

§

impl UnwindSafe for wiwi::encoding::hex::DecodeError

§

impl UnwindSafe for wiwi::encoding::z85::DecodeError

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for BacktraceStatus

§

impl UnwindSafe for wiwi::rust_std::cmp::Ordering

§

impl UnwindSafe for TryReserveErrorKind

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for VarError

§

impl UnwindSafe for c_void

§

impl UnwindSafe for wiwi::rust_std::fmt::Alignment

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for ErrorKind

§

impl UnwindSafe for SeekFrom

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for Shutdown

§

impl UnwindSafe for wiwi::rust_std::net::SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for AncillaryError

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for wiwi::rust_std::sync::atomic::Ordering

§

impl UnwindSafe for RecvTimeoutError

§

impl UnwindSafe for TryRecvError

§

impl UnwindSafe for BacktraceStyle

§

impl UnwindSafe for EncodedReprInfo

§

impl UnwindSafe for UnsafeBufWriteGuard

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Global

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for System

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128h

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256h

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512h

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for bf16

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for wiwi::rust_std::ascii::EscapeDefault

§

impl UnwindSafe for Backtrace

§

impl UnwindSafe for BacktraceFrame

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDebug

§

impl UnwindSafe for wiwi::rust_std::char::EscapeDefault

§

impl UnwindSafe for wiwi::rust_std::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for UnorderedKeyError

§

impl UnwindSafe for TryReserveError

§

impl UnwindSafe for Args

§

impl UnwindSafe for ArgsOs

§

impl UnwindSafe for JoinPathsError

§

impl UnwindSafe for Vars

§

impl UnwindSafe for VarsOs

§

impl UnwindSafe for CStr

§

impl UnwindSafe for CString

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for FromVecWithNulError

§

impl UnwindSafe for IntoStringError

§

impl UnwindSafe for NulError

§

impl UnwindSafe for OsStr

§

impl UnwindSafe for OsString

§

impl UnwindSafe for wiwi::rust_std::fmt::Error

§

impl UnwindSafe for DirBuilder

§

impl UnwindSafe for DirEntry

§

impl UnwindSafe for File

§

impl UnwindSafe for FileTimes

§

impl UnwindSafe for FileType

§

impl UnwindSafe for Metadata

§

impl UnwindSafe for OpenOptions

§

impl UnwindSafe for Permissions

§

impl UnwindSafe for ReadDir

§

impl UnwindSafe for DefaultHasher

§

impl UnwindSafe for RandomState

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

impl UnwindSafe for wiwi::rust_std::io::Empty

§

impl UnwindSafe for wiwi::rust_std::io::Repeat

§

impl UnwindSafe for Sink

§

impl UnwindSafe for Stdin

§

impl UnwindSafe for WriterPanicked

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for IntoIncoming

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for TcpListener

§

impl UnwindSafe for TcpStream

§

impl UnwindSafe for UdpSocket

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for OwnedFd

§

impl UnwindSafe for PidFd

§

impl UnwindSafe for stat

§

impl UnwindSafe for wiwi::rust_std::os::unix::net::SocketAddr

§

impl UnwindSafe for SocketCred

§

impl UnwindSafe for UCred

§

impl UnwindSafe for UnixDatagram

§

impl UnwindSafe for UnixListener

§

impl UnwindSafe for UnixStream

§

impl UnwindSafe for Path

§

impl UnwindSafe for PathBuf

§

impl UnwindSafe for StripPrefixError

§

impl UnwindSafe for PipeReader

§

impl UnwindSafe for PipeWriter

§

impl UnwindSafe for Child

§

impl UnwindSafe for ChildStderr

§

impl UnwindSafe for ChildStdin

§

impl UnwindSafe for ChildStdout

§

impl UnwindSafe for ExitCode

§

impl UnwindSafe for ExitStatus

§

impl UnwindSafe for ExitStatusError

§

impl UnwindSafe for Output

§

impl UnwindSafe for Stdio

§

impl UnwindSafe for wiwi::rust_std::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for FromUtf8Error

§

impl UnwindSafe for FromUtf16Error

§

impl UnwindSafe for String

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for RecvError

§

impl UnwindSafe for Barrier

§

impl UnwindSafe for BarrierWaitResult

§

impl UnwindSafe for OnceState

§

impl UnwindSafe for WaitTimeoutResult

§

impl UnwindSafe for LocalWaker

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for AccessError

§

impl UnwindSafe for Builder

§

impl UnwindSafe for Thread

§

impl UnwindSafe for ThreadId

§

impl UnwindSafe for Duration

§

impl UnwindSafe for Instant

§

impl UnwindSafe for SystemTime

§

impl UnwindSafe for SystemTimeError

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for Maybe

§

impl UnwindSafe for NoRuntime

§

impl UnwindSafe for Number

§

impl UnwindSafe for Runtime

§

impl UnwindSafe for Sign

§

impl<'a> !UnwindSafe for Source<'a>

§

impl<'a> !UnwindSafe for Request<'a>

§

impl<'a> !UnwindSafe for Formatter<'a>

§

impl<'a> !UnwindSafe for BorrowedCursor<'a>

§

impl<'a> !UnwindSafe for IoSliceMut<'a>

§

impl<'a> !UnwindSafe for SocketAncillary<'a>

§

impl<'a> !UnwindSafe for ContextBuilder<'a>

§

impl<'a> !UnwindSafe for PanicHookInfo<'a>

§

impl<'a> UnwindSafe for AncillaryData<'a>

§

impl<'a> UnwindSafe for Component<'a>

§

impl<'a> UnwindSafe for Prefix<'a>

§

impl<'a> UnwindSafe for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> UnwindSafe for PanicInfo<'a>

§

impl<'a> UnwindSafe for PanicMessage<'a>

§

impl<'a> UnwindSafe for SplitPaths<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> UnwindSafe for Arguments<'a>

§

impl<'a> UnwindSafe for IoSlice<'a>

§

impl<'a> UnwindSafe for StdinLock<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> UnwindSafe for Messages<'a>

§

impl<'a> UnwindSafe for ScmCredentials<'a>

§

impl<'a> UnwindSafe for ScmRights<'a>

§

impl<'a> UnwindSafe for Ancestors<'a>

§

impl<'a> UnwindSafe for Components<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Display<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::path::Iter<'a>

§

impl<'a> UnwindSafe for PrefixComponent<'a>

§

impl<'a> UnwindSafe for CommandArgs<'a>

§

impl<'a> UnwindSafe for CommandEnvs<'a>

§

impl<'a> UnwindSafe for EscapeAscii<'a>

§

impl<'a> UnwindSafe for CharSearcher<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::str::Lines<'a>

§

impl<'a> UnwindSafe for LinesAny<'a>

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

impl<'a> UnwindSafe for Utf8Chunk<'a>

§

impl<'a> UnwindSafe for Utf8Chunks<'a>

§

impl<'a> UnwindSafe for wiwi::rust_std::string::Drain<'a>

§

impl<'a> UnwindSafe for Context<'a>

§

impl<'a> UnwindSafe for Location<'a>

§

impl<'a> UnwindSafe for Formatted<'a>

§

impl<'a> UnwindSafe for Part<'a>

§

impl<'a, 'b> !UnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> UnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> UnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> UnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>

§

impl<'a, A> !UnwindSafe for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for wiwi::rust_std::option::Iter<'a, A>
where A: RefUnwindSafe,

§

impl<'a, B> UnwindSafe for Cow<'a, B>
where <B as ToOwned>::Owned: UnwindSafe, B: RefUnwindSafe + ?Sized,

§

impl<'a, F> UnwindSafe for CharPredicateSearcher<'a, F>
where @@ -171,7 +171,7 @@

RefUnwindSafe, T: RefUnwindSafe,

§

impl<'a, T, const N: usize> !UnwindSafe for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> UnwindSafe for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, T, const N: usize> UnwindSafe for ArrayWindows<'a, T, N>
where - T: RefUnwindSafe,

§

impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !UnwindSafe for Ref<'b, T>

§

impl<'b, T> !UnwindSafe for RefMut<'b, T>

§

impl<'data> !UnwindSafe for BorrowedBuf<'data>

§

impl<'f> !UnwindSafe for VaListImpl<'f>

§

impl<'fd> UnwindSafe for BorrowedFd<'fd>

§

impl<'scope, 'env> !UnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !UnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> UnwindSafe for IterRange<A>
where + T: RefUnwindSafe,

§

impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !UnwindSafe for Ref<'b, T>

§

impl<'b, T> !UnwindSafe for RefMut<'b, T>

§

impl<'data> !UnwindSafe for BorrowedBuf<'data>

§

impl<'f> !UnwindSafe for VaListImpl<'f>

§

impl<'fd> UnwindSafe for BorrowedFd<'fd>

§

impl<'h, const N: usize> UnwindSafe for ChunkedSlice<'h, N>

§

impl<'scope, 'env> !UnwindSafe for Scope<'scope, 'env>

§

impl<'scope, T> !UnwindSafe for ScopedJoinHandle<'scope, T>

§

impl<A> UnwindSafe for IterRange<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for IterRangeFrom<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for IterRangeInclusive<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/prelude/rust_2015/struct.Box.html b/wiwi/rust_std/prelude/rust_2015/struct.Box.html index 0b71d8896..5a53ed0ed 100644 --- a/wiwi/rust_std/prelude/rust_2015/struct.Box.html +++ b/wiwi/rust_std/prelude/rust_2015/struct.Box.html @@ -1387,4 +1387,4 @@
§ExamplesClone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where - U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: TryFrom<T>,
source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/rust_std/prelude/rust_2015/trait.PartialEq.html b/wiwi/rust_std/prelude/rust_2015/trait.PartialEq.html index 43fe698e8..9b9861e0a 100644 --- a/wiwi/rust_std/prelude/rust_2015/trait.PartialEq.html +++ b/wiwi/rust_std/prelude/rust_2015/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_std/prelude/rust_2015/trait.Send.html b/wiwi/rust_std/prelude/rust_2015/trait.Send.html index cd5f1d0d2..1517ba7f6 100644 --- a/wiwi/rust_std/prelude/rust_2015/trait.Send.html +++ b/wiwi/rust_std/prelude/rust_2015/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for UnsafeBufWriteGuard

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for IterRange<A>
where A: Send,

§

impl<A> Send for IterRangeFrom<A>
where A: Send,

§

impl<A> Send for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2015/trait.Sync.html b/wiwi/rust_std/prelude/rust_2015/trait.Sync.html index 7ab8ecd30..9190121f4 100644 --- a/wiwi/rust_std/prelude/rust_2015/trait.Sync.html +++ b/wiwi/rust_std/prelude/rust_2015/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for UnsafeBufWriteGuard

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for IterRange<A>
where A: Sync,

§

impl<A> Sync for IterRangeFrom<A>
where A: Sync,

§

impl<A> Sync for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2015/trait.Unpin.html b/wiwi/rust_std/prelude/rust_2015/trait.Unpin.html index 798cd57a5..95c39d5ac 100644 --- a/wiwi/rust_std/prelude/rust_2015/trait.Unpin.html +++ b/wiwi/rust_std/prelude/rust_2015/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeFrom<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeInclusive<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/prelude/rust_2018/struct.Box.html b/wiwi/rust_std/prelude/rust_2018/struct.Box.html index 2e3409143..c4ef2c443 100644 --- a/wiwi/rust_std/prelude/rust_2018/struct.Box.html +++ b/wiwi/rust_std/prelude/rust_2018/struct.Box.html @@ -1387,4 +1387,4 @@
§ExamplesClone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where - U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: TryFrom<T>,
source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/rust_std/prelude/rust_2018/trait.PartialEq.html b/wiwi/rust_std/prelude/rust_2018/trait.PartialEq.html index 92e8b35fe..5cd10885f 100644 --- a/wiwi/rust_std/prelude/rust_2018/trait.PartialEq.html +++ b/wiwi/rust_std/prelude/rust_2018/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_std/prelude/rust_2018/trait.Send.html b/wiwi/rust_std/prelude/rust_2018/trait.Send.html index ed2f5e70c..597c647c9 100644 --- a/wiwi/rust_std/prelude/rust_2018/trait.Send.html +++ b/wiwi/rust_std/prelude/rust_2018/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for UnsafeBufWriteGuard

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for IterRange<A>
where A: Send,

§

impl<A> Send for IterRangeFrom<A>
where A: Send,

§

impl<A> Send for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2018/trait.Sync.html b/wiwi/rust_std/prelude/rust_2018/trait.Sync.html index 165d3e925..734157b6b 100644 --- a/wiwi/rust_std/prelude/rust_2018/trait.Sync.html +++ b/wiwi/rust_std/prelude/rust_2018/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for UnsafeBufWriteGuard

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for IterRange<A>
where A: Sync,

§

impl<A> Sync for IterRangeFrom<A>
where A: Sync,

§

impl<A> Sync for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2018/trait.Unpin.html b/wiwi/rust_std/prelude/rust_2018/trait.Unpin.html index c7cfa16d9..687862184 100644 --- a/wiwi/rust_std/prelude/rust_2018/trait.Unpin.html +++ b/wiwi/rust_std/prelude/rust_2018/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeFrom<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeInclusive<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/prelude/rust_2021/struct.Box.html b/wiwi/rust_std/prelude/rust_2021/struct.Box.html index 1aeadff41..4470039e2 100644 --- a/wiwi/rust_std/prelude/rust_2021/struct.Box.html +++ b/wiwi/rust_std/prelude/rust_2021/struct.Box.html @@ -1387,4 +1387,4 @@
§ExamplesClone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where - U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: TryFrom<T>,
source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/rust_std/prelude/rust_2021/trait.PartialEq.html b/wiwi/rust_std/prelude/rust_2021/trait.PartialEq.html index 9f15ad27c..a7a04aa93 100644 --- a/wiwi/rust_std/prelude/rust_2021/trait.PartialEq.html +++ b/wiwi/rust_std/prelude/rust_2021/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_std/prelude/rust_2021/trait.Send.html b/wiwi/rust_std/prelude/rust_2021/trait.Send.html index c018d37e0..9256a7925 100644 --- a/wiwi/rust_std/prelude/rust_2021/trait.Send.html +++ b/wiwi/rust_std/prelude/rust_2021/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for UnsafeBufWriteGuard

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for IterRange<A>
where A: Send,

§

impl<A> Send for IterRangeFrom<A>
where A: Send,

§

impl<A> Send for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2021/trait.Sync.html b/wiwi/rust_std/prelude/rust_2021/trait.Sync.html index 4c0f12222..2018e1514 100644 --- a/wiwi/rust_std/prelude/rust_2021/trait.Sync.html +++ b/wiwi/rust_std/prelude/rust_2021/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for UnsafeBufWriteGuard

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for IterRange<A>
where A: Sync,

§

impl<A> Sync for IterRangeFrom<A>
where A: Sync,

§

impl<A> Sync for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2021/trait.Unpin.html b/wiwi/rust_std/prelude/rust_2021/trait.Unpin.html index 4c74d92d2..b563d521d 100644 --- a/wiwi/rust_std/prelude/rust_2021/trait.Unpin.html +++ b/wiwi/rust_std/prelude/rust_2021/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeFrom<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeInclusive<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/prelude/rust_2024/struct.Box.html b/wiwi/rust_std/prelude/rust_2024/struct.Box.html index 856e8648e..1489bf653 100644 --- a/wiwi/rust_std/prelude/rust_2024/struct.Box.html +++ b/wiwi/rust_std/prelude/rust_2024/struct.Box.html @@ -1387,4 +1387,4 @@
§ExamplesClone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where - U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: TryFrom<T>,
source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/rust_std/prelude/rust_2024/trait.PartialEq.html b/wiwi/rust_std/prelude/rust_2024/trait.PartialEq.html index eedd62ffa..223935b05 100644 --- a/wiwi/rust_std/prelude/rust_2024/trait.PartialEq.html +++ b/wiwi/rust_std/prelude/rust_2024/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_std/prelude/rust_2024/trait.Send.html b/wiwi/rust_std/prelude/rust_2024/trait.Send.html index f4676c163..ced9e23a3 100644 --- a/wiwi/rust_std/prelude/rust_2024/trait.Send.html +++ b/wiwi/rust_std/prelude/rust_2024/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for UnsafeBufWriteGuard

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for IterRange<A>
where A: Send,

§

impl<A> Send for IterRangeFrom<A>
where A: Send,

§

impl<A> Send for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2024/trait.Sync.html b/wiwi/rust_std/prelude/rust_2024/trait.Sync.html index 910cafb7c..24fd71895 100644 --- a/wiwi/rust_std/prelude/rust_2024/trait.Sync.html +++ b/wiwi/rust_std/prelude/rust_2024/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for UnsafeBufWriteGuard

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for IterRange<A>
where A: Sync,

§

impl<A> Sync for IterRangeFrom<A>
where A: Sync,

§

impl<A> Sync for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/rust_2024/trait.Unpin.html b/wiwi/rust_std/prelude/rust_2024/trait.Unpin.html index a33a26b96..199a774ae 100644 --- a/wiwi/rust_std/prelude/rust_2024/trait.Unpin.html +++ b/wiwi/rust_std/prelude/rust_2024/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeFrom<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeInclusive<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/rust_std/prelude/v1/struct.Box.html b/wiwi/rust_std/prelude/v1/struct.Box.html index 14d6a5f19..04a2c88a7 100644 --- a/wiwi/rust_std/prelude/v1/struct.Box.html +++ b/wiwi/rust_std/prelude/v1/struct.Box.html @@ -1387,4 +1387,4 @@
§ExamplesClone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where - U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: TryFrom<T>,
source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/rust_std/prelude/v1/trait.PartialEq.html b/wiwi/rust_std/prelude/v1/trait.PartialEq.html index 5cb0c3a41..420016b51 100644 --- a/wiwi/rust_std/prelude/v1/trait.PartialEq.html +++ b/wiwi/rust_std/prelude/v1/trait.PartialEq.html @@ -180,7 +180,7 @@

§Examples

Required Methods§

1.0.0 · source

fn eq(&self, other: &Rhs) -> bool

Tests for self and other values to be equal, and is used by ==.

Provided Methods§

1.0.0 · source

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

-

Implementors§

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where +

Implementors§

source§

impl PartialEq for DecodeError

source§

impl PartialEq for AsciiChar

1.65.0 · source§

impl PartialEq for BacktraceStatus

1.0.0 · source§

impl PartialEq for wiwi::rust_std::cmp::Ordering

source§

impl PartialEq for TryReserveErrorKind

1.34.0 · source§

impl PartialEq for Infallible

1.0.0 · source§

impl PartialEq for VarError

1.28.0 · source§

impl PartialEq for wiwi::rust_std::fmt::Alignment

1.0.0 · source§

impl PartialEq for ErrorKind

1.0.0 · source§

impl PartialEq for SeekFrom

1.7.0 · source§

impl PartialEq for IpAddr

source§

impl PartialEq for Ipv6MulticastScope

1.0.0 · source§

impl PartialEq for Shutdown

1.0.0 · source§

impl PartialEq for SocketAddr

1.0.0 · source§

impl PartialEq for FpCategory

1.55.0 · source§

impl PartialEq for IntErrorKind

source§

impl PartialEq for BacktraceStyle

source§

impl PartialEq for SearchStep

1.0.0 · source§

impl PartialEq for wiwi::rust_std::sync::atomic::Ordering

1.12.0 · source§

impl PartialEq for RecvTimeoutError

1.0.0 · source§

impl PartialEq for TryRecvError

source§

impl PartialEq for _Unwind_Action

source§

impl PartialEq for _Unwind_Reason_Code

1.0.0 · source§

impl PartialEq for bool

1.0.0 · source§

impl PartialEq for char

1.0.0 · source§

impl PartialEq for f16

1.0.0 · source§

impl PartialEq for f32

1.0.0 · source§

impl PartialEq for f64

1.0.0 · source§

impl PartialEq for f128

1.0.0 · source§

impl PartialEq for i8

1.0.0 · source§

impl PartialEq for i16

1.0.0 · source§

impl PartialEq for i32

1.0.0 · source§

impl PartialEq for i64

1.0.0 · source§

impl PartialEq for i128

1.0.0 · source§

impl PartialEq for isize

source§

impl PartialEq for !

1.0.0 · source§

impl PartialEq for str

1.0.0 · source§

impl PartialEq for u8

1.0.0 · source§

impl PartialEq for u16

1.0.0 · source§

impl PartialEq for u32

1.0.0 · source§

impl PartialEq for u64

1.0.0 · source§

impl PartialEq for u128

1.0.0 · source§

impl PartialEq for ()

1.0.0 · source§

impl PartialEq for usize

source§

impl PartialEq for AllocError

1.28.0 · source§

impl PartialEq for Layout

1.50.0 · source§

impl PartialEq for LayoutError

1.0.0 · source§

impl PartialEq for TypeId

1.27.0 · source§

impl PartialEq for CpuidResult

1.34.0 · source§

impl PartialEq for CharTryFromError

1.9.0 · source§

impl PartialEq for DecodeUtf16Error

1.20.0 · source§

impl PartialEq for ParseCharError

1.59.0 · source§

impl PartialEq for TryFromCharError

source§

impl PartialEq for UnorderedKeyError

1.57.0 · source§

impl PartialEq for TryReserveError

1.64.0 · source§

impl PartialEq for CStr

1.64.0 · source§

impl PartialEq for CString

1.69.0 · source§

impl PartialEq for FromBytesUntilNulError

1.64.0 · source§

impl PartialEq for FromBytesWithNulError

1.64.0 · source§

impl PartialEq for FromVecWithNulError

1.64.0 · source§

impl PartialEq for IntoStringError

1.64.0 · source§

impl PartialEq for NulError

1.0.0 · source§

impl PartialEq for OsStr

1.0.0 · source§

impl PartialEq for OsString

1.0.0 · source§

impl PartialEq for Error

1.1.0 · source§

impl PartialEq for FileType

1.0.0 · source§

impl PartialEq for Permissions

1.33.0 · source§

impl PartialEq for PhantomPinned

source§

impl PartialEq for Assume

1.0.0 · source§

impl PartialEq for AddrParseError

1.0.0 · source§

impl PartialEq for Ipv4Addr

1.0.0 · source§

impl PartialEq for Ipv6Addr

1.0.0 · source§

impl PartialEq for SocketAddrV4

1.0.0 · source§

impl PartialEq for SocketAddrV6

1.0.0 · source§

impl PartialEq for ParseFloatError

1.0.0 · source§

impl PartialEq for ParseIntError

1.34.0 · source§

impl PartialEq for TryFromIntError

1.0.0 · source§

impl PartialEq for RangeFull

source§

impl PartialEq for UCred

1.0.0 · source§

impl PartialEq for Path

1.0.0 · source§

impl PartialEq for PathBuf

1.7.0 · source§

impl PartialEq for StripPrefixError

1.0.0 · source§

impl PartialEq for ExitStatus

source§

impl PartialEq for ExitStatusError

1.0.0 · source§

impl PartialEq for Output

source§

impl PartialEq for wiwi::rust_std::ptr::Alignment

1.0.0 · source§

impl PartialEq for ParseBoolError

1.0.0 · source§

impl PartialEq for Utf8Error

1.0.0 · source§

impl PartialEq for FromUtf8Error

1.0.0 · source§

impl PartialEq for String

1.0.0 · source§

impl PartialEq for RecvError

1.5.0 · source§

impl PartialEq for WaitTimeoutResult

1.36.0 · source§

impl PartialEq for RawWaker

1.36.0 · source§

impl PartialEq for RawWakerVTable

1.26.0 · source§

impl PartialEq for AccessError

1.19.0 · source§

impl PartialEq for ThreadId

1.3.0 · source§

impl PartialEq for Duration

1.8.0 · source§

impl PartialEq for Instant

1.8.0 · source§

impl PartialEq for SystemTime

1.66.0 · source§

impl PartialEq for TryFromFloatSecsError

1.29.0 · source§

impl PartialEq<&str> for OsString

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv4Addr

1.16.0 · source§

impl PartialEq<IpAddr> for Ipv6Addr

1.0.0 · source§

impl PartialEq<str> for OsStr

1.0.0 · source§

impl PartialEq<str> for OsString

1.0.0 · source§

impl PartialEq<OsStr> for str

1.8.0 · source§

impl PartialEq<OsStr> for Path

1.8.0 · source§

impl PartialEq<OsStr> for PathBuf

1.0.0 · source§

impl PartialEq<OsString> for str

1.8.0 · source§

impl PartialEq<OsString> for Path

1.8.0 · source§

impl PartialEq<OsString> for PathBuf

1.16.0 · source§

impl PartialEq<Ipv4Addr> for IpAddr

1.16.0 · source§

impl PartialEq<Ipv6Addr> for IpAddr

1.8.0 · source§

impl PartialEq<Path> for OsStr

1.8.0 · source§

impl PartialEq<Path> for OsString

1.6.0 · source§

impl PartialEq<Path> for PathBuf

1.8.0 · source§

impl PartialEq<PathBuf> for OsStr

1.8.0 · source§

impl PartialEq<PathBuf> for OsString

1.6.0 · source§

impl PartialEq<PathBuf> for Path

1.0.0 · source§

impl<'a> PartialEq for Component<'a>

1.0.0 · source§

impl<'a> PartialEq for Prefix<'a>

1.10.0 · source§

impl<'a> PartialEq for Location<'a>

1.0.0 · source§

impl<'a> PartialEq for Components<'a>

1.0.0 · source§

impl<'a> PartialEq for PrefixComponent<'a>

1.79.0 · source§

impl<'a> PartialEq for Utf8Chunk<'a>

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for Path

1.8.0 · source§

impl<'a> PartialEq<&'a OsStr> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsStr

1.8.0 · source§

impl<'a> PartialEq<&'a Path> for OsString

1.6.0 · source§

impl<'a> PartialEq<&'a Path> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for Path

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, OsStr>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsStr

1.8.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for OsString

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for Path

1.6.0 · source§

impl<'a> PartialEq<Cow<'a, Path>> for PathBuf

1.8.0 · source§

impl<'a> PartialEq<OsStr> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsStr> for Cow<'a, Path>

1.29.0 · source§

impl<'a> PartialEq<OsString> for &'a str

1.8.0 · source§

impl<'a> PartialEq<OsString> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<OsString> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<Path> for &'a OsStr

1.8.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<Path> for Cow<'a, Path>

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for &'a OsStr

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for &'a Path

1.8.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, OsStr>

1.6.0 · source§

impl<'a> PartialEq<PathBuf> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'a str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<&'a Path> for Cow<'b, OsStr>

1.0.0 · source§

impl<'a, 'b> PartialEq<&'b str> for Cow<'a, str>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<&'b OsStr> for Cow<'a, Path>

1.6.0 · source§

impl<'a, 'b> PartialEq<&'b Path> for Cow<'a, Path>

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for &'b str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for str

1.0.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, str>> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for &'b OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, OsStr>> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b OsStr

1.6.0 · source§

impl<'a, 'b> PartialEq<Cow<'a, Path>> for &'b Path

1.8.0 · source§

impl<'a, 'b> PartialEq<Cow<'b, OsStr>> for &'a Path

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<str> for String

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsStr> for OsString

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for &'a OsStr

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for Cow<'a, OsStr>

1.8.0 · source§

impl<'a, 'b> PartialEq<OsString> for OsStr

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for &'a str

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for Cow<'a, str>

1.0.0 · source§

impl<'a, 'b> PartialEq<String> for str

1.0.0 · source§

impl<'a, 'b, B, C> PartialEq<Cow<'b, C>> for Cow<'a, B>
where B: PartialEq<C> + ToOwned + ?Sized, C: ToOwned + ?Sized,

1.0.0 · source§

impl<A, B> PartialEq<&B> for &A
where A: PartialEq<B> + ?Sized, diff --git a/wiwi/rust_std/prelude/v1/trait.Send.html b/wiwi/rust_std/prelude/v1/trait.Send.html index 817872fc7..7a0a212ea 100644 --- a/wiwi/rust_std/prelude/v1/trait.Send.html +++ b/wiwi/rust_std/prelude/v1/trait.Send.html @@ -61,7 +61,7 @@ T: Send, A: Send + Allocator,

1.0.0 · source§

impl<T, A> Send for wiwi::rust_std::vec::IntoIter<T, A>
where T: Send, - A: Allocator + Send,

Auto implementors§

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where + A: Allocator + Send,

Auto implementors§

§

impl !Send for UnsafeBufWriteGuard

§

impl !Send for Vars

§

impl !Send for VarsOs

§

impl !Send for RawWaker

§

impl Send for wiwi::encoding::hex::DecodeError

§

impl Send for wiwi::encoding::z85::DecodeError

§

impl Send for AsciiChar

§

impl Send for BacktraceStatus

§

impl Send for wiwi::rust_std::cmp::Ordering

§

impl Send for TryReserveErrorKind

§

impl Send for Infallible

§

impl Send for VarError

§

impl Send for c_void

§

impl Send for wiwi::rust_std::fmt::Alignment

§

impl Send for BasicBlock

§

impl Send for UnwindTerminateReason

§

impl Send for ErrorKind

§

impl Send for SeekFrom

§

impl Send for IpAddr

§

impl Send for Ipv6MulticastScope

§

impl Send for Shutdown

§

impl Send for wiwi::rust_std::net::SocketAddr

§

impl Send for FpCategory

§

impl Send for IntErrorKind

§

impl Send for AncillaryError

§

impl Send for BacktraceStyle

§

impl Send for SearchStep

§

impl Send for wiwi::rust_std::sync::atomic::Ordering

§

impl Send for RecvTimeoutError

§

impl Send for TryRecvError

§

impl Send for EncodedReprInfo

§

impl Send for AllocError

§

impl Send for Global

§

impl Send for Layout

§

impl Send for LayoutError

§

impl Send for System

§

impl Send for TypeId

§

impl Send for CpuidResult

§

impl Send for __m128

§

impl Send for __m128bh

§

impl Send for __m128d

§

impl Send for __m128h

§

impl Send for __m128i

§

impl Send for __m256

§

impl Send for __m256bh

§

impl Send for __m256d

§

impl Send for __m256h

§

impl Send for __m256i

§

impl Send for __m512

§

impl Send for __m512bh

§

impl Send for __m512d

§

impl Send for __m512h

§

impl Send for __m512i

§

impl Send for bf16

§

impl Send for TryFromSliceError

§

impl Send for wiwi::rust_std::ascii::EscapeDefault

§

impl Send for Backtrace

§

impl Send for BacktraceFrame

§

impl Send for BorrowError

§

impl Send for BorrowMutError

§

impl Send for CharTryFromError

§

impl Send for DecodeUtf16Error

§

impl Send for wiwi::rust_std::char::EscapeDebug

§

impl Send for wiwi::rust_std::char::EscapeDefault

§

impl Send for wiwi::rust_std::char::EscapeUnicode

§

impl Send for ParseCharError

§

impl Send for ToLowercase

§

impl Send for ToUppercase

§

impl Send for TryFromCharError

§

impl Send for UnorderedKeyError

§

impl Send for TryReserveError

§

impl Send for JoinPathsError

§

impl Send for CStr

§

impl Send for CString

§

impl Send for FromBytesUntilNulError

§

impl Send for FromBytesWithNulError

§

impl Send for FromVecWithNulError

§

impl Send for IntoStringError

§

impl Send for NulError

§

impl Send for OsStr

§

impl Send for OsString

§

impl Send for wiwi::rust_std::fmt::Error

§

impl Send for DirBuilder

§

impl Send for DirEntry

§

impl Send for File

§

impl Send for FileTimes

§

impl Send for FileType

§

impl Send for Metadata

§

impl Send for OpenOptions

§

impl Send for Permissions

§

impl Send for ReadDir

§

impl Send for DefaultHasher

§

impl Send for RandomState

§

impl Send for SipHasher

§

impl Send for ReturnToArg

§

impl Send for UnwindActionArg

§

impl Send for wiwi::rust_std::io::Empty

§

impl Send for wiwi::rust_std::io::Error

§

impl Send for wiwi::rust_std::io::Repeat

§

impl Send for Sink

§

impl Send for Stderr

§

impl Send for Stdin

§

impl Send for Stdout

§

impl Send for WriterPanicked

§

impl Send for PhantomPinned

§

impl Send for Assume

§

impl Send for AddrParseError

§

impl Send for IntoIncoming

§

impl Send for Ipv4Addr

§

impl Send for Ipv6Addr

§

impl Send for SocketAddrV4

§

impl Send for SocketAddrV6

§

impl Send for TcpListener

§

impl Send for TcpStream

§

impl Send for UdpSocket

§

impl Send for ParseFloatError

§

impl Send for ParseIntError

§

impl Send for TryFromIntError

§

impl Send for RangeFull

§

impl Send for OwnedFd

§

impl Send for PidFd

§

impl Send for stat

§

impl Send for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Send for SocketCred

§

impl Send for UCred

§

impl Send for UnixDatagram

§

impl Send for UnixListener

§

impl Send for UnixStream

§

impl Send for Path

§

impl Send for PathBuf

§

impl Send for StripPrefixError

§

impl Send for PipeReader

§

impl Send for PipeWriter

§

impl Send for Child

§

impl Send for ChildStderr

§

impl Send for ChildStdin

§

impl Send for ChildStdout

§

impl Send for Command

§

impl Send for ExitCode

§

impl Send for ExitStatus

§

impl Send for ExitStatusError

§

impl Send for Output

§

impl Send for Stdio

§

impl Send for wiwi::rust_std::ptr::Alignment

§

impl Send for ParseBoolError

§

impl Send for Utf8Error

§

impl Send for FromUtf8Error

§

impl Send for FromUtf16Error

§

impl Send for String

§

impl Send for AtomicBool

§

impl Send for AtomicI8

§

impl Send for AtomicI16

§

impl Send for AtomicI32

§

impl Send for AtomicI64

§

impl Send for AtomicIsize

§

impl Send for AtomicU8

§

impl Send for AtomicU16

§

impl Send for AtomicU32

§

impl Send for AtomicU64

§

impl Send for AtomicUsize

§

impl Send for RecvError

§

impl Send for Barrier

§

impl Send for BarrierWaitResult

§

impl Send for Condvar

§

impl Send for wiwi::rust_std::sync::Once

§

impl Send for OnceState

§

impl Send for WaitTimeoutResult

§

impl Send for RawWakerVTable

§

impl Send for AccessError

§

impl Send for Builder

§

impl Send for Thread

§

impl Send for ThreadId

§

impl Send for Duration

§

impl Send for Instant

§

impl Send for SystemTime

§

impl Send for SystemTimeError

§

impl Send for TryFromFloatSecsError

§

impl Send for Big8x3

§

impl Send for Big32x40

§

impl Send for Decoded

§

impl Send for FullDecoded

§

impl Send for Maybe

§

impl Send for NoRuntime

§

impl Send for Number

§

impl Send for Runtime

§

impl Send for Sign

§

impl<'a> !Send for Source<'a>

§

impl<'a> !Send for PanicInfo<'a>

§

impl<'a> !Send for PanicMessage<'a>

§

impl<'a> !Send for Request<'a>

§

impl<'a> !Send for Formatter<'a>

§

impl<'a> !Send for StderrLock<'a>

§

impl<'a> !Send for StdinLock<'a>

§

impl<'a> !Send for StdoutLock<'a>

§

impl<'a> !Send for PanicHookInfo<'a>

§

impl<'a> !Send for Context<'a>

§

impl<'a> !Send for ContextBuilder<'a>

§

impl<'a> Send for AncillaryData<'a>

§

impl<'a> Send for Component<'a>

§

impl<'a> Send for Prefix<'a>

§

impl<'a> Send for SplitPaths<'a>

§

impl<'a> Send for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Send for BorrowedCursor<'a>

§

impl<'a> Send for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Send for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Send for Messages<'a>

§

impl<'a> Send for ScmCredentials<'a>

§

impl<'a> Send for ScmRights<'a>

§

impl<'a> Send for SocketAncillary<'a>

§

impl<'a> Send for Location<'a>

§

impl<'a> Send for Ancestors<'a>

§

impl<'a> Send for Components<'a>

§

impl<'a> Send for wiwi::rust_std::path::Display<'a>

§

impl<'a> Send for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Send for PrefixComponent<'a>

§

impl<'a> Send for CommandArgs<'a>

§

impl<'a> Send for CommandEnvs<'a>

§

impl<'a> Send for EscapeAscii<'a>

§

impl<'a> Send for CharSearcher<'a>

§

impl<'a> Send for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Send for CharIndices<'a>

§

impl<'a> Send for Chars<'a>

§

impl<'a> Send for EncodeUtf16<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Send for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Send for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Send for LinesAny<'a>

§

impl<'a> Send for SplitAsciiWhitespace<'a>

§

impl<'a> Send for SplitWhitespace<'a>

§

impl<'a> Send for Utf8Chunk<'a>

§

impl<'a> Send for Utf8Chunks<'a>

§

impl<'a> Send for Formatted<'a>

§

impl<'a> Send for Part<'a>

§

impl<'a, 'b> !Send for DebugList<'a, 'b>

§

impl<'a, 'b> !Send for DebugMap<'a, 'b>

§

impl<'a, 'b> !Send for DebugSet<'a, 'b>

§

impl<'a, 'b> !Send for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Send for DebugTuple<'a, 'b>

§

impl<'a, 'b> Send for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Send for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Send for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Send for VaList<'a, 'f>

§

impl<'a, A> Send for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Send for wiwi::rust_std::option::IterMut<'a, A>
where A: Send,

§

impl<'a, B> Send for Cow<'a, B>
where <B as ToOwned>::Owned: Send, @@ -230,7 +230,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Send for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Send for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Send for ArrayChunksMut<'a, T, N>
where - T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where + T: Send,

§

impl<'a, const N: usize> Send for CharArraySearcher<'a, N>

§

impl<'b, T> !Send for Ref<'b, T>

§

impl<'b, T> !Send for RefMut<'b, T>

§

impl<'data> Send for BorrowedBuf<'data>

§

impl<'f> !Send for VaListImpl<'f>

§

impl<'fd> Send for BorrowedFd<'fd>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Send for Scope<'scope, 'env>

§

impl<'scope, T> Send for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Send for IterRange<A>
where A: Send,

§

impl<A> Send for IterRangeFrom<A>
where A: Send,

§

impl<A> Send for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/v1/trait.Sync.html b/wiwi/rust_std/prelude/v1/trait.Sync.html index b1f086bf4..c598e1fef 100644 --- a/wiwi/rust_std/prelude/v1/trait.Sync.html +++ b/wiwi/rust_std/prelude/v1/trait.Sync.html @@ -101,7 +101,7 @@ T: Sync, A: Allocator + Sync,

1.80.0 · source§

impl<T, F> Sync for LazyLock<T, F>
where T: Sync + Send, - F: Send,

Auto implementors§

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where + F: Send,

Auto implementors§

§

impl !Sync for UnsafeBufWriteGuard

§

impl !Sync for Vars

§

impl !Sync for VarsOs

§

impl !Sync for OnceState

§

impl !Sync for RawWaker

§

impl Sync for wiwi::encoding::hex::DecodeError

§

impl Sync for wiwi::encoding::z85::DecodeError

§

impl Sync for AsciiChar

§

impl Sync for BacktraceStatus

§

impl Sync for wiwi::rust_std::cmp::Ordering

§

impl Sync for TryReserveErrorKind

§

impl Sync for Infallible

§

impl Sync for VarError

§

impl Sync for c_void

§

impl Sync for wiwi::rust_std::fmt::Alignment

§

impl Sync for BasicBlock

§

impl Sync for UnwindTerminateReason

§

impl Sync for ErrorKind

§

impl Sync for SeekFrom

§

impl Sync for IpAddr

§

impl Sync for Ipv6MulticastScope

§

impl Sync for Shutdown

§

impl Sync for wiwi::rust_std::net::SocketAddr

§

impl Sync for FpCategory

§

impl Sync for IntErrorKind

§

impl Sync for AncillaryError

§

impl Sync for BacktraceStyle

§

impl Sync for SearchStep

§

impl Sync for wiwi::rust_std::sync::atomic::Ordering

§

impl Sync for RecvTimeoutError

§

impl Sync for TryRecvError

§

impl Sync for EncodedReprInfo

§

impl Sync for AllocError

§

impl Sync for Global

§

impl Sync for Layout

§

impl Sync for LayoutError

§

impl Sync for System

§

impl Sync for TypeId

§

impl Sync for CpuidResult

§

impl Sync for __m128

§

impl Sync for __m128bh

§

impl Sync for __m128d

§

impl Sync for __m128h

§

impl Sync for __m128i

§

impl Sync for __m256

§

impl Sync for __m256bh

§

impl Sync for __m256d

§

impl Sync for __m256h

§

impl Sync for __m256i

§

impl Sync for __m512

§

impl Sync for __m512bh

§

impl Sync for __m512d

§

impl Sync for __m512h

§

impl Sync for __m512i

§

impl Sync for bf16

§

impl Sync for TryFromSliceError

§

impl Sync for wiwi::rust_std::ascii::EscapeDefault

§

impl Sync for Backtrace

§

impl Sync for BacktraceFrame

§

impl Sync for BorrowError

§

impl Sync for BorrowMutError

§

impl Sync for CharTryFromError

§

impl Sync for DecodeUtf16Error

§

impl Sync for wiwi::rust_std::char::EscapeDebug

§

impl Sync for wiwi::rust_std::char::EscapeDefault

§

impl Sync for wiwi::rust_std::char::EscapeUnicode

§

impl Sync for ParseCharError

§

impl Sync for ToLowercase

§

impl Sync for ToUppercase

§

impl Sync for TryFromCharError

§

impl Sync for UnorderedKeyError

§

impl Sync for TryReserveError

§

impl Sync for JoinPathsError

§

impl Sync for CStr

§

impl Sync for CString

§

impl Sync for FromBytesUntilNulError

§

impl Sync for FromBytesWithNulError

§

impl Sync for FromVecWithNulError

§

impl Sync for IntoStringError

§

impl Sync for NulError

§

impl Sync for OsStr

§

impl Sync for OsString

§

impl Sync for wiwi::rust_std::fmt::Error

§

impl Sync for DirBuilder

§

impl Sync for DirEntry

§

impl Sync for File

§

impl Sync for FileTimes

§

impl Sync for FileType

§

impl Sync for Metadata

§

impl Sync for OpenOptions

§

impl Sync for Permissions

§

impl Sync for ReadDir

§

impl Sync for DefaultHasher

§

impl Sync for RandomState

§

impl Sync for SipHasher

§

impl Sync for ReturnToArg

§

impl Sync for UnwindActionArg

§

impl Sync for wiwi::rust_std::io::Empty

§

impl Sync for wiwi::rust_std::io::Error

§

impl Sync for wiwi::rust_std::io::Repeat

§

impl Sync for Sink

§

impl Sync for Stderr

§

impl Sync for Stdin

§

impl Sync for Stdout

§

impl Sync for WriterPanicked

§

impl Sync for PhantomPinned

§

impl Sync for Assume

§

impl Sync for AddrParseError

§

impl Sync for IntoIncoming

§

impl Sync for Ipv4Addr

§

impl Sync for Ipv6Addr

§

impl Sync for SocketAddrV4

§

impl Sync for SocketAddrV6

§

impl Sync for TcpListener

§

impl Sync for TcpStream

§

impl Sync for UdpSocket

§

impl Sync for ParseFloatError

§

impl Sync for ParseIntError

§

impl Sync for TryFromIntError

§

impl Sync for RangeFull

§

impl Sync for OwnedFd

§

impl Sync for PidFd

§

impl Sync for stat

§

impl Sync for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Sync for SocketCred

§

impl Sync for UCred

§

impl Sync for UnixDatagram

§

impl Sync for UnixListener

§

impl Sync for UnixStream

§

impl Sync for Path

§

impl Sync for PathBuf

§

impl Sync for StripPrefixError

§

impl Sync for PipeReader

§

impl Sync for PipeWriter

§

impl Sync for Child

§

impl Sync for ChildStderr

§

impl Sync for ChildStdin

§

impl Sync for ChildStdout

§

impl Sync for Command

§

impl Sync for ExitCode

§

impl Sync for ExitStatus

§

impl Sync for ExitStatusError

§

impl Sync for Output

§

impl Sync for Stdio

§

impl Sync for wiwi::rust_std::ptr::Alignment

§

impl Sync for ParseBoolError

§

impl Sync for Utf8Error

§

impl Sync for FromUtf8Error

§

impl Sync for FromUtf16Error

§

impl Sync for String

§

impl Sync for RecvError

§

impl Sync for Barrier

§

impl Sync for BarrierWaitResult

§

impl Sync for Condvar

§

impl Sync for wiwi::rust_std::sync::Once

§

impl Sync for WaitTimeoutResult

§

impl Sync for RawWakerVTable

§

impl Sync for AccessError

§

impl Sync for Builder

§

impl Sync for Thread

§

impl Sync for ThreadId

§

impl Sync for Duration

§

impl Sync for Instant

§

impl Sync for SystemTime

§

impl Sync for SystemTimeError

§

impl Sync for TryFromFloatSecsError

§

impl Sync for Big8x3

§

impl Sync for Big32x40

§

impl Sync for Decoded

§

impl Sync for FullDecoded

§

impl Sync for Maybe

§

impl Sync for NoRuntime

§

impl Sync for Number

§

impl Sync for Runtime

§

impl Sync for Sign

§

impl<'a> !Sync for Source<'a>

§

impl<'a> !Sync for PanicInfo<'a>

§

impl<'a> !Sync for PanicMessage<'a>

§

impl<'a> !Sync for Request<'a>

§

impl<'a> !Sync for Formatter<'a>

§

impl<'a> !Sync for StderrLock<'a>

§

impl<'a> !Sync for StdoutLock<'a>

§

impl<'a> !Sync for PanicHookInfo<'a>

§

impl<'a> !Sync for Context<'a>

§

impl<'a> !Sync for ContextBuilder<'a>

§

impl<'a> Sync for AncillaryData<'a>

§

impl<'a> Sync for Component<'a>

§

impl<'a> Sync for Prefix<'a>

§

impl<'a> Sync for SplitPaths<'a>

§

impl<'a> Sync for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Sync for BorrowedCursor<'a>

§

impl<'a> Sync for StdinLock<'a>

§

impl<'a> Sync for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Sync for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Sync for Messages<'a>

§

impl<'a> Sync for ScmCredentials<'a>

§

impl<'a> Sync for ScmRights<'a>

§

impl<'a> Sync for SocketAncillary<'a>

§

impl<'a> Sync for Location<'a>

§

impl<'a> Sync for Ancestors<'a>

§

impl<'a> Sync for Components<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Display<'a>

§

impl<'a> Sync for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Sync for PrefixComponent<'a>

§

impl<'a> Sync for CommandArgs<'a>

§

impl<'a> Sync for CommandEnvs<'a>

§

impl<'a> Sync for EscapeAscii<'a>

§

impl<'a> Sync for CharSearcher<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Sync for CharIndices<'a>

§

impl<'a> Sync for Chars<'a>

§

impl<'a> Sync for EncodeUtf16<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Sync for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Sync for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Sync for LinesAny<'a>

§

impl<'a> Sync for SplitAsciiWhitespace<'a>

§

impl<'a> Sync for SplitWhitespace<'a>

§

impl<'a> Sync for Utf8Chunk<'a>

§

impl<'a> Sync for Utf8Chunks<'a>

§

impl<'a> Sync for Formatted<'a>

§

impl<'a> Sync for Part<'a>

§

impl<'a, 'b> !Sync for DebugList<'a, 'b>

§

impl<'a, 'b> !Sync for DebugMap<'a, 'b>

§

impl<'a, 'b> !Sync for DebugSet<'a, 'b>

§

impl<'a, 'b> !Sync for DebugStruct<'a, 'b>

§

impl<'a, 'b> !Sync for DebugTuple<'a, 'b>

§

impl<'a, 'b> Sync for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Sync for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Sync for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !Sync for VaList<'a, 'f>

§

impl<'a, A> Sync for wiwi::rust_std::option::Iter<'a, A>
where A: Sync,

§

impl<'a, A> Sync for wiwi::rust_std::option::IterMut<'a, A>
where A: Sync,

§

impl<'a, B> Sync for Cow<'a, B>
where <B as ToOwned>::Owned: Sync, @@ -270,7 +270,7 @@ S: Sync, T: Sync,

§

impl<'a, T, const N: usize> !Sync for ArrayWindows<'a, T, N>

§

impl<'a, T, const N: usize> Sync for wiwi::rust_std::slice::ArrayChunks<'a, T, N>
where T: Sync,

§

impl<'a, T, const N: usize> Sync for ArrayChunksMut<'a, T, N>
where - T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where + T: Sync,

§

impl<'a, const N: usize> Sync for CharArraySearcher<'a, N>

§

impl<'b, T> !Sync for Ref<'b, T>

§

impl<'b, T> !Sync for RefMut<'b, T>

§

impl<'data> Sync for BorrowedBuf<'data>

§

impl<'f> !Sync for VaListImpl<'f>

§

impl<'fd> Sync for BorrowedFd<'fd>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Sync for Scope<'scope, 'env>

§

impl<'scope, T> Sync for ScopedJoinHandle<'scope, T>
where T: Send,

§

impl<A> Sync for IterRange<A>
where A: Sync,

§

impl<A> Sync for IterRangeFrom<A>
where A: Sync,

§

impl<A> Sync for IterRangeInclusive<A>
where diff --git a/wiwi/rust_std/prelude/v1/trait.Unpin.html b/wiwi/rust_std/prelude/v1/trait.Unpin.html index c06c27588..6b6629b36 100644 --- a/wiwi/rust_std/prelude/v1/trait.Unpin.html +++ b/wiwi/rust_std/prelude/v1/trait.Unpin.html @@ -55,7 +55,7 @@ A: Allocator, T: ?Sized,

1.33.0 · source§

impl<T, A> Unpin for Arc<T, A>
where A: Allocator, - T: ?Sized,

Auto implementors§

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where + T: ?Sized,

Auto implementors§

§

impl Unpin for wiwi::encoding::hex::DecodeError

§

impl Unpin for wiwi::encoding::z85::DecodeError

§

impl Unpin for AsciiChar

§

impl Unpin for BacktraceStatus

§

impl Unpin for wiwi::rust_std::cmp::Ordering

§

impl Unpin for TryReserveErrorKind

§

impl Unpin for Infallible

§

impl Unpin for VarError

§

impl Unpin for c_void

§

impl Unpin for wiwi::rust_std::fmt::Alignment

§

impl Unpin for BasicBlock

§

impl Unpin for UnwindTerminateReason

§

impl Unpin for ErrorKind

§

impl Unpin for SeekFrom

§

impl Unpin for IpAddr

§

impl Unpin for Ipv6MulticastScope

§

impl Unpin for Shutdown

§

impl Unpin for wiwi::rust_std::net::SocketAddr

§

impl Unpin for FpCategory

§

impl Unpin for IntErrorKind

§

impl Unpin for AncillaryError

§

impl Unpin for BacktraceStyle

§

impl Unpin for SearchStep

§

impl Unpin for wiwi::rust_std::sync::atomic::Ordering

§

impl Unpin for RecvTimeoutError

§

impl Unpin for TryRecvError

§

impl Unpin for EncodedReprInfo

§

impl Unpin for UnsafeBufWriteGuard

§

impl Unpin for AllocError

§

impl Unpin for Global

§

impl Unpin for Layout

§

impl Unpin for LayoutError

§

impl Unpin for System

§

impl Unpin for TypeId

§

impl Unpin for CpuidResult

§

impl Unpin for __m128

§

impl Unpin for __m128bh

§

impl Unpin for __m128d

§

impl Unpin for __m128h

§

impl Unpin for __m128i

§

impl Unpin for __m256

§

impl Unpin for __m256bh

§

impl Unpin for __m256d

§

impl Unpin for __m256h

§

impl Unpin for __m256i

§

impl Unpin for __m512

§

impl Unpin for __m512bh

§

impl Unpin for __m512d

§

impl Unpin for __m512h

§

impl Unpin for __m512i

§

impl Unpin for bf16

§

impl Unpin for TryFromSliceError

§

impl Unpin for wiwi::rust_std::ascii::EscapeDefault

§

impl Unpin for Backtrace

§

impl Unpin for BacktraceFrame

§

impl Unpin for BorrowError

§

impl Unpin for BorrowMutError

§

impl Unpin for CharTryFromError

§

impl Unpin for DecodeUtf16Error

§

impl Unpin for wiwi::rust_std::char::EscapeDebug

§

impl Unpin for wiwi::rust_std::char::EscapeDefault

§

impl Unpin for wiwi::rust_std::char::EscapeUnicode

§

impl Unpin for ParseCharError

§

impl Unpin for ToLowercase

§

impl Unpin for ToUppercase

§

impl Unpin for TryFromCharError

§

impl Unpin for UnorderedKeyError

§

impl Unpin for TryReserveError

§

impl Unpin for Args

§

impl Unpin for ArgsOs

§

impl Unpin for JoinPathsError

§

impl Unpin for Vars

§

impl Unpin for VarsOs

§

impl Unpin for CStr

§

impl Unpin for CString

§

impl Unpin for FromBytesUntilNulError

§

impl Unpin for FromBytesWithNulError

§

impl Unpin for FromVecWithNulError

§

impl Unpin for IntoStringError

§

impl Unpin for NulError

§

impl Unpin for OsStr

§

impl Unpin for OsString

§

impl Unpin for wiwi::rust_std::fmt::Error

§

impl Unpin for DirBuilder

§

impl Unpin for DirEntry

§

impl Unpin for File

§

impl Unpin for FileTimes

§

impl Unpin for FileType

§

impl Unpin for Metadata

§

impl Unpin for OpenOptions

§

impl Unpin for Permissions

§

impl Unpin for ReadDir

§

impl Unpin for DefaultHasher

§

impl Unpin for RandomState

§

impl Unpin for SipHasher

§

impl Unpin for ReturnToArg

§

impl Unpin for UnwindActionArg

§

impl Unpin for wiwi::rust_std::io::Empty

§

impl Unpin for wiwi::rust_std::io::Error

§

impl Unpin for wiwi::rust_std::io::Repeat

§

impl Unpin for Sink

§

impl Unpin for Stderr

§

impl Unpin for Stdin

§

impl Unpin for Stdout

§

impl Unpin for WriterPanicked

§

impl Unpin for Assume

§

impl Unpin for AddrParseError

§

impl Unpin for IntoIncoming

§

impl Unpin for Ipv4Addr

§

impl Unpin for Ipv6Addr

§

impl Unpin for SocketAddrV4

§

impl Unpin for SocketAddrV6

§

impl Unpin for TcpListener

§

impl Unpin for TcpStream

§

impl Unpin for UdpSocket

§

impl Unpin for ParseFloatError

§

impl Unpin for ParseIntError

§

impl Unpin for TryFromIntError

§

impl Unpin for RangeFull

§

impl Unpin for OwnedFd

§

impl Unpin for PidFd

§

impl Unpin for stat

§

impl Unpin for wiwi::rust_std::os::unix::net::SocketAddr

§

impl Unpin for SocketCred

§

impl Unpin for UCred

§

impl Unpin for UnixDatagram

§

impl Unpin for UnixListener

§

impl Unpin for UnixStream

§

impl Unpin for Path

§

impl Unpin for PathBuf

§

impl Unpin for StripPrefixError

§

impl Unpin for PipeReader

§

impl Unpin for PipeWriter

§

impl Unpin for Child

§

impl Unpin for ChildStderr

§

impl Unpin for ChildStdin

§

impl Unpin for ChildStdout

§

impl Unpin for Command

§

impl Unpin for ExitCode

§

impl Unpin for ExitStatus

§

impl Unpin for ExitStatusError

§

impl Unpin for Output

§

impl Unpin for Stdio

§

impl Unpin for wiwi::rust_std::ptr::Alignment

§

impl Unpin for ParseBoolError

§

impl Unpin for Utf8Error

§

impl Unpin for FromUtf8Error

§

impl Unpin for FromUtf16Error

§

impl Unpin for String

§

impl Unpin for AtomicBool

§

impl Unpin for AtomicI8

§

impl Unpin for AtomicI16

§

impl Unpin for AtomicI32

§

impl Unpin for AtomicI64

§

impl Unpin for AtomicIsize

§

impl Unpin for AtomicU8

§

impl Unpin for AtomicU16

§

impl Unpin for AtomicU32

§

impl Unpin for AtomicU64

§

impl Unpin for AtomicUsize

§

impl Unpin for RecvError

§

impl Unpin for Barrier

§

impl Unpin for BarrierWaitResult

§

impl Unpin for Condvar

§

impl Unpin for wiwi::rust_std::sync::Once

§

impl Unpin for OnceState

§

impl Unpin for WaitTimeoutResult

§

impl Unpin for RawWaker

§

impl Unpin for RawWakerVTable

§

impl Unpin for AccessError

§

impl Unpin for Builder

§

impl Unpin for Thread

§

impl Unpin for ThreadId

§

impl Unpin for Duration

§

impl Unpin for Instant

§

impl Unpin for SystemTime

§

impl Unpin for SystemTimeError

§

impl Unpin for TryFromFloatSecsError

§

impl Unpin for Big8x3

§

impl Unpin for Big32x40

§

impl Unpin for Decoded

§

impl Unpin for FullDecoded

§

impl Unpin for Maybe

§

impl Unpin for NoRuntime

§

impl Unpin for Number

§

impl Unpin for Runtime

§

impl Unpin for Sign

§

impl<'a> !Unpin for Request<'a>

§

impl<'a> Unpin for AncillaryData<'a>

§

impl<'a> Unpin for Component<'a>

§

impl<'a> Unpin for Prefix<'a>

§

impl<'a> Unpin for Source<'a>

§

impl<'a> Unpin for wiwi::rust_core::ffi::c_str::Bytes<'a>

§

impl<'a> Unpin for PanicInfo<'a>

§

impl<'a> Unpin for PanicMessage<'a>

§

impl<'a> Unpin for SplitPaths<'a>

§

impl<'a> Unpin for wiwi::rust_std::ffi::os_str::Display<'a>

§

impl<'a> Unpin for Arguments<'a>

§

impl<'a> Unpin for Formatter<'a>

§

impl<'a> Unpin for BorrowedCursor<'a>

§

impl<'a> Unpin for IoSlice<'a>

§

impl<'a> Unpin for IoSliceMut<'a>

§

impl<'a> Unpin for StderrLock<'a>

§

impl<'a> Unpin for StdinLock<'a>

§

impl<'a> Unpin for StdoutLock<'a>

§

impl<'a> Unpin for wiwi::rust_std::net::Incoming<'a>

§

impl<'a> Unpin for wiwi::rust_std::os::unix::net::Incoming<'a>

§

impl<'a> Unpin for Messages<'a>

§

impl<'a> Unpin for ScmCredentials<'a>

§

impl<'a> Unpin for ScmRights<'a>

§

impl<'a> Unpin for SocketAncillary<'a>

§

impl<'a> Unpin for Location<'a>

§

impl<'a> Unpin for PanicHookInfo<'a>

§

impl<'a> Unpin for Ancestors<'a>

§

impl<'a> Unpin for Components<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Display<'a>

§

impl<'a> Unpin for wiwi::rust_std::path::Iter<'a>

§

impl<'a> Unpin for PrefixComponent<'a>

§

impl<'a> Unpin for CommandArgs<'a>

§

impl<'a> Unpin for CommandEnvs<'a>

§

impl<'a> Unpin for EscapeAscii<'a>

§

impl<'a> Unpin for CharSearcher<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Bytes<'a>

§

impl<'a> Unpin for CharIndices<'a>

§

impl<'a> Unpin for Chars<'a>

§

impl<'a> Unpin for EncodeUtf16<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDebug<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeDefault<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::EscapeUnicode<'a>

§

impl<'a> Unpin for wiwi::rust_std::str::Lines<'a>

§

impl<'a> Unpin for LinesAny<'a>

§

impl<'a> Unpin for SplitAsciiWhitespace<'a>

§

impl<'a> Unpin for SplitWhitespace<'a>

§

impl<'a> Unpin for Utf8Chunk<'a>

§

impl<'a> Unpin for Utf8Chunks<'a>

§

impl<'a> Unpin for wiwi::rust_std::string::Drain<'a>

§

impl<'a> Unpin for Context<'a>

§

impl<'a> Unpin for ContextBuilder<'a>

§

impl<'a> Unpin for Formatted<'a>

§

impl<'a> Unpin for Part<'a>

§

impl<'a, 'b> Unpin for DebugList<'a, 'b>

§

impl<'a, 'b> Unpin for DebugMap<'a, 'b>

§

impl<'a, 'b> Unpin for DebugSet<'a, 'b>

§

impl<'a, 'b> Unpin for DebugStruct<'a, 'b>

§

impl<'a, 'b> Unpin for DebugTuple<'a, 'b>

§

impl<'a, 'b> Unpin for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Unpin for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Unpin for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> Unpin for VaList<'a, 'f>

§

impl<'a, A> Unpin for wiwi::rust_std::option::Iter<'a, A>

§

impl<'a, A> Unpin for wiwi::rust_std::option::IterMut<'a, A>

§

impl<'a, B> Unpin for Cow<'a, B>
where <B as ToOwned>::Owned: Unpin, B: ?Sized,

§

impl<'a, F> Unpin for CharPredicateSearcher<'a, F>
where F: Unpin,

§

impl<'a, I> Unpin for ByRefSized<'a, I>

§

impl<'a, I, A> Unpin for Splice<'a, I, A>
where @@ -111,7 +111,7 @@ P: Unpin,

§

impl<'a, T, P> Unpin for SplitNMut<'a, T, P>
where P: Unpin,

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Difference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Intersection<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::SymmetricDifference<'a, T, S>

§

impl<'a, T, S> Unpin for wiwi::rust_std::collections::hash_set::Union<'a, T, S>

§

impl<'a, T, const N: usize> Unpin for wiwi::rust_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Unpin for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Unpin for CharArraySearcher<'a, N>

§

impl<'b, T> Unpin for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Unpin for RefMut<'b, T>
where - T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where + T: ?Sized,

§

impl<'data> Unpin for BorrowedBuf<'data>

§

impl<'f> Unpin for VaListImpl<'f>

§

impl<'fd> Unpin for BorrowedFd<'fd>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'scope, 'env> Unpin for Scope<'scope, 'env>

§

impl<'scope, T> Unpin for ScopedJoinHandle<'scope, T>

§

impl<A> Unpin for IterRange<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeFrom<A>
where A: Unpin,

§

impl<A> Unpin for IterRangeInclusive<A>
where A: Unpin,

§

impl<A> Unpin for wiwi::rust_std::iter::Repeat<A>
where diff --git a/wiwi/sidebar-items.js b/wiwi/sidebar-items.js index 101a1a12f..023fa18bc 100644 --- a/wiwi/sidebar-items.js +++ b/wiwi/sidebar-items.js @@ -1 +1 @@ -window.SIDEBAR_ITEMS = {"macro":["panic"],"mod":["_changelog","prelude","rust_alloc","rust_core","rust_std"]}; \ No newline at end of file +window.SIDEBAR_ITEMS = {"macro":["export_all_submodules","panic"],"mod":["_changelog","encoding","h","num","prelude","rust_alloc","rust_core","rust_std","util","util_unsafe"]}; \ No newline at end of file diff --git a/wiwi/util/index.html b/wiwi/util/index.html new file mode 100644 index 000000000..8fcc9d4d2 --- /dev/null +++ b/wiwi/util/index.html @@ -0,0 +1,2 @@ +wiwi::util - Rust

Module wiwi::util

source ·

Macros§

  • Convenience macro that declares many private submodules, and glob reexports +all items from them
\ No newline at end of file diff --git a/wiwi/util/macro.export_all_submodules!.html b/wiwi/util/macro.export_all_submodules!.html new file mode 100644 index 000000000..e2c3110f0 --- /dev/null +++ b/wiwi/util/macro.export_all_submodules!.html @@ -0,0 +1,11 @@ + + + + + Redirection + + +

Redirecting to macro.export_all_submodules.html...

+ + + \ No newline at end of file diff --git a/wiwi/util/macro.export_all_submodules.html b/wiwi/util/macro.export_all_submodules.html new file mode 100644 index 000000000..e585d9e07 --- /dev/null +++ b/wiwi/util/macro.export_all_submodules.html @@ -0,0 +1,6 @@ +export_all_submodules in wiwi::util - Rust

Macro wiwi::util::export_all_submodules

source ·
macro_rules! export_all_submodules {
+    { $($mod:ident)* } => { ... };
+}
Expand description

Convenience macro that declares many private submodules, and glob reexports +all items from them

+

See module docs for more info

+
\ No newline at end of file diff --git a/wiwi/util/sidebar-items.js b/wiwi/util/sidebar-items.js new file mode 100644 index 000000000..30ef90afa --- /dev/null +++ b/wiwi/util/sidebar-items.js @@ -0,0 +1 @@ +window.SIDEBAR_ITEMS = {"macro":["export_all_submodules"]}; \ No newline at end of file diff --git a/wiwi/util_unsafe/encoding_utils/struct.ChunkedSlice.html b/wiwi/util_unsafe/encoding_utils/struct.ChunkedSlice.html new file mode 100644 index 000000000..64e6e5dcf --- /dev/null +++ b/wiwi/util_unsafe/encoding_utils/struct.ChunkedSlice.html @@ -0,0 +1,11 @@ + + + + + Redirection + + +

Redirecting to ../../../wiwi/util_unsafe/struct.ChunkedSlice.html...

+ + + \ No newline at end of file diff --git a/wiwi/util_unsafe/encoding_utils/struct.UnsafeBufWriteGuard.html b/wiwi/util_unsafe/encoding_utils/struct.UnsafeBufWriteGuard.html new file mode 100644 index 000000000..9b9aafb18 --- /dev/null +++ b/wiwi/util_unsafe/encoding_utils/struct.UnsafeBufWriteGuard.html @@ -0,0 +1,11 @@ + + + + + Redirection + + +

Redirecting to ../../../wiwi/util_unsafe/struct.UnsafeBufWriteGuard.html...

+ + + \ No newline at end of file diff --git a/wiwi/util_unsafe/index.html b/wiwi/util_unsafe/index.html new file mode 100644 index 000000000..4fd4fb55d --- /dev/null +++ b/wiwi/util_unsafe/index.html @@ -0,0 +1,3 @@ +wiwi::util_unsafe - Rust

Module wiwi::util_unsafe

source ·

Structs§

  • Utility to emit fixed size (const) chunks, in an unchecked manner, from +a slice
  • Helper for unsafe buffer operations, when the exact total capacity needed +is known ahead of time and requested up front
\ No newline at end of file diff --git a/wiwi/util_unsafe/sidebar-items.js b/wiwi/util_unsafe/sidebar-items.js new file mode 100644 index 000000000..cce5a7094 --- /dev/null +++ b/wiwi/util_unsafe/sidebar-items.js @@ -0,0 +1 @@ +window.SIDEBAR_ITEMS = {"struct":["ChunkedSlice","UnsafeBufWriteGuard"]}; \ No newline at end of file diff --git a/wiwi/util_unsafe/struct.ChunkedSlice.html b/wiwi/util_unsafe/struct.ChunkedSlice.html new file mode 100644 index 000000000..ffc0e4b11 --- /dev/null +++ b/wiwi/util_unsafe/struct.ChunkedSlice.html @@ -0,0 +1,38 @@ +ChunkedSlice in wiwi::util_unsafe - Rust

Struct wiwi::util_unsafe::ChunkedSlice

source ·
pub struct ChunkedSlice<'h, const N: usize> { /* private fields */ }
Expand description

Utility to emit fixed size (const) chunks, in an unchecked manner, from +a slice

+

Contains debug assertions to assert preconditions.

+

Implementations§

source§

impl<'h, const N: usize> ChunkedSlice<'h, N>

source

pub fn new(bytes: &'h [u8]) -> Self

Creates a new ChunkedSlice instance from the given +borrowed, byte slice

+
source

pub unsafe fn next_frame_unchecked(&mut self) -> &'h [u8; N]

Removes, without checking, N bytes off the front of the internal slice, +then returns a reference to that slice

+

I believe the reason this function returns a reference rather than an +array by value is performance? if I remember correctly, changing it to +return the array by value caused a quite heavy performance regression +in z85 encode speed. My not-very-educated guess is the alignment? since +references are aligned to word size, which the CPU likes, while the byte +array is only aligned to 1 ~vt

+
§Safety
+

There must be at least N bytes left, otherwise a reference to invalid +memory will be created, causing undefined behaviour.

+
source

pub unsafe fn with_remainder_unchecked<F>(self, f: F)
where + F: FnOnce(&[u8; N]),

Consumes self, takes the remainder slice, copies it into a temporary +buffer of length N, and calls the provided closure with the temporary +buffer

+

This does not indicate anywhere how many were padding bytes vs actual +data. In the few places that this utility struct is used, the remainder +has been calculated already, so the returned value goes unused.

+
§Safety
+

There must be strictly N or less bytes left, otherwise invalid memory +(past the end of the temporary buffer created) will be written to.

+
source

pub fn to_slice(&self) -> &'h [u8]

Returns the slice left in self

+

Auto Trait Implementations§

§

impl<'h, const N: usize> Freeze for ChunkedSlice<'h, N>

§

impl<'h, const N: usize> RefUnwindSafe for ChunkedSlice<'h, N>

§

impl<'h, const N: usize> Send for ChunkedSlice<'h, N>

§

impl<'h, const N: usize> Sync for ChunkedSlice<'h, N>

§

impl<'h, const N: usize> Unpin for ChunkedSlice<'h, N>

§

impl<'h, const N: usize> UnwindSafe for ChunkedSlice<'h, N>

Blanket Implementations§

source§

impl<T> Any for T
where + T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where + T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+
source§

impl<T, U> Into<U> for T
where + U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

+

That is, this conversion is whatever the implementation of +From<T> for U chooses to do.

+
source§

impl<T, U> TryFrom<U> for T
where + U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where + U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/wiwi/util_unsafe/struct.UnsafeBufWriteGuard.html b/wiwi/util_unsafe/struct.UnsafeBufWriteGuard.html new file mode 100644 index 000000000..bbdb4334f --- /dev/null +++ b/wiwi/util_unsafe/struct.UnsafeBufWriteGuard.html @@ -0,0 +1,78 @@ +UnsafeBufWriteGuard in wiwi::util_unsafe - Rust

Struct wiwi::util_unsafe::UnsafeBufWriteGuard

source ·
pub struct UnsafeBufWriteGuard { /* private fields */ }
Expand description

Helper for unsafe buffer operations, when the exact total capacity needed +is known ahead of time and requested up front

+

Calling Vec::extend_from_slice on a vec would be the equivalent safe +version of this struct. The reason this struct exists then, is because +anything that pushes to a vec checks to make sure there is enough capacity. +That cost is probably negligible, but added up could be noticeable +(especially in hot loops), and if you can guarantee you know / can calculate +the exact amount you need, then allocate it all up front, you no longer need +those checks, so why even bother running those checks?

+

With debug assertions enabled, this struct will keep track of the amount of +bytes written and assert unsafe preconditions, like not overflowing the +allocated capacity, as well as having all preallocated capacity filled. +However, with debug assertions off (release mode has it off by default), +these checks are not run (the bytes_written field that tracks it is +gated behind cfg(debug_assertions), so doesn’t even exist!), and it becomes +essentially just a wrapper around a vec, its ptr, raw ptr copying operations, +and a method that unsafely sets the len of the vec before unwrapping it.

+

Creating one of these structs is not unsafe, but you can’t +really do much with it in safe only code :p

+

Implementations§

source§

impl UnsafeBufWriteGuard

source

pub fn with_capacity(capacity: usize) -> Self

Create a new UnsafeBufWriteGuard with specified capacity

+

The amount of capacity specified must be exactly calculated, and all +capacity allocated here must be initialised before calling +into_full_vec. See that function for more details +and safety notes.

+

The act of creating one of these structs is not unsafe, but you can’t +really do much with it in safe only code :p

+
source

pub unsafe fn write_bytes_const<const N: usize>(&mut self, src: *const u8)

Writes an amount of bytes into self, determined by const param N

+

This does the same as write_bytes in functionality, +but maybe the const generic param N will enable more optimisations?

+
§Safety
+

You must not write, in total, more than the amount of capacity that you +requested when creating self.

+
source

pub unsafe fn write_bytes(&mut self, src: *const u8, n: usize)

Writes an amount of bytes into self

+
§Safety
+

You must not write, in total, more than the amount of capacity that you +requested when creating self.

+
source

pub unsafe fn as_mut_ptr(&mut self) -> *mut u8

Get the pointer pointing to the start of the uninitialised memory in the +buffer (to operate on the raw pointer directly)

+

If/when you are done writing to the pointer, you should call +add_byte_count. This offsets the internally +stored pointer by that amount. If you don’t, calling any other write +function on this struct will clobber over what you just wrote.

+
§Safety
+

As with the rest of the write functions, you must not write, in total, +more than the amount of capacity that you requested when creating self. +Additionally, you should call add_byte_count.

+

This function is technically safe to call if you don’t do anything with +the returned pointer. All pointer operations are unsafe already. std +has many as_ptr and as_mut_ptr APIs that aren’t unsafe, but still, +this function is conservatively marked unsafe. Even though it probably +doesn’t need to be.

+
source

pub unsafe fn add_byte_count(&mut self, n: usize)

Declare that n bytes have been written

+

Call this after writing to the raw pointer (which you can get using +as_mut_ptr), ensuring the pointer stored internally +is still going to point at the start of the uninitialised chunk (or the end).

+
§Safety
+

You must have written the amount of bytes that you say you have written, +and that you have not written too many bytes.

+

Calling this function without writing to the amount of memory you say you +did will leave uninitialised memory “holes”, which will cause undefined +behaviour when you unwrap the vec.

+
source

pub unsafe fn into_full_vec(self) -> Vec<u8>

Declare that the amount of bytes requested up front, has been written to, +then unwraps and returns the internal vec

+
§Safety
+

You must have written to all the bytes that you have requested up front. +Calling this function without doing so will leave a “tail” of uninitialised +bytes in the vec, causing undefined behaviour.

+

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where + T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where + T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where + T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

+
source§

impl<T, U> Into<U> for T
where + U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

+

That is, this conversion is whatever the implementation of +From<T> for U chooses to do.

+
source§

impl<T, U> TryFrom<U> for T
where + U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where + U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file